Skip to content

Commit

Permalink
Release v.3.58.1 (#1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamini-labelbox authored Dec 16, 2023
2 parents 741d778 + 855fcfe commit eebd88e
Show file tree
Hide file tree
Showing 18 changed files with 663 additions and 171 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
# Version 3.58.1 (2023-12-15)
## Added
* Support to export all projects and all model runs to `export_v2` for a `dataset` and a `slice`
## Notebooks
* Update exports v2 notebook to include methods that return `ExportTask`

# Version 3.58.0 (2023-12-11)
## Added
Expand Down
1 change: 1 addition & 0 deletions CONTRIB.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ review the following considerations before proceeding:
improvements to functions within the schema/ package.
* Please ensure that any new libraries are compliant with the Apache license that governs the Labelbox SDK.
* Ensure that you update any relevant docstrings and comments within your code
* Ensure that any new python components like classes, methods etc that need to feature in labelbox documentation have entries in the file [index.rst](https://github.com/Labelbox/labelbox-python/blob/develop/docs/source/index.rst). Also make sure you run `make html` locally in the `docs` folder to check if the documentation correctly updated according to the docstrings in the code added.

## Repository Organization

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.58.0'
release = '3.58.1'

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

Expand Down
14 changes: 7 additions & 7 deletions examples/annotation_import/conversational.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,9 @@
"ontology_builder = lb.OntologyBuilder(\n",
" tools=[\n",
" lb.Tool(tool=lb.Tool.Type.NER,name=\"ner\"),\n",
" ],\n",
" classifications=[\n",
" lb.Classification(\n",
" ], \n",
" classifications=[ \n",
" lb.Classification( \n",
" class_type=lb.Classification.Type.TEXT,\n",
" scope=lb.Classification.Scope.INDEX,\n",
" name=\"text_convo\"),\n",
Expand Down Expand Up @@ -587,11 +587,11 @@
{
"metadata": {},
"source": [
"# Upload label for this data row in project\n",
"# Upload label for this data row in project \n",
"upload_job = lb.LabelImport.create_from_objects(\n",
" client = client,\n",
" project_id = project.uid,\n",
" name=\"label_import_job\"+str(uuid.uuid4()),\n",
" client = client, \n",
" project_id = project.uid, \n",
" name=\"label_import_job\"+str(uuid.uuid4()), \n",
" labels=label)\n",
"\n",
"upload_job.wait_until_done()\n",
Expand Down
Loading

0 comments on commit eebd88e

Please sign in to comment.