You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned here we want to unify the way we pass the weights in Scholar to the algorithms. Currently, there are a few ways that we do it. For example, we pass them as tensors or as a list via opts.
The text was updated successfully, but these errors were encountered:
I would like to take a stab at this one, particularly regarding linear methods.
I think this would also be a great opportunity to DRY up some of the duplication of private functions that's spreading over there.
So far, the better approach I've found is to move all these functions to a helper module, make them public,
but make sure to set @moduledoc false and @doc false. My proof of concept is here.
Is this the best approach to handle this? Or should I take an alternative approach?
As mentioned here we want to unify the way we pass the weights in Scholar to the algorithms. Currently, there are a few ways that we do it. For example, we pass them as tensors or as a list via
opts
.The text was updated successfully, but these errors were encountered: