--- license: cc-by-4.0 language: - tr pretty_name: umuter task_categories: - text-classification - text-generation - summarization - question-answering tags: - medical size_categories: - 10K ๐Ÿงพ Number of articles: ~43K > ๐Ÿ—‚๏ธ Format: `.parquet` > ๐Ÿ“ File size: ~110 MB > ๐Ÿ‘ค Curated by: [umutertugrul](https://huggingface.co/umutertugrul) > ๐Ÿ”“ License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) --- ## ๐Ÿ“ Files | Filename | Description | |--------------------------------|----------------------------------------| | `doktorsitesi_articles.parquet` | Full set of Turkish medical articles | | `sample.parquet` | First 1000 entries (for preview use) | --- ## ๐Ÿ”ค Schema Each row in the `.parquet` file contains: - `url`: Original URL of the article on doktorsitesi.com - `title`: The title of the medical article - `text`: The full body content of the article - `name`: Author or medical professional who wrote the article - `branch`: The medical specialty or department of the author (e.g., dermatology, dentistry) - `publish_date`: The date the article was originally published - `scrape_date`: The date the article was scraped from the website --- ## ๐Ÿš€ How to Use ```python from datasets import load_dataset dataset = load_dataset("umutertugrul/turkish-medical-articles")