File tree Expand file tree Collapse file tree 6 files changed +21
-2
lines changed Expand file tree Collapse file tree 6 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to the [Nucleus Python Client](https://github.com/scaleapi/n
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.14.19] ( https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.14.19 ) - 2022-08-26
9
+
10
+ ### Added
11
+ - Support for Coordinate metadata values. See [ upload metadata] ( https://nucleus.scale.com/docs/upload-metadata ) for more information.
12
+
8
13
## [ 0.14.18] ( https://github.com/scaleapi/nucleus-python-client/releases/tag/v0.14.18 ) - 2022-08-16
9
14
10
15
### Added
Original file line number Diff line number Diff line change @@ -132,6 +132,10 @@ class BoxAnnotation(Annotation): # pylint: disable=R0902
132
132
attach to this annotation. Strings, floats and ints are supported best
133
133
by querying and insights features within Nucleus. For more details see
134
134
our `metadata guide <https://nucleus.scale.com/docs/upload-metadata>`_.
135
+
136
+ Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
137
+ These values can be specified as `{"lat": 52.5, "lon": 13.3, ... }`.
138
+
135
139
embedding_vector: Custom embedding vector for this object annotation.
136
140
If any custom object embeddings have been uploaded previously to this dataset,
137
141
this vector must match the dimensions of the previously ingested vectors.
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ class DatasetItem: # pylint: disable=R0902
86
86
<https://nucleus.scale.com/docs/uploading-3d-data>`_ for more
87
87
info.
88
88
89
+ Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
90
+ These values can be specified as `{"lat": 52.5, "lon": 13.3, ... }`.
91
+
89
92
.. todo ::
90
93
Shorten this once we have a guide migrated for metadata, or maybe link
91
94
from other places to here.
Original file line number Diff line number Diff line change @@ -158,6 +158,10 @@ class BoxPrediction(BoxAnnotation):
158
158
attach to this annotation. Strings, floats and ints are supported best
159
159
by querying and insights features within Nucleus. For more details see
160
160
our `metadata guide <https://nucleus.scale.com/docs/upload-metadata>`_.
161
+
162
+ Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
163
+ These values can be specified as `{"lat": 52.5, "lon": 13.3, ... }`.
164
+
161
165
class_pdf: An optional complete class probability distribution on this
162
166
annotation. Each value should be between 0 and 1 (inclusive), and sum up to
163
167
1 as a complete distribution. This can be useful for computing entropy to
Original file line number Diff line number Diff line change @@ -381,7 +381,10 @@ class LidarScene(Scene):
381
381
frames (Optional[List[:class:`Frame`]]): List of frames to be a part of
382
382
the scene. A scene can be created before frames or items have been
383
383
added to it, but must be non-empty when uploading to a :class:`Dataset`.
384
- metadata (Optional[Dict]): Optional metadata to include with the scene.
384
+ metadata (Optional[Dict]):
385
+ Optional metadata to include with the scene.
386
+ Coordinate metadata may be provided to enable the Map Chart in the Nucleus Dataset charts page.
387
+ These values can be specified as `{"lat": 52.5, "lon": 13.3, ... }`.
385
388
386
389
Refer to our `guide to uploading 3D data
387
390
<https://docs.nucleus.scale.com/docs/uploading-3d-data>`_ for more info!
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ exclude = '''
21
21
22
22
[tool .poetry ]
23
23
name = " scale-nucleus"
24
- version = " 0.14.18 "
24
+ version = " 0.14.19 "
25
25
description = " The official Python client library for Nucleus, the Data Platform for AI"
26
26
license = " MIT"
27
27
authors = [" Scale AI Nucleus Team <nucleusapi@scaleapi.com>" ]
You can’t perform that action at this time.
0 commit comments