├── LICENSE ├── README.md ├── eval ├── gpt4_evaluate.py ├── mtsamples_instructions.json └── mtsamples_results.json ├── instruction ├── convert_deid_tag.py ├── de_id_gen.py ├── de_id_postprocess.py ├── instruction_gen.py ├── instruction_postprocess.py ├── merge_data.py └── prepare_data.py ├── pretraining_preprocess ├── mimiciii_filter_index.txt ├── mimiciii_preproc.py ├── mimiciv_preproc.py └── tokenize_data.py ├── resources ├── camel.png ├── performance.png └── pipeline.jpg └── src ├── demo.py ├── evaluate.py ├── instruction_ft.py ├── train.py └── weight_diff.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/README.md -------------------------------------------------------------------------------- /eval/gpt4_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/eval/gpt4_evaluate.py -------------------------------------------------------------------------------- /eval/mtsamples_instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/eval/mtsamples_instructions.json -------------------------------------------------------------------------------- /eval/mtsamples_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/eval/mtsamples_results.json -------------------------------------------------------------------------------- /instruction/convert_deid_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/convert_deid_tag.py -------------------------------------------------------------------------------- /instruction/de_id_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/de_id_gen.py -------------------------------------------------------------------------------- /instruction/de_id_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/de_id_postprocess.py -------------------------------------------------------------------------------- /instruction/instruction_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/instruction_gen.py -------------------------------------------------------------------------------- /instruction/instruction_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/instruction_postprocess.py -------------------------------------------------------------------------------- /instruction/merge_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/merge_data.py -------------------------------------------------------------------------------- /instruction/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/instruction/prepare_data.py -------------------------------------------------------------------------------- /pretraining_preprocess/mimiciii_filter_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/pretraining_preprocess/mimiciii_filter_index.txt -------------------------------------------------------------------------------- /pretraining_preprocess/mimiciii_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/pretraining_preprocess/mimiciii_preproc.py -------------------------------------------------------------------------------- /pretraining_preprocess/mimiciv_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/pretraining_preprocess/mimiciv_preproc.py -------------------------------------------------------------------------------- /pretraining_preprocess/tokenize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/pretraining_preprocess/tokenize_data.py -------------------------------------------------------------------------------- /resources/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/resources/camel.png -------------------------------------------------------------------------------- /resources/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/resources/performance.png -------------------------------------------------------------------------------- /resources/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/resources/pipeline.jpg -------------------------------------------------------------------------------- /src/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/src/demo.py -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/instruction_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/src/instruction_ft.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/src/train.py -------------------------------------------------------------------------------- /src/weight_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmpcc/CAMEL/HEAD/src/weight_diff.py --------------------------------------------------------------------------------