Update README.md
Browse files
README.md
CHANGED
|
@@ -48,7 +48,14 @@ https://rekhtalabs.org/demo/transliterate
|
|
| 48 |
## Usage
|
| 49 |
|
| 50 |
```python
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
cd ur-2-hi-translit
|
| 53 |
```
|
| 54 |
|
|
|
|
| 48 |
## Usage
|
| 49 |
|
| 50 |
```python
|
| 51 |
+
from huggingface_hub import snapshot_download
|
| 52 |
+
|
| 53 |
+
path = snapshot_download(
|
| 54 |
+
repo_id="rekhtalabs/ur-2-hi-translit",
|
| 55 |
+
local_dir="./ur-2-hi-translit",
|
| 56 |
+
local_dir_use_symlinks=False
|
| 57 |
+
)
|
| 58 |
+
|
| 59 |
cd ur-2-hi-translit
|
| 60 |
```
|
| 61 |
|