Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/python/nimbusml.pyproj
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,7 @@
<Compile Include="nimbusml\tests\preprocessing\test_tostring.py" />
<Compile Include="nimbusml\tests\preprocessing\text\test_wordtokenizer.py" />
<Compile Include="nimbusml\tests\test_csr_matrix_output.py" />
<Compile Include="nimbusml\tests\test_fit_graph.py" />
<Compile Include="nimbusml\tests\test_variable_column.py" />
<Compile Include="nimbusml\tests\timeseries\test_iidchangepointdetector.py" />
<Compile Include="nimbusml\tests\timeseries\test_ssaforecaster.py" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_notvectorized_output_predictor_model(self):

# Create and fit a combined model and spit out predictor model
combined_pipeline = Pipeline([RangeFilter(min=0.0, max=4.5) << 'c2',
OnlineGradientDescentRegressor(label='c2')],
OnlineGradientDescentRegressor(feature=['c1'], label='c2')],
random_state=seed)
combined_pipeline.fit(df, output_predictor_model=True)
result_1 = combined_pipeline.predict(df)
Expand Down