Update README.md
Browse files
README.md
CHANGED
|
@@ -101,4 +101,20 @@ We provide syntactic annotations in both the [Columbia Arabic Treebank (CATiB)](
|
|
| 101 |
|
| 102 |
The corpus includes 20,535 `.conllx` files per annotation scheme, each containing syntactic annotations and organized into multiple directories according to the metadata.
|
| 103 |
|
| 104 |
-
We recommend using the [Palmyra tool](https://camel-lab.github.io/palmyra/index.html) for visualization and analysis of these files.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
|
| 102 |
The corpus includes 20,535 `.conllx` files per annotation scheme, each containing syntactic annotations and organized into multiple directories according to the metadata.
|
| 103 |
|
| 104 |
+
We recommend using the [Palmyra tool](https://camel-lab.github.io/palmyra/index.html) for visualization and analysis of these files.
|
| 105 |
+
|
| 106 |
+
---
|
| 107 |
+
|
| 108 |
+
## Usage
|
| 109 |
+
|
| 110 |
+
You can download the files manually using the Hub’s user interface, or use `snapshot_download` to download all files at once.
|
| 111 |
+
```python
|
| 112 |
+
from huggingface_hub import snapshot_download
|
| 113 |
+
|
| 114 |
+
snapshot_download(
|
| 115 |
+
repo_id="CAMeL-Lab/BAREC-10M",
|
| 116 |
+
repo_type="dataset",
|
| 117 |
+
local_dir="path/to/local/dir",
|
| 118 |
+
allow_patterns=["Data/*"]
|
| 119 |
+
)
|
| 120 |
+
```
|