-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #654 from openvinotoolkit/zm/release-0.3
Release 0.3
- Loading branch information
Showing
196 changed files
with
7,279 additions
and
2,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
# Copyright (C) 2019-2020 Intel Corporation | ||
# Copyright (C) 2019-2022 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
from . import errors as errors | ||
from . import ops as ops | ||
from . import project as project | ||
from .components.annotation import ( | ||
NO_GROUP, Annotation, AnnotationType, Bbox, BinaryMaskImage, Caption, | ||
Categories, Colormap, CompiledMask, CompiledMaskImage, Cuboid3d, | ||
IndexMaskImage, Label, LabelCategories, Mask, MaskCategories, Points, | ||
PointsCategories, Polygon, PolyLine, RgbColor, RleMask, | ||
) | ||
from .components.cli_plugin import CliPlugin | ||
from .components.converter import ( | ||
Converter, ExportErrorPolicy, FailingExportErrorPolicy, | ||
) | ||
from .components.dataset import ( | ||
Dataset, DatasetPatch, DatasetSubset, IDataset, ItemStatus, eager_mode, | ||
) | ||
from .components.environment import Environment, PluginRegistry | ||
from .components.extractor import ( | ||
DEFAULT_SUBSET_NAME, CategoriesInfo, DatasetItem, Extractor, | ||
FailingImportErrorPolicy, IExtractor, Importer, ImportErrorPolicy, | ||
ItemTransform, SourceExtractor, Transform, | ||
) | ||
from .components.hl_ops import ( # pylint: disable=redefined-builtin | ||
export, filter, merge, run_model, transform, validate, | ||
) | ||
from .components.launcher import Launcher, ModelTransform | ||
from .components.media import ByteImage, Image, MediaElement, Video, VideoFrame | ||
from .components.media_manager import MediaManager | ||
from .components.progress_reporting import ( | ||
NullProgressReporter, ProgressReporter, | ||
) | ||
from .components.validator import Validator | ||
from .version import VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Copyright (C) 2019-2021 Intel Corporation | ||
# Copyright (C) 2019-2022 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
# pylint: disable=redefined-builtin | ||
|
||
from . import ( | ||
add, checkout, commit, convert, create, diff, download, explain, export, | ||
filter, import_, info, log, merge, patch, remove, stats, status, transform, | ||
validate, | ||
add, checkout, commit, convert, create, detect_format, diff, download, | ||
explain, export, filter, import_, info, log, merge, patch, remove, stats, | ||
status, transform, validate, | ||
) |
Oops, something went wrong.