Jason-42195 commited on
Commit
b23185f
·
verified ·
1 Parent(s): d58b411

Branch2: switch to LocalOutlierFactor (12 feat, scope-filtered D1+D3+D7) — DR@FPR5%=80.6%, AUC=0.929

Browse files
Files changed (1) hide show
  1. branch2_v1/metadata.json +20 -4
branch2_v1/metadata.json CHANGED
@@ -1,12 +1,28 @@
1
  {
2
- "algorithm": "one_class_svm",
3
- "contamination": 0.001,
 
 
4
  "random_seed": 42,
5
  "scale_features": true,
6
- "log_transform_features": [],
 
 
 
 
 
7
  "feature_names": [
 
 
8
  "sql_keyword_count",
9
  "entropy",
10
- "bigram_entropy"
 
 
 
 
 
 
 
11
  ]
12
  }
 
1
  {
2
+ "algorithm": "local_outlier_factor",
3
+ "contamination": 0.05,
4
+ "gamma": null,
5
+ "n_neighbors": 5,
6
  "random_seed": 42,
7
  "scale_features": true,
8
+ "log_transform_features": [
9
+ "length",
10
+ "max_token_length",
11
+ "max_special_run",
12
+ "max_digit_run"
13
+ ],
14
  "feature_names": [
15
+ "length",
16
+ "special_char_ratio",
17
  "sql_keyword_count",
18
  "entropy",
19
+ "bigram_entropy",
20
+ "quote_imbalance",
21
+ "same_type_run_ratio",
22
+ "max_token_length",
23
+ "token_count",
24
+ "max_special_run",
25
+ "max_digit_run",
26
+ "paren_imbalance"
27
  ]
28
  }