Update README.md
Browse files
README.md
CHANGED
|
@@ -71,8 +71,10 @@ snapshot_download(
|
|
| 71 |
|
| 72 |
### Loading the data
|
| 73 |
|
| 74 |
-
|
| 75 |
```
|
|
|
|
|
|
|
| 76 |
# Example: Loading a specific file after download
|
| 77 |
data = np.load("./data/path/to/file.npy", allow_pickle=True)
|
| 78 |
print(f"Data shape: {data.shape}")
|
|
|
|
| 71 |
|
| 72 |
### Loading the data
|
| 73 |
|
| 74 |
+
|
| 75 |
```
|
| 76 |
+
import numpy as np
|
| 77 |
+
|
| 78 |
# Example: Loading a specific file after download
|
| 79 |
data = np.load("./data/path/to/file.npy", allow_pickle=True)
|
| 80 |
print(f"Data shape: {data.shape}")
|