Dataset.version
Dataset.version(tag) → Version
Create a reference to a particular version within a dataset. The version class is useful for getting version metadata and traversing versions. However, if you want to get a dataset's contents at a particular version, construct the dataset with the version tag; e.g. user|organization.dataset(name, tag="1.0")
.
Parameters:
tag
: str
The tag for the version, either current
, next
, or of the form 1.0
. If no tag is specified, returns the version associated with the dataset instance.
Returns:
Examples
Last updated