File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11import warnings
2+
23import numpy as np
34import pandas as pd
45from sklearn .base import BaseEstimator
5- from sklearn .utils .validation import check_consistent_length
66from sklearn .utils .multiclass import type_of_target
7+ from sklearn .utils .validation import check_consistent_length
78
89
910class SoloModel (BaseEstimator ):
Original file line number Diff line number Diff line change 1- import numpy as np
2- import pandas as pd
31import itertools
42from collections import defaultdict
5- import pytest
63
4+ import numpy as np
5+ import pandas as pd
6+ import pytest
77
88n_vals = (100 , 1000 )
99k_vals = (1 , 5 )
Original file line number Diff line number Diff line change 22from sklearn .linear_model import LogisticRegression , LinearRegression
33from sklearn .pipeline import Pipeline
44from sklearn .preprocessing import StandardScaler
5+
56from ..models import (
67 SoloModel ,
78 ClassTransformation ,
You can’t perform that action at this time.
0 commit comments