├── LICENSE ├── README.md ├── agent.py ├── aggregate.py ├── annotate_keywords.py ├── bench_aggr.py ├── create_profile.py ├── expert_inference.py ├── recruit_agents.py ├── requirements.txt ├── run_bench_aggr.sh ├── run_create_profile.sh ├── test_data ├── AIME24_test.json ├── AIME24_train.json ├── GPQA_test.json ├── GPQA_train.json ├── MMLU_Pro_test.json ├── MMLU_Pro_train.json ├── MedMCQA_test.json └── MedMCQA_train.json └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/agent.py -------------------------------------------------------------------------------- /aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/aggregate.py -------------------------------------------------------------------------------- /annotate_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/annotate_keywords.py -------------------------------------------------------------------------------- /bench_aggr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/bench_aggr.py -------------------------------------------------------------------------------- /create_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/create_profile.py -------------------------------------------------------------------------------- /expert_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/expert_inference.py -------------------------------------------------------------------------------- /recruit_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/recruit_agents.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_bench_aggr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/run_bench_aggr.sh -------------------------------------------------------------------------------- /run_create_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/run_create_profile.sh -------------------------------------------------------------------------------- /test_data/AIME24_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/AIME24_test.json -------------------------------------------------------------------------------- /test_data/AIME24_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/AIME24_train.json -------------------------------------------------------------------------------- /test_data/GPQA_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/GPQA_test.json -------------------------------------------------------------------------------- /test_data/GPQA_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/GPQA_train.json -------------------------------------------------------------------------------- /test_data/MMLU_Pro_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/MMLU_Pro_test.json -------------------------------------------------------------------------------- /test_data/MMLU_Pro_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/MMLU_Pro_train.json -------------------------------------------------------------------------------- /test_data/MedMCQA_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/MedMCQA_test.json -------------------------------------------------------------------------------- /test_data/MedMCQA_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/test_data/MedMCQA_train.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinobby/Symbolic-MoE/HEAD/utils.py --------------------------------------------------------------------------------