dieineb commited on
Commit
1ff8924
1 Parent(s): 9c2c761

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-classification
4
+ language:
5
+ - en
6
+ tags:
7
+ - medical
8
+ pretty_name: chest-xray
9
+ size_categories:
10
+ - 1K<n<10K
11
+ license: cc
12
+ ---
13
+
14
+ # chest-xray
15
+
16
+ ## Overview
17
+
18
+ The chest-xray dataset can be employed as the training and test sets for computer vision tasks like pneumonia classification.
19
+
20
+
21
+ ## Dataset Details
22
+
23
+ This data originally came from [Chest X-Ray Images (Pneumonia)](https://www.kaggle.com/datasets/paultimothymooney/chest-xray-pneumonia)
24
+
25
+ The original dataset contains :
26
+ The dataset is organized into 3 folders (train, test, val) and contains subfolders for each image category (Pneumonia/Normal).
27
+ There are 5,856 X-Ray images (JPEG) and 2 categories (Pneumonia/Normal).
28
+
29
+
30
+ ```latex
31
+ @article{kermany2018identifying,
32
+ title={Identifying medical diagnoses and treatable diseases by image-based deep learning},
33
+ author={Kermany, Daniel S and Goldbaum, Michael and Cai, Wenjia and Valentim, Carolina CS and Liang, Huiying and Baxter, Sally L and McKeown, Alex and Yang, Ge and Wu, Xiaokang and Yan, Fangbing and others},
34
+ journal={cell},
35
+ volume={172},
36
+ number={5},
37
+ pages={1122--1131},
38
+ year={2018},
39
+ publisher={Elsevier}
40
+ }
41
+ ```
42
+ - Dataset Name: **chest-xray**
43
+ - Language: English
44
+ - Total Size: 5,856 demonstrations
45
+
46
+ ## Contents
47
+
48
+ The dataset consists of Chest X-ray images (anterior-posterior),
49
+ and 2 class labels:
50
+
51
+ - "0" normal(27%)
52
+ - "1" pneumonia(73%)
53
+
54
+ ## How to use
55
+
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ dataset = load_dataset("AiresPucrs/chest-xray", split='train')
60
+
61
+ ```
62
+
63
+ ## License
64
+ The dataset is licensed under the [Creative Commons License CC0 4.0 International](https://creativecommons.org/licenses/by/4.0/).