Skip to main content
There are two ways to upload local files into Avala: the Add Dataset wizard in the web app (drag-and-drop) and the avala datasets upload CLI command. Both write to the same managed storage, both enforce the same per-user 10 GB cap, and both create a normal Avala dataset that you can label, share, and export. Use the wizard for ad-hoc uploads of a few hundred files. Use the CLI when you have many files, large files, or want to script the upload.

Storage cap

Local uploads count against a 10 GB per-user quota. Each individual file is capped at 2 GB. Files larger than 2 GB are not currently supported via either the wizard or the CLI — split them, or use one of the cloud-storage data sources instead. You can see your current usage on the local-upload step of the Add Dataset wizard, or fetch it from the API:
If you need a higher cap, contact support@avala.ai.

Web wizard (drag-and-drop)

  1. Open Mission Control and click Add Dataset.
  2. Step 1 — Common data: name the dataset, pick the data type (image, video, lidar, splat including .4dgs, MCAP, etc.), and set labels.
  3. Step 2 — Source: pick Local files.
  4. Step 3 — Upload: drag files into the drop zone or click to browse. The picker accepts only file types that match the data type from step 1 — for example, a Lidar dataset accepts .pcd, .bin, .las, .laz, .ply and rejects everything else with an inline reason. Per-file progress shows on each row.
  5. Click Submit once every selected file has finished uploading. (The wizard keeps the button disabled while any file is still pending, uploading, or failed — partial batches would create a dataset with only some of the files you picked.) The dataset is created in your account immediately and is ready to label.
If a file fails (e.g. network blip), use the Retry button on the row. The wizard never re-uploads files that already succeeded.

CLI (avala datasets upload)

Install the SDK:
Authenticate by setting an API key (create one in Settings → API Keys):
Then run the upload — the CLI creates the dataset and uploads all files in one shot:
The CLI walks the source directory, opens parallel connections to S3, and shows a progress bar. If a single upload fails the command stops with a non-zero exit code; rerun the command to retry.

Common flags

Quota errors

If your upload would push you over 10 GB, the API returns HTTP 413 and the CLI prints:
The CLI stops before issuing any further presigned URLs, so partial uploads are bounded.

After the upload

Either path produces a normal dataset. From there you can:
  • Define a project over it and assign annotation tasks.
  • Trigger an export once labelling is done.
  • Browse items via client.datasets.get(<uid>).items() in the Python SDK.
Your files live in Avala-managed storage. Your dataset’s provider_config handles access, so you don’t need separate AWS credentials to view them.