undertherain / benchmarker

modular framework for [not only] deep learning performance benchmarking
http://blackbird.pw/performance
Mozilla Public License 2.0
9 stars 5 forks source link

SSD300 needs to be wrapped #177

Open vatai opened 3 years ago

vatai commented 3 years ago

do_pytorch.py calls loss = model(data, target) (not out = model(data); loss = criterion(out, target) ). This is made possible using the stuff in helpers_pytorch.py which wrap the "raw" pytorch model, into something that does specific to the problem (i.e. applies the right loss).

This is not done for SSD300...