예제 #1
0
def load_depositions_train(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_DEPOSITIONS_TRAIN_REMAPPED, with_labels)
    corpus.name = "1641_train"
    return corpus
예제 #2
0
def load_aida_train(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_AIDA_WIKIDATA_TRAIN, with_labels)
    corpus.name = "aida_train"
    return corpus
예제 #3
0
def load_depositions_test_raw(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_DEPOSITIONS_TEST, with_labels)
    corpus.name = "1641_test"
    return corpus
예제 #4
0
def load_wwo_test(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_WWO_TEST, with_labels)
    corpus.name = "wwo_test"
    return corpus
예제 #5
0
def load_wwo_dev(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_WWO_DEV, with_labels)
    corpus.name = "wwo_dev"
    return corpus
예제 #6
0
def load_wwo_train(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_WWO_TRAIN, with_labels)
    corpus.name = "wwo_train"
    return corpus
예제 #7
0
def load_aida_test(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_AIDA_WIKIDATA_TEST, with_labels)
    corpus.name = "aida_test"
    return corpus
예제 #8
0
def load_aida_dev(with_labels: bool = True) -> Corpus:
    corpus = read_conllel(PATH_AIDA_WIKIDATA_DEV, with_labels)
    corpus.name = "aida_dev"
    return corpus