Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1 |
-
---
|
2 |
-
license: eupl-1.1
|
3 |
-
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
English entries only of https://huggingface.co/datasets/EuropeanParliament/Eurovoc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: eupl-1.1
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
size_categories:
|
6 |
+
- 100K<n<1M
|
7 |
+
---
|
8 |
|
9 |
+
English entries only of https://huggingface.co/datasets/EuropeanParliament/Eurovoc.
|
10 |
+
|
11 |
+
Last update 16.05.2024: 352011 entries.
|
12 |
+
|
13 |
+
## Usage
|
14 |
+
|
15 |
+
Simply download the parquet file and read with pandas or polars.
|
16 |
+
|
17 |
+
### Pandas / Polars
|
18 |
+
|
19 |
+
```python
|
20 |
+
import pandas as pd # or import polars as pd
|
21 |
+
df = pd.read_parquet("CELLAR_EN_16_05_2024.parquet")
|
22 |
+
df
|
23 |
+
```
|
24 |
+
|
25 |
+

|