From 883311297c71c159040829f42ba97a41acdd7bd1 Mon Sep 17 00:00:00 2001 From: vince62s Date: Mon, 16 Dec 2024 19:03:38 +0100 Subject: [PATCH] fix isort --- python/ctranslate2/converters/eole_ct2.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/python/ctranslate2/converters/eole_ct2.py b/python/ctranslate2/converters/eole_ct2.py index 5c8f4c995..70236a399 100644 --- a/python/ctranslate2/converters/eole_ct2.py +++ b/python/ctranslate2/converters/eole_ct2.py @@ -1,12 +1,13 @@ import argparse +from eole.config.run import PredictConfig +from eole.constants import PositionEncodingType +from eole.inputters.inputter import vocabs_to_dict +from eole.models.model import BaseModel + from ctranslate2.converters import utils from ctranslate2.converters.converter import Converter from ctranslate2.specs import common_spec, transformer_spec -from eole.config.run import PredictConfig -from eole.models.model import BaseModel -from eole.inputters.inputter import vocabs_to_dict -from eole.constants import PositionEncodingType _SUPPORTED_ACTIVATIONS = { "gelu": common_spec.Activation.GELU,