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