GitXplorerGitXplorer
A

deep-learning-stuff

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
83d8fd6f390e92e9802dbddcb083e2b5cb1c6ffd

Add first neural example

AArmaanBhullar committed 3 years ago
Unverified
6565cd4be81e5dde777017489cc5fd8c08afe52d

Add simple linear model example

AArmaanBhullar committed 3 years ago
Unverified
b1dd6c00d9f288e0cdcb91dba603a2b10bbcce82

Add text and time series data tensors

AArmaanBhullar committed 3 years ago
Unverified
9fcc7660847f523db9dc95a79b72d4a7c0d7253d

Add volume tensor

AArmaanBhullar committed 3 years ago
Unverified
6957c7e76ee424cb38d52bad8684df0c7bd2a730

Refactor names

AArmaanBhullar committed 3 years ago
Unverified
65752aab93c9e15dc61c7c196d53d247a2c19f12

Add tensor part 2 - working with images

AArmaanBhullar committed 3 years ago

README

The README file for this repository.

Hello and Welcome!

In July 2021, I decided to learn in depth about Pytorch. Why? - Because it's a beautifully written library and Deep Learning is a fascinating subject!

Anyways, my aim is to add all the stuff I've learnt here, in this repo, in a way programmers can understand. Most of the content is based on the amazing book https://www.manning.com/books/deep-learning-with-pytorch Who should read it? - Mostly, it will be I who will refer to these notes. But if you do stumble across this repo, well and good!

The order to read should be as follows -

  1. image_classifier.py - It's a nice one to go through to get an idea of Pytorch's ease of use
  2. cycle_gan.py - A few more advanced networks (all are prebuilt and loaded from disk, no getting into training yet!)
  3. tensors_1.py - This is where the deep dives start, I cover everything required to jump onto more advanced stuff like named tensors, underlying storage objects, serialization/deserialization etc.