├── LICENSE ├── README.md ├── __init__.py ├── assets ├── efficiency.png ├── logo.png ├── main.png ├── main_res.png ├── main_table1.png ├── main_table2.png └── main_table3.png ├── data.py ├── data └── medqa.json ├── example_logs ├── qwen3_14b_humanevalplus_hierarchical.txt └── qwen3_14b_mbppplus_sequential.txt ├── methods ├── __init__.py ├── baseline.py ├── latent_mas.py └── text_mas.py ├── models.py ├── prompts.py ├── requirements.txt ├── run.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | 3 | -------------------------------------------------------------------------------- /assets/efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/efficiency.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/main.png -------------------------------------------------------------------------------- /assets/main_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/main_res.png -------------------------------------------------------------------------------- /assets/main_table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/main_table1.png -------------------------------------------------------------------------------- /assets/main_table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/main_table2.png -------------------------------------------------------------------------------- /assets/main_table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/assets/main_table3.png -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/data.py -------------------------------------------------------------------------------- /data/medqa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/data/medqa.json -------------------------------------------------------------------------------- /example_logs/qwen3_14b_humanevalplus_hierarchical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/example_logs/qwen3_14b_humanevalplus_hierarchical.txt -------------------------------------------------------------------------------- /example_logs/qwen3_14b_mbppplus_sequential.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/example_logs/qwen3_14b_mbppplus_sequential.txt -------------------------------------------------------------------------------- /methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/methods/__init__.py -------------------------------------------------------------------------------- /methods/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/methods/baseline.py -------------------------------------------------------------------------------- /methods/latent_mas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/methods/latent_mas.py -------------------------------------------------------------------------------- /methods/text_mas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/methods/text_mas.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/models.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gen-Verse/LatentMAS/HEAD/utils.py --------------------------------------------------------------------------------