A release is a snapshot of your dataset at a specific point in time. It contains a download link to the finished labels. Check out the documentation on exporting your dataset.
From the command line, install the Segments.ai Python SDK.
pip install --upgrade segments-ai
Initialize the Segments client using your API key.
from segments import SegmentsClient ...api_key = "" client = SegmentsClient(api_key)
Create a new release with client.add_release(). You need to specify the name and (optionally) the description of the new release.
client.add_release()
dataset_identifier = "scarbain/rooms" name = "v0.1" client.add_release(dataset_identifier, name)
Are you sure you want to delete this release?