RoyalHaskoningDHV / sam

Python package for time series analysis and machine learning
MIT License
26 stars 6 forks source link

remove keras_templates imports from models __init__ #82

Open sbuergers opened 6 months ago

sbuergers commented 6 months ago

83

in models and metrics we imported keras functions from keras_templates in the __init__.py, so even if users of SAM want to not use keras they need to have this rather big dependency installed if they want to use, say, a Lasso model.

This PR needs some more work and most of all testing so that the parts of SAM that should not depend on KERAS or TENSORFLOW have all tests passing without it being installed.