Views
No views yet
Larslouvre/topline-core-corpus1{
2 "test_mae": 0.03193977245295291,
3 "test_rmse": 0.03905283644419383,
4 "test_r2": 0.8126409065765499,
5 "test_spearman": 0.9022890369452443,
6 "test_ndcg_at_20": 0.9593355974531179,
7 "cv_mae_mean": 0.03411350540973291,
8 "cv_mae_std": 0.0014743542672338325,
9 "cv_rmse_mean": 0.040963221908164225,
10 "cv_rmse_std": 0.0016030566426361575,
11 "cv_r2_mean": 0.7070031835299886,
12 "cv_r2_std": 0.01658186566627316,
13 "n_lines": 3062,
14 "n_songs": 247,
15 "n_train_lines": 2145,
16 "n_test_lines": 917,
17 "n_train_songs": 197,
18 "n_test_songs": 50,
19 "target_mean": 0.581674631776957,
20 "target_std": 0.08216859661908116,
21 "trained_at": "2026-05-09T02:31:09.646660",
22 "target_type": "weak_heuristic_distillation"
23}1import joblib
2import pandas as pd
3
4model = joblib.load('model.joblib')
5X = pd.DataFrame([{
6 'line_text': 'jeg ser månen blive blokeret af dig',
7 # include numeric feature columns from feature_columns.json
8}])
9score = model.predict(X)[0]