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_squashed.patch

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