You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,46 @@ The above is just used for development and by no means is necessary to run this
150
150
└── *.jpg
151
151
```
152
152
153
+
### Using Preset Datasets (quick start)
154
+
155
+
If you don't have your own dataset ready, the toolkit supports downloading common image classification datasets (CIFAR10, CIFAR100, MNIST, FashionMNIST, STL10) and preparing them in the required folder-per-class layout.
156
+
157
+
Example (Streamlit UI progress integration):
158
+
159
+
```python
160
+
import streamlit as st
161
+
from core.data_loader_pytorch import ImageClassificationDataLoaderPyTorch
162
+
from utils.add_ons_pytorch import make_streamlit_progress_callback
0 commit comments