Views
No views yet
learning rate 2e-5,
batch size 64,
num_train_epochs=8,| Model | Accuracy | F1 Score | Test Sample per Second |
|---|---|---|---|
| Distilbert-base-uncased-emotion | 93.8 | 93.79 | 398.69 |
| Bert-base-uncased-emotion | 94.05 | 94.06 | 190.152 |
| Roberta-base-emotion | 93.95 | 93.97 | 195.639 |
| Albert-base-v2-emotion | 93.6 | 93.65 | 182.794 |
1from transformers import pipeline
2classifier = pipeline("text-classification",model='Lucyfer1718/Emotion', return_all_scores=True)
3prediction = classifier("I love using transformers. The best part is wide range of support and its easy to use", )
4print(prediction)
5
6"""
7Output:
8[[
9{'label': 'sadness', 'score': 0.0006792712374590337},
10{'label': 'joy', 'score': 0.9959300756454468},
11{'label': 'love', 'score': 0.0009452480007894337},
12{'label': 'anger', 'score': 0.0018055217806249857},
13{'label': 'fear', 'score': 0.00041110432357527316},
14{'label': 'surprise', 'score': 0.0002288572577526793}
15]]
16"""1{
2'test_accuracy': 0.938,
3 'test_f1': 0.937932884041714,
4 'test_loss': 0.1472451239824295,
5 'test_mem_cpu_alloc_delta': 0,
6 'test_mem_cpu_peaked_delta': 0,
7 'test_mem_gpu_alloc_delta': 0,
8 'test_mem_gpu_peaked_delta': 163454464,
9 'test_runtime': 5.0164,
10 'test_samples_per_second': 398.69
11 }