├── .gitignore ├── README.md └── src ├── custom_layers.py ├── model.py ├── train.py └── triplets.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | src/__pycache__ 3 | 4 | # Do not upload saved models 5 | *.hdf5 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asparagus/triplet-net/HEAD/README.md -------------------------------------------------------------------------------- /src/custom_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asparagus/triplet-net/HEAD/src/custom_layers.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asparagus/triplet-net/HEAD/src/model.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asparagus/triplet-net/HEAD/src/train.py -------------------------------------------------------------------------------- /src/triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asparagus/triplet-net/HEAD/src/triplets.py --------------------------------------------------------------------------------