Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Neural networks #1

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
f6ca7a0
notebooks
josephjohnjj Aug 22, 2024
d07ca03
documents updated
josephjohnjj Aug 22, 2024
6220fe6
notebooks
josephjohnjj Aug 22, 2024
d59f743
explanations
josephjohnjj Aug 22, 2024
6f27c6a
tensors
josephjohnjj Aug 22, 2024
5440d78
equations
josephjohnjj Aug 22, 2024
b699425
automatic diff
josephjohnjj Aug 22, 2024
7a76224
automatic diff
josephjohnjj Aug 22, 2024
1148d19
automatic diff
josephjohnjj Aug 22, 2024
50bb3d9
tutorial
josephjohnjj Aug 22, 2024
5ce38d1
numpy and tensor
josephjohnjj Aug 22, 2024
31c8a68
numpy and tensor
josephjohnjj Aug 23, 2024
cbd6070
namings corrected
josephjohnjj Aug 23, 2024
240054c
code updated
josephjohnjj Aug 23, 2024
12f59dd
data sets
josephjohnjj Aug 23, 2024
76549fc
dataloaders
josephjohnjj Aug 23, 2024
3f2adad
dataloaders
josephjohnjj Aug 23, 2024
c5f2485
notebook updated
josephjohnjj Aug 23, 2024
e5fa3ce
data loaded
josephjohnjj Aug 23, 2024
5e415e2
dataloader and notebook
josephjohnjj Aug 23, 2024
972ef00
takeaways
josephjohnjj Aug 23, 2024
888d714
learning outcomnes
josephjohnjj Aug 23, 2024
39b686d
tables
josephjohnjj Aug 23, 2024
7ebd6e9
NN explained
josephjohnjj Aug 29, 2024
a03a9c9
algorithm replaced with python program
josephjohnjj Aug 30, 2024
3f663c4
Algorithm removed
josephjohnjj Aug 30, 2024
b65fa61
program updated
josephjohnjj Aug 30, 2024
5425975
comments updated
josephjohnjj Aug 30, 2024
ec27e3a
notebook for building a NN added
josephjohnjj Aug 30, 2024
a25a82a
exercise added
josephjohnjj Aug 30, 2024
dc99a15
building_NN.rst updated
josephjohnjj Aug 30, 2024
c4081bf
text updated
josephjohnjj Aug 30, 2024
45afa8b
training on a GPU
josephjohnjj Aug 30, 2024
8afba49
line number added
josephjohnjj Aug 30, 2024
2c74357
DataParallel
josephjohnjj Aug 30, 2024
425fc6d
DataParallel documentatiosn
josephjohnjj Aug 30, 2024
72dd9f1
custom data loaders
josephjohnjj Aug 30, 2024
6d7b4a4
custom data notebook updated
josephjohnjj Aug 30, 2024
ac1cd79
toctree updated
josephjohnjj Aug 30, 2024
83cc52a
DDP
josephjohnjj Sep 2, 2024
4f2b0bd
DDPdocumentations
josephjohnjj Sep 2, 2024
e4de7cf
DDPdocumentations updated
josephjohnjj Sep 2, 2024
2c2de56
DDP documentations corrected
josephjohnjj Sep 2, 2024
80c002d
multi node torchrun
josephjohnjj Sep 2, 2024
f70894f
scripts updated
josephjohnjj Sep 2, 2024
894a299
scripts updated
josephjohnjj Sep 2, 2024
d2352ea
docs updated
josephjohnjj Sep 2, 2024
94eed62
figures added
josephjohnjj Sep 2, 2024
ad06f1d
multinode
josephjohnjj Sep 2, 2024
017da59
multinode heading
josephjohnjj Sep 2, 2024
fef7768
docs cleanup
josephjohnjj Sep 2, 2024
52b6209
conf.py updated
josephjohnjj Sep 2, 2024
83e5501
references updated
josephjohnjj Sep 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "2"

build:
os: "ubuntu-22.04"
tools:
python: "3.10"

python:
install:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/source/conf.py
Loading