├── README.md ├── data_loader.py ├── dataset └── math │ ├── test.jsonl │ └── train.jsonl ├── eval.py ├── evaluation.sh ├── examples.py ├── imgs ├── example1.png ├── intro.png └── table.png ├── llm_evaluation.py ├── model_utils.py ├── parser.py ├── requirements.txt └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/data_loader.py -------------------------------------------------------------------------------- /dataset/math/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/dataset/math/test.jsonl -------------------------------------------------------------------------------- /dataset/math/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/dataset/math/train.jsonl -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/eval.py -------------------------------------------------------------------------------- /evaluation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/evaluation.sh -------------------------------------------------------------------------------- /examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/examples.py -------------------------------------------------------------------------------- /imgs/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/imgs/example1.png -------------------------------------------------------------------------------- /imgs/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/imgs/intro.png -------------------------------------------------------------------------------- /imgs/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/imgs/table.png -------------------------------------------------------------------------------- /llm_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/llm_evaluation.py -------------------------------------------------------------------------------- /model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/model_utils.py -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/SuperCorrect-llm/HEAD/utils.py --------------------------------------------------------------------------------