Skip to content

Commit 7f28f6f

Browse files
authored
Merge pull request #576 from superannotateai/friday
added ocr
2 parents 2fe28d1 + 6ada0f1 commit 7f28f6f

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22
All release highlights of this project will be documented in this file.
3+
## 4.4.10 - March 12, 2023
4+
### Updated
5+
- Configuration file creation flow
6+
- `SAClient.search_projects()` method, removed `include_complete_image_count` argument, use `include_complete_item_count` instead.
7+
- `SAClient.get_project_metadata()` method, removed `include_complete_image_count` argument, use `include_complete_item_count` instead.
8+
- `SAClient.create_project()` method to support classes, workflows and instructions_link.
9+
### Fixed
10+
- `SAClient.clone_project()` method to address the issue of FPS mode is not being copied.
11+
### Deprecated
12+
- `SAClient.create_project_from_metadata()` method, use `SAClient.create_project()` instead.
13+
- `SAClient.get_project_image_count()` method, use `SAClient.get_project_metadata()` instead.
14+
### Removed
15+
- `SAClient.class_distribution()` method
16+
- `SAClient.benchmark()` method
317
## 4.4.9 - January 29, 2023
418
### Added
519
- `SAClient.set_approval_statuses` _method_ function to change the approval status of items (images, audio / videos) in bulk.

src/superannotate/lib/core/entities/classes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class GroupTypeEnum(str, Enum):
3636
CHECKLIST = "checklist"
3737
NUMERIC = "numeric"
3838
TEXT = "text"
39+
OCR = "ocr"
3940

4041

4142
class StringDate(datetime):

tests/integration/classes/test_classes_serialization.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,5 @@ def test_group_type_wrong_arg(self):
7979
"'checklist',",
8080
"'numeric',",
8181
"'text'",
82+
"'ocr'",
8283
] == wrap_error(e).split()

0 commit comments

Comments
 (0)