├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── SSL_Interface ├── __init__.py ├── configs │ ├── __init__.py │ ├── baseConfig.py │ └── interfaceConfig.py └── interfaces │ ├── __init__.py │ ├── baseInterface.py │ ├── hconvInterface.py │ └── weightedSumInterface.py ├── VERSION ├── example.py ├── overall_framework.png ├── pyproject.toml ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/README.md -------------------------------------------------------------------------------- /SSL_Interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/__init__.py -------------------------------------------------------------------------------- /SSL_Interface/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/configs/__init__.py -------------------------------------------------------------------------------- /SSL_Interface/configs/baseConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/configs/baseConfig.py -------------------------------------------------------------------------------- /SSL_Interface/configs/interfaceConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/configs/interfaceConfig.py -------------------------------------------------------------------------------- /SSL_Interface/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/interfaces/__init__.py -------------------------------------------------------------------------------- /SSL_Interface/interfaces/baseInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/interfaces/baseInterface.py -------------------------------------------------------------------------------- /SSL_Interface/interfaces/hconvInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/interfaces/hconvInterface.py -------------------------------------------------------------------------------- /SSL_Interface/interfaces/weightedSumInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/SSL_Interface/interfaces/weightedSumInterface.py -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/example.py -------------------------------------------------------------------------------- /overall_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/overall_framework.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | torch -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atosystem/SSL_Interface/HEAD/setup.py --------------------------------------------------------------------------------