repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

git-pr / fixtures
Eric Bower  ·  2025-12-13

a_c_split.patch

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