sfarrukhm commited on
Commit
9746c77
Β·
verified Β·
1 Parent(s): d30fafe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -1
README.md CHANGED
@@ -7,4 +7,88 @@ language:
7
  pretty_name: Intel Image Classification
8
  size_categories:
9
  - 10K<n<100K
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pretty_name: Intel Image Classification
8
  size_categories:
9
  - 10K<n<100K
10
+ ---
11
+
12
+ # Intel Image Classification
13
+
14
+ The **Intel Image Classification** dataset contains images of natural scenes categorized into six classes:
15
+
16
+ - Buildings
17
+
18
+ - Forest
19
+
20
+ - Glacier
21
+
22
+ - Mountain
23
+
24
+ - Sea
25
+
26
+ - Street
27
+
28
+ ---
29
+
30
+ ## πŸ“† Content
31
+
32
+ - The dataset contains **~25,000 images** of size **150x150 pixels**.
33
+
34
+ - Images are evenly distributed across **6 categories**:
35
+
36
+ ```
37
+ {'buildings' -> 0,
38
+ 'forest' -> 1,
39
+ 'glacier' -> 2,
40
+ 'mountain' -> 3,
41
+ 'sea' -> 4,
42
+ 'street' -> 5 }
43
+ ```
44
+
45
+ - It is divided into three parts:
46
+
47
+ - **Training set**: ~14,000 images
48
+
49
+ - **Test set**: ~3,000 images
50
+
51
+ - **Prediction set**: ~7,000 images
52
+
53
+ The train, test, and prediction images are stored in separate folders.
54
+
55
+ ---
56
+
57
+ ## πŸ§ͺ Structure
58
+
59
+ ```
60
+ data/
61
+ β”œβ”€β”€ seg_train/
62
+ β”‚ β”œβ”€β”€ buildings/
63
+ β”‚ β”œβ”€β”€ forest/
64
+ β”‚ β”œβ”€β”€ glacier/
65
+ β”‚ β”œβ”€β”€ mountain/
66
+ β”‚ β”œβ”€β”€ sea/
67
+ β”‚ └── street/
68
+ β”œβ”€β”€ seg_test/
69
+ β”‚ └── ...
70
+ └── seg_pred/
71
+ └── ...
72
+ ```
73
+
74
+ ---
75
+
76
+ ## πŸ”— Source & Acknowledgements
77
+
78
+ - Originally published by **Intel** as part of a challenge on **Analytics Vidhya**:
79
+ [https://datahack.analyticsvidhya.com](https://datahack.analyticsvidhya.com/)
80
+
81
+ - Rehosted on Kaggle:
82
+ [Intel Image Classification | Kaggle](https://www.kaggle.com/datasets/puneet6060/intel-image-classification)
83
+
84
+ ---
85
+
86
+ ## πŸ’» Usage
87
+
88
+ You can load this dataset using Hugging Face's `datasets` library:
89
+
90
+ ```python
91
+ from datasets import load_dataset
92
+
93
+ dataset = load_dataset("sfarrukhm/intel-image-classification")
94
+ ```