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
which would set fittable parameters named a, b, c under the hood and parse an arbitrary number of inputs into the incremented _x1, _x2, and _x3 variables. Benefit would be to easily implement simple models without needing to mess with building new Layer subclasses.
Similar to NumPy Layer class, it could be useful to have a NumExpr Layer class, along the lines of:
which would set fittable parameters named a, b, c under the hood and parse an arbitrary number of inputs into the incremented
_x1
,_x2
, and_x3
variables. Benefit would be to easily implement simple models without needing to mess with building new Layer subclasses.Details to figure out: specifying parameter shapes. Maybe
parameters = {'a': (1,), 'b': (3,4), 'c': (1,2,3)}
?The text was updated successfully, but these errors were encountered: