Skip to content

Commit a351926

Browse files
author
gdj0nes
committed
Merge branch 'develop' into gj/batch
2 parents 094c089 + 76a5665 commit a351926

File tree

88 files changed

+11344
-3285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+11344
-3285
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
11
# Changelog
2+
# Version 3.16.0 (2022-03-08)
3+
## Added
4+
* Ability to fetch a model run with `client.get_model_run()`
5+
* Ability to fetch labels from a model run with `model_run.export_labels()`
6+
- Note: this is only Experimental. To use, client param `enable_experimental` should
7+
be set to true
8+
* Ability to delete an attachment
9+
10+
## Fix
11+
* Logger level is no longer set to INFO
12+
13+
## Updated
14+
* Deprecation: Creating Dropdowns will no longer be supported after 2022-03-31
15+
- This includes creating/adding Dropdowns to an ontology
16+
- This includes creating/adding Dropdown Annotation Type
17+
- For the same functionality, use Radio
18+
- This will not affect existing Dropdowns
19+
20+
# Changelog
21+
# Version 3.15.0 (2022-02-28)
22+
## Added
23+
* Extras folder which contains useful applications using the sdk
24+
* Addition of ResourceTag at the Organization and Project level
25+
* Updates to the example notebooks
26+
27+
## Fix
28+
* EPSGTransformer now properly transforms Polygon to Polygon
29+
* VideoData string representation now properly shows VideoData
30+
31+
32+
# Version 3.14.0 (2022-02-10)
33+
## Added
34+
* Updated metrics for classifications to be per-answer
35+
36+
37+
# Version 3.13.0 (2022-02-07)
38+
## Added
39+
* Added `from_shapely` method to create annotation types from Shapely objects
40+
* Added `start` and `end` filter on the following methods
41+
- `Project.export_labels()`
42+
- `Project.label_generator()`
43+
- `Project.video_label_generator()`
44+
* Improved type hinting
45+
46+
247
# Version 3.12.0 (2022-01-19)
348
## Added
449
* Tiled Imagery annotation type

examples/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
upload:
3+
python scripts/upload_documentation.py --config-path 'scripts/config.json'

examples/README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,16 @@ Learn more about annotation types in the [docs](https://docs.labelbox.com/docs/a
5151
| MAL Using Annotation Types | [Github](annotation_types/mal_using_annotation_types.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_types/mal_using_annotation_types.ipynb) |
5252

5353

54-
## [Model Assisted Labeling](model_assisted_labeling)
54+
## [Annotation Import (Ground Truth & MAL)](annotation_import)
5555

5656

5757
| Notebook | Github | Google Colab | Learn more |
5858
| --------------------------- | --------------------------------- | ------------ | ---------- |
59-
| MAL Basics | [Github](model_assisted_labeling/mal_basics.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/mal_basics.ipynb) | [Docs](https://docs.labelbox.com/docs/model-assisted-labeling) |
60-
| Image MAL | [Github](model_assisted_labeling/image_mal.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/image_mal.ipynb) |
61-
| Video MAL | [Github](model_assisted_labeling/video_mal.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/video_mal.ipynb) |
62-
| Named Entity Recognition MAL | [Github](model_assisted_labeling/ner_mal.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/ner_mal.ipynb) |
63-
| Debugging MAL | [Github](model_assisted_labeling/debugging_mal.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/debugging_mal.ipynb) |
64-
| MAL with Subclasses | [Github](model_assisted_labeling/mal_with_subclasses.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/mal_with_subclasses.ipynb) |
65-
| Tiled Imagery MAL | [Github](model_assisted_labeling/tiled_imagery_mal.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_assisted_labeling/tiled_imagery_mal.ipynb) |
59+
| Basics | [Github](annotation_import/basics.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_import/basics.ipynb) | [Docs](https://docs.labelbox.com/docs/model-assisted-labeling) |
60+
| Image Annotation Import | [Github](annotation_import/image.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_import/image.ipynb) |
61+
| Text Annotation Import | [Github](annotation_import/text.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_import/text.ipynb) |
62+
| Tiled Imagery Annotation Import | [Github](annotation_import/tiled.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_import/tiled.ipynb) |
63+
| Video Model-Assisted Labeling | [Github](annotation_import/video.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_import/video.ipynb) |
6664
------
6765

6866
## [Project Configuration](project_configuration)
@@ -82,3 +80,9 @@ Learn more about annotation types in the [docs](https://docs.labelbox.com/docs/a
8280
| Model Diagnostics Demo | [Github](model_diagnostics/model_diagnostics_demo.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_diagnostics/model_diagnostics_demo.ipynb) |
8381
| Custom Metrics Basics | [Github](model_diagnostics/custom_metrics_basics.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_diagnostics/custom_metrics_basics.ipynb) | [Docs](https://docs.labelbox.com/docs/model-diagnostics) |
8482
| Custom Metrics Demo | [Github](model_diagnostics/custom_metrics_demo.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/model_diagnostics/custom_metrics_demo.ipynb) |
83+
84+
85+
## [Extras](extras)
86+
| Notebook | Github | Google Colab | Learn more |
87+
|---------------------------------|------------------------------------------------| ------------ | ---------- |
88+
| Classification Confusion Matrix | [Github](extras/classification-confusion-matrix.ipynb) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/extras/classification-confusion-matrix.ipynb) | |

0 commit comments

Comments
 (0)