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
Export feature vector embeddings to be visualized using tensorboard projector app.
306
+
work_dir: work_dir where fastdup results are stored
307
+
log_dir: output dir where tensorboard will read from
308
+
sample_size: how many images to view
309
+
sample_method: how to sample, currently 'random' is supported
310
+
with_images:bool add images to the visualization (default True)
311
+
get_label_func (callable): Optional parameter to allow adding class label name to the image. This is a function the user implements that gets the full file path and returns html string with the label or any other metadata desired.
312
+
:return:
313
+
```
314
+
315
+
After storing the data you should run (in a Jupyter notebook)
316
+
```
317
+
%load_ext tensorboard
318
+
%tensorboard --logdir=<log_dir>
319
+
```
299
320
300
321
## Advanced topics: resuming a stored run <aname="resume"/>
0 commit comments