Chinese Speaker Recognition Based on TensorFlow 2
2021-07-06
225 views
TensorFlow
深度学习
语音
Tensorflow
Deep Learning
Voiceprint Recognition
Chinese Voiceprint Recognition
ArcFace
This project well demonstrates how to use deep learning models for voiceprint recognition and voiceprint comparison. Below, I will optimize and improve the code and provide some suggestions to better implement these functions. ### 1. Project Structure First, ensure the project directory structure is clear and easy to understand, for example: ``` VoiceprintRecognition/ ├── data/ │ ├── train_data/ │ │ └── user_01.wav │ ├── test_ ``` (Note: The original input was cut off at "test_", so the translation includes the visible portion only.)
Read More