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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# Changelog
2
2
3
+
# Version 3.34.0 (2022-12-22)
4
+
### Added
5
+
* Added `get_by_name()` method to MetadataOntology object to access both custom and reserved metadata by name.
6
+
* Added support for adding metadata by name when creating datarows using `DataRowMetadataOntology.bulk_upsert()`.
7
+
* Added support for adding metadata by name when creating datarows using `Dataset.create_data_rows()`, `Dataset.create_data_rows_sync()`, and `Dataset.create_data_row()`.
8
+
* Example notebooks for auto metrics in models
9
+
10
+
11
+
### Changed
12
+
*`Dataset.create_data_rows()` max limit of DataRows increased to 150,000
13
+
* Improved error handling for invalid annotation import content
14
+
* String metadata can now be 1024 characters long (from 500)
15
+
16
+
## Fixed
17
+
* Broken urls in detectron notebook
18
+
3
19
# Version 3.33.1 (2022-12-14)
4
20
### Fixed
5
21
* Fixed where batch creation limit was still limiting # of data rows. SDK should now support creating batches with up to 100k data rows
Copy file name to clipboardExpand all lines: examples/README.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,16 @@ Learn more about annotation types in the [docs](https://docs.labelbox.com/docs/a
74
74
| Webhooks |[Github](project_configuration/webhooks.ipynb)|[](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/project_configuration/webhooks.ipynb)|[Docs](https://docs.labelbox.com/docs/webhooks)|
75
75
76
76
77
+
## [Prediction Upload to a Model Run](prediction_upload)
| Image Prediction upload |[Github](prediction_upload/image_predictions.ipynb)|[](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/prediction_upload/image_predictions.ipynb)|[Docs](https://docs.labelbox.com/docs/upload-model_predictions)|
83
+
| Text Prediction upload |[Github](prediction_upload/text_predictions.ipynb)|[](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/prediction_upload/text_predictions.ipynb)|[Docs](https://docs.labelbox.com/docs/upload-model_predictions)|
Copy file name to clipboardExpand all lines: examples/basics/data_row_metadata.ipynb
+18-20Lines changed: 18 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@
39
39
"source": [
40
40
"# Data Row Metadata\n",
41
41
"\n",
42
-
"Metadata is useful to be better understand data on the platform to help with labeling review, model diagnostics, and data selection. This **should not be confused with attachments**. Attachments provide additional context for labelers but is not searchable within Catalog."
42
+
"Metadata is useful to better understand data on the platform to help with labeling review, model diagnostics, and data selection. This **should not be confused with attachments**. Attachments provide additional context for labelers but is not searchable within Catalog."
43
43
]
44
44
},
45
45
{
@@ -261,21 +261,20 @@
261
261
"source": [
262
262
"# Construct a metadata field of string kind\n",
263
263
"tag_metadata_field = DataRowMetadataField(\n",
264
-
" schema_id=mdo.reserved_by_name[\"tag\"].uid, # specify the schema id\n",
264
+
" name=\"tag\", # specify the schema name\n",
265
265
" value=\"tag_string\", # typed inputs\n",
266
266
")\n",
267
267
"\n",
268
268
"# Construct an metadata field of datetime kind\n",
0 commit comments