We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The requirements.txt file is broken. Do not use that one to set up your virtual environment.
requirements.txt
Do this
# Create a conda environment first conda create --name pytorch04 # Enter the environment conda activate pytorch04 # Install pytorch conda install pytorch=0.4.1 cuda90 -c pytorch
Replace everything in the requirements.txt file to the following
matplotlib pandas jupyterlab torchvision==0.2.1
then run pip install -r requirements.txt. Now you should be able to run the infer-main.ipynb and train.py
pip install -r requirements.txt
infer-main.ipynb
train.py
The text was updated successfully, but these errors were encountered:
Hello, thank you for sharing this. I also needed to add Pillow==8.4.0 to requirements.txt.
Pillow==8.4.0
Sorry, something went wrong.
No branches or pull requests
The
requirements.txt
file is broken. Do not use that one to set up your virtual environment.Do this
Replace everything in the
requirements.txt
file to the followingthen run
pip install -r requirements.txt
. Now you should be able to run theinfer-main.ipynb
andtrain.py
The text was updated successfully, but these errors were encountered: