├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── QUESTION.md ├── README.md ├── hate_speech ├── .nsmlignore ├── README.md ├── data.py ├── fields.json ├── main.py ├── model.py └── setup.py └── spam ├── README.md ├── images ├── monotone.jpg ├── normal.jpg ├── screenshot_1.png └── unknown_2.png ├── nsml_train.py ├── reference ├── README.md ├── data_loader.py └── evaluation.py ├── requirements.txt ├── setup.py └── spam ├── __init__.py ├── spam_classifier ├── __init__.py ├── datasets │ ├── __init__.py │ └── dataset.py ├── models │ ├── BasicModel.py │ ├── __init__.py │ └── utils.py └── networks │ ├── ResNet50.py │ └── __init__.py └── training ├── __init__.py ├── experiments ├── __init__.py ├── v1.py └── v1_debug.py └── train.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/.github/ISSUE_TEMPLATE/QUESTION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NAVER-AI-RUSH -------------------------------------------------------------------------------- /hate_speech/.nsmlignore: -------------------------------------------------------------------------------- 1 | corpus* 2 | hate* 3 | ai_ru* -------------------------------------------------------------------------------- /hate_speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/README.md -------------------------------------------------------------------------------- /hate_speech/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/data.py -------------------------------------------------------------------------------- /hate_speech/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/fields.json -------------------------------------------------------------------------------- /hate_speech/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/main.py -------------------------------------------------------------------------------- /hate_speech/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/model.py -------------------------------------------------------------------------------- /hate_speech/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/hate_speech/setup.py -------------------------------------------------------------------------------- /spam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/README.md -------------------------------------------------------------------------------- /spam/images/monotone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/images/monotone.jpg -------------------------------------------------------------------------------- /spam/images/normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/images/normal.jpg -------------------------------------------------------------------------------- /spam/images/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/images/screenshot_1.png -------------------------------------------------------------------------------- /spam/images/unknown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/images/unknown_2.png -------------------------------------------------------------------------------- /spam/nsml_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/nsml_train.py -------------------------------------------------------------------------------- /spam/reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/reference/README.md -------------------------------------------------------------------------------- /spam/reference/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/reference/data_loader.py -------------------------------------------------------------------------------- /spam/reference/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/reference/evaluation.py -------------------------------------------------------------------------------- /spam/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/requirements.txt -------------------------------------------------------------------------------- /spam/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/setup.py -------------------------------------------------------------------------------- /spam/spam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/spam_classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/spam_classifier/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/spam_classifier/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/spam_classifier/datasets/dataset.py -------------------------------------------------------------------------------- /spam/spam/spam_classifier/models/BasicModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/spam_classifier/models/BasicModel.py -------------------------------------------------------------------------------- /spam/spam/spam_classifier/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/spam_classifier/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/spam_classifier/models/utils.py -------------------------------------------------------------------------------- /spam/spam/spam_classifier/networks/ResNet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/spam_classifier/networks/ResNet50.py -------------------------------------------------------------------------------- /spam/spam/spam_classifier/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/training/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spam/spam/training/experiments/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/training/experiments/v1.py -------------------------------------------------------------------------------- /spam/spam/training/experiments/v1_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/training/experiments/v1_debug.py -------------------------------------------------------------------------------- /spam/spam/training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-airush/NAVER-AI-RUSH/HEAD/spam/spam/training/train.py --------------------------------------------------------------------------------