Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.56 KB

File metadata and controls

18 lines (15 loc) · 1.56 KB

Genshin Impact Character Voice Model (ASR)

Model aiming to identify and differentiate Genshin Impact character voices, and be able to predict which Genshin character has the most similar voice to that in an uploaded file.

Key files:

  • playground_model.ipynb: Model notebook to play around with and upload voice files to match with Genshin characters.
  • preprocessing.ipynb
  • processing+nn.ipynb: Feature extraction with Deep Neural Networks with Wav2Vec2
  • processing_lr.ipynb: Feature extraction with Logistic Regression with Wav2Vec2
  • processing_mfcc.ipynb: Feature extraction with DNN with MFCC's
  • processing_custom.ipynb: Feature extraction with DNN with Pitch and Formants

Relevant Links

If you want to rerun this project, I would highly recommend for you to create a characters folder with all of the voice lines from their respective characters from the preprocessing notebook. I would also recommend to check out the project in the following order: preprocessing --> processing_lr --> processing+nn --> processing_mfcc --> processing_custom --> playground_model.