Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

datasets: update url for GermEval 2014 instructions #1821

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flair/datasets/sequence_labeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def __init__(
):
"""
Initialize the GermEval NER corpus for German. This is only possible if you've manually downloaded it to your
machine. Obtain the corpus from https://sites.google.com/site/germeval2014ner/home/ and put it into some folder.
machine. Obtain the corpus from https://sites.google.com/site/germeval2014ner/data and put it into some folder.
Then point the base_path parameter in the constructor to this folder
:param base_path: Path to the GermEval corpus on your machine
:param tag_to_bioes: 'ner' by default, should not be changed.
Expand All @@ -690,7 +690,7 @@ def __init__(
log.warning("-" * 100)
log.warning(f'WARNING: GermEval-14 dataset not found at "{data_folder}".')
log.warning(
'Instructions for obtaining the data can be found here: https://sites.google.com/site/germeval2014ner/home/"'
'Instructions for obtaining the data can be found here: https://sites.google.com/site/germeval2014ner/data"'
)
log.warning("-" * 100)
super(GERMEVAL_14, self).__init__(
Expand Down