Skip to content

Python machine learning module intended to be your first shot swiss knife in order to find the best starting model for your project

License

Notifications You must be signed in to change notification settings

r-moret/quickerml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

quickerml

Machine learning module intended to be your first shot swiss knife.

PyPI Latest Release License

If you work on Data Science or Artificial Intelligence projects you probably have had to repeat over and over again the same crucial first steps on your project in order to find what's the best model option for your data.
There is the idea that gave birth to quickerml: Automatize those repetitive initial tests to find the best starting model for your project.

Installation

pip install quickerml

Get started

from quickerml import Finder

finder = Finder(
    problem_type='regression', 
    models=[
        LinearSVR(), 
        RandomForestRegressor(), 
        XGBRegressor(), 
        LGBMRegressor()
    ]
)

best = finder.find(X, y)

Terminal Execution

About

Python machine learning module intended to be your first shot swiss knife in order to find the best starting model for your project

Topics

Resources

License

Stars

Watchers

Forks

Languages