├── .gitignore ├── LICENSE ├── README.md ├── sample4geo ├── Utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── init.cpython-39.pyc │ └── init.py ├── __pycache__ │ ├── loss.cpython-39.pyc │ ├── model.cpython-39.pyc │ ├── trainer.cpython-39.pyc │ ├── transforms.cpython-39.pyc │ └── utils.cpython-39.pyc ├── dataset │ ├── SUES-200 │ │ ├── indexs.yaml │ │ └── split_datasets.py │ ├── __pycache__ │ │ ├── cvact.cpython-39.pyc │ │ ├── university.cpython-311.pyc │ │ ├── university.cpython-39.pyc │ │ └── vigor.cpython-39.pyc │ ├── cvact.py │ ├── cvusa.py │ ├── sues-200.py │ ├── university.py │ └── vigor.py ├── evaluate │ ├── __pycache__ │ │ ├── cvusa_and_cvact.cpython-39.pyc │ │ ├── university.cpython-39.pyc │ │ └── vigor.cpython-39.pyc │ ├── cvusa_and_cvact.py │ ├── sues-200.py │ ├── university.py │ └── vigor.py ├── hand_convnext │ ├── ConvNext │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── make_model.cpython-37.pyc │ │ │ ├── make_model.cpython-38.pyc │ │ │ └── make_model.cpython-39.pyc │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── model_convnext.cpython-37.pyc │ │ │ │ ├── model_convnext.cpython-38.pyc │ │ │ │ ├── model_convnext.cpython-39.pyc │ │ │ │ ├── resnet.cpython-37.pyc │ │ │ │ ├── resnet.cpython-38.pyc │ │ │ │ └── resnet.cpython-39.pyc │ │ │ ├── model_convnext.py │ │ │ └── resnet.py │ │ └── make_model.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── model.cpython-37.pyc │ │ ├── model.cpython-38.pyc │ │ └── model.cpython-39.pyc │ └── model.py ├── loss │ ├── DRO_loss.py │ ├── DSA_loss.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── DRO_loss.cpython-39.pyc │ │ ├── DSA_loss.cpython-39.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── blocks_infoNCE.cpython-39.pyc │ │ ├── cal_loss.cpython-39.pyc │ │ ├── loss.cpython-39.pyc │ │ └── triplet_loss.cpython-39.pyc │ ├── blocks_infoNCE.py │ ├── cal_loss.py │ ├── loss.py │ └── triplet_loss.py ├── model.py ├── trainer.py ├── transforms.py └── utils.py ├── train_sues200.py └── train_university.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/README.md -------------------------------------------------------------------------------- /sample4geo/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample4geo/Utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/Utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/Utils/__pycache__/init.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/Utils/__pycache__/init.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/Utils/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/Utils/init.py -------------------------------------------------------------------------------- /sample4geo/__pycache__/loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/__pycache__/loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/__pycache__/trainer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/__pycache__/trainer.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/__pycache__/transforms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/__pycache__/transforms.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/dataset/SUES-200/indexs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/SUES-200/indexs.yaml -------------------------------------------------------------------------------- /sample4geo/dataset/SUES-200/split_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/SUES-200/split_datasets.py -------------------------------------------------------------------------------- /sample4geo/dataset/__pycache__/cvact.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/__pycache__/cvact.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/dataset/__pycache__/university.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/__pycache__/university.cpython-311.pyc -------------------------------------------------------------------------------- /sample4geo/dataset/__pycache__/university.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/__pycache__/university.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/dataset/__pycache__/vigor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/__pycache__/vigor.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/dataset/cvact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/cvact.py -------------------------------------------------------------------------------- /sample4geo/dataset/cvusa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/cvusa.py -------------------------------------------------------------------------------- /sample4geo/dataset/sues-200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/sues-200.py -------------------------------------------------------------------------------- /sample4geo/dataset/university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/university.py -------------------------------------------------------------------------------- /sample4geo/dataset/vigor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/dataset/vigor.py -------------------------------------------------------------------------------- /sample4geo/evaluate/__pycache__/cvusa_and_cvact.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/__pycache__/cvusa_and_cvact.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/evaluate/__pycache__/university.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/__pycache__/university.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/evaluate/__pycache__/vigor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/__pycache__/vigor.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/evaluate/cvusa_and_cvact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/cvusa_and_cvact.py -------------------------------------------------------------------------------- /sample4geo/evaluate/sues-200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/sues-200.py -------------------------------------------------------------------------------- /sample4geo/evaluate/university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/university.py -------------------------------------------------------------------------------- /sample4geo/evaluate/vigor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/evaluate/vigor.py -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__init__.py -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/__pycache__/make_model.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/model_convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/model_convnext.py -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/backbones/resnet.py -------------------------------------------------------------------------------- /sample4geo/hand_convnext/ConvNext/make_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/ConvNext/make_model.py -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/hand_convnext/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/hand_convnext/model.py -------------------------------------------------------------------------------- /sample4geo/loss/DRO_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/DRO_loss.py -------------------------------------------------------------------------------- /sample4geo/loss/DSA_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/DSA_loss.py -------------------------------------------------------------------------------- /sample4geo/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/DRO_loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/DRO_loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/DSA_loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/DSA_loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/blocks_infoNCE.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/blocks_infoNCE.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/cal_loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/cal_loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/__pycache__/triplet_loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/__pycache__/triplet_loss.cpython-39.pyc -------------------------------------------------------------------------------- /sample4geo/loss/blocks_infoNCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/blocks_infoNCE.py -------------------------------------------------------------------------------- /sample4geo/loss/cal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/cal_loss.py -------------------------------------------------------------------------------- /sample4geo/loss/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/loss.py -------------------------------------------------------------------------------- /sample4geo/loss/triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/loss/triplet_loss.py -------------------------------------------------------------------------------- /sample4geo/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/model.py -------------------------------------------------------------------------------- /sample4geo/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/trainer.py -------------------------------------------------------------------------------- /sample4geo/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/transforms.py -------------------------------------------------------------------------------- /sample4geo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/sample4geo/utils.py -------------------------------------------------------------------------------- /train_sues200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/train_sues200.py -------------------------------------------------------------------------------- /train_university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerpanKing/DAC/HEAD/train_university.py --------------------------------------------------------------------------------