Update README.md

This commit is contained in:
ecibelli
2016-06-27 11:18:21 -05:00
committed by GitHub
parent bd9b0b040b
commit 99081e441a
+10 -9
View File
@@ -4,23 +4,24 @@ DeepFormants
Shua Dissen (shua.dissen@gmail.com)
Joseph Keshet (joseph.keshet@biu.ac.il)
Formant Tracking & Estimation
Formant Tracking and Estimation
DeepFormants is a software package for formant tracking $and; estimation, using two algorithms based on deep networks. It works as follows:
* The user provides wav file
* Optionally the user can provide a start and an end times in seconds
* A classifer is
This is a beta version of Autovot. Any reports of bugs, comments on how to improve the software or documentation, or questions are greatly appreciated, and should be sent to the authors at the addresses given above.
DeepFormants is a software package for formant tracking and estimation, using two algorithms based on deep networks. It works as follows:
* The user provides a wav file with a stop-initial consonant.
* Optionally, the user can designate a window for estimation by providing a start and end time (specified in seconds).
* A classifer is used to estimate the formants in the file, with two modes:
* Estimation: If a time window is specified, a single estimate is made for F1-F3 within that window.
* Tracking: If no time window is given, the model will track F1-F3 and give a measurement at every 10 milliseconds across the lenght of the file.
This is a beta version of DeepFormants. Any reports of bugs, comments on how to improve the software or documentation, or questions are greatly appreciated, and should be sent to the authors at the addresses given above.
How to use:
For vowel formant estimation call the main script in a terminal with the wav file, formant output filename and the vowel begin and end times
For vowel formant estimation, call the main script in a terminal with the following inputs: wav file, formant output filename, and the vowel begin and end times:
```Ex: $ python formants.py Example.wav examplePredictions --begin 1.2 --end 1.3```
For formant tracking just call the script with the wav file and output filename and it will return the formants for the whole wav file every 10 ms
For formant tracking, just call the script with the wav file and output filename:
```Ex: $ python formants.py Example.wav examplePredictions```