You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* can create datasets with scenes
* get scene info about dataset
* adapting tests for dataset creation
* black
* adding constants file
* more info on is_scene attribute
* Update nucleus/dataset.py
Co-authored-by: Jean Lucas <jeanlpf@hotmail.com>
* updated minor version
* minor version update
* linter
* assert that dataset support scenes before appending
* ensure frames for frame datasets, scenes for scene dataset
* adding scene info to dataset info printout
* deprecation warning + docstring update
* update tests for scenes
* test for illegal items upload
* move scene check within actual append methods
* Update deprecation warning
Co-authored-by: Sasha Harrison <70984140+sasha-scale@users.noreply.github.com>
* Update version number
Co-authored-by: Sasha Harrison <70984140+sasha-scale@users.noreply.github.com>
* black
* linting
* import order
* fix tests
Co-authored-by: Jean Lucas <jeanlpf@hotmail.com>
Co-authored-by: Sasha Harrison <70984140+sasha-scale@users.noreply.github.com>
Co-authored-by: Sasha Harrison <sasha.harrison@scale.com>
:class:`Dataset`: The newly created Nucleus dataset as an object.
360
370
"""
371
+
warnings.warn(
372
+
"The default create_dataset('dataset_name', ...) method without the is_scene parameter will be deprecated soon in favor of providing the is_scene parameter explicitly. "
373
+
"Please make sure to create a dataset with either create_dataset('dataset_name', is_scene=True, ...) to upload "
374
+
"DatasetItems or create_dataset('dataset_name', is_scene=False, ...) to upload "
0 commit comments