deleted Starter.py

This commit is contained in:
Anne Lorenz 2018-09-18 12:13:51 +02:00
parent 677c8db8d0
commit 5d4b65cbf7
1 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
Starter
=============
starter program
'''
from BagOfWords import BagOfWords
from CsvHandler import CsvHandler
from DecisionTree import DecisionTree
from NaiveBayes import NaiveBayes
#from Requester import Requester
from SVM import SVM
print('# starting program')
print('# ...')
# only if new unlabeled(!) data set is required:
# Requester.save_articles_from_webhoseio()
file = 'classification_labelled_corrected.csv'
# read csv file
print('# reading dataset')
print('# ...')
dataset = CsvHandler.read_csv(file)
# DecisionTree.make_tree(dataset)
NaiveBayes.make_naive_bayes(dataset)
# SVM.make_svm(dataset)
print('# ending program')