Skip to content

This where I will upload all my machine learning projects and samples

Notifications You must be signed in to change notification settings

raminBadri/Machine-Learning-with-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Machine-Learning-with-python

This is where I will upload all my machine-learning samples and practices.

  • You will find all the necessary files in the repository's main branch.
  • All data files are included so feel free to do your own practice.
  • Note that all files are done via Jupyter Notebook in Python 3.12

All samples are done via:

  • Python ver 3.12
  • Pandas
  • Numpy
  • Scikit-learn
  • Matplotlib

All you need is to install them before using by:

{
pip install <package-name>
}

Later in code import them using:

{
import <package-name>
OR
from <package-name> import <module-name>
}