Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855808f commit 7b245dbCopy full SHA for 7b245db
1 file changed
examples/imagenet/main_amp.py
@@ -190,8 +190,9 @@ def resume():
190
valdir = os.path.join(args.data, 'val')
191
192
if(args.arch == "inception_v3"):
193
- crop_size = 299
194
- val_size = 320 # I chose this value arbitrarily, we can adjust.
+ raise RuntimeError("Currently, inception_v3 is not supported by this example.")
+ # crop_size = 299
195
+ # val_size = 320 # I chose this value arbitrarily, we can adjust.
196
else:
197
crop_size = 224
198
val_size = 256
0 commit comments