From 118c409b874588616eb643eb41c9e0231b8da9a3 Mon Sep 17 00:00:00 2001 From: Jai Bhagat Date: Thu, 7 Mar 2024 03:52:36 +0000 Subject: [PATCH] Cleaned up formatting --- readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index fb88150..eeb1851 100644 --- a/readme.md +++ b/readme.md @@ -51,11 +51,10 @@ Output generated from models trained after approximately 320000 (top), 640000 (m ### Run a pretrained nanoGPT model -1. Download a pretrained nanoGPT pytorch model (.pth), its config file (.json), and its tokens file (.json) from [here](https://drive.google.com/drive/folders/1M99XHrX31O8opWYHzTnvVBwEkYadH5ct?usp=sharing)
+1. Download a pretrained nanoGPT pytorch model (.pth), its config file (.json), and its tokens file (.json) from [here](https://drive.google.com/drive/folders/1M99XHrX31O8opWYHzTnvVBwEkYadH5ct?usp=sharing) (e.g. `nanogpt_shakespeare.pth`, `nanogpt_shakespeare_config.json`, `tiny_shakespeare_tokens.txt`) -
and _**save them in a new directory with no other files**_. -2. Then, in the terminal within this directory with the python environment activated, +2. Then, in the terminal in this repository's directory with the python environment activated, ```bash python -m nanogpt --model-dir "" --in-txt "Wherefore art thou, Romeo? We are such stuff as dreams are made on. The course of true love never did run smooth." --n-tokens 200 ```