uclamii / model_tuner

A library to tune the hyperparameters of common ML models. Supports calibration and custom pipelines.
Apache License 2.0
3 stars 0 forks source link

Wrong import statement in documentation #19

Closed agapioscon closed 3 months ago

agapioscon commented 3 months ago

The documentation examples have the import as: from ModelTuner import ModelTuner the import that worked for me is : import model_tuner

elemets commented 3 months ago

Hi,

Thanks for the heads up, you're correct it should be import model_tuner - we've corrected the READMEs.

Arthur