You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main.py and evaluate.py scripts in the examples/ folder got out of sync with the cct_N function definitions in src/, so there is an error when running them.
A quick fix would be to change L119 in main.py and L100 in evaluate.py from
model = models.__dict__[args.model](img_size=img_size,
to
model = models.__dict__[args.model]('custom', False, False, img_size=img_size,
Btw. thanks for a nice repository and nice paper!
The text was updated successfully, but these errors were encountered:
The
main.py
andevaluate.py
scripts in theexamples/
folder got out of sync with thecct_N
function definitions insrc/
, so there is an error when running them.A quick fix would be to change L119 in
main.py
and L100 inevaluate.py
fromto
Btw. thanks for a nice repository and nice paper!
The text was updated successfully, but these errors were encountered: