Update README.md
Browse files
README.md
CHANGED
@@ -35,8 +35,31 @@ task_categories:
|
|
35 |
- image-classification
|
36 |
language:
|
37 |
- en
|
|
|
38 |
tags:
|
39 |
- medical
|
40 |
size_categories:
|
41 |
- 10K<n<100K
|
42 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
- image-classification
|
36 |
language:
|
37 |
- en
|
38 |
+
- fr
|
39 |
tags:
|
40 |
- medical
|
41 |
size_categories:
|
42 |
- 10K<n<100K
|
43 |
+
---
|
44 |
+
|
45 |
+
# Zoidberg2.0
|
46 |
+
|
47 |
+
The data has been taken from [kaggle](https://www.kaggle.com/datasets/paultimothymooney/chest-xray-pneumonia)
|
48 |
+
|
49 |
+
## Usage
|
50 |
+
|
51 |
+
Install Hugging Face's `datasets` library
|
52 |
+
|
53 |
+
```bash
|
54 |
+
pip install datasets
|
55 |
+
```
|
56 |
+
|
57 |
+
Load the dataset with the following lines
|
58 |
+
|
59 |
+
```python
|
60 |
+
from datasets import load_dataset
|
61 |
+
|
62 |
+
dataset = load_dataset("Az-r-ow/chest_xray")
|
63 |
+
```
|
64 |
+
|
65 |
+
For more information on how to manipulate the data checkout the [docs](https://huggingface.co/docs/datasets/load_hub)
|