The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

Generic ConLL

Load ConLL formated files using datasets.load_dataset.

Usage

Use explicitly the keyword argument data_files.

from datasets import load_dataset

load_dataset("eduagarcia/generic_conll", data_files="https://raw.githubusercontent.com/peluz/lener-br/master/leNER-Br/train/train.conll")

or

from datasets import load_dataset

load_dataset("eduagarcia/generic_conll", data_files={
      "train": "https://raw.githubusercontent.com/peluz/lener-br/master/leNER-Br/train/train.conll",
      "dev": "https://raw.githubusercontent.com/peluz/lener-br/master/leNER-Br/dev/dev.conll",
      "test": "https://raw.githubusercontent.com/peluz/lener-br/master/leNER-Br/test/test.conll",
  },
  separator=" ",
  tag_index=-1
)
Downloads last month
6