CoolFace
Datasetpublic

Mohammed-Altaf/medical-instruction-100k

What is the Dataset About?πŸ€·πŸΌβ€β™‚οΈ The dataset is useful for training a Generative Language Model for the Medical application and instruction purposes, the dataset consists of various thoughs proposed by the people [mentioned as the Human ] and there responses including Medical Terminologies not limited to but including names of the drugs, prescriptions, yogic exercise suggessions, breathing exercise suggessions and few natural home made prescriptions. How the… See the full description on the dataset page: https://huggingface.co/datasets/Mohammed-Altaf/medical-instruction-100k.

sourceHugging Facemitupdated 3y agoView on Hugging Face
17likes568downloads
Dataset Card

What is the Dataset About?πŸ€·πŸΌβ€β™‚οΈ


The dataset is useful for training a Generative Language Model for the Medical application and instruction purposes, the dataset consists of various thoughs proposed by the people [mentioned as the Human ] and there responses including Medical Terminologies not limited to but including names of the drugs, prescriptions, yogic exercise suggessions, breathing exercise suggessions and few natural home made prescriptions.

How the Dataset was made?πŸ˜…


I have used all the available opensource datasets and combined them into a single datsource for training, which is completely opensourced and somewhat reliable.

  • β€”There is another refined and updated version of this datset here πŸ‘‰πŸΌ Link

Example Training Scripts:

  • β€”Qlora Fine Tuning -

Tips:

This is my first dataset to upload on HuggingFace, so below are the thing I wish I could have known

  • β€”always save your final dataset before uploading to hub as a json with lines.
  • β€”The json should have the records orientation, which will be helpful while loading the dataset properly without any error.
{python}
# use below if you are using pandas for data manipulation
train.to_json("dataset_name.json", orient='records', lines=True)
test.to_json("dataset_name.json", orient='records', lines=True)