Overview of the CMU-MOSI dataset
mainThe CMU-Multimodal Opinion Sentiment Intensity (MOSI) dataset is used for sentiment analysis tasks. Key characteristics include:
- Content: 93 videos featuring 89 distinct speakers, all discussing movie reviews.
- Structure: Each video contains exactly one speaker.
- Balance: The dataset is approximately gender-balanced.
- Sentiment Scoring: Scores range from -3 (extremely negative) to 3 (extremely positive).
- Sentiment Binarization:
- Traditional approach: Negative is defined as
score < 0; non-negative isscore >= 0. - Modern approach (post-2019): Negative is
score < 0; positive isscore > 0. Values equal to zero are treated separately. This newer method typically yields higher accuracy.
- Traditional approach: Negative is defined as
- 7-class Sentiment: Discretized range [-3, 3] is achieved using the
roundfunction.