Skip to content

2.5.2 Release #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fcc9fd0
basics
Mar 17, 2021
0dd91b5
Merge branch 'develop' of https://github.com/Labelbox/labelbox-python…
Mar 17, 2021
a22ac7a
fixed bug where IDs were defaulting to a list rather than None. also …
jtsodapop Mar 17, 2021
8a041bd
mal notebooks
Mar 18, 2021
38c38bb
project config notebooks
Mar 18, 2021
f1c3d9a
fix function names
Mar 18, 2021
115dbd1
catches errors properly
Mar 19, 2021
c45054e
export examples
Mar 19, 2021
69b1d3e
update readme
Mar 19, 2021
78e9d93
rename directory
Mar 19, 2021
0ee9e00
Merge pull request #124 from Labelbox/ms/update-error-check
msokoloff1 Mar 19, 2021
cff3e15
Merge branch 'develop' of https://github.com/Labelbox/labelbox-python…
Mar 19, 2021
01052e3
update basic examples and added labels notebook
Mar 19, 2021
e324353
Merge pull request #123 from Labelbox/jtso/ontology
jtsodapop Mar 19, 2021
a333ed2
Merge branch 'develop' of https://github.com/Labelbox/labelbox-python…
Mar 19, 2021
799a024
yapf
Mar 19, 2021
20a61e8
Update readme. Cleanup notebooks
Mar 22, 2021
950aa95
Merge pull request #125 from Labelbox/examples
msokoloff1 Mar 22, 2021
cbf1e31
add ontology example
Mar 22, 2021
57b2b56
link ontology example to project_setup
Mar 22, 2021
0133fd9
Merge pull request #126 from Labelbox/examples
msokoloff1 Mar 23, 2021
cef9984
fixed bugs, ready for release
Mar 25, 2021
db7869b
Update bulk_import_request.py
msokoloff1 Mar 25, 2021
39c8232
cleaner
Mar 25, 2021
82a32da
create placeholder id once
Mar 25, 2021
206c5b0
Merge pull request #127 from Labelbox/ms/bug-fix
msokoloff1 Mar 25, 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

# Version 2.5.2 (2021-03-25)
## Fix
* Ontology builder defaults to None for missing fields instead of empty lists
* MAL validation added extra fields to subclasses

### Added
* Example notebooks

## Version 2.5.1 (2021-03-15)
### Fix
* `Dataset.data_row_for_external_id` No longer throws `ResourceNotFoundError` when there are duplicates
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Labelbox Python API offers a simple, user-friendly way to interact with the

## Requirements

* Use Python 3.7 or 3.8.
* Use Python 3.6, 3.7 or 3.8.
* Create an account by visiting http://app.labelbox.com/.
* [Generate an API key](https://labelbox.com/docs/api/getting-started#create_api_key).

Expand Down
26 changes: 26 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## Labelbox SDK Examples

* Learn how to use the SDK by following along

Structure:

1. basics
* [Fundamentals](basics/basics.ipynb)
* CRUD
* [Data rows](basics/data_rows.ipynb)
* [Datasets](basics/datasets.ipynb)
* [Labels](basics/labels.ipynb)
* [Ontologies](basics/ontologies.ipynb)
* [Projects](basics/projects.ipynb)
2. label_export
* [Image annotation export](label_export/images.ipynb)
* [Text annotation export](label_export/text.ipynb)
* [Video annotation export](label_export/video.ipynb)
3. model_assisted_labeling
* [Image mal example](model_assisted_labeling/image_mal.ipynb)
* [Named entity recognition mal example](model_assisted_labeling/ner_mal.ipynb)
* [Debugging mal](model_assisted_labeling/debugging_mal.ipynb)
4. project_configuration
* [Project setup](project_configuration/project_setup.ipynb)
* [Queue management](project_configuration/queue_management.ipynb)
* [Webhooks](project_configuration/webhooks.ipynb)
Loading