Skip to content

Commit 69d6720

Browse files
committed
used isort to fix import order.
1 parent 7534737 commit 69d6720

1 file changed

Lines changed: 5 additions & 10 deletions

File tree

dataflow/gemma/custom_model_gemma.py

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,16 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from collections.abc import Iterable, Sequence
16-
1715
import logging
18-
19-
from typing import Any
20-
from typing import Optional
16+
from collections.abc import Iterable, Sequence
17+
from typing import Any, Optional
2118

2219
import apache_beam as beam
20+
import keras_nlp
2321
from apache_beam.ml.inference import utils
24-
from apache_beam.ml.inference.base import ModelHandler
25-
from apache_beam.ml.inference.base import PredictionResult
26-
from apache_beam.ml.inference.base import RunInference
22+
from apache_beam.ml.inference.base import (ModelHandler, PredictionResult,
23+
RunInference)
2724
from apache_beam.options.pipeline_options import PipelineOptions
28-
29-
import keras_nlp
3025
from keras_nlp.src.models.gemma.gemma_causal_lm import GemmaCausalLM
3126

3227

0 commit comments

Comments
 (0)