Skip to content

Commit ab5ee0c

Browse files
SDK 3.48.0 release prep (#1134)
1 parent 7345141 commit ab5ee0c

File tree

5 files changed

+43
-24
lines changed

5 files changed

+43
-24
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/google/yapf
3-
rev: v0.33.0
3+
rev: v0.44.0
44
hooks:
55
- id: yapf
66
name: "yapf"

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Changelog
2+
# Version 3.48.0 (2023-06-13)
3+
## Added
4+
* Support for ISO format to exports V2 date filters
5+
* Support to specify confidence for all free-text annotations
6+
7+
## Changed
8+
* Removed backports library and replaced it with python dateutil package to parse iso strings
9+
10+
## Notebooks
11+
* Added predictions to model run example
12+
* Added notebook to run yolov8 and sam on video and upload to LB
13+
* Updated google colab notebooks to reflect raster segmentation tool being released on 6/13
14+
* Updated radio NDJSON annotations format to support confidence
15+
* Added confidence to all free-text annotations (ndjson)
16+
* Fixed issues with cv2 library rooting from the Geospatial notebook used a png map with a signed URL with an expired token
217

318
# Version 3.47.1 (2023-05-24)
419
## Fixed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.47.1'
24+
release = '3.48.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.47.1"
2+
__version__ = "3.48.0"
33

44
from labelbox.client import Client
55
from labelbox.schema.project import Project

tests/data/metrics/iou/data_row/test_data_row_iou.py

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -91,25 +91,27 @@ def test_unmatched(pair):
9191
check_iou(pair)
9292

9393

94-
@parametrize("pair",
95-
strings_to_fixtures([
96-
"empty_radio_label",
97-
"matching_radio",
98-
"empty_radio_prediction",
99-
]))
94+
@parametrize(
95+
"pair",
96+
strings_to_fixtures([
97+
"empty_radio_label",
98+
"matching_radio",
99+
"empty_radio_prediction",
100+
]))
100101
def test_radio(pair):
101102
check_iou(pair)
102103

103104

104-
@parametrize("pair",
105-
strings_to_fixtures([
106-
"matching_checklist",
107-
"partially_matching_checklist_1",
108-
"partially_matching_checklist_2",
109-
"partially_matching_checklist_3",
110-
"empty_checklist_label",
111-
"empty_checklist_prediction",
112-
]))
105+
@parametrize(
106+
"pair",
107+
strings_to_fixtures([
108+
"matching_checklist",
109+
"partially_matching_checklist_1",
110+
"partially_matching_checklist_2",
111+
"partially_matching_checklist_3",
112+
"empty_checklist_label",
113+
"empty_checklist_prediction",
114+
]))
113115
def test_checklist(pair):
114116
check_iou_checklist(pair)
115117

@@ -120,9 +122,10 @@ def test_text(pair):
120122
check_iou(pair)
121123

122124

123-
@parametrize("pair",
124-
strings_to_fixtures(
125-
["test_box_with_wrong_subclass", "test_box_with_subclass"]))
125+
@parametrize(
126+
"pair",
127+
strings_to_fixtures(
128+
["test_box_with_wrong_subclass", "test_box_with_subclass"]))
126129
def test_vector_with_subclass(pair):
127130
check_iou(pair)
128131

@@ -132,8 +135,9 @@ def test_others(pair):
132135
check_iou(pair)
133136

134137

135-
@parametrize("pair",
136-
strings_to_fixtures(
137-
["matching_ner", "no_matching_ner", "partial_matching_ner"]))
138+
@parametrize(
139+
"pair",
140+
strings_to_fixtures(
141+
["matching_ner", "no_matching_ner", "partial_matching_ner"]))
138142
def test_ner(pair):
139143
check_iou(pair)

0 commit comments

Comments
 (0)