Eric Bower
·
2024-07-23
a_c_reorder.patch
1From 7dbb94ca1bc8cadf1ce17dacb89172217d88de07 Mon Sep 17 00:00:00 2001
2From: Eric Bower <me@erock.io>
3Date: Tue, 23 Jul 2024 10:15:23 -0400
4Subject: [PATCH 1/2] docs: readme
5
6---
7 README.md | 4 +++-
8 1 file changed, 3 insertions(+), 1 deletion(-)
9
10diff --git a/README.md b/README.md
11index 8f3a780..3043953 100644
12--- a/README.md
13+++ b/README.md
14@@ -1,3 +1,5 @@
15 # Let's build an RNN
16
17-This repo demonstrates building an RNN using `pytorch`
18+This repo demonstrates building an RNN using `pytorch`.
19+
20+Here is some more readme information.
21--
222.45.2
23
24
25From ad175875e2bf320859554bae73743675cc5ce444 Mon Sep 17 00:00:00 2001
26From: Eric Bower <me@erock.io>
27Date: Tue, 23 Jul 2024 10:06:00 -0400
28Subject: [PATCH 2/2] chore: add torch and create random tensor
29
30---
31 requirements.txt | 1 +
32 train.py | 3 +++
33 2 files changed, 4 insertions(+)
34 create mode 100644 requirements.txt
35
36diff --git a/requirements.txt b/requirements.txt
37new file mode 100644
38index 0000000..4968a39
39--- /dev/null
40+++ b/requirements.txt
41@@ -0,0 +1 @@
42+torch==2.3.1
43diff --git a/train.py b/train.py
44index 5c027f4..d21dac3 100644
45--- a/train.py
46+++ b/train.py
47@@ -1,2 +1,5 @@
48+import torch
49+
50 if __name__ == "__main__":
51 print("train!")
52+ torch.rand(3,6)
53--
542.45.2
55