leenag commited on
Commit
b09e54b
1 Parent(s): a3d7b00

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Corpus dependent Acoustic-to-Articulatory Inversion Model
2
+
3
+ ## Model Overview
4
+ This model performs corpus dependent Acoustic-to-Articulatory Inversion (AAI), predicting articulatory trajectories from acoustic features. This model trained in the simultaneously recorded speech and Electromagnetic Articulography (EMA) datasets of speakers of one corpus and tested in other speakers of the same corpus. The neural network is built using PyTorch and leverages BiLSTM (Bidirectional Long Short-Term Memory) layers to capture temporal dependencies in the acoustic data. CNN is used used to smooth the predicted trajectories to make it natural. The input is composed of multi-frame MFCC (Mel-Frequency Cepstral Coefficients) features, and the output is a set of predicted articulatory positions over time.
5
+
6
+ ## Intended Use
7
+ The model is designed for speech researchers and professionals who are interested in understanding the relationship between speech acoustics and articulatory movements. It can be applied in linguistic research, speech synthesis, and speech therapy.
8
+
9
+ ### Use Cases
10
+ 1. **Speech Analysis:** To study how different speech sounds relate to articulatory positions.
11
+ 2. **Speech Synthesis:** As a part of systems generating speech from articulatory features.
12
+ 3. **Speech Therapy:** Analyzing articulatory trajectories for individuals with speech disorders.
13
+
14
+ # Dependencies
15
+ - python 3.7.3
16
+ - numpy 1.16.3
17
+ - pytorch 1.1.0
18
+ - scipy 1.2.1
19
+ - librosa 0.6.3
20
+ - matplotlib
21
+ - psutil
22
+
23
+ # Trained Datasets
24
+ We used three speakers of MOCHA dataset for training and one speakers for testing, Trained dataset is:
25
+ - mocha : http://data.cstr.ed.ac.uk/mocha/ <br/>
26
+
27
+ ## Model Architecture
28
+ - **Hidden Dimension:** 400
29
+ - **Input Dimension:** 429 (acoustic features per frame)
30
+ - **Output Dimension:** 16 (articulatory trajectories)
31
+ - **Batch Size:** 8
32
+ - **BiLSTM Layers:** 2 bidirectional LSTM layers
33
+ - **CNN:** 1DCNN
34
+ - **Linear Layers:** Input and output layers with batch normalization
35
+
36
+ The architecture is designed to accommodate smoothing of articulatory in preprocessing with customizable cutoff frequencies.
37
+
38
+ ## Model Training
39
+ - **Optimizer:** Adam
40
+ - **Loss Functions:** Combination of RMSE and Pearson correlation to capture both error minimization and correlation maximization.
41
+ - **Training Procedure:** Early stopping based on validation loss was employed to prevent overfitting, with periodic adjustments of learning rate if the validation loss increased.
42
+ - **Epochs:** Trained over multiple epochs with batch updates and dynamic learning rate adjustments.
43
+
44
+ ## Evaluation
45
+
46
+ The model was evaluated on a separate test set, with metrics such as RMSE (Root Mean Square Error) and Pearson correlation used to quantify performance. To test this model in the command line :
47
+
48
+ python test.py "mjjn0" "cross_dependent"
49
+
50
+ "mjjn0" indicates the MOCHA test speaker and cross_dependent is the model name
51
+
52
+ The evaluation result is:
53
+
54
+ -**RMSE:** 0.904
55
+ -**PCC:** 0.721
56
+
57
+
58
+