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
Refactor PolynomialLiftingFn to support products of other polynomials instead
of just monomials. For example, instead of x1^2 * x2, allow H2(x1) * H1(x2)
where Hx is the xth Hermite polynomial.
This can be achieved by removing the wrapped scikit-learn polynomial
transformer and using a custom one with similar functionality. Specifically the powers_ matrix.
The text was updated successfully, but these errors were encountered:
Refactor
PolynomialLiftingFn
to support products of other polynomials insteadof just monomials. For example, instead of
x1^2 * x2
, allowH2(x1) * H1(x2)
where
Hx
is thex
th Hermite polynomial.This can be achieved by removing the wrapped
scikit-learn
polynomialtransformer and using a custom one with similar functionality. Specifically the
powers_
matrix.The text was updated successfully, but these errors were encountered: