SmartPredict
  • Documentation
  • OVERVIEW
    • Presentation
      • Key features
      • Who may benefit from its use
      • The SmartPredict Graphical User Interface (GUI)
        • The SmartPredict Modules
        • Focus on the Notebooks
        • Practical shortcuts
    • Prerequisites
  • Getting started
    • Getting started (Part1) : Iris classification project
      • Project description
      • Step 1. Create the project
      • Step 2. Upload the dataset
      • Step 3. Preprocess the dataset
      • Step 4. Build the flowchart
        • Set up the flowchart
        • Configure the modules
      • Step 5. Run the build
      • Step 6. Deploy the project
      • Step 7. Make inferences with our model
      • Conclusion
  • Getting started (Part 2): Predicting the passengers' survival in the Titanic shipwreck
    • Project description
    • Step 1. Create the project
    • Step 2. Upload the dataset
    • Step 3. Preprocess the dataset
    • Step 4. Build the flowchart
    • Step 5. Run the build
    • Step 6. Deploy the pipeline
    • Step 7. Make inferences with our pipeline
  • MODULE REFERENCE
    • CORE MODULES
      • Introduction
      • Basic Operations
        • Item Saver
      • Web Services
        • Web Service IN and OUT
      • Data retrieval
        • Data fetcher
        • Data frame loader/converter
        • Image data loader
      • Data preprocessing
        • Introduction
        • Array Reshaper
        • Generic Data Preprocessor
        • Missing data handler
        • Normalizer
        • One Hot Encoder
        • Ordinal Encoder
      • Data selection
        • Features selector
        • Generic data splitter
        • Labeled data splitter
      • Training and Prediction
        • Predictor DL models
        • Predictor ML models
        • Predictor ML models (Probabilistic models)
        • Trainer ML models
        • Trainer/Evaluator DL models
      • Evaluation and fine-tuning
        • Cross Validator for ML
        • Evaluator for ML models
      • Machine Learning algorithms
        • ML modules in SmartPredict
        • Decision Tree Regressor
        • KNeighbors Classifier
        • KNeighbors Regressors
        • Linear Regressor
        • Logistic Regressor
        • MLP Regressor
        • Naive Bayes Classifier
        • Random Forest Classifier
        • Random Forest Regressor
        • Support Vector Classifier
        • Support Vector Regressor
        • XGBoost Classifier
        • XGBoost Regressor
      • Deep learning algorithms
        • Dense Neural Network
        • Recurrent Neural Networks
      • Computer Vision
        • Convolutional Recurrent Networks
        • Fully Convolutional Neural Networks
        • Face detector
        • Image IO
        • Image matcher
        • Yolo
      • Natural Language Processing
        • Introduction
        • Text cleaner
        • Text vectorizer
      • Times Series processing
        • TS features selector
      • TensorFlow API
        • LSTM Layer
        • Dense Layer
      • Helpers
        • Data/Object Logger
        • Object Selector (5 ports)
      • Conclusion
  • CUSTOM MODULES
    • Function
    • Class
    • Use cases
Powered by GitBook
On this page

Was this helpful?

  1. Getting started
  2. Getting started (Part1) : Iris classification project

Step 5. Run the build

This next section will describe how to run a build.

PreviousConfigure the modulesNextStep 6. Deploy the project

Last updated 5 years ago

Was this helpful?

Now that our workflow is properly configured , our model is ready to train. For that we need to "RUN" our project.

Click on the 'Run' button on the extreme left corner of the viewport. Notice the green leds switching on: they signal that the model is running properly.

From the main Dashboard, our project is also labelled as "success".

As we run our project , a series of behavior happens to some particular elements of the workflow. Some acknowledge the completion of the previous operations whereas other notify us about the status of our project.

Among others:

1. The evaluator for ML : sends an info about the accuracy of our model. As its name suggests, this module's role is to assess the performance of our model.

2. The Item Saver: informs about under which name our current model is saved. Here, it is saved as 'SVC_model'. It is a default name for all models.

>>> We can rename ours from the parameters. Let us change it into 'SVC_model_Iris'.

However, since we changed the name of our model, we need to rerun it to apply the change into the whole model. Take notice that the name has also changed in the logs.

3. The logs We can check the logs by clicking the log icon on the extreme right of the menu. We can choose to view all records, per level or per module by ticking on the corresponding radio button. .

The logs also display the name under which our model will be stored , which is ‘SVC_model’.

As we click on modules, we retrieve this latter camong the list of Trained Models.

Green leds switch on as the project runs.
We can rename our model through the Item saver.
We need to rerun after name changes.
The logs recap the information about the project.
Our model displays in the menu of trained models.