Predict ======= The ML Predict Plugin allows for a Machine Learning Model to be used for predicting values. ``python bin/lucy.egg plugins ml_predict -h`` Primary Arguments ^^^^^^^^^^^^^^^^^ Main specifications for a Predict task. .. list-table:: :widths: 10 40 :header-rows: 1 * - Argument - Detail * - -input - **PATH, COMMA SEPARATED LIST**. File path to a CSV or list of values that will be used for prediction(s). These columns/values must appear in the same order the model was trained on. * - -mfile - **PATH**. File path to a model file that holds the model that will be used for making predictions. This is the serialized pickle (PKL) file. * - -output - **PATH**. File path to where the predicted values will be saved. This is a CSV that holds the input points along with their corresponding predictions. * - -label - **WIP**. .. include:: predict_examples.rst