Skip to Content

Use Service Ticket Intelligence and Jupyter Notebook to Get Solution Recommendations

Train a machine learning model based on historical service requests in order to get solution recommendations for new requests.
You will learn
  • How to upload the training data
  • How to train a machine learning model based on historical service requests
  • How to recommend solutions for an incoming service request
  • How to evaluate the performance of your machine learning model
Juliana-MoraisJuliana MoraisMay 5, 2022
Created by
Juliana-Morais
July 15, 2020
Contributors
tobias61
Juliana-Morais

Service Ticket Intelligence provides machine learning functionalities to effectively deal with service requests. Thereby, the service offers three main functionalities:

  1. The service is able to analyze the unstructured information in service requests and classify the requests into categories.

  2. The service is able to recommend solutions for service requests based on historical data.

  3. The service is able to identify in unstructured data trends or patterns in service tickets from the clusters and keywords you have created.

This tutorial deals with retrieving recommendations for service requests. Find more details on the Service Ticket Intelligence features here.

  • Step 1

    First, start your local Jupyter server.

    The first page that you see shows the content of the repository that you cloned from GitHub in Set Up Jupyter Notebook for Service Ticket Intelligence, including the notebooks, datasets and configuration file that you edited in the previous tutorial. To open the notebook for classification, click Recommendation to navigate into the folder.

    Jupyter Home

    Next, click Recommendation_demo.ipynb to open the notebook. You can recognize Jupyter notebooks by their .ipynb file extension.

    Open Notebook
    Log in to complete tutorial
  • Step 2

    Jupyter Notebooks are interactive playgrounds to code and are often used in data science to explore datasets.

    Notebooks contain a number of cells in a sequence whereas each cell mainly contains text or code but can also output diagrams and graphics. If cells contain code they can be executed.

    The numbers in front of a cell tell the number of executed cells in this notebook. While the cell is being executed a * is printed instead of a number so you can tell if the operation is still running or already finished.

    Notebook Structure

    Once you click into a cell, it is marked with a border so you can tell at which position in the notebook you are.

    A cell can be executed by clicking the play button at the top. If you execute code then there will be additional output printed below the cell.

    Executing Cells
    Log in to complete tutorial
  • Step 3

    As mentioned above, a notebook can also contain text. We made sure that there are sufficient explanations for every step in the notebook.

    Go through the notebook by executing the cells and reading the explanations that are given. Come back here to complete the tutorial and test your understanding.

    Log in to complete tutorial
  • Step 4

    What is the next step after the recommendation model has been trained?

    Log in to complete tutorial
Back to top