Skip to main content
Version: v1.4.0

Download an experiment's predictions

Overview

After H2O Hydrogen Torch is done building a model (experiment), you can download its generated predictions, that is, predictions on the model's validation and test dataset.

  • Downloaded predictions come in a zip file containing the following files:
    • validation_predictions.csv
      • The CSV file is a structured dataframe with final predictions for the provided validation dataframe
    • validation_raw_predictions.pkl
      • The Pickle file is a pickled Python dictionary with raw predictions for the provided validation dataframe
    • If the experiment contained a test dataframe, H2O Hydrogen Torch also includes the following two files in the zip file:
      • test_predictions.csv
        • The CSV file is a structured dataframe with final predictions for the provided test dataframe
      • test_raw_predictions.pkl
        • The Pickle file is a pickled Python dictionary with raw predictions for the provided test dataframe
note

The inside structure of the files in the zip file are different among all supported problem types. To learn more, see Predictions download formats.

Instructions

To download the predictions from a completed experiment, consider the following instructions:

  1. In the H2O Hydrogen Torch navigation menu, click View experiments.
  2. In the View experiments card, select the experiment (name) you want to download its generated predictions.
  3. Click Download predictions.

Feedback