alibayram commited on
Commit
de5de4d
·
verified ·
1 Parent(s): 544d6a7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md CHANGED
@@ -89,4 +89,174 @@ configs:
89
  path: data/memorial-*
90
  - split: yeditepe
91
  path: data/yeditepe-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  path: data/memorial-*
90
  - split: yeditepe
91
  path: data/yeditepe-*
92
+ license: cc-by-4.0
93
+ language:
94
+ - tr
95
+ task_categories:
96
+ - text-classification
97
+ - text-generation
98
+ - summarization
99
+ - question-answering
100
+ tags:
101
+ - medical
102
+ - healthcare
103
+ - turkish
104
+ - hospital
105
+ - articles
106
+ - clinical-text
107
+ size_categories:
108
+ - 10K<n<100K
109
  ---
110
+
111
+ # 🏥 Turkish Hospital Medical Articles Dataset
112
+
113
+ A comprehensive collection of Turkish-language medical articles from 14 major hospital and healthcare provider websites in Turkey. This dataset is designed for training and evaluating Turkish NLP models in the medical domain, including large language models (LLMs), health chatbots, medical text summarization, and clinical text classification.
114
+
115
+ ## 📊 Dataset Overview
116
+
117
+ - **Total Articles**: ~24,612 medical articles
118
+ - **Sources**: 14 major Turkish hospitals and healthcare providers
119
+ - **Language**: Turkish (tr)
120
+ - **Format**: Parquet files (one per hospital)
121
+ - **License**: CC BY 4.0
122
+ - **Total Size**: ~95MB
123
+
124
+ ## 🏥 Included Hospital Sources
125
+
126
+ | Hospital | Dataset Split | Description |
127
+ | ------------------------------- | ----------------- | --------------------------------- |
128
+ | **Acıbadem Hospital** | `acibadem` | Leading private hospital network |
129
+ | **Anadolu Sağlık** | `anadolusaglik` | Comprehensive healthcare provider |
130
+ | **Atlas Hospital** | `atlas` | Specialized medical center |
131
+ | **Başkent İstanbul** | `baskentistanbul` | University hospital network |
132
+ | **Bayındır Hospital** | `bayindir` | Private healthcare institution |
133
+ | **Florence Nightingale** | `florence` | Specialized hospital network |
134
+ | **Güven Hospital** | `guven` | Private medical center |
135
+ | **Liv Hospital** | `liv` | International healthcare provider |
136
+ | **Medical Park** | `medicalpark` | Private hospital network |
137
+ | **Medical Point** | `medicalpoint` | Specialized medical facility |
138
+ | **Medicana Hospitals** | `medicana` | Large hospital network |
139
+ | **Medipol University Hospital** | `medipol` | University medical center |
140
+ | **Memorial Hospital** | `memorial` | Private healthcare network |
141
+ | **Yeditepe University** | `yeditepe` | University hospital |
142
+
143
+ ## 📋 Data Schema
144
+
145
+ Each article in the dataset contains the following fields:
146
+
147
+ | Field | Type | Description |
148
+ | -------------- | ------ | ------------------------------- |
149
+ | `url` | string | Original article URL |
150
+ | `title` | string | Article title |
151
+ | `text` | string | Full article content |
152
+ | `publish_date` | string | Original publication date |
153
+ | `update_date` | string | Last update date |
154
+ | `scrape_date` | string | Date when article was collected |
155
+
156
+ ## 🚀 Usage Examples
157
+
158
+ ### Load the entire dataset:
159
+
160
+ ```python
161
+ from datasets import load_dataset
162
+
163
+ # Load all hospital data
164
+ dataset = load_dataset("alibayram/turkish-hospital-medical-articles", token="your_token")
165
+
166
+ # Access specific hospital data
167
+ acibadem_data = dataset["acibadem"]
168
+ memorial_data = dataset["memorial"]
169
+ ```
170
+
171
+ ### Load specific hospitals:
172
+
173
+ ```python
174
+ from datasets import load_dataset
175
+
176
+ # Load only specific hospitals
177
+ selected_hospitals = {
178
+ "acibadem": "acibadem.parquet",
179
+ "memorial": "memorial.parquet",
180
+ "medicana": "medicana.parquet"
181
+ }
182
+
183
+ dataset = load_dataset("alibayram/turkish-hospital-medical-articles",
184
+ data_files=selected_hospitals,
185
+ token="your_token")
186
+ ```
187
+
188
+ ### Access article examples:
189
+
190
+ ```python
191
+ # Get first article from Acıbadem
192
+ first_article = dataset["acibadem"][0]
193
+ print(f"Title: {first_article['title']}")
194
+ print(f"Content: {first_article['text'][:200]}...")
195
+ print(f"Published: {first_article['publish_date']}")
196
+ ```
197
+
198
+ ## 🎯 Use Cases
199
+
200
+ ### Medical NLP Applications:
201
+
202
+ - **Medical Text Classification**: Categorize articles by medical specialty
203
+ - **Health Information Extraction**: Extract symptoms, treatments, and medical procedures
204
+ - **Medical Question Answering**: Train models to answer health-related questions
205
+ - **Medical Text Summarization**: Create concise summaries of medical articles
206
+ - **Health Chatbot Training**: Develop Turkish medical chatbots
207
+ - **Clinical Text Analysis**: Analyze medical terminology and concepts
208
+
209
+ ### Research Applications:
210
+
211
+ - **Medical Language Modeling**: Train Turkish medical LLMs
212
+ - **Healthcare Information Retrieval**: Build medical search systems
213
+ - **Medical Knowledge Graph Construction**: Extract medical entities and relationships
214
+ - **Cross-hospital Analysis**: Compare medical content across different institutions
215
+
216
+ ## 🔧 Data Processing
217
+
218
+ The dataset has been processed to:
219
+
220
+ - Remove unnecessary columns (headings, source metadata)
221
+ - Standardize date fields
222
+ - Ensure consistent schema across all hospital sources
223
+ - Maintain original article content integrity
224
+
225
+ ## 📈 Dataset Statistics
226
+
227
+ - **Total Articles**: 24,612
228
+ - **Average Article Length**: ~500-2000 words
229
+ - **Date Range**: Various (based on hospital website content)
230
+ - **Medical Topics Covered**:
231
+ - General medicine
232
+ - Specialized treatments
233
+ - Health tips and advice
234
+ - Medical procedures
235
+ - Disease information
236
+ - Wellness and prevention
237
+
238
+ ## ⚠️ Important Notes
239
+
240
+ 1. **Medical Disclaimer**: This dataset contains medical information but should not be used for clinical decision-making
241
+ 2. **Language**: All content is in Turkish
242
+ 3. **Source Attribution**: Articles are from official hospital websites
243
+ 4. **Privacy**: No personal patient information is included
244
+ 5. **Accuracy**: Content accuracy depends on the original hospital websites
245
+
246
+ ## 🤝 Contributing
247
+
248
+ This dataset is based on the original work by [umutertugrul](https://huggingface.co/umutertugrul) and has been processed and organized for improved usability.
249
+
250
+ ## 📄 License
251
+
252
+ This dataset is licensed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
253
+
254
+ ## 🙏 Acknowledgments
255
+
256
+ - Original data collection by [umutertugrul](https://huggingface.co/umutertugrul)
257
+ - Hospital websites for providing public medical content
258
+ - Hugging Face for hosting the dataset
259
+
260
+ ---
261
+
262
+ **For questions or issues, please open an issue on the dataset page.**