Skip to content

Commit 865d9b0

Browse files
author
dbickson
committed
fixing
1 parent 6f8a514 commit 865d9b0

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ From the authors of [GraphLab](https://github.com/jegonzal/PowerGraph) and [Turi
1919
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/mscoco_duplicates-min.png)
2020
*Duplicates and near duplicates identified in [MS-COCO](https://cocodataset.org/#home) and [Imagenet-21K](https://www.image-net.org) dataset*
2121

22-
## Find similar persons
23-
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/viz0.png)
24-
*Can you tell how many different persons?*
25-
2622
## Find corrupted and broken images
2723
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/imagenet21k_broken.png)
2824
*Thousands of broken ImageNet images that have confusing labels of real objects.*
@@ -34,6 +30,11 @@ From the authors of [GraphLab](https://github.com/jegonzal/PowerGraph) and [Turi
3430
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/landmark_outliers-min.png)
3531
*Outliers in the [Google Landmark Recognition 2021 dataset](https://www.kaggle.com/competitions/landmark-recognition-2021) (dataset intention is to capture recognizable landmarks, like the empire state building etc.)*
3632

33+
## Find similar persons
34+
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/viz0.png)
35+
*Can you tell how many different persons?*
36+
37+
3738
## Find wrong labels
3839
![alt text](https://github.com/visualdatabase/fastdup/blob/main/gallery/imagenet21k_wrong_labels-min.png)
3940
*Wrong labels in the [Imagenet-21K](https://www.image-net.org) dataset*.
@@ -84,9 +85,10 @@ python3.8 -m pip install fastdup
8485

8586
```python
8687
import fastdup
87-
fastdup.run(input_dir="/path/to/your/folder") #main running function
88-
fastdup.create_duplicates_gallery('similarity.csv', save_path='.') #create a visual gallery of found duplicates
89-
fastdup.create_duplicates_gallery('outliers.csv', save_path='.') #create a visual gallery of anomalies
88+
fastdup.run(input_dir="/path/to/your/folder", work_dir='out') #main running function
89+
fastdup.create_duplicates_gallery('out/similarity.csv', save_path='.') #create a visual gallery of found duplicates
90+
fastdup.create_outliers_gallery('out/outliers.csv', save_path='.') #create a visual gallery of anomalies
91+
fastdup.create_components_gallery('out', save_path='.') #create visualiaiton of connected components
9092
```
9193

9294
![alt text](./gallery/fastdup_clip_24s_crop.gif)
@@ -97,6 +99,7 @@ fastdup.create_duplicates_gallery('outliers.csv', save_path='.') #create
9799
- [Finding duplicates, outliers in the Food-101 datadset:](https://github.com/visualdatabase/fastdup/blob/main/examples/getting_started_food101.ipynb)
98100
- [🔥🔥🔥 Finding duplicates, outliers and connected components in the Food-101 dataset, including Tensorboard Projector visualization - Google Colab](https://colab.research.google.com/github/visualdatabase/fastdup/blob/main/examples/fastdup.ipynb)
99101
- [🔥Analyzing video of the MEVA dataset - Google Colab](https://colab.research.google.com/github/visualdatabase/fastdup/blob/main/examples/fastdup_video.ipynb)
102+
- [Kaggle notebook - visualizing the pistachio dataset](https://www.kaggle.com/code/graphlab/fastdup/notebook)
100103

101104
![Tensorboard Projector integration is explained in our Colab notebook](./gallery/tensorboard_projector.png)
102105

0 commit comments

Comments
 (0)