jhovanisabuchi commited on
Commit
8d8664a
·
verified ·
1 Parent(s): 637733a

Upload config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +13 -0
config.yaml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # config.yaml
2
+
3
+ model_type: distilbert
4
+ task: text-classification
5
+ framework: pt # 'pt' for PyTorch, 'tf' for TensorFlow
6
+ tokenizer: distilbert-base-uncased
7
+ num_labels: 2 # Binary classification (positive/negative)
8
+ label2id:
9
+ 0: negative
10
+ 1: positive
11
+ id2label:
12
+ 0: negative
13
+ 1: positive