This is an ML based project with Python.
Typical ML Project steps includes:
- Import the Data
- Cleaning of Data
- Split of Data into Training and Test Set
- Creating a model
- Train model
- Make Predictions/Testing
- Evaluate and Improve
- You need python offcourse
- Pandas library which can be simply installed with
pip install pandas
- Sklearn library which can be installed with
pip install -U scikit-learn
- Random dataset has been created with different data of the people who likes different music genres.
- Data is then trained on the model DecisionTreeClassifier which is provided by python inside the scikit-learn library.
- After data is trained evaluations are done using scikit-learn builtin module/class accuracy_score