An open API service indexing awesome lists of open source software.

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

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
```