├── .gitignore ├── README.md ├── data.py ├── lsoftmax.py ├── lsoftmax_test.py ├── model.py └── train_mnist.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | data 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/data.py -------------------------------------------------------------------------------- /lsoftmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/lsoftmax.py -------------------------------------------------------------------------------- /lsoftmax_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/lsoftmax_test.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /train_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/lsoftmax-pytorch/HEAD/train_mnist.py --------------------------------------------------------------------------------