Rayugacodes commited on
Commit
496b063
·
verified ·
1 Parent(s): a366a48

Preprocessing config

Browse files
Files changed (1) hide show
  1. preprocessing_config.json +26 -0
preprocessing_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "symlog_features": [4, 5, 6],
3
+ "active_features": [0, 1, 2, 3, 4, 5, 6, 7, 12, 23],
4
+ "feature_names": ["cpu", "prio", "sprio", "nprio", "exec_ns", "vrt", "migr", "cpus", "csw", "wt_us"],
5
+ "passthrough_features": [0, 7, 12, 23],
6
+ "priority_features": [1, 2, 3],
7
+ "sparse_zero_features": [8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22],
8
+ "feature_descriptions": {
9
+ "0": "bpf_get_smp_processor_id() - CPU core ID",
10
+ "1": "task->prio - Dynamic priority (0-139)",
11
+ "2": "task->static_prio - Static priority (nice-based)",
12
+ "3": "task->normal_prio - Normal priority",
13
+ "4": "task->se.sum_exec_runtime - Total CPU time in ns (symlog-scaled)",
14
+ "5": "task->se.vruntime - CFS virtual runtime (symlog-scaled)",
15
+ "6": "task->se.nr_migrations - CPU migration count (symlog-scaled)",
16
+ "7": "task->nr_cpus_allowed - CPU affinity mask size",
17
+ "12": "context switch count from cpu_stats",
18
+ "23": "wait time in microseconds ((now - start_ts) / 1000)"
19
+ },
20
+ "model": {
21
+ "name": "HuggingFaceTB/SmolLM2-360M-Instruct",
22
+ "backup": "Qwen/Qwen2.5-0.5B-Instruct",
23
+ "max_seq_length": 512,
24
+ "target_inference_ms": 50
25
+ }
26
+ }