sberbank-ai-lab / LightAutoML

LAMA - automatic model creation framework
Apache License 2.0
887 stars 92 forks source link

Feature/extra_installs #74

Closed Cybsloth closed 2 years ago

Cybsloth commented 2 years ago

Summary

Separate installation of dependencies has become available.

Installation examples (after adding package to pypi):

pip install lightautoml[nlp]  # nlp part
pip install lightautoml[cv,nlp]  # cv and nlp parts
pip install lightautoml[all] # all 

If you try to import modules with missing dependencies, a warning will be displayed. When trying to import presets that do not have the missing dependencies, an exception will be thrown.

dev-rinchin commented 2 years ago

LGTM, just resolve conflicts and merge.