File size: 3,265 Bytes
31bb145 aef3419 d75216b aef3419 351ee0f 3794ef0 30d5177 eeb05df d75216b 351ee0f 95e6cec 3c5da92 fd9eceb 873ba75 fd9eceb 873ba75 fd9eceb 873ba75 fd9eceb 3c5da92 fd9eceb 3c5da92 fd9eceb 3c5da92 fd9eceb 95e6cec eeb05df 95e6cec 1e7bc0f 95e6cec eeb05df |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
---
license: mit
datasets:
- ccmusic-database/chest_falsetto
language:
- en
metrics:
- accuracy
pipeline_tag: audio-classification
tags:
- music
- art
---
# Intro
The design of the chest-falsetto voice discrimination model aims to effectively differentiate between real and synthetic voices in audio samples, with four specific categories including male chest, male falsetto, female chest, and female falsetto voices. The model's training is based on a backbone network from the computer vision (CV) domain, which involves transforming audio data into spectrograms and fine-tuning to enhance the network's accuracy in recognizing different voice categories. During training, a dataset containing both real and synthetic voice samples is utilized to ensure the model adequately learns and captures features relevant to male and female chest and falsetto voices. Through this approach, the model can finely classify different genders and chest/falsetto voices, providing a reliable solution for accurate voice discrimination in audio. This model holds broad potential applications in fields such as speech processing and music production, offering an efficient and precise tool for audio analysis and processing. Its training and fine-tuning strategies based on computer vision principles highlight the model's adaptability and robustness across different domains, providing beneficial examples for further research and application.
## Demo
<https://huggingface.co/spaces/ccmusic-database/chest-falsetto>
## Usage
```python
from modelscope import snapshot_download
model_dir = snapshot_download('ccmusic-database/chest_falsetto')
```
## Maintenance
```bash
GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:ccmusic-database/chest_falsetto
cd chest_falsetto
```
## Results
A fine-tuning result of MaxViT-T on CQT:
<style>
#falsetto td {
vertical-align: middle !important;
text-align: center;
}
#falsetto th {
text-align: center;
}
</style>
<table id="falsetto">
<tr>
<th>Loss curve</th>
<td><img src="https://www.modelscope.cn/models/ccmusic-database/chest_falsetto/resolve/master/maxvit_t_cqt_2024-07-30_17-23-12/loss.jpg"></td>
</tr>
<tr>
<th>Training and validation accuracy</th>
<td><img src="https://www.modelscope.cn/models/ccmusic-database/chest_falsetto/resolve/master/maxvit_t_cqt_2024-07-30_17-23-12/acc.jpg"></td>
</tr>
<tr>
<th>Confusion matrix</th>
<td><img src="https://www.modelscope.cn/models/ccmusic-database/chest_falsetto/resolve/master/maxvit_t_cqt_2024-07-30_17-23-12/mat.jpg"></td>
</tr>
</table>
## Dataset
<https://huggingface.co/datasets/ccmusic-database/chest_falsetto>
## Mirror
<https://www.modelscope.cn/models/ccmusic-database/chest_falsetto>
## Evaluation
<https://github.com/monetjoe/ccmusic_eval>
## Cite
```bibtex
@dataset{zhaorui_liu_2021_5676893,
author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Baoqiang Han},
title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
month = {mar},
year = {2024},
publisher = {HuggingFace},
version = {1.2},
url = {https://huggingface.co/ccmusic-database}
}
``` |