Notebook loading error - 03_pytorch_computer_vision_exercise_solutions #227
Unanswered
echohuiecho
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to open the exercise solutions for chapter 03 - computer vision. However, I encounter the
Notebook loading error
as described below.Notebook loading error
The file has been corrupted or is not a valid notebook file.
I think that should be a problem in line
3302
"confmat = ConfusionMatrix(task="multiclass", num_classes=len(class_names))\n"
. I updated the double quotetask="multiclass"
to a single quotetask='multiclass'
"confmat = ConfusionMatrix(task='multiclass', num_classes=len(class_names))\n"
and I can open it in Google Colab afterward.Beta Was this translation helpful? Give feedback.
All reactions