Re: How to fit & predict in Cat-boost Algorithm

2020-03-18 Thread Barry Scott
> On 18 Mar 2020, at 08:59, princit wrote: > > I am new in python. I am trying to predict the "time_to_failure" for given > "acoustic_data" in the test CSV file using catboost algorithm. > > > def catbostregtest(X_train, y_train): ># submission format >submission = pd.read_csv('sa

How to fit & predict in Cat-boost Algorithm

2020-03-18 Thread princit
I am new in python. I am trying to predict the "time_to_failure" for given "acoustic_data" in the test CSV file using catboost algorithm. def catbostregtest(X_train, y_train): # submission format submission = pd.read_csv('sample_submission.csv', index_col='seg_id') X_test = pd.Data