├── .gitignore ├── README.md ├── data ├── stopwords_tr_interpress.pkl └── tr-blacklist.pkl ├── notebooks ├── feature_extraction.ipynb ├── load_dataset_and_preprocess.ipynb ├── prediction.ipynb └── train.ipynb └── results ├── CF_2000_2000.png ├── results.png └── score_test_acc.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/README.md -------------------------------------------------------------------------------- /data/stopwords_tr_interpress.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/data/stopwords_tr_interpress.pkl -------------------------------------------------------------------------------- /data/tr-blacklist.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/data/tr-blacklist.pkl -------------------------------------------------------------------------------- /notebooks/feature_extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/notebooks/feature_extraction.ipynb -------------------------------------------------------------------------------- /notebooks/load_dataset_and_preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/notebooks/load_dataset_and_preprocess.ipynb -------------------------------------------------------------------------------- /notebooks/prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/notebooks/prediction.ipynb -------------------------------------------------------------------------------- /notebooks/train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/notebooks/train.ipynb -------------------------------------------------------------------------------- /results/CF_2000_2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/results/CF_2000_2000.png -------------------------------------------------------------------------------- /results/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/results/results.png -------------------------------------------------------------------------------- /results/score_test_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodiks/turkish-news-classification/HEAD/results/score_test_acc.png --------------------------------------------------------------------------------