Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Training and evaluation scripts in examples folder #67

Closed
rmldj opened this issue Jan 15, 2023 · 1 comment · Fixed by #68
Closed

Training and evaluation scripts in examples folder #67

rmldj opened this issue Jan 15, 2023 · 1 comment · Fixed by #68
Assignees
Labels
bug Something isn't working

Comments

@rmldj
Copy link

rmldj commented Jan 15, 2023

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!

@alihassanijr alihassanijr mentioned this issue Jan 15, 2023
@alihassanijr
Copy link
Member

Thank you for your interest, and for bringing this to our attention.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants