-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConstant.py
More file actions
28 lines (28 loc) · 969 Bytes
/
Constant.py
File metadata and controls
28 lines (28 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 数据集路径
DATA_PATH = r"E:\文档_学习_高中\活动杂项\AiVocal\dataset"
# DATA_PATH = "./"
DATASET_PATH = "./dataset/"
REPORTS_PATH = "./reports/"
USE_PATH = "./data/"
Languages = ["Chinese"]
L_Singer = [r"Chinese\ZH-Alto-1", # 0
r"Chinese\ZH-Tenor-1", # 1
r"English\EN-Alto-1", # 2
r"English\EN-Alto-2",
r"English\EN-Tenor-1", # 4
r"French\FR-Soprano-1",
r"French\FR-Tenor-1",
r"German\DE-Soprano-1",
r"German\DE-Tenor-1",
r"Italian\IT-Bass-1",
r"Italian\IT-Bass-2",
r"Italian\IT-Soprano-1",
r"Japanese\JA-Soprano-1",
r"Japanese\JA-Tenor-1",
r"Korean\KO-Soprano-1",
r"Korean\KO-Soprano-2",
r"Korean\KO-Tenor-1",
r"Russian\RU-Alto-1",
r"Spanish\ES-Bass-1",
r"Spanish\ES-Soprano-1"
]