Some utilities for me to analyze photography. Example tasks include generating representative samples, filtering, and summary generation.
This project uses Poetry for Python dependency management. Get the latest version of poetry
. You can install it with pip inside a virtual environment like:
pip install poetry
Once you have poetry, run:
poetry install
from the root level of the project.
Reusable bits of Python code can be found in src/py/libs
. Subdirectories are manually added to the pyproject.toml
to form new packages.
Things like FastAPI servers, dashboards, and other applications written in Python can be found in src/py/apps
. Subdirectories are manually added to the pyproject.toml
to form new packages.
To run the notebooks in ./notebooks/
after following the installation instructions, remember to install your kernel:
python -m ipykernel install --name your-env-name --user
See src/py/apps/photo_sampler
for README.md
instructions on how to use the similarity search server.