Skip to content

Commit c3ac3a9

Browse files
authored
Merge pull request #214 from Labelbox/mea-dev
mea
2 parents 54596e2 + f94bcff commit c3ac3a9

39 files changed

+2939
-62
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
# Changelog
22

33
# Next Release
4-
54
## Removed
65
* Deprecated functions
76
- project.reviews()
87
- project.create_prediction()
98
- project.create_prediction_model()
109
- project.create_label()
1110

11+
# Version 2.7b1+mea (2021-06-27)
12+
## Fix
13+
* No longer convert `ModelRun.created_by_id` to cuid on construction of a `ModelRun`.
14+
* This was causing queries for ModelRuns to fail.
15+
16+
# Version 2.7b0+mea (2021-06-27)
17+
## Fix
18+
* Update `AnnotationGroup` to expect labelId to be a cuid instead of uuid.
19+
* Update `datarow_miou` to support masks with multiple classes in them.
20+
1221
# Version 2.7.0 (2021-06-27)
1322
## Added
1423
* Added `dataset.export_data_rows()` which returns all `DataRows` for a `Dataset`.
1524

25+
# Version 2.6b2+mea (2021-06-16)
26+
## Added
27+
* `ModelRun.annotation_groups()` to fetch data rows and label information for a model run
28+
1629
# Version 2.6.0 (2021-06-11)
1730
## Fix
1831
* Upated `create_mask_ndjson` helper function in `image_mal.ipynb` to use the color arg
@@ -25,6 +38,15 @@
2538
* Use `DataRow.create_attachment()` instead of `DataRow.create_metadata()`
2639
* Update pydantic version
2740

41+
# Version 2.5b0+mea (2021-06-11)
42+
## Added
43+
* Added new `Model` and 'ModelRun` entities
44+
* Update client to support creating and querying for `Model`s
45+
* Implement new prediction import pipeline to support both MAL and MEA
46+
* Added notebook to demonstrate how to use MEA
47+
* Added `datarow_miou` for calculating datarow level iou scores
48+
49+
2850
# Version 2.5.6 (2021-05-19)
2951
## Fix
3052
* MAL validation no longer raises exception when NER tool has same start and end location

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test-staging: build
66
docker run -it -v ${PWD}:/usr/src -w /usr/src \
77
-e LABELBOX_TEST_ENVIRON="staging" \
88
-e LABELBOX_TEST_API_KEY_STAGING=${LABELBOX_TEST_API_KEY_STAGING} \
9-
local/labelbox-python:test pytest $(PATH_TO_TEST) -svv
9+
local/labelbox-python:test pytest $(PATH_TO_TEST) -svvx
1010

1111
test-prod: build
1212
docker run -it -v ${PWD}:/usr/src -w /usr/src \

0 commit comments

Comments
 (0)