diff --git a/README.md b/README.md index c88bf86..0b951c0 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,8 @@ HomoScriptor is a vibrant and collaborative project that thrives on [community c - [CONTRIBUTING.md](CONTRIBUTING.md) - Guidelines for contributing to the dataset. - [data/](data/) - [language_tasks.json](data/language_tasks.json) - JSON file of language tasks including rhyming, poetry, tongue twisters, summarising, and some of the differences between UK and US spelling. - - [logic_tasks.json](data/logic_tasks.json) - JSON file containing logic-related tasks, including puzzles, riddles and brainteasers + - [logic_tasks.json](data/logic_tasks.json) - JSON file containing logic-related tasks, including puzzles, riddles and brainteasers. + - [medicine_tasks.json](data/medicine_tasks.json) - JSON file containing medicine related questions, differentials, care plan and knowledge. - [LICENSE](LICENSE) - License information for the dataset. - [README.md](README.md) - Contains information about the dataset. diff --git a/data/medicine_tasks.json b/data/medicine_tasks.json new file mode 100644 index 0000000..c4ebe4b --- /dev/null +++ b/data/medicine_tasks.json @@ -0,0 +1,41 @@ +[ + { + "instruction": "What is the goal of cancer treatment?", + "output": [ + { + "variant": "short", + "answer": "eradication or palliation." + }, + { + "variant": "long", + "answer": "The goal of cancer treatment is first to eradicate the cancer. If this primary goal cannot be accomplished, the goal of cancer treatment shifts to palliation, the amelioration of symptoms, and preservation of quality of life while striving to extend life." + } + ] + }, + { + "instruction": "What is the role of surgery in cancer treatment?", + "output": [ + { + "variant": "short", + "answer": "excision." + }, + { + "variant": "long", + "answer": "Cancer surgery aiming for cure is usually planned to excise the tumor completely with an adequate margin of normal tissue, touching the tumor as little as possible to prevent vascular and lymphatic spread, and minimizing operative risk. Such a resection is defined as an R0 resection." + } + ] + }, + { + "instruction": "How is aciclovir metabolized?", + "output": [ + { + "variant": "short", + "answer": "renal excretion." + }, + { + "variant": "long", + "answer": "Most of the drug is excreted unchanged by the kidney. Renal clearance of aciclovir is substantially greater than creatinine clearance, indicating that tubular secretion, in addition to glomerular filtration, contributes to the renal elimination of the drug." + } + ] + } +]