repos / git-pr

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

git-pr / fixtures
Eric Bower  ·  2024-07-14

single.patch

 1From 59456574a0bfee9f71c91c13046173c820152346 Mon Sep 17 00:00:00 2001
 2From: Eric Bower <me@erock.io>
 3Date: Wed, 3 Jul 2024 15:18:47 -0400
 4Subject: [PATCH] feat: lets build an rnn
 5
 6---
 7 README.md | 4 ++--
 8 train.py  | 2 ++
 9 2 files changed, 4 insertions(+), 2 deletions(-)
10 create mode 100644 train.py
11
12diff --git a/README.md b/README.md
13index 586bc0d..8f3a780 100644
14--- a/README.md
15+++ b/README.md
16@@ -1,3 +1,3 @@
17-# test
18+# Let's build an RNN
19 
20-testing git pr
21+This repo demonstrates building an RNN using `pytorch`
22diff --git a/train.py b/train.py
23new file mode 100644
24index 0000000..5c027f4
25--- /dev/null
26+++ b/train.py
27@@ -0,0 +1,2 @@
28+if __name__ == "__main__":
29+    print("train!")
30-- 
312.45.2