-
Notifications
You must be signed in to change notification settings - Fork 78
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
Make FCModel.py working on CUDA #2
base: master
Are you sure you want to change the base?
Make FCModel.py working on CUDA #2
Conversation
Thank you :) I'm on the same book |
I have just started working through the book too. So far, struggling in chapter 4 with hot encoding concepts , I have really enjoyed the book so far and the notebook scripts have worked. My system doesn't have a CUDA graphics card and I am sure I am going to want one soon. I have started to search for one and wonder what others like you are using or recommend. The new 3000 series cards are out of my budget but the GTX1660 looks good to me. Should I avoid? |
Fixed the issue on my end. Thanks. |
@waszee just use https://colab.research.google.com/ and select GPU in Runtime->Change runtime type |
Thanks for suggestion and will check out. I am in chapter 5 now. At the end of chapter 4 was some stuff on audio files and tried to write some tensor creations for morse code that I captured from my radio. I am struggling with embedding concepts to handle patterns of different sizes. Makes a good brain teaser for an old guy :). |
@elistevens would you mind to take a look at this pr? |
fyi I posted a separate query about audio files and DL tensors. I think it is number 9. I am still learning how to jump around and reference stuff already posted. |
Could you please tell me, how you solve that while running the code on GPU? |
Sorry for not remembering. |
In my case, I ran into a slightly different error when running the same command:
Rather than force the model to use CPU, I was able to make the following ugly hack (after which it worked correctly); @pbelevich this is similar to your changes:
The script then produces the correct result:
|
I tried to run
python eval.py --model ./data/FC/fc-model.pth --infos_path ./data/FC/fc-infos.pkl --image_folder ./data
(as said in the book on page 34) with different versions of PyTorch CUDA-enabled builds but all my attempts failed with the following errors. But if I use CPU-only PyTorch builds, then everything works as expectedor
I debugged the code and looks like FCModel layers were forgotten to be moved to the device.