-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmulticlass.yaml
More file actions
41 lines (41 loc) · 1.14 KB
/
multiclass.yaml
File metadata and controls
41 lines (41 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- node_type: embedding
target_metric: retrieval_hit_rate
search_space:
- module_name: retrieval
k: [10]
embedder_name:
- sentence-transformers/all-MiniLM-L6-v2
- avsolatorio/GIST-small-Embedding-v0
- node_type: scoring
target_metric: scoring_roc_auc
search_space:
- module_name: knn
k: [5, 10]
weights: [uniform, distance, closest]
- module_name: linear
- module_name: dnnc
cross_encoder_name:
- cross-encoder/ms-marco-MiniLM-L-6-v2
- avsolatorio/GIST-small-Embedding-v0
k: [1, 3]
train_head: [false, true]
- module_name: sklearn
embedder_name:
- sergeyzh/rubert-tiny-turbo
clf_name:
- LogisticRegression
- RandomForestClassifier
- module_name: rerank
k: [ 5, 10 ]
weights: [uniform, distance, closest]
m: [ 2, 3 ]
cross_encoder_name:
- cross-encoder/ms-marco-MiniLM-L-6-v2
- node_type: decision
target_metric: decision_accuracy
search_space:
- module_name: threshold
thresh: [0.5, [0.5, 0.5, 0.5, 0.5]]
- module_name: tunable
- module_name: argmax
- module_name: jinoos