Apply isort to the project

This commit is contained in:
coolneng 2021-07-06 03:01:43 +02:00
parent 92c6b54966
commit 1311b9b945
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from argparse import ArgumentParser, Namespace
from model import train_model, infer_sequence
from model import infer_sequence, train_model
def parse_arguments() -> Namespace:

View File

@ -4,8 +4,8 @@ from numpy import argmax
from tensorflow import one_hot
from tensorflow.keras import Model, Sequential
from tensorflow.keras.layers import Dense, Dropout, Input, Masking
from tensorflow.keras.models import load_model
from tensorflow.keras.losses import categorical_crossentropy
from tensorflow.keras.models import load_model
from tensorflow.keras.optimizers import Adam
from tensorflow.keras.regularizers import l2
from tensorflow.random import set_seed