The dataset viewer is not available for this dataset.
The dataset viewer doesn't support this dataset because it runs arbitrary python code. Please open a discussion in the discussion tab if you think this is an error and tag @lhoestq and @severo.
Error code:   DatasetWithScriptNotSupportedError

Need help to make the dataset viewer work? Open a discussion for direct support.

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
0
Edit dataset card