Created
August 9, 2021 15:54
-
-
Save hrzn/18e7fb0c68a0818359c4099aa6afd3e2 to your computer and use it in GitHub Desktop.
This file contains 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
brnn_melting = BlockRNNModel(input_chunk_length=30, | |
output_chunk_length=10, | |
n_rnn_layers=2) | |
brnn_melting.fit(flow_train, | |
past_covariates=melting, | |
epochs=100, | |
verbose=True) | |
eval_model(brnn_melting, | |
past_covariates=melting) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment