gitextract_mddl1sk4/ ├── Evol_Instruct/ │ ├── breadth.py │ ├── depth.py │ ├── main.py │ └── openai_access.py ├── README.md ├── WizardCoder/ │ ├── CODE_LICENSE │ ├── DATA_LICENSE │ ├── MODEL_WEIGHTS_LICENSE │ ├── README.md │ ├── data/ │ │ └── mbppplus.json │ └── src/ │ ├── humaneval_gen.py │ ├── humaneval_gen_vllm.py │ ├── inference_wizardcoder.py │ ├── mbpp_gen.py │ ├── mbppplus_gen.py │ ├── mbppplus_gen_vllm.py │ ├── mbppplus_process_preds.py │ ├── process_humaneval.py │ ├── process_mbpp.py │ └── train_wizardcoder.py ├── WizardLM/ │ ├── CODE_LICENSE │ ├── DATA_LICENSE │ ├── MODEL_DIFF_LICENSE │ ├── README.md │ ├── data/ │ │ └── WizardLM_testset.jsonl │ ├── doc/ │ │ └── distributed_finetune.md │ └── src/ │ ├── case_show.md │ ├── infer_wizardlm13b.py │ ├── inference_wizardlm.py │ ├── train_freeform.py │ └── weight_diff_wizard.py ├── WizardMath/ │ ├── LICENSE │ ├── README.md │ ├── config/ │ │ └── deepspeed_config.json │ ├── data/ │ │ ├── MATH_test.jsonl │ │ └── gsm8k_test.jsonl │ ├── inference/ │ │ ├── MATH_inference.py │ │ ├── grader.py │ │ ├── gsm8k_inference.py │ │ └── util.py │ └── train/ │ └── train_wizardmath.py ├── demo/ │ ├── README.md │ ├── wizardLM_demo.py │ ├── wizardcoder_demo.py │ └── wizardmath_demo.py └── training/ ├── data/ │ └── alpaca_data.json ├── requirements.txt └── src/ ├── configs/ │ ├── deepspeed_config.json │ └── hostfile ├── conversation.py ├── environment.yml ├── generate.py ├── train.py ├── train_freeform_multiturn.py └── utils.py