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
Point `--data-root` at a directory containing WSI `.tif` / `.svs` files (case insensitive, recursively searched):
126
126
127
127
```bash
128
-
python vae.py --data-root /path/to/wsi_tifs
128
+
python vae.py --data-root /path/to/wsi_files
129
129
```
130
130
131
131
Common knobs:
132
132
133
133
```bash
134
134
python vae.py \
135
-
--data-root /path/to/wsi_tifs \
135
+
--data-root /path/to/wsi_files \
136
136
--img-size 256 \
137
137
--batch-size 8 \
138
138
--tiles-per-epoch 10000 \
@@ -144,6 +144,23 @@ python vae.py \
144
144
145
145
By default, tiles are normalized from `[0, 1]` to `[-1, 1]` before being fed to the model.
146
146
147
+
### Supported Formats
148
+
149
+
HistoVAE relies on [OpenSlide](https://openslide.org/) for slide access, so the formats it can open are the formats OpenSlide supports on the host system. Supported formats include:
150
+
151
+
-`.svs`
152
+
-`.tif`
153
+
-`.dcm`
154
+
-`.ndpi`
155
+
-`.vms`
156
+
-`.vmu`
157
+
-`.scn`
158
+
-`.mrxs`
159
+
-`.tiff`
160
+
-`.svslide`
161
+
-`.bif`
162
+
-`.czi`
163
+
147
164
### Monitor with TensorBoard
148
165
149
166
Training logs go under `runs_vae/<timestamp>/` by default.
0 commit comments