liamto commited on
Commit
324f3c1
·
verified ·
1 Parent(s): b199f87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -3
README.md CHANGED
@@ -1,3 +1,26 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - text-classification
6
+ - emotion-recognition
7
+ - roberta
8
+ - twitter
9
+ - nlp
10
+ pipeline_tag: text-classification
11
+ base_model: cardiffnlp/twitter-roberta-base-emotion # Make sure this matches your specific base model, often it's 'base' or 'large'
12
+ widget:
13
+ - text: "I am so happy today!"
14
+ - text: "I feel very sad about this news."
15
+ ---
16
+
17
+ # `twitter-roberta-emotion-gguf`
18
+
19
+ This repository hosts the **GGUF version** of the `cardiffnlp/twitter-roberta-large-emotion-latest` model.
20
+
21
+ This model is a RoBERTa-based transformer fine-tuned for **emotion classification** on Twitter data. The GGUF format enables efficient inference on various hardware, especially CPUs, using tools like `llama.cpp` and `Ollama`.
22
+
23
+ ## How to Use
24
+
25
+ You can use this model with `Ollama`...
26
+ TODO