├── README.md ├── iitp_audio_emergency ├── README.md ├── configuration │ ├── config.py │ └── logging.conf ├── data_loader.py ├── main.py ├── models │ ├── __init__.py │ └── model.py ├── nsml_utils.py ├── reference │ ├── data_loader.py │ └── evaluation.py ├── requirements.txt └── utils.py ├── iitp_category ├── README.md ├── configuration │ ├── config.py │ └── logging.conf ├── data_loader.py ├── main.py ├── models │ ├── __init__.py │ └── model.py ├── nsml_utils.py ├── reference │ ├── data_loader.py │ └── evaluation.py ├── requirements.txt └── utils.py ├── iitp_falling ├── README.md ├── data_loader.py ├── data_local_loader.py ├── evaluation.py ├── main.py └── setup.py └── iitp_trash ├── README.md ├── data_loader.py ├── data_local_loader.py ├── evaluation.py ├── main.py └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/README.md -------------------------------------------------------------------------------- /iitp_audio_emergency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/README.md -------------------------------------------------------------------------------- /iitp_audio_emergency/configuration/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/configuration/config.py -------------------------------------------------------------------------------- /iitp_audio_emergency/configuration/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/configuration/logging.conf -------------------------------------------------------------------------------- /iitp_audio_emergency/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/data_loader.py -------------------------------------------------------------------------------- /iitp_audio_emergency/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/main.py -------------------------------------------------------------------------------- /iitp_audio_emergency/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iitp_audio_emergency/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/models/model.py -------------------------------------------------------------------------------- /iitp_audio_emergency/nsml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/nsml_utils.py -------------------------------------------------------------------------------- /iitp_audio_emergency/reference/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/reference/data_loader.py -------------------------------------------------------------------------------- /iitp_audio_emergency/reference/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/reference/evaluation.py -------------------------------------------------------------------------------- /iitp_audio_emergency/requirements.txt: -------------------------------------------------------------------------------- 1 | #nsml: nvcr.io/nvidia/pytorch:19.06-py3 2 | openpyxl 3 | adamp -------------------------------------------------------------------------------- /iitp_audio_emergency/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_audio_emergency/utils.py -------------------------------------------------------------------------------- /iitp_category/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/README.md -------------------------------------------------------------------------------- /iitp_category/configuration/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/configuration/config.py -------------------------------------------------------------------------------- /iitp_category/configuration/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/configuration/logging.conf -------------------------------------------------------------------------------- /iitp_category/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/data_loader.py -------------------------------------------------------------------------------- /iitp_category/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/main.py -------------------------------------------------------------------------------- /iitp_category/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iitp_category/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/models/model.py -------------------------------------------------------------------------------- /iitp_category/nsml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/nsml_utils.py -------------------------------------------------------------------------------- /iitp_category/reference/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/reference/data_loader.py -------------------------------------------------------------------------------- /iitp_category/reference/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/reference/evaluation.py -------------------------------------------------------------------------------- /iitp_category/requirements.txt: -------------------------------------------------------------------------------- 1 | #nsml: nvcr.io/nvidia/pytorch:20.06-py3 2 | openpyxl 3 | adamp 4 | -------------------------------------------------------------------------------- /iitp_category/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_category/utils.py -------------------------------------------------------------------------------- /iitp_falling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/README.md -------------------------------------------------------------------------------- /iitp_falling/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/data_loader.py -------------------------------------------------------------------------------- /iitp_falling/data_local_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/data_local_loader.py -------------------------------------------------------------------------------- /iitp_falling/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/evaluation.py -------------------------------------------------------------------------------- /iitp_falling/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/main.py -------------------------------------------------------------------------------- /iitp_falling/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_falling/setup.py -------------------------------------------------------------------------------- /iitp_trash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/README.md -------------------------------------------------------------------------------- /iitp_trash/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/data_loader.py -------------------------------------------------------------------------------- /iitp_trash/data_local_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/data_local_loader.py -------------------------------------------------------------------------------- /iitp_trash/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/evaluation.py -------------------------------------------------------------------------------- /iitp_trash/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/main.py -------------------------------------------------------------------------------- /iitp_trash/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-GrandChallenge/round-1/HEAD/iitp_trash/setup.py --------------------------------------------------------------------------------