Ramon Gougis commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,13 +40,13 @@ WaveletLM is a fully causal, attention-free language model that mixes tokens thr
|
|
| 40 |
```python
|
| 41 |
import torch
|
| 42 |
from huggingface_hub import hf_hub_download
|
| 43 |
-
```
|
| 44 |
|
| 45 |
# Download the checkpoint
|
| 46 |
ckpt_path = hf_hub_download(repo_id="ragou19/WaveletLM", filename="best_model.pt")
|
| 47 |
|
| 48 |
# Then follow the instructions in the GitHub repo to load and run:
|
| 49 |
# https://github.com/ramongougis/WaveletLM
|
|
|
|
| 50 |
|
| 51 |
## Architecture
|
| 52 |
See the full <a href="https://github.com/ramongougis/WaveletLM#architecture">architecture documentation</a> on GitHub.
|
|
|
|
| 40 |
```python
|
| 41 |
import torch
|
| 42 |
from huggingface_hub import hf_hub_download
|
|
|
|
| 43 |
|
| 44 |
# Download the checkpoint
|
| 45 |
ckpt_path = hf_hub_download(repo_id="ragou19/WaveletLM", filename="best_model.pt")
|
| 46 |
|
| 47 |
# Then follow the instructions in the GitHub repo to load and run:
|
| 48 |
# https://github.com/ramongougis/WaveletLM
|
| 49 |
+
```
|
| 50 |
|
| 51 |
## Architecture
|
| 52 |
See the full <a href="https://github.com/ramongougis/WaveletLM#architecture">architecture documentation</a> on GitHub.
|