Skip to content

Commit

Permalink
Release 0.1.6 (dev) (cvat-ai#118)
Browse files Browse the repository at this point in the history
* update changelog

* fix stats command for label-less datasets

* update version
  • Loading branch information
Maxim Zhiltsov authored Feb 26, 2021
1 parent 88d7df9 commit 68b1212
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
-

### Changed
-

### Deprecated
-

### Removed
-

### Fixed
-

### Security
-

## 02/26/2021 - Release v0.1.6
### Added
- `Icdar13/15` dataset format (<https://github.com/openvinotoolkit/datumaro/pull/96>)
- Laziness, source caching, tracking of changes and partial updating for `Dataset` (<https://github.com/openvinotoolkit/datumaro/pull/102>)
- `Market-1501` dataset format (<https://github.com/openvinotoolkit/datumaro/pull/108>)
Expand Down
2 changes: 1 addition & 1 deletion datumaro/components/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ def _extractor_stats(extractor):
return stats

def compute_ann_statistics(dataset):
labels = dataset.categories().get(AnnotationType.label)
labels = dataset.categories().get(AnnotationType.label, LabelCategories())
def get_label(ann):
return labels.items[ann.label].name if ann.label is not None else None

Expand Down
2 changes: 1 addition & 1 deletion datumaro/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.5.1'
VERSION = '0.1.6'

0 comments on commit 68b1212

Please sign in to comment.