Add a dataset in the console
1
Open the model's datasets
In the Auremi console, open your model and click the Datasets tab.
2
Create the dataset
Click Add uploaded dataset, then Create new. Enter a Dataset name, choose a Split (Train, Validation, or Test), and select the files. You can select many files at once.
3
Upload
Click Add train dataset. The button is named for the split you chose. The dataset is linked to this model and appears in its list.
From an S3 bucket
Connect an S3 account first, under Cloud Compute on the Storage tab. Then, on the model’s Datasets tab, open S3 bucket and click Add S3 dataset. Choose the S3 account and click Browse prefix. Under Folder rules, files intrain/, validation/ and test/ go to those splits. You can change the split of any file in the list.
Link an existing dataset to a model
On the model’s Datasets tab, click Add uploaded dataset, then Use existing. Tick the datasets you want and click Add selected. A dataset added from Datasets in the sidebar goes into the library without a model, so link it this way. On a model’s tab, Remove unlinks a dataset from that model and keeps it in the library. Delete on the sidebar’s Datasets page deletes the dataset and all its versions.Add a dataset through your agent
Put the files in one folder. Each file becomes one example. A file inside a folder namedtest goes to the test split, one inside validation or val goes to validation, and every other file goes to train.
Upload a dataset
What the agent runs
What the agent runs
Link an existing dataset through your agent
Link a dataset
What the agent runs
What the agent runs
auremi dataset list prints each dataset’s ID, with its version IDs indented underneath. auremi dataset link takes a dataset ID. Training takes a version ID.
Train on a dataset
A training run uses one dataset version. If the model has more than one version with training examples, the CLI won’t choose, so the agent lists them and asks you which to use. Name a dataset, or tell it to use the newest.Train on a dataset
What the agent runs
What the agent runs
--dataset newest picks the most recently created version.
In the console, click + New Training on the model’s Overview and choose a Dataset version. In a notebook, a training cell has a Train dataset menu. See Notebooks.