File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515import pandas as pd
16- import pytest
1716
18- from bigframes .ml import core , model_selection
17+ from bigframes .ml import model_selection
1918import bigframes .ml .linear_model
2019from bigframes .testing import utils
2120
2221
23- @pytest .fixture (scope = "function" )
24- def penguins_linear_model_w_global_explain (
25- penguins_bqml_linear_model : core .BqmlModel ,
26- ) -> bigframes .ml .linear_model .LinearRegression :
27- bf_model = bigframes .ml .linear_model .LinearRegression (enable_global_explain = True )
28- bf_model ._bqml_model = penguins_bqml_linear_model
29- return bf_model
30-
31-
3222def test_linear_regression_configure_fit_score (penguins_df_default_index , dataset_id ):
3323 model = bigframes .ml .linear_model .LinearRegression ()
3424
You can’t perform that action at this time.
0 commit comments