RoyalCities commited on
Commit
94ebbf0
Β·
verified Β·
1 Parent(s): 2b19edf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +136 -5
README.md CHANGED
@@ -1,5 +1,136 @@
1
- ---
2
- license: other
3
- license_name: custom
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: custom
4
+ license_link: LICENSE
5
+ ---
6
+
7
+
8
+ # Vocal Textures Dataset
9
+
10
+ ## Introduction
11
+
12
+ The **Vocal Textures Dataset** is a curated collection of vocal choir audio samples designed to facilitate the fine-tuning of machine learning models, particularly in the domain of audio generation. This dataset is especially useful for hobbyists and researchers who are working on projects related to music production, AI-generated audio, and similar fields.
13
+
14
+ This dataset can be used to train non-commercial models and is structured to make it easy to navigate different types of vocals based on gender, musical key, and tempo. It features standardized file names and can be used out of the box for finetuning with Stable Audio Open.
15
+
16
+ <center>
17
+ <h2 style="font-size: 19px;">Dataset Breakdown</h2>
18
+ </center>
19
+
20
+ <table align="center" style="width: 80%; border-collapse: collapse;">
21
+ <thead>
22
+ <tr>
23
+ <th style="border: 1px solid black; padding: 8px;">Vocal Type</th>
24
+ <th style="border: 1px solid black; padding: 8px;">Major Progression (4 bars)</th>
25
+ <th style="border: 1px solid black; padding: 8px;">Major Progression (8 bars)</th>
26
+ <th style="border: 1px solid black; padding: 8px;">Minor Progression (4 bars)</th>
27
+ <th style="border: 1px solid black; padding: 8px;">Minor Progression (8 bars)</th>
28
+ </tr>
29
+ </thead>
30
+ <tbody>
31
+ <tr>
32
+ <td style="border: 1px solid black; padding: 8px; text-align: center;"><b>Male</b></td>
33
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
34
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
35
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
36
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
37
+ </tr>
38
+ <tr>
39
+ <td style="border: 1px solid black; padding: 8px; text-align: center;"><b>Female</b></td>
40
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
41
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
42
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
43
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
44
+ </tr>
45
+ <tr>
46
+ <td style="border: 1px solid black; padding: 8px; text-align: center;"><b>Ensemble</b></td>
47
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
48
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
49
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
50
+ <td style="border: 1px solid black; padding: 8px; text-align: center;">420</td>
51
+ </tr>
52
+ </tbody>
53
+ </table>
54
+
55
+ ## Dataset Structure
56
+
57
+ The dataset is organized into the following folder structure:
58
+
59
+ ```
60
+ Vocal_Textures_Dataset/
61
+ β”œβ”€β”€ Ensemble/
62
+ β”‚ β”œβ”€β”€ Major/
63
+ β”‚ β”‚ β”œβ”€β”€ 100BPM/
64
+ β”‚ β”‚ β”‚ β”œβ”€β”€ Female Vocal Texture, chord progression, A major, 100BPM, 4 bars.wav
65
+ β”‚ β”‚ β”‚ β”œβ”€β”€ Female Vocal Texture, chord progression, A major, 100BPM, 8 bars.wav
66
+ β”‚ β”‚ β”‚ β”œβ”€β”€ Female Vocal Texture, chord progression, A# major, 100BPM, 4 bars.wav
67
+ β”‚ β”‚ β”œβ”€β”€ 110BPM/ (similar structure as 100BPM)
68
+ β”‚ β”‚ β”œβ”€β”€ 120BPM/ (similar structure as 100BPM)
69
+ β”‚ β”œβ”€β”€ Minor/ (similar structure as Major)
70
+ β”œβ”€β”€ Female/
71
+ β”‚ β”œβ”€β”€ Major/
72
+ β”‚ β”‚ β”œβ”€β”€ 100BPM/ (similar structure as Ensemble > Major)
73
+ β”‚ β”‚ β”œβ”€β”€ 110BPM/ (similar structure as 100BPM)
74
+ β”‚ β”œβ”€β”€ Minor/ (similar structure as Major)
75
+ β”œβ”€β”€ Male/
76
+ β”‚ β”œβ”€β”€ Major/ (similar structure as Ensemble > Major)
77
+ β”‚ β”œβ”€β”€ Minor/ (similar structure as Major)
78
+ ```
79
+
80
+ ### Key Signatures
81
+
82
+ This dataset is balanced in covering all 12-tone key signatures written with *sharps* only.
83
+
84
+ <pre>
85
+ <b>Minor Scales</b>
86
+ A minor, A# minor, B minor, C minor, C# minor, D minor, D# minor,
87
+ E minor, F minor, F# minor, G minor, G# minor
88
+
89
+ <b>Major Scales</b>
90
+ A major, A# major, B major, C major, C# major, D major, D# major,
91
+ E major, F major, F# major, G major, G# major
92
+ </pre>
93
+
94
+ ### BPM and Bars
95
+
96
+ This dataset also features equal coverage in the following BPMs and Bars.
97
+
98
+ <pre>
99
+ <b>BPMs</b>
100
+ 100BPM, 110BPM, 120BPM, 128BPM, 130BPM, 140BPM, 150BPM
101
+
102
+ <b>Bars</b>
103
+ 4 bars, 8 bars
104
+ </pre>
105
+
106
+
107
+ ### Example Files
108
+
109
+ Here are a few example file names from the dataset:
110
+
111
+ - `Female Vocal Texture, chord progression, A major, 100BPM, 4 bars.wav`
112
+ - `Ensemble Vocal Texture, chord progression, B minor, 128PM, 8 bars.wav`
113
+ - `Female Vocal Texture, chord progression, A# major, 110BPM, 4 bars.wav`
114
+ - `Male Vocal Texture, chord progression, D# minor, 140BPM, 8 bars.wav`
115
+
116
+ ## Usage
117
+
118
+ This dataset is ideal for training machine learning models, particularly in the area of audio generation. Below are a few examples of how you might use the dataset:
119
+
120
+ - **Fine-Tuning Models**: Use the audio samples to fine-tune models such as the one available at [RC_Vocal_Textures](https://huggingface.co/RoyalCities/RC_Vocal_Textures).
121
+ - **Music Production**: Producers can use the `.wav` files in their projects, including commercial songs, films, and multimedia projects.
122
+ - **Research and Experimentation**: Ideal for non-commercial research projects exploring AI-generated music or audio synthesis.
123
+
124
+ ## Licensing
125
+
126
+ This dataset is licensed under a **Custom License based on CC BY-NC 4.0**. You may use, share, and adapt the dataset for non-commercial purposes, including the training of machine learning models. The `.wav` files may also be used in commercial creative works such as music production. However, the dataset may not be used for commercial machine learning purposes, including the creation of derivative models intended for commercial use.
127
+
128
+ For the full terms, please refer to the `LICENSE` file included in the dataset.
129
+
130
+ ## Citation
131
+
132
+ If you use this dataset in your research or project, please cite it as follows:
133
+
134
+ ```plaintext
135
+ RoyalCities. (2024). Vocal Textures Dataset. Hugging Face. https://huggingface.co/RoyalCities/RC_Vocal_Textures
136
+ ```