Project - Forecast Bike Rentals

23 / 38

End to End Project - Bikes Assessment - Basic - Train and Analyze the Models - Preparing to Train the Models

In the previous step, we split the bikesData into Training data set (train_set) and Test data set (test_set), but can we use this 'Training' data set as it is, or, we need to do some more refinement before we can use it to generate ML models?

Yes, you got it right, we need to create target data set, and also, we need to create a final 'Training' data set by dropping the target label from the existing 'Training' data set (train_set).

INSTRUCTIONS
  1. Import following from scikit-learn:

    • cross_val_score

    • cross_val_predict

    • DecisionTreeRegressor

    • LinearRegression

    • RandomForestRegressor

  2. Import XGBRegressor from xgboost

  3. Create a dataframe called trainingCols by dropping cnt column data from train_set data frame.

  4. Extract cnt column data from train_set dataframe and store it in trainingLabels variable.

Get Hint

Answer is not availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...