GunjanSingh commited on
Commit
9364687
·
verified ·
1 Parent(s): 59fa95d

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +17 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "sentiment_classifier",
3
+ "task": "text-classification",
4
+ "num_labels": 3,
5
+ "id2label": {
6
+ "0": "negative",
7
+ "1": "neutral",
8
+ "2": "positive"
9
+ },
10
+ "label2id": {
11
+ "negative": 0,
12
+ "neutral": 1,
13
+ "positive": 2
14
+ },
15
+ "framework": "scikit-learn",
16
+ "pipeline_tag": "text-classification"
17
+ }