├── .gitignore ├── LICENSE ├── Readme.md ├── benchmark.png ├── circle_loss.py ├── emmbeding.png ├── main.py └── main_emmbed.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.pyc 3 | *.h5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/Readme.md -------------------------------------------------------------------------------- /benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/benchmark.png -------------------------------------------------------------------------------- /circle_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/circle_loss.py -------------------------------------------------------------------------------- /emmbeding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/emmbeding.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/main.py -------------------------------------------------------------------------------- /main_emmbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen8838/Circle-Loss/HEAD/main_emmbed.py --------------------------------------------------------------------------------