# Modern-Computer-Vision-with-PyTorch **Repository Path**: SuperLionS/Modern-Computer-Vision-with-PyTorch ## Basic Information - **Project Name**: Modern-Computer-Vision-with-PyTorch - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-08 - **Last Updated**: 2025-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
[](https://packt.link/algotradingpython)
# Modern Computer Vision with PyTorch
## Missing Datasets
Some of datasets were removed from their original links by authors, if you find them missing, please raise an issue and we'll track it down and place them at this huggingface datsets link
## Errata
- [Chapter01](Chapter01/readme.md)
- [Chapter03](Chapter03/Readme.md)
- [Chapter06](Chapter06/Readme.md)
Please use `%pip install torch-snippets==0.539` in any of the codes if there's an issue with torch-snippets library as it was the library version during the release of the notebook.
## Instructions and Navigations
All of the code is organized into folders.
The code will look like the following:
```
def accuracy(x, y, model):
model.eval() # <- let's wait till we get to dropout section
# get the prediction matrix for a tensor of `x` images
prediction = model(x)
# compute if the location of maximum in each row coincides
# with ground truth
max_values, argmaxes = prediction.max(-1)
is_correct = argmaxes == y
return is_correct.cpu().numpy().tolist()
```
**Following is what you need for this book:**
This book is for beginners to PyTorch and intermediate-level machine learning practitioners who are looking to get well-versed with computer vision techniques using deep learning and PyTorch. If you are just getting started with neural networks, you’ll find the use cases accompanied by notebooks in GitHub present in this book useful. Basic knowledge of the Python programming language and machine learning is all you need to get started with this book.
With the following software and hardware list you can run all code files present in the book (Chapter 1-18).
### Software and Hardware List
| Chapter | Software required | OS required |
| -------- | -------------------------------------------------------------------------------------| -----------------------------------|
| 1 - 18 | Minimum 8 GB RAM, Intel i5 processor or better | Windows, Mac OS X, and Linux (Any) |
| | NVIDIA 8+ GB graphics card – GTX1070 or better | |
| | Minimum 50 Mbps internet speed | |
| | Python 3.6 and above | |
| | PyTorch 1.7 | |
| | Google Colab (can run in any browser) | |
All the notebooks can be run directly on [colab](https://colab.google.com) using the [](https://github.com/PacktPublishing/Modern-Computer-Vision-with-PyTorch/) button that can be found at the start of every notebook.
If you wish to run the notebooks locally, ensure you have a CUDA compatible GPU with drivers installed. Instructions are given [here](https://github.com/PacktPublishing/Modern-Computer-Vision-with-PyTorch/blob/master/Install-CUDA-Drivers.md)
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. [Click here to download it](https://static.packt-cdn.com/downloads/9781839213472_ColorImages.pdf).
### Related products