My Favourite Books
- Python Machine Learning – Second Edition by Sebastian Raschka
- Dive into Deep Learning by Aston Zhang et. al.
- Hands-On Large Language Models: Language Understanding and Generation by Jay Alammar
My Favourite Courses
- Machine Learning Specialization by Emily Fox & Carlos Guestrin @Coursera
- Machine Learning Specialization – Stanford @ Coursera
- Deep Learning Specialization – Deeplearning.AI @ Coursera
Whom I follow
Papers Log
- GraphRAG
- LLM Hallucinations
- Others
Exception Log
- ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with …
Solution: https://stackoverflow.com/questions/76187256/importerror-urllib3-v2-0-only-supports-openssl-1-1-1-currently-the-ssl-modu/76187415#76187415 - TypeError: can’t convert cuda:0 device type tensor to numpy. User Tensor.cpu() to copy the tensor to host memory first
Solution:data_np = res[0].boxes.data.numpy() converted to data_np = res[0].boxes.data.numpy()
- pytorch
torchvision.datasets.ImageFolder FileNotFoundError
: Found no valid file for the classes .ipynb_checkpoints
Solution: https://stackoverflow.com/questions/68229246/pytorch-torchvision-datasets-imagefolder-filenotfounderror-found-no-valid-file/68474648#68474648