File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,9 @@ modelstrings = (
49
49
" EfficientNetv2(:small)" ,
50
50
" ConvMixer(:small)" ,
51
51
" ConvNeXt(:small)" ,
52
- # "MLPMixer()", # found no tests
53
- # "ResMLP()", # found no tests
54
- # "gMLP()", # found no tests
52
+ # "MLPMixer()", # no tests found
53
+ # "ResMLP()", # no tests found
54
+ # "gMLP()", # no tests found
55
55
" ViT(:tiny)" ,
56
56
" UNet()"
57
57
)
@@ -60,6 +60,7 @@ for (i, modstring) in enumerate(modelstrings)
60
60
@timeit to " $modstring " begin
61
61
@info " Evaluating $i /$(length (modelstrings)) $modstring "
62
62
@timeit to " First Load" eval (Meta. parse (modstring))
63
+ # second load simulates what might be possible with a proper set-up pkgimage workload
63
64
@timeit to " Second Load" model= eval (Meta. parse (modstring))
64
65
@timeit to " Training" train (model,
65
66
train_loader,
Original file line number Diff line number Diff line change @@ -93,10 +93,10 @@ function train(args...;kwargs...)
93
93
try
94
94
_train (args... ; kwargs... )
95
95
catch ex
96
- rethrow ()
96
+ # rethrow()
97
97
println ()
98
98
@error sprint (showerror, ex)
99
99
GC. gc ()
100
100
return false
101
101
end
102
- end
102
+ end
You can’t perform that action at this time.
0 commit comments