Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions model_api/python/model_api/models/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ def __init__(
self.value_type = value_type

def from_str(self, value):
if self.value_type is str or self.value_type is StringValue:
return value.split()
try:
floats = [float(i) for i in value.split()]
try:
Expand Down
2 changes: 1 addition & 1 deletion model_api/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "openvino_model_api"
version = "0.2.5.2"
version = "0.2.5.3"
requires-python = ">=3.9"
authors = [
{name = "Intel(R) Corporation"},
Expand Down
Loading