input_prediction_columns

Description

Lists the specific columns from the Prediction input file that should be included during the prediction process. If this list is left empty, the model will consider all available columns in the dataset. Specifying particular columns can streamline the prediction process, ensuring that the model only processes relevant data, which can be particularly useful for reducing complexity and improving performance in datasets with a large number of features.

Steps impacted

prediction

Example

column_to_predict: qty

# Columns present in your test set. 
# If your dataset is constructed in your prediction resolution, then this block is not required
input_prediction_columns:
- receipt_date
- item_id
- pos_id

Last updated