Amitava25 commited on
Commit
79eef0b
·
verified ·
1 Parent(s): 5ba431f

Upload champion.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. champion.json +38 -0
champion.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_family": "sentence_transformer_linear",
3
+ "dataset_name": "PolyAI/banking77",
4
+ "train_split": "train",
5
+ "test_split": "test",
6
+ "artifacts_dir": "../artifacts/champion",
7
+ "reports_dir": "../reports/champion",
8
+ "text_column": "text",
9
+ "label_column": "label",
10
+ "random_seed": 42,
11
+ "tfidf": {
12
+ "lowercase": true,
13
+ "strip_accents": "unicode",
14
+ "normalization": "none",
15
+ "ngram_range": [1, 2],
16
+ "min_df": 2,
17
+ "max_df": 0.98,
18
+ "sublinear_tf": true,
19
+ "max_features": 50000
20
+ },
21
+ "encoder": {
22
+ "model_name": "BAAI/bge-small-en-v1.5",
23
+ "batch_size": 32,
24
+ "normalize_embeddings": true,
25
+ "device": null
26
+ },
27
+ "classifier": {
28
+ "c": 1.0,
29
+ "class_weight": "balanced",
30
+ "max_iter": 5000,
31
+ "dual": true,
32
+ "random_state": 42
33
+ },
34
+ "analysis": {
35
+ "top_k_confusions": 25,
36
+ "top_k_features_per_class": 20
37
+ }
38
+ }