[Python API] Improve configuration files (#10960)

* [Python API] Improve configuration files

* fix config files

* update setup.cfd + change quotes

* move all codestyle checks to py_checks job

* update requirements_test.txt

* fix  codestyle according to flake-docstring

* fix

* fix mypy

* apply comments
This commit is contained in:
Anastasia Kuporosova
2022-03-30 20:26:36 +03:00
committed by GitHub
parent be6db5d69a
commit 4c7050f6a9
22 changed files with 378 additions and 1541 deletions

View File

@@ -16,7 +16,7 @@ from data import digits
def create_ngraph_function(model_path: str) -> Model:
"""Create a model on the fly from the source code using ngraph"""
"""Create a model on the fly from the source code using ngraph."""
def shape_and_length(shape: list) -> typing.Tuple[list, int]:
length = reduce(lambda x, y: x * y, shape)