admin commited on
Commit
eb9905a
·
1 Parent(s): b1738a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -12,7 +12,15 @@ tags:
12
  - art
13
  ---
14
 
 
 
15
  ## Maintenance
16
  ```bash
17
  GIT_LFS_SKIP_SMUDGE=1 git clone [email protected]:ccmusic-database/music_genre
18
- ```
 
 
 
 
 
 
 
12
  - art
13
  ---
14
 
15
+ The music genre classification model is fine-tuned based on a pre-trained model from the computer vision (CV) domain, aiming to classify audio data into different genres. During the pre-training phase, the model learns rich feature representations using a large-scale dataset from computer vision tasks. Through transfer learning, these learned features are applied to the music genre classification task to enhance the model's performance on audio data. In the fine-tuning phase, an audio dataset containing 16 music genre categories is utilized. These audio samples are first transformed into spectrograms, converting the temporal audio signal into a two-dimensional representation in the time and frequency dimensions. The spectrogram representation captures the temporal evolution of different audio frequencies, providing the model with rich information about the audio content. Through fine-tuning, adjustments are made to the pre-trained model to meet the requirements of the music genre classification task. The model learns to extract features from spectrograms that are relevant to music genre, enabling accurate classification of audio samples. This process enables the model to recognize and infer music genres, such as rock, classical, pop, among others. By combining a pre-trained model from the computer vision domain with an audio task, this approach leverages cross-modal knowledge transfer, demonstrating the adaptability and effectiveness of pre-trained models across different domains.
16
+
17
  ## Maintenance
18
  ```bash
19
  GIT_LFS_SKIP_SMUDGE=1 git clone [email protected]:ccmusic-database/music_genre
20
+ ```
21
+
22
+ ## Mirror
23
+ <https://www.modelscope.cn/models/ccmusic/music_genre>
24
+
25
+ ## Reference
26
+ [1] <https://github.com/monet-joe/ccmusic_clstask_eval>