├── LICENSE ├── README.md ├── evaluate_performance.py ├── helpers.py ├── predictions ├── GPT-3.5 │ ├── README.md │ ├── predictions_gpt_35.json │ └── predictions_tree_search_gpt35.tsv └── Llama-70B │ ├── README.md │ ├── llama_70B_predictions.json │ └── predictions_tree_search_llama70B.tsv ├── prompt_templates.py ├── run_tree_search.py ├── translate_files.py └── tree_search_icd.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/README.md -------------------------------------------------------------------------------- /evaluate_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/evaluate_performance.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/helpers.py -------------------------------------------------------------------------------- /predictions/GPT-3.5/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /predictions/GPT-3.5/predictions_gpt_35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/predictions/GPT-3.5/predictions_gpt_35.json -------------------------------------------------------------------------------- /predictions/GPT-3.5/predictions_tree_search_gpt35.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/predictions/GPT-3.5/predictions_tree_search_gpt35.tsv -------------------------------------------------------------------------------- /predictions/Llama-70B/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /predictions/Llama-70B/llama_70B_predictions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/predictions/Llama-70B/llama_70B_predictions.json -------------------------------------------------------------------------------- /predictions/Llama-70B/predictions_tree_search_llama70B.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/predictions/Llama-70B/predictions_tree_search_llama70B.tsv -------------------------------------------------------------------------------- /prompt_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/prompt_templates.py -------------------------------------------------------------------------------- /run_tree_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/run_tree_search.py -------------------------------------------------------------------------------- /translate_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/translate_files.py -------------------------------------------------------------------------------- /tree_search_icd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anand-subu/automated-clinical-coding-llm/HEAD/tree_search_icd.py --------------------------------------------------------------------------------