├── README.md ├── Test.py ├── Train.py ├── dataloaders ├── CIFAR-100.py ├── CUB-200.py └── __pycache__ │ ├── CIFAR-100.cpython-37.pyc │ ├── CUB-200.cpython-37.pyc │ ├── Data_CIFAR100.cpython-37.pyc │ └── Data_CUB200.cpython-37.pyc ├── figures ├── setting.png └── two_stage.png ├── main.py ├── networks ├── __pycache__ │ ├── mobile_net.cpython-37.pyc │ ├── resnet.cpython-37.pyc │ └── wide_resnet.cpython-37.pyc ├── mobile_net.py ├── resnet.py └── wide_resnet.py ├── pretrain.py └── utils ├── __pycache__ └── global_variable.cpython-37.pyc ├── global_variable.py └── triplet.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/README.md -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/Test.py -------------------------------------------------------------------------------- /Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/Train.py -------------------------------------------------------------------------------- /dataloaders/CIFAR-100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/CIFAR-100.py -------------------------------------------------------------------------------- /dataloaders/CUB-200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/CUB-200.py -------------------------------------------------------------------------------- /dataloaders/__pycache__/CIFAR-100.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/__pycache__/CIFAR-100.cpython-37.pyc -------------------------------------------------------------------------------- /dataloaders/__pycache__/CUB-200.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/__pycache__/CUB-200.cpython-37.pyc -------------------------------------------------------------------------------- /dataloaders/__pycache__/Data_CIFAR100.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/__pycache__/Data_CIFAR100.cpython-37.pyc -------------------------------------------------------------------------------- /dataloaders/__pycache__/Data_CUB200.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/dataloaders/__pycache__/Data_CUB200.cpython-37.pyc -------------------------------------------------------------------------------- /figures/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/figures/setting.png -------------------------------------------------------------------------------- /figures/two_stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/figures/two_stage.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/main.py -------------------------------------------------------------------------------- /networks/__pycache__/mobile_net.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/__pycache__/mobile_net.cpython-37.pyc -------------------------------------------------------------------------------- /networks/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /networks/__pycache__/wide_resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/__pycache__/wide_resnet.cpython-37.pyc -------------------------------------------------------------------------------- /networks/mobile_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/mobile_net.py -------------------------------------------------------------------------------- /networks/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/resnet.py -------------------------------------------------------------------------------- /networks/wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/networks/wide_resnet.py -------------------------------------------------------------------------------- /pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/pretrain.py -------------------------------------------------------------------------------- /utils/__pycache__/global_variable.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/utils/__pycache__/global_variable.cpython-37.pyc -------------------------------------------------------------------------------- /utils/global_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/utils/global_variable.py -------------------------------------------------------------------------------- /utils/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cospDiDi/REFILLED/HEAD/utils/triplet.py --------------------------------------------------------------------------------