def __init__(self, l1_ratios=(0.4, 0.8, 0.95), num_alphas=30,
eps=1e-5, random_state=None, strategies=None, target_score=0.01,
n_tail=5, decision="min", max_complexity=50,
exponents=[1, 2], operators={}, n_jobs=1, rational=True, **kw):
self.l1_ratios = l1_ratios
self.num_alphas = num_alphas
self.eps = eps
self.random_state = check_random_state(random_state)
self.strategies = strategies
self.target_score = target_score
self.n_tail = n_tail
self.exponents = exponents
self.operators = operators
self.kw = kw
self.decision = decision
self.max_complexity = max_complexity
self.n_jobs = n_jobs
self.rational = rational
评论列表
文章目录