Class WordLevelTimingResult
- java.lang.Object
-
- com.microsoft.cognitiveservices.speech.TimingResult
-
- com.microsoft.cognitiveservices.speech.WordLevelTimingResult
-
public final class WordLevelTimingResult extends TimingResult
Contains the word level timing results of a recognition operation. Added in version 1.21.0.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAccuracyScore()Gets the pronunciation assessment accuracy score.StringgetErrorType()Gets the pronunciation assessment error type.List<PhonemeLevelTimingResult>getPhonemes()Gets the phoneme level timing results.List<SyllableLevelTimingResult>getSyllables()Gets the syllable level timing results.StringgetWord()Gets the word.-
Methods inherited from class com.microsoft.cognitiveservices.speech.TimingResult
getDuration, getOffset
-
-
-
-
Method Detail
-
getWord
public String getWord()
Gets the word.- Returns:
- The word.
-
getAccuracyScore
public double getAccuracyScore()
Gets the pronunciation assessment accuracy score.- Returns:
- The accuracy score.
-
getErrorType
public String getErrorType()
Gets the pronunciation assessment error type.- Returns:
- The error type.
-
getPhonemes
public List<PhonemeLevelTimingResult> getPhonemes()
Gets the phoneme level timing results.- Returns:
- The phoneme level timing results.
-
getSyllables
public List<SyllableLevelTimingResult> getSyllables()
Gets the syllable level timing results.- Returns:
- The syllable level timing results.
-
-