Skip to main content
Version: v0.4.0

Download an annotated dataset

Overview

At any point in an annotation task, you can download the already approved annotated samples. You do not need to fully annotate an imported dataset to download already annotated samples (approved samples).

note

An array of datasets labeled in H2O Label Genie are supported in H2O Hydrogen Torch and H2O LLM Studio.

Instructions

To download an annotated dataset (approves samples), consider the following instructions:

  1. On the H2O Label Genie navigation menu, click Annotation tasks.
  2. In the annotation tasks table, double-click the row where the annotation task you want to download is located.
  3. Click the Export tab.
  4. In the Export approved samples list, select Download ZIP.
    Note

    H2O Label Genie downloads a zip file containing the annotated dataset in a particular format depending on the dataset's annotation task. To learn more, see Downloaded dataset formats.

Note

Download an annotated dataset

Downloaded dataset formats

Text classification

A downloaded text classification dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2):

folder_name.zip (1)
│ └───csv_name.csv (2)
  1. A zip file.
  2. A CSV file containing a text and label column:
    • text: The text column contains the text input
    • label: The label column contains the labels attributed to the texts specified in the text column
note

H2O Hydrogen Torch supports the downloaded dataset of a text classification annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for a text classification experiment.

Text regression

A downloaded text regression dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2):

folder_name.zip (1)
│ └───csv_name.csv (2)
  1. A zip file.
  2. A CSV file containing a text and label column:
    • text: The text column contains the text input
    • label: The label column contains the labels attributed to the texts specified in the text column
note

H2O Hydrogen Torch supports the downloaded dataset of a text regression annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for a text regression experiment.

Text-entity recognition

A downloaded text entity recognition dataset (with approved samples) follows the following dataset format: A zip file (1) containing a .pq file (2):

folder_name.zip (1)
│ └───pq_name.pq (2)
  1. A zip file.
  2. A .pq file containing a text and label column:
    • text: The text column contains the text input
    • label: The label column contains the labels attributed to the text-entities specified in the text column

Text summarization

A downloaded text summarization dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2):

folder_name.zip (1)
│ └───csv_name.csv (2)
  1. A zip file.
  2. A CSV file containing a text and label column:
    • text: The text column contains the text input
    • label: The label column contains the summaries attributed to the texts specified in the text column

Text-generative AI

A downloaded text-generative AI dataset (with approved samples) follows the following dataset format: A ZIP file (1) containing a CSV file (2):

folder_name.zip (1)
│ └───csv_name.csv (2)
  1. A zip file.
  2. A CSV file containing the following columns:
    • llm_input: The final prompts sent to the large language model (LLM) as an input query
    • llm_output: The answers provided to the query (llm_input)
    • original columns: All the original columns
note

H2O LLM Studio supports the downloaded dataset of a text-generative AI annotation task.

Image classification

A downloaded image classification dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2) and an image folder (3).

folder_name.zip (1)
│ └───csv_name.csv (2)
│ │
│ └───image_folder_name (3)
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ ...
  1. A zip file.
  2. A CSV file containing an image_path and label column:
    • image_path: The image_path column specifies the location of the image
    • label: The label column contains the labels attributed to the images specified in the image_path column
  3. Image folder that contains all the images specified in the image_path column.
note

H2O Hydrogen Torch supports the downloaded dataset of an image classification annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an image classification experiment.

Image regression

A downloaded image regression dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2) and an image folder (3).

folder_name.zip (1)
│ └───csv_name.csv (2)
│ │
│ └───image_folder_name (3)
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ ...
  1. A zip file.
  2. A CSV file containing an image_path and label column:
    • image_path: The image_path column specifies the location of the image
    • label: The label column contains the labels attributed to the images specified in the image_path column
  3. Image folder that contains all the images specified in the image_path column
note

H2O Hydrogen Torch supports the downloaded dataset of an image regression annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an image regression experiment.

Object detection

A downloaded object detection dataset (with approved samples) follows the following dataset format: A zip file (1) containing a .pq file (2) and an image folder (3).

folder_name.zip (1)
│ └───pq_name.pq (2)
│ │
│ └───image_folder_name (3)
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ ...
  1. A zip file.
  2. A .pq file containing an image_path and class_id column; the file also contains an x_min, x_max, y_min, and y_max column corresponding to the bounding box locations
    • image_path: The image_path column specifies the location of the image
    • class_id: The class_id column contains the class IDs of the bounding box(es)
    • x_min,x_max,y_min, and y_max: The x_min, x_max, y_min, and y_max specify the spatial location of the bounding box(es)
  3. Image folder that contains all the images specified in the image_path column.
note

H2O Hydrogen Torch supports the downloaded dataset of an object detection task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an image object detection experiment.

Image instance segmentation

A downloaded image instance segmentation dataset (with approved samples) follows the following dataset format: A zip file (1) containing a JSON file (2) and an image folder (3).

folder_name.zip (1)
│ └───json_name.json (2)
│ │
│ └───image_folder_name (3)
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ └───name_of_image.image_extension
│ ...
  1. A zip file.
  2. A JSON file containing the labels in a COCO format (+ the annotated dataset's original columns)
  3. Image folder that contains all the images specified in the JSON file.
note

H2O Hydrogen Torch supports the downloaded dataset of an image instance segmentation annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an image instance segmentation experiment.

Audio classification

A downloaded audio classification dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2) and an audio folder (3).

folder_name.zip (1)
│ └───csv_name.csv (2)
│ │
│ └───audio_folder_name (3)
│ └───name_of_audio.audio_extension
│ └───name_of_audio.audio_extension
│ └───name_of_audio.audio_extension
│ ...
  1. A zip file.
  2. A CSV file containing an audio_path and label column:
    • audio_path: The audio_path column specifies the location of the audio
    • label: The label column contains the labels attributed to the audios specified in the audio_path column
  3. Audio folder that contains all the audios specified in the audio_path column.
note

H2O Hydrogen Torch supports the downloaded dataset of an audio classification annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an audio classification experiment.

Audio regression

A downloaded audio regression dataset (with approved samples) follows the following dataset format: A zip file (1) containing a CSV file (2) and an audio folder (3).

folder_name.zip (1)
│ └───csv_name.csv (2)
│ │
│ └───audio_folder_name (3)
│ └───name_of_audio.audio_extension
│ └───name_of_audio.audio_extension
│ └───name_of_audio.audio_extension
│ ...
  1. A zip file.
  2. A CSV file containing an audio_path and label column:
    • audio_path: The audio_path column specifies the location of the audio
    • label: The label column contains the labels attributed to the audios specified in the audio_path column
  3. Audio folder that contains all the audios specified in the audio_path column.
note

H2O Hydrogen Torch supports the downloaded dataset of an audio regression annotation task. In particular, H2O Hydrogen Torch supports the downloaded dataset for an audio regression experiment.


Feedback