Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -141,11 +141,15 @@ This dataset includes **100 different crops/plants**, covering a wide range of a
|
|
141 |
99. Watermelon
|
142 |
100. Wheat
|
143 |
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
|
|
|
|
|
|
|
|
149 |
|
150 |
## License
|
151 |
This dataset is released under the **MIT License**, allowing free use for both research and commercial projects. Please credit this repository if you use it in your work.
|
|
|
141 |
99. Watermelon
|
142 |
100. Wheat
|
143 |
|
144 |
+
```python
|
145 |
+
from datasets import load_dataset
|
146 |
+
|
147 |
+
# Load the dataset
|
148 |
+
dataset = load_dataset("devshaheen/100_crops_plants_object_detection_25k_image_dataset")
|
149 |
+
|
150 |
+
# Check the dataset structure
|
151 |
+
print(dataset)
|
152 |
+
|
153 |
|
154 |
## License
|
155 |
This dataset is released under the **MIT License**, allowing free use for both research and commercial projects. Please credit this repository if you use it in your work.
|