Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
echarlaix committed Jan 16, 2025
1 parent 46f1c26 commit cf9a51d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions optimum/exporters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
if is_torch_available():
pass

from .utils import (
from ..utils import (
DEFAULT_DUMMY_SHAPES,
DummyInputGenerator,
logging,
)
from .utils import TORCH_MINIMUM_VERSION as GLOBAL_MIN_TORCH_VERSION
from .utils import TRANSFORMERS_MINIMUM_VERSION as GLOBAL_MIN_TRANSFORMERS_VERSION
from .utils.doc import add_dynamic_docstring
from .utils.import_utils import is_torch_version, is_transformers_version
from ..utils import TORCH_MINIMUM_VERSION as GLOBAL_MIN_TORCH_VERSION
from ..utils import TRANSFORMERS_MINIMUM_VERSION as GLOBAL_MIN_TRANSFORMERS_VERSION
from ..utils.doc import add_dynamic_docstring
from ..utils.import_utils import is_torch_version, is_transformers_version


# from .model_patcher import ModelPatcher
Expand Down

0 comments on commit cf9a51d

Please sign in to comment.