├── Modulssd_CONV2.py ├── README.md ├── __pycache__ ├── SFTssd.cpython-36.pyc ├── SFTssd_8.cpython-36.pyc ├── SFTssd_8_max.cpython-36.pyc ├── SFTssd_CONV1.cpython-36.pyc ├── SFTssd_CONV1_c.cpython-36.pyc ├── SFTssd_CONV1_concate.cpython-36.pyc ├── SFTssd_CONV1_norm.cpython-36.pyc ├── SFTssd_CONV2.cpython-36.pyc ├── SFTssd_CONV2_F5.cpython-36.pyc ├── SFTssd_CONV2_o.cpython-36.pyc ├── SFTssd_CONV3.cpython-36.pyc ├── SFTssd_CONV3_o.cpython-36.pyc ├── SFTssd_CONV4_o.cpython-36.pyc ├── SFTssd_CONV5.cpython-36.pyc ├── SFTssd_F5.cpython-36.pyc ├── SFTssdv2.cpython-36.pyc └── ssd.cpython-36.pyc ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── config.cpython-36.pyc │ ├── jhmdb.cpython-36.pyc │ ├── ucf24.cpython-36.pyc │ ├── ucf24_8.cpython-36.pyc │ ├── ucf24_F5.cpython-36.pyc │ ├── ucfsports.cpython-36.pyc │ └── ucfsports_F5.cpython-36.pyc ├── config.py └── ucf24.py ├── layers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── box_utils.cpython-36.pyc ├── box_utils.py ├── functions │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── prior_box.cpython-36.pyc │ └── prior_box.py └── modules │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── l2norm.cpython-36.pyc │ └── multibox_loss.cpython-36.pyc │ ├── l2norm.py │ └── multibox_loss.py ├── test-ucf24.py ├── train-ucf24.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── augmentations.cpython-36.pyc ├── augmentations_8.cpython-36.pyc ├── augmentations_F5.cpython-36.pyc └── evaluation.cpython-36.pyc ├── augmentations.py └── evaluation.py /Modulssd_CONV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/Modulssd_CONV2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/SFTssd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_8.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_8.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_8_max.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_8_max.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV1.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV1_c.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV1_c.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV1_concate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV1_concate.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV1_norm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV1_norm.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV2.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV2_F5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV2_F5.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV2_o.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV2_o.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV3.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV3_o.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV3_o.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV4_o.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV4_o.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_CONV5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_CONV5.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssd_F5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssd_F5.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SFTssdv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/SFTssdv2.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/ssd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/__pycache__/ssd.cpython-36.pyc -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/jhmdb.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/jhmdb.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/ucf24.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/ucf24.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/ucf24_8.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/ucf24_8.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/ucf24_F5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/ucf24_F5.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/ucfsports.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/ucfsports.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/ucfsports_F5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/__pycache__/ucfsports_F5.cpython-36.pyc -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/config.py -------------------------------------------------------------------------------- /data/ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/data/ucf24.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/box_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/__pycache__/box_utils.cpython-36.pyc -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/functions/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/prior_box.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/functions/__pycache__/prior_box.cpython-36.pyc -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/l2norm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/__pycache__/l2norm.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/multibox_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/__pycache__/multibox_loss.cpython-36.pyc -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /test-ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/test-ucf24.py -------------------------------------------------------------------------------- /train-ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/train-ucf24.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__pycache__/augmentations.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations_8.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__pycache__/augmentations_8.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations_F5.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__pycache__/augmentations_F5.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/evaluation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/__pycache__/evaluation.cpython-36.pyc -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiaozizhao/Two-in-One-ActionDetection/HEAD/utils/evaluation.py --------------------------------------------------------------------------------