chjq201410695
chjq201410695
My environment is ubantu 16.08. here is my code: ------------------ column_descriptions = { 'booking': 'output', ('UN', 'TS', 'ICS', 'MS'): 'categorical' } ml_predictor = Predictor(type_of_estimator='regressor', column_descriptions=column_descriptions) ml_predictor.train(train, optimize_final_model=True, ml_for_analytics=False, take_log_of_y=True, model_names=['LGBMRegressor',...
As title. and I find a method in R as following: https://github.com/paobranco/Pre-processingApproachesImbalanceRegression and paper as : https://www.semanticscholar.org/paper/SMOTE-for-Regression-Torgo-Ribeiro/43cda672b9ac0833086e19c90d42c2c0fbc361c6
Hi, here is my code from feature_selector import FeatureSelector fs = FeatureSelector(data = df_ax_cla.loc[:,1:], labels = df_ax_cla.loc[:,0]) fs.identify_collinear(correlation_threshold=0.8): -------------------------------------------------------------------------- #here is error: AttributeError Traceback (most recent call last) in ---->...