Модуль тюнера Keras Sklearn «sklearn» не имеет атрибута «конвейер»
#python #keras #scikit-learn Вопрос: from sklearn import ensemble from sklearn import linear_model def build_model(hp): model_type = hp.Choice('model_type', ['random_forest', 'ridge']) if model_type == 'random_forest': with hp.conditional_scope('model_type', 'random_forest'): model = ensemble.RandomForestClassifier( n_estimators=hp.Int('n_estimators',…