Datasets
Datasets belong to Organisations in Strong Compute, so it is important to have selected the appropriate Organisation from the menu at the top-right of the Control Plane page before navigating to the "Datasets" page. Datasets imported into Strong Compute will be accessible to all members of the Organisation to which that Dataset belongs.
Step 1: Adding a custom dataset
On the Datasets page, you can import your own dataset (up to 100GB) from an S3-compatible bucket by clicking on the "New Dataset" button and completing the form.
Note: if your dataset not yet on S3 (e.g, a Huggingface dataset), here's a friendly guide on how to upload it to Cloudflare R2.

A new Dataset requires 5 parameters:
Name (optional): A useful descriptor for the Dataset.
Access Key ID: A valid access key ID.
Secret Access Key: A valid secret access key that matches the above ID.
Endpoint: The endpoint for the s3 host of your bucket e.g.
s3.amazonaws.com
.Region: The region** in which your bucket is located e.g.
us-east-1
.Bucket Name: The name of the S3 bucket without leading protocol. For example when importing a dataset from the bucket
s3://hello-world
the input to this field ishello-world
.
**Note: If you are using a provider that does not support regions or incorporates the region into the Endpoint URL (e.g. Cloudflare R2
, OCI Storage
), then leave this field blank.
Your Access Key must have permission to read and access buckets and objects from S3, and the S3 bucket must be non-empty.
Once your Dataset is created and validated, it will be automatically cached to the Strong Compute Global Silo. Your Dataset is finished caching to the Global Silo when the Global Silo Dataset Cache State is stored
.

Step 2: Downloading it to our Cluster
After your Dataset is cached to the Global Silo, it can be downloaded to a Constellation Cluster so that Users can access it Containers and for training.
Once the Global Silo Dataset Cache for your Dataset shows its State as stored, select your dataset from the "User Dataset Name" menu and your destination Cluster from the "Constellation Cluster" menu and click "Cache Dataset". This will start the ISC downloading and creating a Constellation Cluster Dataset Cache of your Dataset.

Your Dataset will be ready to access in your Container and in training when the Constellation Cluster Dataset Cache of your Dataset shows its State is available
.

User datasets will show Access is Private
indicating that Users can only access those Datasets from Containers associated with the Organisation that is the owner of that Dataset. Users can also use any of the datasets cached on the Cluster which shows Access is Public
.
Step 3. Accessing datasets in development
To access your Organisations datasets or any of the Public datasets during development, select the appropriate Dataset from the "Mounted Dataset" menu for the appropriate Container before you start your Container.
Your dataset will then be mounted to your development container at /data/<dataset-id>
and available there to you during development. Once inside your Container, navigate to your dataset with cd /data/<dataset-id>
.
Step 4. Accessing datasets in training
You can access any of your Organisations datasets or any of the Public datasets during training, including multiple within the same training script. Include a dataset_id_list
field in your experiment launch file with the dataset IDs as an array of unique strings, as follows.
dataset_id_list = ["<dataset1-id>","<dataset2-id>","<dataset3-id>"]
After your script has launched, your Datasets will be mounted to your Container at /data/<dataset-id>
and available to your code during training.
Last updated