seankross commited on
Commit
f533fae
1 Parent(s): 5221526

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -1,3 +1,43 @@
1
  ---
2
  license: mit
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ datasets:
4
+ - tiny_shakespeare
5
+ language:
6
+ - en
7
  ---
8
+
9
+ # Getting Started
10
+
11
+ Clone this repository and `cd` into it.
12
+
13
+ Make sure you have python3:
14
+
15
+ ```
16
+ python3 --version
17
+ ```
18
+
19
+ Start a virtual environment:
20
+
21
+ ```
22
+ python3 -m venv .venv
23
+ ```
24
+
25
+ Activate your virtual environment:
26
+
27
+ ```
28
+ source .venv/bin/activate
29
+ ```
30
+
31
+ Install torch according to [these instructions](https://pytorch.org/get-started/locally/).
32
+
33
+ Then run:
34
+
35
+ ```
36
+ python3 main.py
37
+ ```
38
+
39
+ Then:
40
+
41
+ ```
42
+ python3 predict.py
43
+ ```