Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.21 KB

README.md

File metadata and controls

31 lines (21 loc) · 1.21 KB

scikit-learn-basics

General idea on this project

This project was made to answer this lab's questions: TP3 .It aims to:

  • Getting started with Python's scikit-learn library, dedicated to machine learning.

  • Becoming familiar with the evaluation of models learned in supervised classification.

Small walkthrough

These are the steps to follow in order to perform tests and choose the appropriate classifier in supervised learning

  • Splitting our dataset into two parts: 2/3 for training and 1/3 for testing (in general)

  • Training our model on the training set which provides a prediction on the test set
  • Testing results on the test set (calculating error/accuracy...)
Cross validation may be applied to ensure more accuracy to our prediction results

Requirements

  • Python3 installed

  • The different required dependencies are found in this file requirements.txt.Run this command to install them:

pip install -r requirements/requirements.txt