https://github.com/nullhawk/pytorch
Deep Learning with PyTorch
https://github.com/nullhawk/pytorch
deep-learning pytorch
Last synced: about 1 year ago
JSON representation
Deep Learning with PyTorch
- Host: GitHub
- URL: https://github.com/nullhawk/pytorch
- Owner: nullHawk
- Created: 2024-08-22T12:31:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-23T05:50:21.000Z (over 1 year ago)
- Last Synced: 2025-02-09T06:13:44.765Z (over 1 year ago)
- Topics: deep-learning, pytorch
- Language: Python
- Homepage:
- Size: 3.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Pytorch
This repository contains the code snippets written by me during learning pytorch library for deep learning
## Topics learned till now
- Installing
- Tensors
- Autograd
- Optimizer
- Backpropagation
- Gradient Descent with/without Autograd
- NN module in pytorch
- Linear Regression
- Logistic Regression
- Digit Recognition using Feed Forward Neural Network
- Convolutional Neural Network
## Setup
- Creating conda enivronment
```
$ conda create --name --file
```
- Activating exisitng environment
```
$ conda activate
$ conda install --file requirments.txt
```