fix
All checks were successful
s444452-training/pipeline/head This commit looks good

This commit is contained in:
AdamOsiowy123 2022-05-02 22:56:24 +02:00
parent 3f7a6d212f
commit 81ef5f8c7d

View File

@ -86,6 +86,10 @@ def load_data(data_path, filename) -> pd.DataFrame:
def read_params():
global data_path, num_words, epochs, batch_size, pad_length
data_path, num_words, epochs, batch_size, pad_length = sys.argv[1].split(',')
num_words = int(num_words)
epochs = int(epochs)
batch_size = int(batch_size)
pad_length = int(pad_length)
def main():