Skip to content

richiefrost/easy-ml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Easy ML

Quick and easy classification modeling with scikit-learn and pandas

Usage

from easyml.modeler import Modeler

modeler = Modeler(df, features, label, model, verbose=True)
modeler.fit()

# Export model
model = modeler.get_model()

# Get metrics
metrics = modeler.get_metrics()

# Save model as pkl file
modeler.to_pickle('model.pkl')

Key ideas

  • Quickly iterate with new features
  • Experiments (including features, data, and metrics) are pickleable for easy reproducibility
  • Basic metrics out of the box
  • Track train, test, and full dataset metrics

About

Quick and easy classification modeling with scikit-learn and pandas

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages