Last active
August 26, 2021 12:05
-
-
Save rohan-paul/18180f25e59a446b1f5136adc70d4154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| history = model_keras_seq.fit_generator(generator=train_generator_for_seq_model, validation_data=validation_generator_for_seq_model, epochs = 1, workers=-1) | |
| predicted_test_seq_keras = model_keras_seq.predict_generator(test_generator_for_seq_model, verbose=1) | |
| sample_submission['target'] = predicted_test_seq_keras[:len(sample_submission)] | |
| sample_submission.to_csv('submission.csv', index=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment