Package com.oto.deeptonesdk

Types

ArousalPrediction
Link copied to clipboard
data class ArousalPrediction(high: Float, low: Float, neutral: Float)
DeeptoneOutput
Link copied to clipboard
data class DeeptoneOutput(arousal: MutableList<ArousalPrediction>, emotions: MutableList<EmotionPrediction>, gender: MutableList<GenderPrediction>, identity: MutableList<FloatArray>, speech: MutableList<SpeechPrediction>, speechRT: MutableList<SpeechRTPrediction>)
An output of Deeptone™ predictionsDeeptone™ predictions identified by model for the given audio data.
DeeptoneSDK
Link copied to clipboard
class DeeptoneSDK(key: String, modelFileStream: InputStream)
Base class which provides methods to handle processing of audio data into DeeptoneOutput.
EmotionPrediction
Link copied to clipboard
data class EmotionPrediction(happy: Float, irritated: Float, neutral: Float, tired: Float)
GenderPrediction
Link copied to clipboard
data class GenderPrediction(gender: Float)
SpeechPrediction
Link copied to clipboard
data class SpeechPrediction(music: Float, other: Float, speech: Float)
SpeechRTPrediction
Link copied to clipboard
data class SpeechRTPrediction(music: Float, other: Float, speech: Float)