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
When I run shufflenet in PyCharm, an error occured.
I find the problem is in line 27.
Perhapse it is due to the problem of python versions.
The environment of my python is 3.10, the result of dividing two integers is a floating point number, but nn.Conv2d needs an integer.
So we just need to convert it into an integer.
The text was updated successfully, but these errors were encountered:
When I run shufflenet in PyCharm, an error occured.
I find the problem is in line 27.
Perhapse it is due to the problem of python versions.
The environment of my python is 3.10, the result of dividing two integers is a floating point number, but nn.Conv2d needs an integer.
So we just need to convert it into an integer.
The text was updated successfully, but these errors were encountered: