Skip to content
Merged

3.9.0 #343

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
dd771af
ADD: beta batch queue methods
Sep 29, 2021
fa0062f
ADD: beta batch queue methods
Sep 29, 2021
2c00f56
FIX: dequeue method
Sep 29, 2021
023c7ba
FIX: dequeue method
Sep 29, 2021
3e85362
doc updates
Oct 22, 2021
7e893f8
Merge pull request #323 from Labelbox/ms/doc-updates
msokoloff1 Oct 22, 2021
f4cb1c7
Add a note to export_data_rows about the cache period
paulnoirel Oct 22, 2021
cac05ba
Merge pull request #324 from Labelbox/pnoirel_examples
paulnoirel Oct 22, 2021
cc3d894
add deletion of MEA predictions to stop sentry errors
jtsodapop Nov 2, 2021
260775c
DIAG-712 update to tests for sentry errors
jtsodapop Nov 2, 2021
86cd19c
change from del to wait until done so we dont kick off a new sentry e…
jtsodapop Nov 2, 2021
2069945
Merge pull request #326 from Labelbox/DIAG-712
jtsodapop Nov 2, 2021
6f67194
update to all tests that used annotation_submit_fn
jtsodapop Nov 2, 2021
9ec06a9
minor stuff
GrantEating Nov 3, 2021
b8e6ae1
Merge branch 'develop' into gj/batch-mode
Nov 3, 2021
4dd8029
CHG: update methods for GA
Nov 3, 2021
6212be5
Format and fix bugs
Nov 3, 2021
93cdfaf
CHG: move into update statement
Nov 3, 2021
4a1fc54
update to naming and removal of time sleep
jtsodapop Nov 3, 2021
3f927dc
CHG: remove internal flag
Nov 3, 2021
d3f4837
CHG: data row ids and require batch mode
Nov 3, 2021
97c00ad
CHG: address comments
Nov 3, 2021
d65acc0
handle 1 more error type
GrantEating Nov 3, 2021
28a0164
Merge pull request #329 from Labelbox/grant/improve-error-handling
GrantEating Nov 3, 2021
8b6b7a2
FIX: gql formatting
Nov 4, 2021
08aa982
updates to tests after implementation of LabelImport
jtsodapop Nov 4, 2021
f7c0ebb
updates to tests after implementation of LabelImport
jtsodapop Nov 4, 2021
8ad5b45
FIX: change queue mode tests
Nov 5, 2021
e5d196f
remove method
Nov 5, 2021
8be9e0d
Update project.py
Nov 8, 2021
d7d495a
Merge pull request #327 from Labelbox/DIAG-888
msokoloff1 Nov 8, 2021
e4bac5a
Merge pull request #332 from Labelbox/DIAG-889
msokoloff1 Nov 8, 2021
89a9b00
Address pr comments
Nov 8, 2021
08bcc1b
updates to documentation. also, Line should only be 2 or more Points
jtsodapop Nov 8, 2021
023ac20
yapf
jtsodapop Nov 8, 2021
612f573
nit
jtsodapop Nov 8, 2021
9760126
Format and use test dir
Nov 8, 2021
e0ed0b6
FIX: import
Nov 9, 2021
47bab9d
Merge pull request #328 from Labelbox/gj/batch-mode
Nov 9, 2021
e3fba71
query for ontology
Nov 10, 2021
fb2f71d
clean up client
Nov 10, 2021
0b81083
Merge pull request #334 from Labelbox/jtso/update_docstrings
jtsodapop Nov 10, 2021
7e52c76
Start showing CLI deprecation warnings (e.g. “warning: after [date] y…
jtsodapop Nov 11, 2021
ad02852
In the docs, flag operations and fields that will be removed. Add a p…
jtsodapop Nov 11, 2021
570fbc3
remove unnecessary parenthesis
jtsodapop Nov 11, 2021
560368e
update to doc files
jtsodapop Nov 11, 2021
ad841db
yapf
jtsodapop Nov 11, 2021
db4a977
nit
jtsodapop Nov 11, 2021
3ebeed7
update
jtsodapop Nov 11, 2021
9ee6dff
Merge pull request #338 from Labelbox/update_docs
jtsodapop Nov 11, 2021
d8c7b83
ontology features working
Nov 12, 2021
9408395
updated notebooks
Nov 12, 2021
ccf36bb
added doc strings and cleanup
Nov 12, 2021
4b09e0e
complete ontology management
Nov 12, 2021
df5cb03
doc update
Nov 12, 2021
0228a36
clean up
Nov 12, 2021
1a4fba1
update tests
Nov 12, 2021
196df8e
feature schema based
Nov 12, 2021
9ff4c72
format
Nov 12, 2021
20e9bf6
bug fix
Nov 12, 2021
bc9f27e
Clear notebook
Nov 12, 2021
6834696
prep for release
Nov 12, 2021
2a97fa6
Merge pull request #340 from Labelbox/ms/ontology-updates
msokoloff1 Nov 12, 2021
b0723e7
update changelog
Nov 12, 2021
62aff30
Merge pull request #342 from Labelbox/ms/3.9-release
msokoloff1 Nov 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,22 @@
| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 |
| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 |
-----

# Version 3.8.0 (2021-10-21)
# Version 3.9.0 (2021-11-12)
## Added
* New ontology management features
* Query for ontologies by name with `client.get_ontologies()` or by id using `client.get_ontology()`
* Query for feature schemas by name with `client.get_feature_schemas()` or id using `client.get_feature_schema()`
* Create feature schemas with `client.create_feature_schemas()`
* Create ontologies from normalized ontology data with `client.create_ontology()`
* Create ontologies from feature schemas with `client.create_ontology_from_feature_schemas()`
* Set up a project from an existing ontology with `project.setup_edior()`
* Added new `FeatureSchema` entity
* Add support for new queue modes
* Send batches of data direction to a project with `project.queue()`
* Remove items from the queue with `project.dequeue()`
* Query for and toggle the queue mode

# Version 3.8.0 (2021-10-22)
## Added
* `ModelRun.upsert_data_rows()`
* Add data rows to a model run without also attaching labels
Expand All @@ -25,7 +39,7 @@

## Fix
* `DataRowMetadataField` no longer relies on pydantic for field validation and coercion
* This prevents unintended type coercion from occuring
* This prevents unintended type coercions from occurring

# Version 3.7.0 (2021-10-11)
## Added
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = '2021, Labelbox'
author = 'Labelbox'

release = '3.7.0'
release = '3.8.0'

# -- General configuration ---------------------------------------------------

Expand Down
20 changes: 20 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,23 @@ Enums
:members:
:show-inheritance:

ModelRun
----------------------------

.. automodule:: labelbox.schema.model_run
:members:
:show-inheritance:

Model
----------------------------

.. automodule:: labelbox.schema.model
:members:
:show-inheritance:

DataRowMetadata
----------------------------

.. automodule:: labelbox.schema.data_row_metadata
:members:
:show-inheritance:
Loading