├── LICENSE ├── README.md ├── asserts ├── 2dfourier.png ├── MNIST_featvis.jpg └── convergence.jpg ├── baseline ├── baseline_cnn.py ├── baseline_models │ └── .gitignore ├── cifar10_input.py ├── loss.py ├── test.py └── train_baseline.py ├── cifar10 └── .gitignore ├── cifar10_input.py ├── dataset_setup.sh ├── examples ├── spherenet_linear_sphereconv.py ├── spherenet_linear_sphereconv_wsoftmax.py └── spherenet_sigmoid_sphereconv.py ├── loss.py ├── models └── .gitignore ├── results ├── baseline_training.log ├── spherenet_cos_standard_training.log ├── spherenet_cos_wnsoftmax_training.log ├── spherenet_linear_standard_training.log ├── spherenet_lr_sigmoid_standard_training.log └── spherenet_sigmoid_standard_training.log ├── sphere_resnet ├── baseline │ ├── baseline_resnet.py │ ├── cifar10plus_input.py │ ├── loss.py │ ├── models │ │ └── .gitignore │ └── train_baseline.py ├── cifar10plus_input.py ├── loss.py ├── models │ └── .gitignore ├── results │ ├── baseline_resnet.log │ └── linear_sphereconv_resnet.log ├── sphere_resnet_v1.py └── train_sphere_resnet.py ├── spherenet.py ├── test.py └── train_spherenet.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/README.md -------------------------------------------------------------------------------- /asserts/2dfourier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/asserts/2dfourier.png -------------------------------------------------------------------------------- /asserts/MNIST_featvis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/asserts/MNIST_featvis.jpg -------------------------------------------------------------------------------- /asserts/convergence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/asserts/convergence.jpg -------------------------------------------------------------------------------- /baseline/baseline_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/baseline_cnn.py -------------------------------------------------------------------------------- /baseline/baseline_models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/baseline_models/.gitignore -------------------------------------------------------------------------------- /baseline/cifar10_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/cifar10_input.py -------------------------------------------------------------------------------- /baseline/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/loss.py -------------------------------------------------------------------------------- /baseline/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/test.py -------------------------------------------------------------------------------- /baseline/train_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/baseline/train_baseline.py -------------------------------------------------------------------------------- /cifar10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/cifar10/.gitignore -------------------------------------------------------------------------------- /cifar10_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/cifar10_input.py -------------------------------------------------------------------------------- /dataset_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/dataset_setup.sh -------------------------------------------------------------------------------- /examples/spherenet_linear_sphereconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/examples/spherenet_linear_sphereconv.py -------------------------------------------------------------------------------- /examples/spherenet_linear_sphereconv_wsoftmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/examples/spherenet_linear_sphereconv_wsoftmax.py -------------------------------------------------------------------------------- /examples/spherenet_sigmoid_sphereconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/examples/spherenet_sigmoid_sphereconv.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/loss.py -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/models/.gitignore -------------------------------------------------------------------------------- /results/baseline_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/baseline_training.log -------------------------------------------------------------------------------- /results/spherenet_cos_standard_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/spherenet_cos_standard_training.log -------------------------------------------------------------------------------- /results/spherenet_cos_wnsoftmax_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/spherenet_cos_wnsoftmax_training.log -------------------------------------------------------------------------------- /results/spherenet_linear_standard_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/spherenet_linear_standard_training.log -------------------------------------------------------------------------------- /results/spherenet_lr_sigmoid_standard_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/spherenet_lr_sigmoid_standard_training.log -------------------------------------------------------------------------------- /results/spherenet_sigmoid_standard_training.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/results/spherenet_sigmoid_standard_training.log -------------------------------------------------------------------------------- /sphere_resnet/baseline/baseline_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/baseline/baseline_resnet.py -------------------------------------------------------------------------------- /sphere_resnet/baseline/cifar10plus_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/baseline/cifar10plus_input.py -------------------------------------------------------------------------------- /sphere_resnet/baseline/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/baseline/loss.py -------------------------------------------------------------------------------- /sphere_resnet/baseline/models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/baseline/models/.gitignore -------------------------------------------------------------------------------- /sphere_resnet/baseline/train_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/baseline/train_baseline.py -------------------------------------------------------------------------------- /sphere_resnet/cifar10plus_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/cifar10plus_input.py -------------------------------------------------------------------------------- /sphere_resnet/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/loss.py -------------------------------------------------------------------------------- /sphere_resnet/models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/models/.gitignore -------------------------------------------------------------------------------- /sphere_resnet/results/baseline_resnet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/results/baseline_resnet.log -------------------------------------------------------------------------------- /sphere_resnet/results/linear_sphereconv_resnet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/results/linear_sphereconv_resnet.log -------------------------------------------------------------------------------- /sphere_resnet/sphere_resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/sphere_resnet_v1.py -------------------------------------------------------------------------------- /sphere_resnet/train_sphere_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/sphere_resnet/train_sphere_resnet.py -------------------------------------------------------------------------------- /spherenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/spherenet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/test.py -------------------------------------------------------------------------------- /train_spherenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wy1iu/SphereNet/HEAD/train_spherenet.py --------------------------------------------------------------------------------