narcolepticchicken commited on
Commit
8c2f460
·
verified ·
1 Parent(s): 617b314

Upload eval/run_bert_eval.py

Browse files
Files changed (1) hide show
  1. eval/run_bert_eval.py +47 -0
eval/run_bert_eval.py ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Evaluate BERT router on SWE-Router and compare with v11 XGBoost.
3
+ Combines eval_bert_router.py + eval_bert_part2.py + eval_bert_part3.py + eval_bert_part4.py
4
+ """
5
+ import json, os, sys, random, pickle, math
6
+ import numpy as np
7
+ from collections import defaultdict
8
+
9
+ MODELS = ['claude-opus-4.7','gpt-5-mini','gpt-5-nano','gpt-5.2',
10
+ 'gemini-2.5-pro','gemini-3-pro','deepseek-v3.2','deepseek-v4-flash']
11
+ MODEL_TIER = {
12
+ 'deepseek-v4-flash': 1, 'gpt-5-nano': 1,
13
+ 'gpt-5-mini': 2, 'deepseek-v3.2': 2,
14
+ 'gemini-2.5-pro': 3,
15
+ 'claude-opus-4.7': 4, 'gpt-5.2': 4,
16
+ 'gemini-3-pro': 5,
17
+ }
18
+ TIER_COST = {1:0.01, 2:0.05, 3:0.15, 4:0.30, 5:0.50}
19
+ TIER_TO_SWE = {1:'deepseek-v4-flash',2:'gpt-5-mini',3:'gemini-2.5-pro',4:'claude-opus-4.7',5:'gemini-3-pro'}
20
+ CODE_KW = ["python","javascript","code","function","bug","debug","refactor","implement","test","compile","runtime","segfault","thread","async","class","module","import","error","traceback"]
21
+ LEGAL_KW = ["contract","legal","compliance","gdpr","privacy","policy","regulatory","liability"]
22
+ RESEARCH_KW = ["research","investigate","compare","analyze","survey","paper"]
23
+ TOOL_KW = ["search","fetch","retrieve","query","api","database","scrape","aggregate"]
24
+ CRITICAL_KW = ["critical","production","urgent","emergency","live","deployed","safety","security"]
25
+ SIMPLE_KW = ["typo","simple","quick","brief","minor","small","easy","trivial","just"]
26
+ LONG_KW = ["plan","project","roadmap","orchestrate","migrate","pipeline","deploy","architecture"]
27
+ MATH_KW = ["calculate","compute","solve","equation","formula","optimize","probability"]
28
+
29
+ def extract_features(pt):
30
+ r = pt.lower()
31
+ return {'req_len':len(pt),'num_words':len(pt.split()),'has_code':int(any(k in r for k in CODE_KW)),'n_code':sum(1 for k in CODE_KW if k in r),'has_legal':int(any(k in r for k in LEGAL_KW)),'has_research':int(any(k in r for k in RESEARCH_KW)),'has_tool':int(any(k in r for k in TOOL_KW)),'has_critical':int(any(k in r for k in CRITICAL_KW)),'has_simple':int(any(k in r for k in SIMPLE_KW)),'has_long':int(any(k in r for k in LONG_KW)),'has_math':int(any(k in r for k in MATH_KW)),'has_error_msg':int('error' in r or 'traceback' in r),'has_file_path':int('/' in r),'n_lines':pt.count('\n')+1,'has_version':int('version' in r or 'update' in r),'has_add':int('add' in r or 'new' in r),'has_fix':int('fix' in r or 'bug' in r),'has_change':int('change' in r or 'modify' in r),'has_remove':int('remove' in r),'has_test':int('test' in r or 'spec' in r),'has_doc':int('doc' in r)}
32
+
33
+ TASK_FLOOR = {"quick_answer":1,"coding":3,"research":3,"document_drafting":2,"legal_regulated":4,"tool_heavy":2,"retrieval_heavy":2,"long_horizon":3,"unknown_ambiguous":3}
34
+
35
+ def classify_task(text):
36
+ r = text.lower()
37
+ if any(k in r for k in ["contract","legal","compliance","gdpr","privacy"]): return "legal_regulated"
38
+ if any(k in r for k in ["debug","fix","bug","implement","refactor","code","function"]): return "coding"
39
+ if any(k in r for k in ["research","find sources","literature","investigate"]): return "research"
40
+ if any(k in r for k in ["search","fetch","api","query","database"]): return "tool_heavy"
41
+ if any(k in r for k in ["plan","roadmap","orchestrate","migrate","deploy"]): return "long_horizon"
42
+ if any(k in r for k in ["draft","write","compose","document"]): return "document_drafting"
43
+ if any(k in r for k in ["what is","explain","define","briefly"]): return "quick_answer"
44
+ return "unknown_ambiguous"
45
+
46
+ print("BERT Router Evaluation on SWE-Router")
47
+ print("="*60)