Bernardosalerno commited on
Commit
0718d5e
·
verified ·
1 Parent(s): 8cc0bf8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -24
README.md CHANGED
@@ -1,26 +1,18 @@
1
- # Medical Transcriptions
2
- Medical transcription data scraped from mtsamples.com
3
- ### Content
4
- This dataset contains sample medical transcriptions for various medical specialties.
5
- <br>
6
- More information can be found [here](https://www.kaggle.com/datasets/tboyle10/medicaltranscriptions?resource=download)
7
 
8
- Due to data availability only transcripts for the following medical specialties were selected for the model training:
9
- - Surgery
10
- - Cardiovascular / Pulmonary
11
- - Orthopedic
12
- - Radiology
13
- - General Medicine
14
- - Gastroenterology
15
- - Neurology
16
- - Obstetrics / Gynecology
17
- - Urology
18
 
19
- ---
20
- **task_categories:**
21
- - text-classification
22
- - feature-extraction
23
-
24
- **language:** en <br>
25
- **tags:** medical <br>
26
- **size_categories:** 1K<n<10K
 
 
 
 
 
 
 
1
+ # 🏥 Medical Transcriptions - Cleaned JSONL Dataset
 
 
 
 
 
2
 
3
+ This dataset is a cleaned, normalized, and strictly formatted (`JSONL`) version of the original Medical Transcriptions dataset. It has been specifically processed to be instantly ready for NLP training tasks, handling missing values, standardizing text, and structuring nested data to avoid common CSV parsing errors.
 
 
 
 
 
 
 
 
 
4
 
5
+ ## 🔗 Code & Full Documentation (GitHub)
6
+ Do you want to see exactly **how** this data was cleaned?
7
+ The complete Python source code (Jupyter Notebook) and a comprehensive technical manual in PDF ("Python per il Data Cleaning: teoria e pratica") are available on my GitHub repository:
8
+
9
+ 👉 **[View the Code and Documentation on GitHub](https://github.com/Bernardosalerno/Data-cleaning-and-documentation-process-full-guide)**
10
+
11
+ ## 🛠️ Data Processing Highlights
12
+ * **Format:** Converted from raw CSV to validated `JSONL`.
13
+ * **Filtering:** Removed incomplete, noisy, or excessively short clinical transcripts.
14
+ * **Normalization:** Regex applied to clean text, handle hidden characters, and format strings.
15
+ * **Validation:** Automated checks to guarantee 0 duplicates and 0 critical null values.
16
+
17
+ ## 🙏 Acknowledgements
18
+ This dataset is a processed and refined version of the raw data originally provided by `tchebonenko/MedicalTranscriptions` (derived from MTSamples).