Custom Data

Explore how to store and manage technical metadata, configurations, and integration settings using Custom Data in JSON format.

Overview

Custom Data allows you to store additional technical information in JSON format for projects and datasets. This feature enables you to save configuration parameters, metadata, and settings that can be used by Supervisely Apps and custom tooling.

Accessing Custom Data

Navigate to any project or dataset and click the Info tab. You'll find two sections:

  • README — Documentation in Markdown format

  • Custom Data — Technical data in JSON format

When to Use Custom Data

Use Custom Data when you need to:

  • Store app configuration parameters

  • Save processing results and metadata

  • Share settings between different applications

  • Keep references to external resources

Use README for project descriptions, annotation guidelines, and human-readable documentation.

Common Use Cases

Training Configuration

Store model training parameters for training apps:

Export Settings

Define default export parameters:

External Integration

Store references to external systems:

Processing Results

Save processing outcomes and metrics:

Data Structure

Keep your JSON structured and include version information:

Editing and Retrieving Custom Data

There are two ways to work with Custom Data:

1. Web Interface

The web interface is ideal for static settings that don't change frequently during data processing:

  1. Navigate to your project or dataset

  2. Click on the Info tab

  3. Find the Custom Data section

  4. Click Edit to modify the JSON

  5. Save your changes

2. Python SDK

For dynamic data that needs to be updated programmatically, use the Python SDK:

Retrieving Custom Data for a Project

Updating Custom Data for a Project

Silent Mode for Projects

When updating project custom data, you can use silent mode to prevent updating the project's modification timestamp:

This is useful when you want to update technical metadata without marking the project as recently modified.

Working with Dataset Custom Data

For datasets, retrieve custom data through the dataset info:

Best Practices

  • Use clear, descriptive key names

  • Group related settings together

  • Include version numbers for configurations

  • Keep file size under 1MB

  • Store sensitive data externally, use references only

Limitations

  • Must be valid JSON format

  • Visible to all users with project access

  • No comments supported in JSON

  • Recommended size limit: 1MB

How Apps Use Custom Data

Supervisely Apps can read custom data to:

  • Configure their behavior based on stored settings

  • Resume processing from saved state

  • Share parameters between different workflow steps

  • Store results for later reference

This enables building automated workflows where configuration and state persist across different operations.

Last updated