rename /checkpoints to /weights

This commit is contained in:
Glenn Jocher
2018-10-30 14:58:26 +01:00
parent 0ae90d0fb7
commit 332fe002b3
4 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ class load_images_and_labels(): # for training
self.img_files = file.readlines()
if platform == 'darwin': # MacOS (local)
self.img_files = [path.replace('\n', '').replace('/images', '/Users/glennjocher/Downloads/DATA/coco/images')
self.img_files = [path.replace('\n', '').replace('/images', '/Users/glennjocher/Downloads/data/coco/images')
for path in self.img_files]
else: # linux (gcp cloud)
self.img_files = [path.replace('\n', '').replace('/images', '../coco/images') for path in self.img_files]