Quick start: Build a model using SPSS Modeler

You can create, train, and deploy models using SPSS Modeler. Read about SPSS Modeler, then watch a video and follow a tutorial that’s suitable for beginners and requires no coding.

Required services Watson Studio (which includes SPSS Modeler) Watson Machine Learning

Your basic workflow includes these tasks:

  1. Create a project. Projects are where you can collaborate with others to work with data.
  2. Add an SPSS Modeler flow to the project.
  3. Configure the nodes on the canvas, and run the flow.
  4. Review the model details and save the model.
  5. Deploy and test your model.

Read about SPSS Modeler

With SPSS Modeler flows, you can quickly develop predictive models using business expertise and deploy them into business operations to improve decision making. Designed around the long-established SPSS Modeler client software and the industry-standard CRISP-DM model it uses, the flows interface supports the entire data mining process, from data to better business results.

SPSS Modeler offers a variety of modeling methods taken from machine learning, artificial intelligence, and statistics. The methods available on the node palette allow you to derive new information from your data and to develop predictive models. Each method has certain strengths and is best suited for particular types of problems.

Watch a video about creating a model using SPSS Modeler

Watch Video Watch this video to see how to create and run an SPSS Modeler flow to train a machine learning model.

Video disclaimer: Some minor steps and graphical elements in this video may differ from your Cloud Pak for Data deployment. This video shows the Cloud Pak for Data as a Service user interface.

This video provides a visual method as an alternative to following the written steps in this documentation.

Try a tutorial to create a model using SPSS Modeler

In this tutorial, you will complete these tasks:

  1. Create a project.
  2. Add a data set to your project.
  3. Create the SPSS Modeler flow.
  4. Add the nodes to the SPSS Modeler flow.
  5. Run the SPSS Modeler flow and explore the model details.
  6. Evaluate the model.
  7. Deploy and test the model with new data.

This tutorial will take approximately 30 minutes to complete.

Example data

The data set used in this tutorial is from the University of California, Irvine, and is the result of an extensive study based on hospital admissions over a period of time. The model will use three important factors to help predict chronic kidney disease.

Task 1: Create a project

You need a project to store the SPSS Modeler flow.

  1. If you have an existing project, open it. If you don't have an existing project, click Create a project on the home page or click New project on your Projects page.
  2. Select Analytics project as the project type.
  3. Select Create an empty project.
  4. On the Create a project screen, add a name and optional description for the project.
  5. Click Create.

For more information or to watch a video, see Creating a project.

Task 2: Add the data set to your project

The data set used in this tutorial is available in the Gallery.

  1. Download the chronic_kidney_disease_full.csv file (39 KB) file.
  2. Add the chronic_kidney_disease_full.csv file to your project:
    1. From your project, click the Upload asset to project Upload asset to project icon icon.
    2. In the side panel that opens, browse to select the chronic_kidney_disease_full.csv file, and click Open. Stay on the page until the load completes. The chronic_kidney_disease_full.csv file is added to your project as a data asset.
  3. From your project's Assets page, locate the chronic_kidney_disease_full.csv file.

Task 3: Create the SPSS Modeler flow

Now add the SPSS Modeler flow to the project.

  1. Click New asset, and select Modeler flow.
  2. Type a name and description for the flow.
  3. Click Create. This opens up the Flow Editor that you'll use to create the flow.

Task 4: Add the nodes to the SPSS Modeler flow

After you load the data, you must transform the data. You'll be creating a simple flow by dragging transformers and estimators onto the canvas and connecting them to the data source. Use the following nodes from the palette:

When you're done creating the flow, it should look like the following image.

flow showing Data Asset node, Partition node, Type node, and C5.0 class node

Task 5: Run the SPSS Modeler flow and explore the model details

