Prepare to manage models using the model CLI

Before you can start using the model CLI to automate model deployment or to perform any other tasks, you must install the scikit-learn machine learning library for Python through the CDSW web UI.

You must perform this task through the CDSW web UI.
  1. Create a new project with Python through the web UI.
    Python provides sample files that you can use to create models using CLI.
  2. To start a new session, go to the Sessions page from the left navigation panel and click New Session.
    The Start A New Session page is displayed.
  3. On the Start A New Session page, select Python 3 from the Engine Kernel drop-down menu, and click Start Session.
    A new “Untitled Session” is created.
  4. From the input prompt, install the scikit-learn machine learning library for Python by running the following command:
    !pip3 install sklearn
  5. Open the fit.py file available within your project from the left navigation panel.
    You can use the fit.py file to create a fitted model which creates a model.pkl file that you can use to deploy the actual model.
  6. Run the fit.py file by clicking Run > Run all.
    The model.pkl directory is created that you can see within your project on the left navigation pane.
  7. Close the session by clicking Stop.