├── Kun.pdf ├── Kun.png ├── Kun_white.Jpeg ├── Kun_white.png ├── LICENSE ├── README.md ├── Yi.svg ├── evaluation ├── .ipynb_checkpoints │ └── vllm_kun-checkpoint.py ├── __init__.py ├── __pycache__ │ ├── common.cpython-310.pyc │ ├── common.cpython-38.pyc │ ├── common.cpython-39.pyc │ ├── common_备份.cpython-39.pyc │ ├── constants.cpython-310.pyc │ ├── constants.cpython-39.pyc │ ├── conversation.cpython-310.pyc │ ├── conversation.cpython-39.pyc │ ├── utils.cpython-310.pyc │ └── utils.cpython-39.pyc ├── common.py ├── constants.py ├── conversation.py ├── data │ ├── judge_prompts.jsonl │ ├── mt_bench │ │ ├── misc │ │ │ └── radar.png │ │ ├── model_judgment │ │ │ └── gpt-3.5-turbo_single.jsonl │ │ ├── question.jsonl │ │ └── reference_answer │ │ │ ├── gpt-3.5-turbo.jsonl │ │ │ └── gpt-4.jsonl │ ├── question.jsonl │ └── vicuna_bench │ │ ├── question.jsonl │ │ └── reference_answer │ │ └── gpt-4.jsonl ├── ds.config.json ├── model │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── compression.cpython-310.pyc │ │ ├── compression.cpython-39.pyc │ │ ├── llama_condense_monkey_patch.cpython-310.pyc │ │ ├── llama_condense_monkey_patch.cpython-39.pyc │ │ ├── model_adapter.cpython-310.pyc │ │ ├── model_adapter.cpython-39.pyc │ │ ├── model_chatglm.cpython-310.pyc │ │ ├── model_chatglm.cpython-39.pyc │ │ ├── model_codet5p.cpython-310.pyc │ │ ├── model_codet5p.cpython-39.pyc │ │ ├── model_falcon.cpython-310.pyc │ │ ├── model_falcon.cpython-39.pyc │ │ ├── monkey_patch_non_inplace.cpython-310.pyc │ │ └── monkey_patch_non_inplace.cpython-39.pyc │ ├── apply_delta.py │ ├── apply_lora.py │ ├── compression.py │ ├── convert_fp16.py │ ├── llama_condense_monkey_patch.py │ ├── make_delta.py │ ├── model_adapter.py │ ├── model_chatglm.py │ ├── model_codet5p.py │ ├── model_falcon.py │ ├── model_registry.py │ ├── monkey_patch_non_inplace.py │ ├── rwkv_model.py │ └── upload_hub.py ├── modules │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── awq.cpython-310.pyc │ │ ├── awq.cpython-38.pyc │ │ ├── awq.cpython-39.pyc │ │ ├── gptq.cpython-310.pyc │ │ ├── gptq.cpython-38.pyc │ │ └── gptq.cpython-39.pyc │ ├── awq.py │ └── gptq.py ├── utils.py └── vllm_inference.py ├── m-a-p.webp ├── requirements.txt └── script ├── delete_key_input.py ├── delete_key_output.py ├── infer_answer.sh ├── infer_label.sh ├── infer_point.sh ├── pipeline.sh └── select_data.py /Kun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/Kun.pdf -------------------------------------------------------------------------------- /Kun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/Kun.png -------------------------------------------------------------------------------- /Kun_white.Jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/Kun_white.Jpeg -------------------------------------------------------------------------------- /Kun_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/Kun_white.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/README.md -------------------------------------------------------------------------------- /Yi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/Yi.svg -------------------------------------------------------------------------------- /evaluation/.ipynb_checkpoints/vllm_kun-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/.ipynb_checkpoints/vllm_kun-checkpoint.py -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.25" 2 | -------------------------------------------------------------------------------- /evaluation/__pycache__/common.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/common.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/common.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/common.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/common_备份.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/common_备份.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/constants.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/constants.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/conversation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/conversation.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/conversation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/conversation.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/common.py -------------------------------------------------------------------------------- /evaluation/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/constants.py -------------------------------------------------------------------------------- /evaluation/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/conversation.py -------------------------------------------------------------------------------- /evaluation/data/judge_prompts.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/judge_prompts.jsonl -------------------------------------------------------------------------------- /evaluation/data/mt_bench/misc/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/mt_bench/misc/radar.png -------------------------------------------------------------------------------- /evaluation/data/mt_bench/model_judgment/gpt-3.5-turbo_single.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/mt_bench/model_judgment/gpt-3.5-turbo_single.jsonl -------------------------------------------------------------------------------- /evaluation/data/mt_bench/question.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/mt_bench/question.jsonl -------------------------------------------------------------------------------- /evaluation/data/mt_bench/reference_answer/gpt-3.5-turbo.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/mt_bench/reference_answer/gpt-3.5-turbo.jsonl -------------------------------------------------------------------------------- /evaluation/data/mt_bench/reference_answer/gpt-4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/mt_bench/reference_answer/gpt-4.jsonl -------------------------------------------------------------------------------- /evaluation/data/question.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/question.jsonl -------------------------------------------------------------------------------- /evaluation/data/vicuna_bench/question.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/vicuna_bench/question.jsonl -------------------------------------------------------------------------------- /evaluation/data/vicuna_bench/reference_answer/gpt-4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/data/vicuna_bench/reference_answer/gpt-4.jsonl -------------------------------------------------------------------------------- /evaluation/ds.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/ds.config.json -------------------------------------------------------------------------------- /evaluation/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__init__.py -------------------------------------------------------------------------------- /evaluation/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/compression.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/compression.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/compression.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/compression.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/llama_condense_monkey_patch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/llama_condense_monkey_patch.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/llama_condense_monkey_patch.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/llama_condense_monkey_patch.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_adapter.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_adapter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_adapter.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_chatglm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_chatglm.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_chatglm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_chatglm.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_codet5p.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_codet5p.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_codet5p.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_codet5p.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_falcon.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_falcon.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/model_falcon.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/model_falcon.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/monkey_patch_non_inplace.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/monkey_patch_non_inplace.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/model/__pycache__/monkey_patch_non_inplace.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/__pycache__/monkey_patch_non_inplace.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/model/apply_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/apply_delta.py -------------------------------------------------------------------------------- /evaluation/model/apply_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/apply_lora.py -------------------------------------------------------------------------------- /evaluation/model/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/compression.py -------------------------------------------------------------------------------- /evaluation/model/convert_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/convert_fp16.py -------------------------------------------------------------------------------- /evaluation/model/llama_condense_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/llama_condense_monkey_patch.py -------------------------------------------------------------------------------- /evaluation/model/make_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/make_delta.py -------------------------------------------------------------------------------- /evaluation/model/model_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/model_adapter.py -------------------------------------------------------------------------------- /evaluation/model/model_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/model_chatglm.py -------------------------------------------------------------------------------- /evaluation/model/model_codet5p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/model_codet5p.py -------------------------------------------------------------------------------- /evaluation/model/model_falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/model_falcon.py -------------------------------------------------------------------------------- /evaluation/model/model_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/model_registry.py -------------------------------------------------------------------------------- /evaluation/model/monkey_patch_non_inplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/monkey_patch_non_inplace.py -------------------------------------------------------------------------------- /evaluation/model/rwkv_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/rwkv_model.py -------------------------------------------------------------------------------- /evaluation/model/upload_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/model/upload_hub.py -------------------------------------------------------------------------------- /evaluation/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/awq.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/awq.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/awq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/awq.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/awq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/awq.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/gptq.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/gptq.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/gptq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/gptq.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation/modules/__pycache__/gptq.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/__pycache__/gptq.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation/modules/awq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/awq.py -------------------------------------------------------------------------------- /evaluation/modules/gptq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/modules/gptq.py -------------------------------------------------------------------------------- /evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/utils.py -------------------------------------------------------------------------------- /evaluation/vllm_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/evaluation/vllm_inference.py -------------------------------------------------------------------------------- /m-a-p.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/m-a-p.webp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/delete_key_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/delete_key_input.py -------------------------------------------------------------------------------- /script/delete_key_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/delete_key_output.py -------------------------------------------------------------------------------- /script/infer_answer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/infer_answer.sh -------------------------------------------------------------------------------- /script/infer_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/infer_label.sh -------------------------------------------------------------------------------- /script/infer_point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/infer_point.sh -------------------------------------------------------------------------------- /script/pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/pipeline.sh -------------------------------------------------------------------------------- /script/select_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zheng0428/COIG-Kun/HEAD/script/select_data.py --------------------------------------------------------------------------------