Now that you have designed the flow, you can run the flow and examine the tree diagram to see the decision points.

  1. Right-click the C5.0 node and select Run. Running the flow generates a new model nugget on the canvas.
  2. Right-click the model nugget and select View Model to view the model details.
  3. View the Model Information which provides a model summary.
  4. Click Top Decision Rules. A table displays a series of rules that were used to assign individual records to child nodes based on the values of different input fields.
  5. Click Feature Importance. A chart shows the relative importance of each predictor in estimating the model. From this, you can see that serum creatinine is easily the most significant factor, with diabetes being the next most significant factor.
  6. Click Tree Diagram. The same model is displayed in the form of a tree, with a node at each decision point.
    1. Select the Display labels on branches option.
    2. Hover over Node 0 which provides a summary for all the records in the data set. Just under 40% of the cases in the data set are classified as not diagnosed with kidney disease. The tree can provide additional clues as to what factors might be responsible.
    3. Notice the two branches stemming from Node 0, which indicates a split by serum creatinine.
    4. Hover over Node 6 which shows records where the serum creatinine is greater than 1.25. In this case, 100% of those patients have a positive kidney disease diagnosis.
    5. Hover over Node 1 which shows records where the serum creatinine is less than or equal to 1.25. Almost 80% of those patients don't have a positive kidney disease diagnosis, but almost 20% with lower serum creatinine were still diagnosed with kidney disease.
    6. The branch from Node 1 is split by diabetes. Hover over Node 2 which shows patients with low serum creatinine and diagnosed diabetes. 100% of these patients were also diagnosed with kidney disease.
    7. Hover over Node 3. For patients with low serum creatinine and no diabetes, over 85% were not diagnosed with kidney disease, but 15% of them were still diagnosed with kidney disease.
    8. The branch from Node 3 is split by the last significant factor, age. Hover over Node 4 to see that 75% of young patients with low serum creatinine and no diabetes were at risk of getting kidney disease.
    9. Hover over Node 5. Only 11% of patients over 16 years old with low serum creatinine and no diabetes were at risk of getting kidney disease.
    10. Use the breadcrumb navigation to navigate back to your model.

Task 6: Evaluate the model

Use the Analysis and Table nodes to evaluate the model.

  1. From the Outputs section, drag the Analysis node onto the canvas.
  2. Connect the Model nugget to the Analysis node.
  3. Right-click the Analysis node, and select Run.
  4. From the Outputs panel, open the Analysis, which shows that the model correctly predicted a kidney disease diagnosis alomst 95% of the time. Close the Analysis.
  5. Right-click the Analysis node, and select Save branch as a model.
    1. For the Model name, type Kidney Disease Analysis.
    2. Click Save.
  6. From the Outputs section, drag the Table node onto the canvas.
    1. Connect the Model nugget to the Table node.
    2. Right-click the Table node, and select Preview.
    3. When the Preview displays, scroll to the last two columns. The $C-Class column contains the prediction of kidney disease, and the $CC-Class column indicates the confidence score for that prediction.
    4. Close the Preview.

Task 7: Deploy and test the model with new data

Lastly, you can deploy this model and predict the outcome with new data.

  1. Return to the Project's Assets tab.
  2. Scroll to the Models section, and open the Kidney Disease Analysis model.
  3. Click Promote.
  4. Choose an existing deployment space. If you don't have a deployment space, you can create a new one:
    1. Provide a space name.
    2. Click Create.
    3. Click Close.
  5. Click the deployment space link that appears or use the navigation menu to navigate to Deployments and select your deployment space.
  6. Hover over the model and click the rocket icon to deploy the model.
    1. Select Online as the Deployment type.
    2. Specify a name for the deployment.
    3. Click Create.
  7. Go to the Deployments tab and wait for the model to be deployed.
  8. When the deployment is complete, click the deployment name to view the deployment details page.
  9. Go to the Test tab. You can test the deployed model from the deployment details page in two ways: test with a form or test with JSON code.
  10. Click the icon to Provide input data as JSON, then copy the following test data and paste it in the area for the JSON text:

    {"input_data":[{"fields":["age","bp","sg","al","su","rbc","pc","pcc","ba","bgr","bu","sc","sod","pot","hemo","pcv","wbcc","rbcc","htn","dm","cad","appet","pe","ane","class"], "values":[["62","80","1.01","2","3","normal","normal","notpresent","notpresent","423","53","1.8","","","9.6","31","7500","","no","yes","no","poor","no","yes","ckd"]]}]}
    
  11. Click Predict to predict whether a 62 year old with diabetes and a serum creatinine ratio of 1.8 would likely be diagnosed with kidney disease. The resulting prediction indicates that this patient has a high probability of a kidney disease diagnosis.

Next steps

Now you can use this data set for further analysis. For example, you can perform tasks such as:

Additional resources