Francis2003 commited on
Commit
c3faa7a
·
verified ·
1 Parent(s): 11e153f

Upload assets/config/best-performing-model_config.json with huggingface_hub

Browse files
assets/config/best-performing-model_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "OscarNominationPredictor",
3
+ "encoder": "intfloat/e5-base-v2",
4
+ "encoder_usage": {
5
+ "prefix": "query:",
6
+ "normalize": true,
7
+ "dtype": "float16 (GPU) -> float32 (disk)"
8
+ },
9
+ "input_fields": [
10
+ "script_clean",
11
+ "summary",
12
+ "title"
13
+ ],
14
+ "chunking": {
15
+ "max_words": 400,
16
+ "overlap": 80
17
+ },
18
+ "pooling": "mean + max concatenation + L2",
19
+ "classifier": {
20
+ "type": "LogisticRegression",
21
+ "class_weight": "balanced",
22
+ "C": 1.0,
23
+ "max_iter": 5000
24
+ },
25
+ "threshold_selection": {
26
+ "metric": "F1 (positive class)",
27
+ "best_threshold_val": 0.52
28
+ },
29
+ "test_metrics": {
30
+ "accuracy": 0.759,
31
+ "roc_auc": 0.79,
32
+ "pr_auc": 0.455,
33
+ "f1_positive": 0.485,
34
+ "f1_negative": 0.843,
35
+ "macro_f1": 0.664
36
+ },
37
+ "notes": "Best performing logistic regression model using concatenated script+summary+title embeddings (E5-base-v2) with mean+max pooling. Threshold chosen to maximize F1 on validation set."
38
+ }