Update README.md
Browse files
README.md
CHANGED
@@ -19,19 +19,19 @@ Welcome to Team 3's Tone Evaluation project! This repository contains the necess
|
|
19 |
|
20 |
## Project Structure
|
21 |
|
22 |
-
- **Data Processing File**: [
|
23 |
- This script is responsible for processing the raw data and preparing it for training and testing.
|
24 |
- It takes input audio in wav format, and transfer audio into mel spectrum form and fundamental frequency form. These will be the two main features for the model to analyze.
|
25 |
- We convert the pinyin and tone into numerical lables by providing a text file and link each pinyin to a index.
|
26 |
|
27 |
-
- **Train File**: [train.py](/
|
28 |
- This file contains the code for training our tone evaluation model. We use CNN+CTC model for this task.
|
29 |
|
30 |
-
- **Test File**: [test.py](/
|
31 |
- Use this script to evaluate the performance of our trained model on test data.
|
32 |
- Currenty, we set the model to only accepct wav format audio, and after loading the audio, model will predict the tone sequence for the sentence.
|
33 |
|
34 |
-
- **UI Demo**: [
|
35 |
- Explore the user interface demo to interact with the tone evaluation model.
|
36 |
- You can upload wav format audio to our UI and see the evaluation result. We also provided some audio files for you to directly use.
|
37 |
|
@@ -42,7 +42,7 @@ We provide two versions of the dataset:
|
|
42 |
- **Full Size Version**: Download from Kaggle [full_dataset](https://huggingface.co/datasets/CS5647Team3/full_dataset)
|
43 |
- **Small Size Zip Version**: Zip file, Download from [data_mini](https://huggingface.co/datasets/CS5647Team3/data_mini)
|
44 |
|
45 |
-
Additionally, we offer a text file for Pinyin encoding: [
|
46 |
|
47 |
## Getting Started
|
48 |
|
@@ -57,6 +57,14 @@ Follow these steps to get started with our project:
|
|
57 |
## Additional Information
|
58 |
|
59 |
|
60 |
-
- If you encounter any issues or have questions, feel free to reach out to our team through
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
We hope you find our project useful and insightful! Happy coding!
|
|
|
19 |
|
20 |
## Project Structure
|
21 |
|
22 |
+
- **Data Processing File**: [dataset.py](https://huggingface.co/spaces/CS5647Team3/Mandarin_Tone_Evaluation/blob/main/dataset.py)
|
23 |
- This script is responsible for processing the raw data and preparing it for training and testing.
|
24 |
- It takes input audio in wav format, and transfer audio into mel spectrum form and fundamental frequency form. These will be the two main features for the model to analyze.
|
25 |
- We convert the pinyin and tone into numerical lables by providing a text file and link each pinyin to a index.
|
26 |
|
27 |
+
- **Train File**: [train.py](https://huggingface.co/spaces/CS5647Team3/Mandarin_Tone_Evaluation/blob/main/train.py)
|
28 |
- This file contains the code for training our tone evaluation model. We use CNN+CTC model for this task.
|
29 |
|
30 |
+
- **Test File**: [test.py](https://huggingface.co/spaces/CS5647Team3/Mandarin_Tone_Evaluation/blob/main/test.py)
|
31 |
- Use this script to evaluate the performance of our trained model on test data.
|
32 |
- Currenty, we set the model to only accepct wav format audio, and after loading the audio, model will predict the tone sequence for the sentence.
|
33 |
|
34 |
+
- **UI Demo**: [ui_space](https://huggingface.co/spaces/CS5647Team3/Mandarin_Tone_Evaluation)
|
35 |
- Explore the user interface demo to interact with the tone evaluation model.
|
36 |
- You can upload wav format audio to our UI and see the evaluation result. We also provided some audio files for you to directly use.
|
37 |
|
|
|
42 |
- **Full Size Version**: Download from Kaggle [full_dataset](https://huggingface.co/datasets/CS5647Team3/full_dataset)
|
43 |
- **Small Size Zip Version**: Zip file, Download from [data_mini](https://huggingface.co/datasets/CS5647Team3/data_mini)
|
44 |
|
45 |
+
Additionally, we offer a text file for Pinyin encoding: [pinyin.txt](https://huggingface.co/spaces/CS5647Team3/Mandarin_Tone_Evaluation/blob/main/pinyin.txt). This file is crucial for understanding the encoding used in our dataset.
|
46 |
|
47 |
## Getting Started
|
48 |
|
|
|
57 |
## Additional Information
|
58 |
|
59 |
|
60 |
+
- If you encounter any issues or have questions, feel free to reach out to our team through emails.
|
61 |
+
- Dataset and preprocessing
|
62 |
+
- Shen Siyan [email protected]
|
63 |
+
- Ouyang Yanjia [email protected]
|
64 |
+
- Model Training
|
65 |
+
- Zhao Zhengkai
|
66 | |
67 |
+
- Liu Mingxuan
|
68 | |
69 |
|
70 |
We hope you find our project useful and insightful! Happy coding!
|