Import Custom Metadata
Active and Index support filtering, creating Collections, and by extension, creating Datasets and Projects based on the custom metadata on your data.
Prerequisites
Before you can filter your data or create a Collection based on your data’s custom metadata, the custom metadata must exist in your Annotate Project.
clientMetadata
), which is the metadata associated with individual data units. This is distinct from videoMetadata
that is used to specify video parameters when using Strict client-only access. It is also distinct from patient metadata in DICOM files.Custom metadata (clientMetadata
) is accessed by specifying the dataset using the <dataset_hash>. All Projects that have the specified Dataset attached contain custom metadata.
READ THIS FIRST
While not required, we strongly recommend importing a metadata schema before importing custom metadata into Encord. The process we recommend:
- Import a metadata schema. If a metadata schema already exists, you can import metadata. You can run a small piece of code to verify that a metadata schema exists
- Import your custom metadata.
Import Custom Metadata With Video Import
This JSON file imports custom metadata while importing your data into Index from a cloud integration.
Importing with Custom Embeddings
You can import custom embeddings with custom metadata. When importing custom embeddings with custom metadata keep the following in mind:
config
is optional when importing your custom embeddings:
If config
is not specified, the sampling_rate
is 1 frame per second, and the keyframe_mode
is frame
.
sampling_rate
of 0
only imports the first frame and all keyframes of your video into Index.Examples
-
Example - Simple: Imports custom metadata with the video.
-
Example - Advanced: Imports custom metadata, key frames, and custom embeddings. If custom embeddings are not specified, only key frames appear in Active and Index.
Import to Videos already in Index
Importing with Custom Embeddings
You can import custom embeddings with custom metadata. When importing custom embeddings with custom metadata keep the following in mind:
config
is optional when importing your custom embeddings:
If config
is not specified, the sampling_rate
is 1 frame per second, and the keyframe_mode
is frame
.
sampling_rate
of 0
only imports the first frame and all keyframes of your video into Index.Examples
Folders and custom metadata
List custom metadata (Folders)
Import custom metadata (Folders)
Before importing custom metadata to Encord, first import a metadata schema. We strongly recommend that you upload your custom metadata to Folders, instead of importing using Datasets. Importing custom metadata to data in folders allows you to filter your data in Index by custom metadata.
print
command after importing or updating your custom metadata.Import custom metadata to specific data units in a Folder
This code allows you to import custom metadata on specific data units in Index. This code OVERWRITES all existing custom metadata on a data unit.
Import custom metadata to all data units in a Folder
This code allows you to update ALL custom metadata on ALL data units in a Folder in Index. This code OVERWRITES all existing custom metadata on a data unit.
Update custom metadata
The Specific Data Units code enables you to update custom metadata for specific data units in Index. It does not overwrite all existing custom metadata on a data unit. Instead, it updates metadata that matches existing keys with new values and adds any new custom metadata keys to the data unit without affecting other existing metadata.
The All data units in a Project code updates the custom metadata for all data units in the specified Project. Replace the client_metadata
with the metadata you want to update.
Bulk custom metadata import to all data units in a Folder
This code allows you to update custom metadata on all data units in a Folder in Index. This code OVERWRITES all existing custom metadata on a data unit.
Using bundle
allows you to update up to 1000 label rows at a time.
Bulk custom metadata import on specific data units
This code allows you to update custom metadata on specific data units in a Folder in Index. This code DOES NOT OVERWRITE existing custom metadata on a data unit. It does overwrite custom metadata with existing values and adds new custom metadata to the data unit.
Using bundle
allows you to update up to 1000 label rows at a time.
Add custom metadata to images in an image group
The following script adds clientMetadata
to all images / frames in a specified Image Group.
Esure that you:
- Replace
<private_key_path>
with the file path to your private SSH key. - Replace
<image-group-id>
with the File ID (UUID) of the target Image Group. - Customize the
_get_metadata_for_image
function with the clientMetadata you want to add. To add unique metadata for each image, make the function dynamic by passing additional variables.
Datasets and custom metadata
Before importing custom metadata to Encord, first import a metadata schema.
We strongly recommend that you upload your custom metadata to Folders, instead of importing using Datasets. Importing custom metadata to data in Folders allows you to filter your data in Index by custom metadata.
List custom metadata (Datasets)
The following code lists the custom metadata of all data units in the specified Dataset. The code prints the custom metadata along with the data unit’s index within the dataset.
Import custom metadata (Datasets)
Before importing custom metadata to Encord, first import a metadata schema. We strongly recommend that you import your custom metadata to Folders, instead of importing to Datasets. Importing custom metadata to data in folders allows you to filter your data in Index by custom metadata.
Import custom metadata to a specific data unit in your Dataset
You can import custom metadata (clientMetadata
) to specific data units in the Dataset.
- Replace
<private_key_path>
with the path to your private key. - Replace
<dataset_hash>
with the hash of your Dataset. - Replace
Image1.png
and the other file names in themetadata
variable with the names of the files in your Dataset to which you want to add metadata.
You can find the <data unit number> by reading all metadata in the Dataset.
Import custom metadata (clientMetadata
) to all data units in a Dataset
The following code adds the same custom metadata (clientMetadata
) to each data unit in the specified dataset. The code prints the custom metadata along with the data units index within the dataset, so that you can verify that the custom metadata was set correctly.
Deprecated - Reserved Keywords
Reserved keywords are strings that are set aside for exclusive use. The following keywords are reserved:
keyframes
KEYFRAMES
keyframes
is reserved for use with frames of interest in videos. Specifying keyframes
on specific frames ensures that those frames import into Index and Active. That means frames specified using keyframes
are available to filter your frames and for calculating embeddings on your data.
You can include keyframes
while importing your videos or after you import your videos.
Import keyframes
to Specific Data Units (Folder):
This code allows you to import keyframes
on specific videos in Index. This code DOES NOT OVERWRITE all existing custom metadata on a data unit. It does overwrite custom metadata with existing values and adds new custom metadata to the data unit.
Was this page helpful?