gitextract_zu49vpz0/ ├── .github/ │ ├── CODEOWNERS │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASING.md ├── STYLE_GUIDE.md ├── fiftyone/ │ ├── __init__.py │ └── brain/ │ ├── __init__.py │ ├── config.py │ ├── internal/ │ │ ├── __init__.py │ │ ├── core/ │ │ │ ├── __init__.py │ │ │ ├── duplicates.py │ │ │ ├── elasticsearch.py │ │ │ ├── hardness.py │ │ │ ├── lancedb.py │ │ │ ├── leaky_splits.py │ │ │ ├── milvus.py │ │ │ ├── mistakenness.py │ │ │ ├── mongodb.py │ │ │ ├── mosaic.py │ │ │ ├── pgvector.py │ │ │ ├── pinecone.py │ │ │ ├── qdrant.py │ │ │ ├── redis.py │ │ │ ├── representativeness.py │ │ │ ├── sklearn.py │ │ │ ├── uniqueness.py │ │ │ ├── utils.py │ │ │ └── visualization.py │ │ └── models/ │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── manifest.json │ │ ├── simple_resnet.py │ │ └── torch.py │ ├── similarity.py │ └── visualization.py ├── install.bat ├── install.sh ├── pylintrc ├── pyproject.toml ├── pytest.ini ├── requirements/ │ ├── build.txt │ ├── common.txt │ ├── dev.txt │ └── prod.txt ├── requirements.txt ├── setup.py └── tests/ ├── README.md ├── intensive/ │ ├── test_interface.py │ ├── test_similarity.py │ ├── test_uniqueness.py │ └── test_visualization.py ├── models/ │ └── test_simple_resnet.py └── test_uniqueness.py