Skip to content

Commit

Permalink
Sort Imports
Browse files Browse the repository at this point in the history
  • Loading branch information
apaniukov committed Oct 18, 2023
1 parent b22569f commit 96673f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

import numpy as np
import openvino.runtime.opset12 as opset
from openvino.runtime import Model, PartialShape, Type, op
from openvino.runtime.exceptions import OVTypeError
from openvino.runtime.utils.types import as_node, make_constant_node

from .constants import (
ATTENTION_MASK_INPUT_NAME,
STRING_OUTPUT_NAME,
Expand All @@ -18,10 +22,6 @@
TOKENIZER_DECODER_NAME,
TOKENIZER_ENCODER_NAME,
)
from openvino.runtime import Model, PartialShape, Type, op
from openvino.runtime.exceptions import OVTypeError
from openvino.runtime.utils.types import as_node, make_constant_node

from .node_factory import factory
from .tokenizer_pipeline import (
BPETokenizationStep,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
from typing import Any, Dict, List, Optional, Union

import numpy as np
from openvino.runtime import Model, Output, PartialShape, Type, op
from openvino.runtime import opset12 as opset
from openvino.runtime.exceptions import OVTypeError, UserInputError
from openvino.runtime.utils.types import as_node, make_constant_node

from .constants import (
ATTENTION_MASK_INPUT_NAME,
STRING_OUTPUT_NAME,
Expand All @@ -17,11 +22,6 @@
TOKENIZER_DECODER_NAME,
TOKENIZER_ENCODER_NAME,
)
from openvino.runtime import Model, Output, PartialShape, Type, op
from openvino.runtime import opset12 as opset
from openvino.runtime.exceptions import OVTypeError, UserInputError
from openvino.runtime.utils.types import as_node, make_constant_node

from .node_factory import factory
from .str_pack import pack_string, pack_strings

Expand Down

0 comments on commit 96673f5

Please sign in to comment.