Commit
·
bd60c4e
1
Parent(s):
bb0d401
Update parquet files
Browse files
README.md
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
---
|
2 |
-
dataset_info:
|
3 |
-
features:
|
4 |
-
- name: entity_id
|
5 |
-
dtype: int32
|
6 |
-
- name: name
|
7 |
-
dtype: string
|
8 |
-
- name: short_description
|
9 |
-
dtype: string
|
10 |
-
- name: gender
|
11 |
-
dtype: string
|
12 |
-
- name: country
|
13 |
-
dtype: string
|
14 |
-
- name: occupation
|
15 |
-
dtype: string
|
16 |
-
- name: birth_year
|
17 |
-
dtype: string
|
18 |
-
- name: manner_of_death
|
19 |
-
dtype: string
|
20 |
-
- name: age_of_death
|
21 |
-
dtype: string
|
22 |
-
splits:
|
23 |
-
- name: train
|
24 |
-
num_bytes: 135675467
|
25 |
-
num_examples: 1223009
|
26 |
-
download_size: 54907598
|
27 |
-
dataset_size: 135675467
|
28 |
-
---
|
29 |
-
# Dataset Card for "age_dataset"
|
30 |
-
|
31 |
-
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
age_dataset_generate.py
DELETED
@@ -1,105 +0,0 @@
|
|
1 |
-
#!/usr/bin/env python3
|
2 |
-
# -*- coding: utf-8 -*-
|
3 |
-
import csv
|
4 |
-
import os
|
5 |
-
import shutil
|
6 |
-
import uuid
|
7 |
-
from pathlib import Path
|
8 |
-
from typing import Dict, Iterable
|
9 |
-
|
10 |
-
import datasets
|
11 |
-
from datasets import DatasetDict, DownloadManager, load_dataset
|
12 |
-
from huggingface_hub.repository import Repository
|
13 |
-
|
14 |
-
|
15 |
-
VERSION = datasets.Version("0.0.1")
|
16 |
-
|
17 |
-
AVAILABLE_DATASETS = {
|
18 |
-
'age_dataset': "https://github.com/Moradnejad/AgeDataset"
|
19 |
-
}
|
20 |
-
|
21 |
-
try:
|
22 |
-
import rarfile
|
23 |
-
except ImportError:
|
24 |
-
raise ImportError("Please install rarfile: `pip install rarfile`, to use this dataset")
|
25 |
-
|
26 |
-
class AgeDataset(datasets.GeneratorBasedBuilder):
|
27 |
-
"""AgeDataset dataset."""
|
28 |
-
|
29 |
-
BUILDER_CONFIGS = [
|
30 |
-
datasets.BuilderConfig(
|
31 |
-
name=data_name, version=VERSION, description=f"{data_name} dataset"
|
32 |
-
)
|
33 |
-
for data_name in AVAILABLE_DATASETS
|
34 |
-
]
|
35 |
-
|
36 |
-
@staticmethod
|
37 |
-
def load(data_name_config: str = "age_dataset") -> DatasetDict:
|
38 |
-
ds = load_dataset(__file__, data_name_config)
|
39 |
-
return ds
|
40 |
-
|
41 |
-
def _info(self) -> datasets.DatasetInfo:
|
42 |
-
return datasets.DatasetInfo(
|
43 |
-
description="",
|
44 |
-
features=datasets.Features(
|
45 |
-
{
|
46 |
-
"entity_id": datasets.Value("int32"),
|
47 |
-
"name": datasets.Value("string"),
|
48 |
-
"short_description": datasets.Value("string"),
|
49 |
-
"gender": datasets.Value("string"),
|
50 |
-
"country": datasets.Value("string"),
|
51 |
-
"occupation": datasets.Value("string"),
|
52 |
-
"birth_year": datasets.Value("string"),
|
53 |
-
"manner_of_death": datasets.Value("string"),
|
54 |
-
"age_of_death": datasets.Value("string"),
|
55 |
-
}
|
56 |
-
),
|
57 |
-
supervised_keys=None,
|
58 |
-
homepage="https://github.com/Moradnejad/AgeDataset",
|
59 |
-
citation="https://workshop-proceedings.icwsm.org/pdf/2022_82.pdf",
|
60 |
-
)
|
61 |
-
|
62 |
-
def _split_generators(
|
63 |
-
self, dl_manager: DownloadManager
|
64 |
-
) -> Iterable[datasets.SplitGenerator]:
|
65 |
-
git_repo = AVAILABLE_DATASETS[self.config.name]
|
66 |
-
current_dir = Path(__file__).resolve().parent
|
67 |
-
temp_dir = current_dir / uuid.uuid4().hex
|
68 |
-
temp_dir.mkdir(exist_ok=True)
|
69 |
-
# Repository(local_dir=str(temp_dir), clone_from=git_repo)
|
70 |
-
os.system(f"cd {temp_dir} && git clone {git_repo}")
|
71 |
-
shutil.copy(temp_dir / "AgeDataset" / "AgeDataset.rar", current_dir)
|
72 |
-
shutil.rmtree(f"{temp_dir}")
|
73 |
-
filepath = str(current_dir / "AgeDataset.rar")
|
74 |
-
filepath = os.path.join(dl_manager.download_and_extract(filepath), "AgeDataset.csv")
|
75 |
-
|
76 |
-
# There is no predefined train/val/test split for this dataset.
|
77 |
-
return [
|
78 |
-
datasets.SplitGenerator(
|
79 |
-
name=datasets.Split.TRAIN,
|
80 |
-
gen_kwargs={
|
81 |
-
"filepath": filepath,
|
82 |
-
},
|
83 |
-
),
|
84 |
-
]
|
85 |
-
|
86 |
-
def _generate_examples(self, filepath: str) -> Iterable[Dict]:
|
87 |
-
with open(filepath, encoding="utf-8") as f_in:
|
88 |
-
csv_reader = csv.reader(
|
89 |
-
f_in,
|
90 |
-
delimiter=",",
|
91 |
-
)
|
92 |
-
for idx, row in enumerate(csv_reader):
|
93 |
-
if idx == 0:
|
94 |
-
continue
|
95 |
-
yield idx, {
|
96 |
-
"entity_id": idx,
|
97 |
-
"name": row[0],
|
98 |
-
"short_description": row[1],
|
99 |
-
"gender": row[2],
|
100 |
-
"country": row[3],
|
101 |
-
"occupation": row[4],
|
102 |
-
"birth_year": row[5],
|
103 |
-
"manner_of_death": row[6],
|
104 |
-
"age_of_death": row[7],
|
105 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/train-00000-of-00001-e6cf6286aa049cd4.parquet → bstds--age_dataset/parquet-train.parquet
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db64c127d14fd6a71b6cd2efa527c00f1b7fa59117616c486fa11db69f23051a
|
3 |
+
size 54908863
|