├── .idea └── vcs.xml ├── Demo.ipynb ├── README.md ├── __pycache__ └── parser.cpython-35.pyc ├── checkpoint └── ReadMe ├── demo_attr.png ├── lib ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── nms_wrapper.cpython-35.pyc ├── bilinear_pooling │ ├── CompactBilinearPooling.py │ └── __pycache__ │ │ └── CompactBilinearPooling.cpython-35.pyc ├── configure │ ├── __pycache__ │ │ ├── config.cpython-35.pyc │ │ └── net_util.cpython-35.pyc │ ├── config.py │ └── net_util.py ├── dataset │ ├── __pycache__ │ │ └── coco_dataset.cpython-35.pyc │ └── coco_dataset.py ├── make.sh ├── nms │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ └── pth_nms.cpython-35.pyc │ ├── _ext │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ └── __init__.cpython-35.pyc │ │ └── nms │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ └── __init__.cpython-35.pyc │ │ │ └── _nms.so │ ├── build.py │ ├── pth_nms.py │ ├── pth_nms.pyc │ └── src │ │ ├── cuda │ │ ├── nms_kernel.cu │ │ ├── nms_kernel.cu.o │ │ └── nms_kernel.h │ │ ├── nms.c │ │ ├── nms.h │ │ ├── nms_cuda.c │ │ └── nms_cuda.h ├── nms_wrapper.py ├── nms_wrapper.pyc ├── pytorch_fft │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-35.pyc │ ├── _ext │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-35.pyc │ │ └── th_fft │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── __init__.cpython-35.pyc │ │ │ └── _th_fft.so │ ├── fft │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── autograd.cpython-35.pyc │ │ │ └── fft.cpython-35.pyc │ │ ├── autograd.py │ │ └── fft.py │ └── src │ │ ├── generic │ │ ├── helpers.c │ │ ├── th_fft_cuda.c │ │ ├── th_fft_cuda.h │ │ ├── th_irfft_cuda.c │ │ └── th_rfft_cuda.c │ │ ├── th_fft_cuda.c │ │ ├── th_fft_cuda.h │ │ ├── th_fft_generate_double.h │ │ ├── th_fft_generate_float.h │ │ └── th_fft_generate_helpers.h ├── resnet │ ├── __pycache__ │ │ └── resnet.cpython-35.pyc │ └── resnet.py └── roi_align │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── crop_and_resize.cpython-35.pyc │ ├── _ext │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ └── __init__.cpython-35.pyc │ └── crop_and_resize │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ └── __init__.cpython-35.pyc │ │ └── _crop_and_resize.so │ ├── build.py │ ├── crop_and_resize.py │ ├── crop_and_resize.pyc │ ├── roi_align.py │ ├── roi_align.pyc │ └── src │ ├── crop_and_resize.c │ ├── crop_and_resize.h │ ├── crop_and_resize_gpu.c │ ├── crop_and_resize_gpu.h │ └── cuda │ ├── crop_and_resize_kernel.cu │ ├── crop_and_resize_kernel.cu.o │ └── crop_and_resize_kernel.h ├── models ├── Model7.py └── __pycache__ │ └── Model7.cpython-35.pyc ├── others ├── README.md ├── coco_person_list.txt ├── dictionary_emb.pkl └── low-level-attr.txt ├── parser.py ├── results ├── architecture.png ├── test.log ├── train.log └── train_batch.log ├── runs ├── Oct05_13-58-18_apg395-001 │ └── events.out.tfevents.1538773098.apg395-001 ├── Oct05_14-08-13_apg395-001 │ └── events.out.tfevents.1538773693.apg395-001 ├── Oct05_14-08-27_apg395-001 │ └── events.out.tfevents.1538773707.apg395-001 ├── Oct05_14-08-58_apg395-001 │ └── events.out.tfevents.1538773738.apg395-001 ├── Oct05_14-17-30_apg395-001 │ └── events.out.tfevents.1538774250.apg395-001 ├── Oct05_14-17-42_apg395-001 │ └── events.out.tfevents.1538774262.apg395-001 ├── Oct05_14-18-03_apg395-001 │ └── events.out.tfevents.1538774283.apg395-001 ├── Oct05_14-18-55_apg395-001 │ └── events.out.tfevents.1538774335.apg395-001 └── Oct05_14-19-46_apg395-001 │ └── events.out.tfevents.1538774386.apg395-001 └── train_attr_attention_embedding.py /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/Demo.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/parser.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/__pycache__/parser.cpython-35.pyc -------------------------------------------------------------------------------- /checkpoint/ReadMe: -------------------------------------------------------------------------------- 1 | This directory contains the pretrained model. 2 | -------------------------------------------------------------------------------- /demo_attr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/demo_attr.png -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/__init__.pyc -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/__pycache__/nms_wrapper.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/__pycache__/nms_wrapper.cpython-35.pyc -------------------------------------------------------------------------------- /lib/bilinear_pooling/CompactBilinearPooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/bilinear_pooling/CompactBilinearPooling.py -------------------------------------------------------------------------------- /lib/bilinear_pooling/__pycache__/CompactBilinearPooling.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/bilinear_pooling/__pycache__/CompactBilinearPooling.cpython-35.pyc -------------------------------------------------------------------------------- /lib/configure/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/configure/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /lib/configure/__pycache__/net_util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/configure/__pycache__/net_util.cpython-35.pyc -------------------------------------------------------------------------------- /lib/configure/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/configure/config.py -------------------------------------------------------------------------------- /lib/configure/net_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/configure/net_util.py -------------------------------------------------------------------------------- /lib/dataset/__pycache__/coco_dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/dataset/__pycache__/coco_dataset.cpython-35.pyc -------------------------------------------------------------------------------- /lib/dataset/coco_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/dataset/coco_dataset.py -------------------------------------------------------------------------------- /lib/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/make.sh -------------------------------------------------------------------------------- /lib/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nms/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/__init__.pyc -------------------------------------------------------------------------------- /lib/nms/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nms/__pycache__/pth_nms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/__pycache__/pth_nms.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nms/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nms/_ext/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/__init__.pyc -------------------------------------------------------------------------------- /lib/nms/_ext/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nms/_ext/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/nms/__init__.py -------------------------------------------------------------------------------- /lib/nms/_ext/nms/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/nms/__init__.pyc -------------------------------------------------------------------------------- /lib/nms/_ext/nms/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/nms/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nms/_ext/nms/_nms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/_ext/nms/_nms.so -------------------------------------------------------------------------------- /lib/nms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/build.py -------------------------------------------------------------------------------- /lib/nms/pth_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/pth_nms.py -------------------------------------------------------------------------------- /lib/nms/pth_nms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/pth_nms.pyc -------------------------------------------------------------------------------- /lib/nms/src/cuda/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/cuda/nms_kernel.cu -------------------------------------------------------------------------------- /lib/nms/src/cuda/nms_kernel.cu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/cuda/nms_kernel.cu.o -------------------------------------------------------------------------------- /lib/nms/src/cuda/nms_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/cuda/nms_kernel.h -------------------------------------------------------------------------------- /lib/nms/src/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/nms.c -------------------------------------------------------------------------------- /lib/nms/src/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/nms.h -------------------------------------------------------------------------------- /lib/nms/src/nms_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/nms_cuda.c -------------------------------------------------------------------------------- /lib/nms/src/nms_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms/src/nms_cuda.h -------------------------------------------------------------------------------- /lib/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms_wrapper.py -------------------------------------------------------------------------------- /lib/nms_wrapper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/nms_wrapper.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/__init__.py: -------------------------------------------------------------------------------- 1 | from . import fft -------------------------------------------------------------------------------- /lib/pytorch_fft/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pytorch_fft/_ext/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/_ext/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/_ext/th_fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/_ext/th_fft/__init__.py -------------------------------------------------------------------------------- /lib/pytorch_fft/_ext/th_fft/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/_ext/th_fft/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/_ext/th_fft/_th_fft.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/_ext/th_fft/_th_fft.so -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/__init__.py -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/__pycache__/autograd.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/__pycache__/autograd.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/__pycache__/fft.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/__pycache__/fft.cpython-35.pyc -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/autograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/autograd.py -------------------------------------------------------------------------------- /lib/pytorch_fft/fft/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/fft/fft.py -------------------------------------------------------------------------------- /lib/pytorch_fft/src/generic/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/generic/helpers.c -------------------------------------------------------------------------------- /lib/pytorch_fft/src/generic/th_fft_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/generic/th_fft_cuda.c -------------------------------------------------------------------------------- /lib/pytorch_fft/src/generic/th_fft_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/generic/th_fft_cuda.h -------------------------------------------------------------------------------- /lib/pytorch_fft/src/generic/th_irfft_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/generic/th_irfft_cuda.c -------------------------------------------------------------------------------- /lib/pytorch_fft/src/generic/th_rfft_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/generic/th_rfft_cuda.c -------------------------------------------------------------------------------- /lib/pytorch_fft/src/th_fft_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/th_fft_cuda.c -------------------------------------------------------------------------------- /lib/pytorch_fft/src/th_fft_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/th_fft_cuda.h -------------------------------------------------------------------------------- /lib/pytorch_fft/src/th_fft_generate_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/th_fft_generate_double.h -------------------------------------------------------------------------------- /lib/pytorch_fft/src/th_fft_generate_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/th_fft_generate_float.h -------------------------------------------------------------------------------- /lib/pytorch_fft/src/th_fft_generate_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/pytorch_fft/src/th_fft_generate_helpers.h -------------------------------------------------------------------------------- /lib/resnet/__pycache__/resnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/resnet/__pycache__/resnet.cpython-35.pyc -------------------------------------------------------------------------------- /lib/resnet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/resnet/resnet.py -------------------------------------------------------------------------------- /lib/roi_align/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/roi_align/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/__init__.pyc -------------------------------------------------------------------------------- /lib/roi_align/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/roi_align/__pycache__/crop_and_resize.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/__pycache__/crop_and_resize.cpython-35.pyc -------------------------------------------------------------------------------- /lib/roi_align/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/roi_align/_ext/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/__init__.pyc -------------------------------------------------------------------------------- /lib/roi_align/_ext/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/roi_align/_ext/crop_and_resize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/crop_and_resize/__init__.py -------------------------------------------------------------------------------- /lib/roi_align/_ext/crop_and_resize/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/crop_and_resize/__init__.pyc -------------------------------------------------------------------------------- /lib/roi_align/_ext/crop_and_resize/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/crop_and_resize/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/roi_align/_ext/crop_and_resize/_crop_and_resize.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/_ext/crop_and_resize/_crop_and_resize.so -------------------------------------------------------------------------------- /lib/roi_align/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/build.py -------------------------------------------------------------------------------- /lib/roi_align/crop_and_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/crop_and_resize.py -------------------------------------------------------------------------------- /lib/roi_align/crop_and_resize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/crop_and_resize.pyc -------------------------------------------------------------------------------- /lib/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/roi_align.py -------------------------------------------------------------------------------- /lib/roi_align/roi_align.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/roi_align.pyc -------------------------------------------------------------------------------- /lib/roi_align/src/crop_and_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/crop_and_resize.c -------------------------------------------------------------------------------- /lib/roi_align/src/crop_and_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/crop_and_resize.h -------------------------------------------------------------------------------- /lib/roi_align/src/crop_and_resize_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/crop_and_resize_gpu.c -------------------------------------------------------------------------------- /lib/roi_align/src/crop_and_resize_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/crop_and_resize_gpu.h -------------------------------------------------------------------------------- /lib/roi_align/src/cuda/crop_and_resize_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/cuda/crop_and_resize_kernel.cu -------------------------------------------------------------------------------- /lib/roi_align/src/cuda/crop_and_resize_kernel.cu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/cuda/crop_and_resize_kernel.cu.o -------------------------------------------------------------------------------- /lib/roi_align/src/cuda/crop_and_resize_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/lib/roi_align/src/cuda/crop_and_resize_kernel.h -------------------------------------------------------------------------------- /models/Model7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/models/Model7.py -------------------------------------------------------------------------------- /models/__pycache__/Model7.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/models/__pycache__/Model7.cpython-35.pyc -------------------------------------------------------------------------------- /others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/others/README.md -------------------------------------------------------------------------------- /others/coco_person_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/others/coco_person_list.txt -------------------------------------------------------------------------------- /others/dictionary_emb.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/others/dictionary_emb.pkl -------------------------------------------------------------------------------- /others/low-level-attr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/others/low-level-attr.txt -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/parser.py -------------------------------------------------------------------------------- /results/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/results/architecture.png -------------------------------------------------------------------------------- /results/test.log: -------------------------------------------------------------------------------- 1 | epoch time loss 2 | -------------------------------------------------------------------------------- /results/train.log: -------------------------------------------------------------------------------- 1 | epoch time loss 2 | -------------------------------------------------------------------------------- /results/train_batch.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/results/train_batch.log -------------------------------------------------------------------------------- /runs/Oct05_13-58-18_apg395-001/events.out.tfevents.1538773098.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_13-58-18_apg395-001/events.out.tfevents.1538773098.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-08-13_apg395-001/events.out.tfevents.1538773693.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-08-13_apg395-001/events.out.tfevents.1538773693.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-08-27_apg395-001/events.out.tfevents.1538773707.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-08-27_apg395-001/events.out.tfevents.1538773707.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-08-58_apg395-001/events.out.tfevents.1538773738.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-08-58_apg395-001/events.out.tfevents.1538773738.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-17-30_apg395-001/events.out.tfevents.1538774250.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-17-30_apg395-001/events.out.tfevents.1538774250.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-17-42_apg395-001/events.out.tfevents.1538774262.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-17-42_apg395-001/events.out.tfevents.1538774262.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-18-03_apg395-001/events.out.tfevents.1538774283.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-18-03_apg395-001/events.out.tfevents.1538774283.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-18-55_apg395-001/events.out.tfevents.1538774335.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-18-55_apg395-001/events.out.tfevents.1538774335.apg395-001 -------------------------------------------------------------------------------- /runs/Oct05_14-19-46_apg395-001/events.out.tfevents.1538774386.apg395-001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/runs/Oct05_14-19-46_apg395-001/events.out.tfevents.1538774386.apg395-001 -------------------------------------------------------------------------------- /train_attr_attention_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobswan1/MTG-pytorch/HEAD/train_attr_attention_embedding.py --------------------------------------------------------------------------------