Skip to content

Releases: scaleapi/nucleus-python-client

v0.14.15

12 Aug 10:51
aaf00b0

Choose a tag to compare

  • Removed s3fs, fsspec dependencies for simpler installation in various environments

v0.14.14

11 Aug 11:53
2d03c54

Choose a tag to compare

Added

  • client.slices to list all of users slices independent of dataset

Fixed

  • Validate unit test listing and evaluation history listing. Now uses new bulk fetch endpoints for faster listing.

Fix .from_json parsing

10 Aug 18:31
e90b2c7

Choose a tag to compare

Fix URL keys when re-converting Scene.from_json payload using Scene.to_json

Auto-pagination for export endpoints

09 Aug 00:34
0ddc3f5

Choose a tag to compare

Added

  • Added auto-paginated Slice.export_predictions_generator

Fixed

  • Change {Dataset,Slice}.items_and_annotation_generator to work with improved paginate endpoint

Update items_and_annotation_generator

20 Jul 18:55
3537ba8

Choose a tag to compare

  • Fix Slice.items_and_annotation_generator() bug
  • Add Dataset.items_and_annotation_generator() method for parity

v0.14.9

14 Jul 17:33
eeb9949

Choose a tag to compare

- NoneType errors in Validate eval history

Query via API

08 Jul 04:21
22aea22

Choose a tag to compare

Support running structured queries and retrieving item results via API

0.14.6

08 Jul 00:50
e103fbd

Choose a tag to compare

Dataset.delete_annotations now defaults reference_ids to an empty list and keep_history to true

0.14.3

22 Jun 07:54
a65a079

Choose a tag to compare

Fix CLI installation in environments without Shapely+GDAL installed.

Add/Remove Tags to Model Projects

16 Jun 20:06
076bb6e

Choose a tag to compare

  • Allow creation/deletion of model tags on new and existing models, eg:
# on model creation
model = client.create_model(name="foo_model", reference_id="foo-model-ref", tags=["some tag"])
# on existing models
existing_model = client.models[0]
existing_model.add_tags(['tag a', 'tag b'])
# remove tag
existing_model.remove_tags(['tag a'])