File tree Expand file tree Collapse file tree 6 files changed +17
-16
lines changed Expand file tree Collapse file tree 6 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 11# Changelog
2+ # Version 3.54.1 (2023-10-17)
3+ ## Notebooks
4+ * Revised the notebooks to update outdated examples when using ` client.create_project() ` to create a project
5+
26# Version 3.54.0 (2023-10-10)
37## Added
48* Add exports v1 deprecation warning
59* Create method in SDK to modify LPO priorities in bulk
610## Removed
711* Remove backoff library
12+
813# Version 3.53.0 (2023-10-03)
914## Added
1015* Remove LPO deprecation warning and allow greater range of priority values
1318* Python 3.10 support
1419* Change return of dataset.create_data_rows() to Task
1520* Add new header to capture python version
16- ## Notebooks
17- * Updated examples to match latest updates to SDK
21+ ## Notebooks
22+ * Updated examples to match latest updates to SDK
23+
1824# Version 3.52.0 (2023-08-24)
1925## Added
2026* Added methods to create multiple batches for a project from a list of data rows
2127* Limit the number of data rows to be checked for processing status
28+
2229# Version 3.51.0 (2023-08-14)
2330## Added
2431* Added global keys to export v2 filters for project, dataset and DataRow
Original file line number Diff line number Diff line change 2121copyright = '2021, Labelbox'
2222author = 'Labelbox'
2323
24- release = '3.54.0 '
24+ release = '3.54.1 '
2525
2626# -- General configuration ---------------------------------------------------
2727
Original file line number Diff line number Diff line change 10071007 "source" : [
10081008 " # Create a Labelbox project\n " ,
10091009 " project = client.create_project(name=\" video_prediction_demo\" ,\n " ,
1010- " auto_audit_percentage=1,\n " ,
1011- " auto_audit_number_of_labels=1,\n " ,
10121010 " media_type=lb.MediaType.Video)\n " ,
10131011 " project.setup_editor(ontology)"
10141012 ],
Original file line number Diff line number Diff line change 5858 "metadata" : {},
5959 "source" : [
6060 " import labelbox as lb\n " ,
61+ " from labelbox.schema.quality_mode import QualityMode\n " ,
6162 " import uuid"
6263 ],
6364 "cell_type" : " code" ,
152153 {
153154 "metadata" : {},
154155 "source" : [
156+ " \n " ,
155157 " batch_project = client.create_project(name=\" Project Setup Demo\" ,\n " ,
156- " auto_audit_percentage=0.1,\n " ,
157- " auto_audit_number_of_labels=4,\n " ,
158+ " quality_mode=QualityMode.Consensus, # For benchmarks use quality_mode = QualityMode.Benchmark\n " ,
158159 " media_type=lb.MediaType.Image)\n " ,
159160 " \n " ,
160161 " \n " ,
182183 " priority=5, # priority between 1(Highest) - 5(lowest)\n " ,
183184 " consensus_settings={\n " ,
184185 " \" number_of_labels\" : 2, \n " ,
185- " \" coverage_percentage\" : 0. 1 \n " ,
186+ " \" coverage_percentage\" : 1 \n " ,
186187 " } \n " ,
187188 " )\n " ,
188189 " print(\" Batch: \" , batch)"
Original file line number Diff line number Diff line change 5959 "metadata" : {},
6060 "source" : [
6161 " import labelbox as lb\n " ,
62+ " from labelbox.schema.quality_mode import QualityMode\n " ,
6263 " import numpy as np\n " ,
6364 " from io import BytesIO\n " ,
6465 " import os\n " ,
103104 " \n " ,
104105 " project = client.create_project(name=\" batch-test-project\" ,\n " ,
105106 " description=\" a description\" ,\n " ,
107+ " quality_mode=QualityMode.Benchmark, # For Consensus projects use quality_mode = QualityMode.Consensus\n " ,
106108 " media_type=lb.MediaType.Image,\n " ,
107109 " )\n " ,
108110 " \n " ,
109- " # For Consensus quality settings use : \n " ,
110- " consensus_quality = {\n " ,
111- " \" auto_audit_percentage\" : 0.1,\n " ,
112- " \" auto_audit_number_of_labels\" : 3\n " ,
113- " }\n " ,
114- " \n " ,
115- " \n " ,
116111 " dataset = client.create_dataset(name=\" queue_dataset\" )"
117112 ],
118113 "cell_type" : " code" ,
Original file line number Diff line number Diff line change 11name = "labelbox"
2- __version__ = "3.54.0 "
2+ __version__ = "3.54.1 "
33
44from labelbox .client import Client
55from labelbox .schema .project import Project
You can’t perform that action at this time.
0 commit comments