gitextract_53kablsc/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── .gitignore │ ├── Gemfile │ ├── _config.yml │ ├── _data/ │ │ ├── alerts.yml │ │ ├── definitions.yml │ │ ├── glossary.yml │ │ ├── sidebars/ │ │ │ └── home_sidebar.yml │ │ ├── tags.yml │ │ ├── terms.yml │ │ └── topnav.yml │ ├── _includes/ │ │ ├── archive.html │ │ ├── callout.html │ │ ├── footer.html │ │ ├── google_analytics.html │ │ ├── head.html │ │ ├── head_print.html │ │ ├── image.html │ │ ├── important.html │ │ ├── initialize_shuffle.html │ │ ├── inline_image.html │ │ ├── links.html │ │ ├── note.html │ │ ├── search_google_custom.html │ │ ├── search_simple_jekyll.html │ │ ├── sidebar.html │ │ ├── tip.html │ │ ├── toc.html │ │ ├── topnav.html │ │ └── warning.html │ ├── _layouts/ │ │ ├── default.html │ │ ├── default_print.html │ │ ├── none.html │ │ ├── page.html │ │ └── page_print.html │ ├── css/ │ │ ├── boxshadowproperties.css │ │ ├── customstyles.css │ │ ├── fonts/ │ │ │ └── FontAwesome.otf │ │ ├── modern-business.css │ │ ├── printstyles.css │ │ ├── syntax.css │ │ ├── theme-blue.css │ │ └── theme-green.css │ ├── feed.xml │ ├── fonts/ │ │ └── FontAwesome.otf │ ├── index.html │ ├── js/ │ │ ├── customscripts.js │ │ ├── jekyll-search.js │ │ └── toc.js │ ├── licenses/ │ │ ├── LICENSE │ │ └── LICENSE-BSD-NAVGOCO.txt │ ├── sidebar.json │ ├── sitemap.xml │ ├── tooltips.json │ └── triplet_loss.html ├── index.ipynb ├── online_triplet_loss/ │ ├── __init__.py │ ├── _nbdev.py │ └── losses.py ├── settings.ini ├── setup.py └── triplet_loss.ipynb