Dave Martin
Results
1
issues of
Dave Martin
Minimal Example: ```python from pipegraph.base import PipeGraph X_ = np.arange(30).reshape(15,2) y_ = np.arange(15) print(f'X, y shape: {X_.shape}, {y_.shape}') svr_rbf = SVR(kernel='rbf', C=100, gamma=0.1, epsilon=.1) steps = [('svr', svr_rbf)] pgraph =...