├── .gitignore ├── Model ├── Initializer.py ├── NNUtil.py ├── __init__.py ├── corrnet.py └── optimization.py ├── README.md └── mnistExample ├── __init__.py ├── create_data.py ├── evaluate.py ├── project_corrnet.py └── train_corrnet.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea/ -------------------------------------------------------------------------------- /Model/Initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/Model/Initializer.py -------------------------------------------------------------------------------- /Model/NNUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/Model/NNUtil.py -------------------------------------------------------------------------------- /Model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Sarath' 2 | -------------------------------------------------------------------------------- /Model/corrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/Model/corrnet.py -------------------------------------------------------------------------------- /Model/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/Model/optimization.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/README.md -------------------------------------------------------------------------------- /mnistExample/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Sarath' 2 | -------------------------------------------------------------------------------- /mnistExample/create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/mnistExample/create_data.py -------------------------------------------------------------------------------- /mnistExample/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/mnistExample/evaluate.py -------------------------------------------------------------------------------- /mnistExample/project_corrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/mnistExample/project_corrnet.py -------------------------------------------------------------------------------- /mnistExample/train_corrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apsarath/CorrNet/HEAD/mnistExample/train_corrnet.py --------------------------------------------------------------------------------