Instructions to use MonoHime/meld-emo-intermodal with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MonoHime/meld-emo-intermodal with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="MonoHime/meld-emo-intermodal")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("MonoHime/meld-emo-intermodal") model = AutoModel.from_pretrained("MonoHime/meld-emo-intermodal") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,7 @@ tags:
|
|
| 9 |
- multiclass
|
| 10 |
- emotion
|
| 11 |
- multimodal
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
-
-
|
|
|
|
| 9 |
- multiclass
|
| 10 |
- emotion
|
| 11 |
- multimodal
|
| 12 |
+
---
|
| 13 |
|
| 14 |
+
# Usage
|
| 15 |
+
This repository contains only trained weights for model. For initialization and use example see [this repository](https://github.com/T-Sh/EmoSentiRecognition).
|