瀏覽代碼

gsutil cp hyp evolution bug fix (#876)

5.0
Glenn Jocher 4 年之前
父節點
當前提交
bc1fd13a7a
共有 2 個檔案被更改,包括 11 行新增1 行删除
  1. +4
    -1
      utils/general.py
  2. +7
    -0
      utils/google_utils.py

+ 4
- 1
utils/general.py 查看文件

@@ -22,6 +22,7 @@ from scipy.cluster.vq import kmeans
from scipy.signal import butter, filtfilt
from tqdm import tqdm

from utils.google_utils import gsutil_getsize
from utils.torch_utils import init_seeds as init_torch_seeds
from utils.torch_utils import is_parallel

@@ -854,7 +855,9 @@ def print_mutation(hyp, results, yaml_file='hyp_evolved.yaml', bucket=''):
print('\n%s\n%s\nEvolved fitness: %s\n' % (a, b, c))

if bucket:
os.system('gsutil cp gs://%s/evolve.txt .' % bucket) # download evolve.txt
url = 'gs://%s/evolve.txt' % bucket
if gsutil_getsize(url) > (os.path.getsize('evolve.txt') if os.path.exists('evolve.txt') else 0):
os.system('gsutil cp %s .' % url) # download evolve.txt if larger than local

with open('evolve.txt', 'a') as f: # append result
f.write(c + b + '\n')

+ 7
- 0
utils/google_utils.py 查看文件

@@ -4,12 +4,19 @@

import os
import platform
import subprocess
import time
from pathlib import Path

import torch


def gsutil_getsize(url=''):
# gs://bucket/file size https://cloud.google.com/storage/docs/gsutil/commands/du
s = subprocess.check_output('gsutil du %s' % url, shell=True).decode('utf-8')
return eval(s.split(' ')[0]) if len(s) else 0 # bytes


def attempt_download(weights):
# Attempt to download pretrained weights if not found locally
weights = weights.strip().replace("'", '')

Loading…
取消
儲存