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

Please upadate codes for latest version of PyTorch #171

Open
LT1st opened this issue Jul 15, 2023 · 0 comments
Open

Please upadate codes for latest version of PyTorch #171

LT1st opened this issue Jul 15, 2023 · 0 comments

Comments

@LT1st
Copy link

LT1st commented Jul 15, 2023

In file train.py and train_search.py, you need to replace this:

    # objs.update(loss.data[0], n)
    # top1.update(prec1.data[0], n)
    # top5.update(prec5.data[0], n)

to

    objs.update(loss.item(), n)
    top1.update(prec1.item(), n)
    top5.update(prec5.item(), n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant