Open blondered opened 3 months ago
Wrappers initialisation from full list of hyper-params (including wrapped)
Interface is not decided. Options are:
model_factory method that accepts smth like:
model_factory
model_type: ials model_params: fit_features_together: True implicit_factors: 32 implicit_alpha: 10
accept params in __init__:
__init__
ials = ImplicitALSWrapperModel(fit_features_together=True, wrapped_params = {"factors: 32, alpha: 10"})
wrapped_params and initialised instance of wrapped model are both optional and user needs to pass one of them. If none is passed then default params are used.
Feature Description
Wrappers initialisation from full list of hyper-params (including wrapped)
Why this feature?
Additional context
Interface is not decided. Options are:
model_factory
method that accepts smth like:accept params in
__init__
:wrapped_params and initialised instance of wrapped model are both optional and user needs to pass one of them. If none is passed then default params are used.