asahi417 commited on
Commit
d6a858c
1 Parent(s): bab9bce

Update conceptnet_high_confidence.py

Browse files
Files changed (1) hide show
  1. conceptnet_high_confidence.py +2 -1
conceptnet_high_confidence.py CHANGED
@@ -4,7 +4,7 @@ import datasets
4
  logger = datasets.logging.get_logger(__name__)
5
  _DESCRIPTION = """[ConceptNet with high confidence](https://home.ttic.edu/~kgimpel/commonsense.html)"""
6
  _NAME = "conceptnet_high_confidence"
7
- _VERSION = "1.0.2"
8
  _CITATION = """
9
  @inproceedings{li-16,
10
  title = {Commonsense Knowledge Base Completion},
@@ -33,6 +33,7 @@ _URL = f'https://huggingface.co/datasets/relbert/{_NAME}/raw/main/dataset'
33
  _URLS = {
34
  str(datasets.Split.TRAIN): [f'{_URL}/train.jsonl'],
35
  str(datasets.Split.VALIDATION): [f'{_URL}/valid.jsonl'],
 
36
  }
37
 
38
 
 
4
  logger = datasets.logging.get_logger(__name__)
5
  _DESCRIPTION = """[ConceptNet with high confidence](https://home.ttic.edu/~kgimpel/commonsense.html)"""
6
  _NAME = "conceptnet_high_confidence"
7
+ _VERSION = "2.0.0"
8
  _CITATION = """
9
  @inproceedings{li-16,
10
  title = {Commonsense Knowledge Base Completion},
 
33
  _URLS = {
34
  str(datasets.Split.TRAIN): [f'{_URL}/train.jsonl'],
35
  str(datasets.Split.VALIDATION): [f'{_URL}/valid.jsonl'],
36
+ "full": [f'{_URL}/valid.jsonl', f'{_URL}/train.jsonl'],
37
  }
38
 
39