├── .gitignore ├── LICENSE ├── README.md ├── discovertext_api ├── __init__.py └── discovertext_api.py ├── dt_credentials.json ├── extract_users_from_csvs.py ├── extract_users_from_dt.py ├── gather_bio_corpus_stats.py ├── ngram_classifier ├── __init__.py ├── ngram_classifier.py └── ngram_classifier_record.py ├── requirements.txt ├── resources ├── model-is_good_or_bad_nnet.dat ├── model-is_good_or_bad_nnet.dat.h5 ├── model-is_good_or_bad_user_desc_ngram_class.dat ├── test.csv ├── test_bot.csv ├── test_good.csv ├── test_users.csv ├── training.csv ├── training_bot.csv └── training_good.csv ├── run-csvs-score.bat ├── run-csvs-score.sh ├── run-score-dtarchive.bat ├── run-score-dtarchive.sh ├── run_nnet.py ├── split_training_data.py ├── test_ngram_classifier.py ├── test_nnet.py ├── train_ngram_classifier.py ├── train_nnet.py ├── train_test_ngram_classifier.py ├── twitter_auth.json └── utils ├── __init__.py ├── app_utils.py └── text_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/README.md -------------------------------------------------------------------------------- /discovertext_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/discovertext_api/__init__.py -------------------------------------------------------------------------------- /discovertext_api/discovertext_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/discovertext_api/discovertext_api.py -------------------------------------------------------------------------------- /dt_credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/dt_credentials.json -------------------------------------------------------------------------------- /extract_users_from_csvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/extract_users_from_csvs.py -------------------------------------------------------------------------------- /extract_users_from_dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/extract_users_from_dt.py -------------------------------------------------------------------------------- /gather_bio_corpus_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/gather_bio_corpus_stats.py -------------------------------------------------------------------------------- /ngram_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/ngram_classifier/__init__.py -------------------------------------------------------------------------------- /ngram_classifier/ngram_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/ngram_classifier/ngram_classifier.py -------------------------------------------------------------------------------- /ngram_classifier/ngram_classifier_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/ngram_classifier/ngram_classifier_record.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/model-is_good_or_bad_nnet.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/model-is_good_or_bad_nnet.dat -------------------------------------------------------------------------------- /resources/model-is_good_or_bad_nnet.dat.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/model-is_good_or_bad_nnet.dat.h5 -------------------------------------------------------------------------------- /resources/model-is_good_or_bad_user_desc_ngram_class.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/model-is_good_or_bad_user_desc_ngram_class.dat -------------------------------------------------------------------------------- /resources/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/test.csv -------------------------------------------------------------------------------- /resources/test_bot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/test_bot.csv -------------------------------------------------------------------------------- /resources/test_good.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/test_good.csv -------------------------------------------------------------------------------- /resources/test_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/test_users.csv -------------------------------------------------------------------------------- /resources/training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/training.csv -------------------------------------------------------------------------------- /resources/training_bot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/training_bot.csv -------------------------------------------------------------------------------- /resources/training_good.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/resources/training_good.csv -------------------------------------------------------------------------------- /run-csvs-score.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/run-csvs-score.bat -------------------------------------------------------------------------------- /run-csvs-score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/run-csvs-score.sh -------------------------------------------------------------------------------- /run-score-dtarchive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/run-score-dtarchive.bat -------------------------------------------------------------------------------- /run-score-dtarchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/run-score-dtarchive.sh -------------------------------------------------------------------------------- /run_nnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/run_nnet.py -------------------------------------------------------------------------------- /split_training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/split_training_data.py -------------------------------------------------------------------------------- /test_ngram_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/test_ngram_classifier.py -------------------------------------------------------------------------------- /test_nnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/test_nnet.py -------------------------------------------------------------------------------- /train_ngram_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/train_ngram_classifier.py -------------------------------------------------------------------------------- /train_nnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/train_nnet.py -------------------------------------------------------------------------------- /train_test_ngram_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/train_test_ngram_classifier.py -------------------------------------------------------------------------------- /twitter_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/twitter_auth.json -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/app_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/utils/app_utils.py -------------------------------------------------------------------------------- /utils/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texifter/trust-defender/HEAD/utils/text_utils.py --------------------------------------------------------------------------------