├── README.md ├── contras.py ├── gloria.py ├── models ├── config_gloria.yaml ├── contras_model.py └── gloria_model.py ├── modules ├── contras_data.py ├── contras_loss.py ├── gloria_data.py ├── gloria_loss.py ├── resnet.py └── utils.py └── run.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/README.md -------------------------------------------------------------------------------- /contras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/contras.py -------------------------------------------------------------------------------- /gloria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/gloria.py -------------------------------------------------------------------------------- /models/config_gloria.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/models/config_gloria.yaml -------------------------------------------------------------------------------- /models/contras_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/models/contras_model.py -------------------------------------------------------------------------------- /models/gloria_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/models/gloria_model.py -------------------------------------------------------------------------------- /modules/contras_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/contras_data.py -------------------------------------------------------------------------------- /modules/contras_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/contras_loss.py -------------------------------------------------------------------------------- /modules/gloria_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/gloria_data.py -------------------------------------------------------------------------------- /modules/gloria_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/gloria_loss.py -------------------------------------------------------------------------------- /modules/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/resnet.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/modules/utils.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liubo105/SAT/HEAD/run.sh --------------------------------------------------------------------------------