Eurovoc_en / README.md
do-me's picture
Update README.md
3c5a6e8 verified
|
raw
history blame
674 Bytes
metadata
license: eupl-1.1
language:
  - en
size_categories:
  - 100K<n<1M

English entries only of https://huggingface.co/datasets/EuropeanParliament/Eurovoc.

Last update 16.05.2024: 352011 entries.

Usage

With Pandas / Polars

Simply download the parquet file and read with pandas or polars.

import pandas as pd # or import polars as pd
df = pd.read_parquet("CELLAR_EN_16_05_2024.parquet")
df

With HF datsets

from datasets import load_dataset
ds = load_dataset("do-me/Eurovoc_en")
df = ds["train"].to_pandas()
df

image/png