danilotpnta commited on
Commit
9e4081e
1 Parent(s): 6195b96

Delete loading script

Browse files
Files changed (1) hide show
  1. GTZAN_genre_classification.py +0 -114
GTZAN_genre_classification.py DELETED
@@ -1,114 +0,0 @@
1
- import os
2
- import csv
3
- import datasets
4
-
5
- logger = datasets.logging.get_logger(__name__)
6
-
7
- _CITATION = """\
8
- @misc{gtzan2023,
9
- title={GTZAN Music Genre Classification Dataset},
10
- author={Your Name},
11
- year={2023},
12
- url={https://example.com},
13
- }
14
- """
15
-
16
- _DESCRIPTION = """\
17
- The GTZAN dataset is a music genre classification dataset.
18
- It consists of 10 genres, each represented by 100 tracks.
19
- """
20
-
21
- _HOMEPAGE_URL = "https://example.com"
22
- _DATA_URL = "data/gtzan.zip"
23
-
24
- class GTZANConfig(datasets.BuilderConfig):
25
- """BuilderConfig for GTZAN"""
26
-
27
- def __init__(self, **kwargs):
28
- super(GTZANConfig, self).__init__(**kwargs)
29
-
30
-
31
- class GTZAN(datasets.GeneratorBasedBuilder):
32
- BUILDER_CONFIGS = [
33
- GTZANConfig(name="gtzan", version=datasets.Version("1.0.0"), description="GTZAN Music Genre Classification Dataset")
34
- ]
35
-
36
- def _info(self):
37
- return datasets.DatasetInfo(
38
- description=_DESCRIPTION,
39
- features=datasets.Features(
40
- {
41
- "id": datasets.Value("int32"),
42
- "genre": datasets.Value("string"),
43
- "title": datasets.Value("string"),
44
- "artist": datasets.Value("string"),
45
- "tempo": datasets.Value("float"),
46
- "keys": datasets.Value("string"),
47
- "loudness": datasets.Value("float"),
48
- "sorted_pred_genres": datasets.Value("string"),
49
- "x_tsne": datasets.Value("float"),
50
- "y_tsne": datasets.Value("float"),
51
- "z_tsne": datasets.Value("float"),
52
- "x_umap": datasets.Value("float"),
53
- "y_umap": datasets.Value("float"),
54
- "z_umap": datasets.Value("float"),
55
- "album_cover_path": datasets.Value("string"),
56
- "key": datasets.Value("string"),
57
- "filepath": datasets.Value("string"),
58
- }
59
- ),
60
- supervised_keys=("genre", "title"),
61
- homepage=_HOMEPAGE_URL,
62
- citation=_CITATION,
63
- )
64
-
65
- def _split_generators(self, dl_manager):
66
- archive_path = dl_manager.download_and_extract(_DATA_URL)
67
- data_dir = os.path.join(archive_path, "gtzan")
68
-
69
- # Debugging the paths
70
- logger.info(f"Archive path: {archive_path}")
71
- logger.info(f"Data directory: {data_dir}")
72
-
73
- return [
74
- datasets.SplitGenerator(
75
- name=datasets.Split.TRAIN,
76
- gen_kwargs={
77
- "metadata_file": os.path.join(data_dir, "metadata.csv"),
78
- "data_dir": data_dir,
79
- },
80
- ),
81
- ]
82
-
83
- def _generate_examples(self, metadata_file, data_dir):
84
- with open(metadata_file, "r", encoding="utf-8") as f:
85
- reader = csv.DictReader(f)
86
- for id_, row in enumerate(reader):
87
- # Correct the file paths by removing the 'data/' prefix
88
- file_path = os.path.join(data_dir, row["filepath"].replace("data/gtzan/", ""))
89
- album_cover_path = os.path.join(data_dir, row["album_cover_path"].replace("data/gtzan/", ""))
90
-
91
- # Debugging the file paths
92
- logger.info(f"Processing file: {file_path}")
93
- if not os.path.exists(file_path):
94
- logger.error(f"File not found: {file_path}")
95
-
96
- yield id_, {
97
- "id": int(row["id"]),
98
- "genre": row["genre"],
99
- "title": row["title"],
100
- "artist": row["artist"],
101
- "tempo": float(row["tempo"]),
102
- "keys": row["keys"],
103
- "loudness": float(row["loudness"]),
104
- "sorted_pred_genres": row["sorted_pred_genres"],
105
- "x_tsne": float(row["x_tsne"]),
106
- "y_tsne": float(row["y_tsne"]),
107
- "z_tsne": float(row["z_tsne"]),
108
- "x_umap": float(row["x_umap"]),
109
- "y_umap": float(row["y_umap"]),
110
- "z_umap": float(row["z_umap"]),
111
- "album_cover_path": album_cover_path,
112
- "key": row["key"],
113
- "filepath": file_path,
114
- }