Update a dataset via UI
You can also add rows to your dataset manually in the UI. Click the (+ Example) button to add a row, then edit its attributes directly in the interface.Update a dataset via Code
You can add new examples to an existing dataset programmatically. Datasets are version-controlled, so you can still access previous versions.- Version 7: Use
update_dataset()to replace the dataset with a new version containing your data. - Version 8: Use
append_examples()to add new examples to the latest dataset version. Ability to update existing examples is coming soon.
append_examples, see