├── .gitignore ├── LICENSE ├── README.md ├── data └── .gitkeep ├── get_data.sh ├── imgs ├── formula.jpg ├── mnist-lsoftmax-margin-1.png ├── mnist-lsoftmax-margin-2.png ├── mnist-lsoftmax-margin-3.png ├── mnist-lsoftmax-margin-4.png └── mnist-lsoftmax-margin-6.png ├── lsoftmax.py ├── mnist.py ├── model └── .gitkeep ├── operator ├── copy.sh ├── lsoftmax-inl.h ├── lsoftmax.cc └── lsoftmax.cu ├── plot_beta.py └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/get_data.sh -------------------------------------------------------------------------------- /imgs/formula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/formula.jpg -------------------------------------------------------------------------------- /imgs/mnist-lsoftmax-margin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/mnist-lsoftmax-margin-1.png -------------------------------------------------------------------------------- /imgs/mnist-lsoftmax-margin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/mnist-lsoftmax-margin-2.png -------------------------------------------------------------------------------- /imgs/mnist-lsoftmax-margin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/mnist-lsoftmax-margin-3.png -------------------------------------------------------------------------------- /imgs/mnist-lsoftmax-margin-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/mnist-lsoftmax-margin-4.png -------------------------------------------------------------------------------- /imgs/mnist-lsoftmax-margin-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/imgs/mnist-lsoftmax-margin-6.png -------------------------------------------------------------------------------- /lsoftmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/lsoftmax.py -------------------------------------------------------------------------------- /mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/mnist.py -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operator/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/operator/copy.sh -------------------------------------------------------------------------------- /operator/lsoftmax-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/operator/lsoftmax-inl.h -------------------------------------------------------------------------------- /operator/lsoftmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/operator/lsoftmax.cc -------------------------------------------------------------------------------- /operator/lsoftmax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/operator/lsoftmax.cu -------------------------------------------------------------------------------- /plot_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/plot_beta.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyetx/mx-lsoftmax/HEAD/train.sh --------------------------------------------------------------------------------