First Download repository by git clone via ssh or https.
go to requirements.txt and run the command:
pip install -r requirements.txt
sudo apt-get install python-tk
And then import Tkinter in preparingdata.py
and run_classifiers.py
sudo pacman -S tk
To start algorithm just run :
python3 run_classifiers.py
or
python run_classifiers.py
or just run that file from your ide.
output
directory : In the output directory you will see all images of plots runned in scripts in.png
format, and areport.txt
file which include all log seen in console.prepraringdata
file in which we manipuale data (clean, create new features, deleting duplicates ecc..)model
file in which we defined all the classifers for our alghoritms used for training phaserun_classifiers
file in which we defined all classifiers runned in test phase, with a report of an evaluation phasedataset
directory in which there is the dataset imported with pandas inpreparingdata.py
util_service
file in which we define common function used in our implementation.