Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
topic-classification
Languages:
English
Size:
100K - 1M
ArXiv:
License:
Commit
•
faea15e
1
Parent(s):
3144f92
Convert dataset to Parquet
Browse filesConvert dataset to Parquet.
- README.md +10 -2
- dataset_infos.json +63 -1
- dbpedia_14/test-00000-of-00001.parquet +3 -0
- dbpedia_14/train-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -20,6 +20,7 @@ task_ids:
|
|
20 |
paperswithcode_id: dbpedia
|
21 |
pretty_name: DBpedia
|
22 |
dataset_info:
|
|
|
23 |
features:
|
24 |
- name: label
|
25 |
dtype:
|
@@ -43,7 +44,6 @@ dataset_info:
|
|
43 |
dtype: string
|
44 |
- name: content
|
45 |
dtype: string
|
46 |
-
config_name: dbpedia_14
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 178428970
|
@@ -51,8 +51,16 @@ dataset_info:
|
|
51 |
- name: test
|
52 |
num_bytes: 22310285
|
53 |
num_examples: 70000
|
54 |
-
download_size:
|
55 |
dataset_size: 200739255
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
---
|
57 |
|
58 |
# Dataset Card for DBpedia14
|
|
|
20 |
paperswithcode_id: dbpedia
|
21 |
pretty_name: DBpedia
|
22 |
dataset_info:
|
23 |
+
config_name: dbpedia_14
|
24 |
features:
|
25 |
- name: label
|
26 |
dtype:
|
|
|
44 |
dtype: string
|
45 |
- name: content
|
46 |
dtype: string
|
|
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 178428970
|
|
|
51 |
- name: test
|
52 |
num_bytes: 22310285
|
53 |
num_examples: 70000
|
54 |
+
download_size: 119424374
|
55 |
dataset_size: 200739255
|
56 |
+
configs:
|
57 |
+
- config_name: dbpedia_14
|
58 |
+
data_files:
|
59 |
+
- split: train
|
60 |
+
path: dbpedia_14/train-*
|
61 |
+
- split: test
|
62 |
+
path: dbpedia_14/test-*
|
63 |
+
default: true
|
64 |
---
|
65 |
|
66 |
# Dataset Card for DBpedia14
|
dataset_infos.json
CHANGED
@@ -1 +1,63 @@
|
|
1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"dbpedia_14": {
|
3 |
+
"description": "The DBpedia ontology classification dataset is constructed by picking 14 non-overlapping classes\nfrom DBpedia 2014. They are listed in classes.txt. From each of thse 14 ontology classes, we\nrandomly choose 40,000 training samples and 5,000 testing samples. Therefore, the total size\nof the training dataset is 560,000 and testing dataset 70,000.\nThere are 3 columns in the dataset (same for train and test splits), corresponding to class index\n(1 to 14), title and content. The title and content are escaped using double quotes (\"), and any\ninternal double quote is escaped by 2 double quotes (\"\"). There are no new lines in title or content.\n",
|
4 |
+
"citation": "@article{lehmann2015dbpedia,\n title={DBpedia--a large-scale, multilingual knowledge base extracted from Wikipedia},\n author={Lehmann, Jens and Isele, Robert and Jakob, Max and Jentzsch, Anja and Kontokostas,\n Dimitris and Mendes, Pablo N and Hellmann, Sebastian and Morsey, Mohamed and Van Kleef,\n Patrick and Auer, S{\"o}ren and others},\n journal={Semantic web},\n volume={6},\n number={2},\n pages={167--195},\n year={2015},\n publisher={IOS Press}\n}\n",
|
5 |
+
"homepage": "https://wiki.dbpedia.org/develop/datasets",
|
6 |
+
"license": "Creative Commons Attribution-ShareAlike 3.0 and the GNU Free Documentation License",
|
7 |
+
"features": {
|
8 |
+
"label": {
|
9 |
+
"names": [
|
10 |
+
"Company",
|
11 |
+
"EducationalInstitution",
|
12 |
+
"Artist",
|
13 |
+
"Athlete",
|
14 |
+
"OfficeHolder",
|
15 |
+
"MeanOfTransportation",
|
16 |
+
"Building",
|
17 |
+
"NaturalPlace",
|
18 |
+
"Village",
|
19 |
+
"Animal",
|
20 |
+
"Plant",
|
21 |
+
"Album",
|
22 |
+
"Film",
|
23 |
+
"WrittenWork"
|
24 |
+
],
|
25 |
+
"_type": "ClassLabel"
|
26 |
+
},
|
27 |
+
"title": {
|
28 |
+
"dtype": "string",
|
29 |
+
"_type": "Value"
|
30 |
+
},
|
31 |
+
"content": {
|
32 |
+
"dtype": "string",
|
33 |
+
"_type": "Value"
|
34 |
+
}
|
35 |
+
},
|
36 |
+
"builder_name": "dbpedia_14",
|
37 |
+
"dataset_name": "dbpedia_14",
|
38 |
+
"config_name": "dbpedia_14",
|
39 |
+
"version": {
|
40 |
+
"version_str": "2.0.0",
|
41 |
+
"major": 2,
|
42 |
+
"minor": 0,
|
43 |
+
"patch": 0
|
44 |
+
},
|
45 |
+
"splits": {
|
46 |
+
"train": {
|
47 |
+
"name": "train",
|
48 |
+
"num_bytes": 178428970,
|
49 |
+
"num_examples": 560000,
|
50 |
+
"dataset_name": null
|
51 |
+
},
|
52 |
+
"test": {
|
53 |
+
"name": "test",
|
54 |
+
"num_bytes": 22310285,
|
55 |
+
"num_examples": 70000,
|
56 |
+
"dataset_name": null
|
57 |
+
}
|
58 |
+
},
|
59 |
+
"download_size": 119424374,
|
60 |
+
"dataset_size": 200739255,
|
61 |
+
"size_in_bytes": 320163629
|
62 |
+
}
|
63 |
+
}
|
dbpedia_14/test-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05fed41640e97f93ffd442757f6a84170348cf0c7500ecbda9e95ddcd928c631
|
3 |
+
size 13272475
|
dbpedia_14/train-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0640e4664a99cc94c47db1d7b2e01c14455d5bbecb8183ad1f93bde59f3f28ee
|
3 |
+
size 106151899
|