We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to debug test_future_regressor_nn_shared_coef_2 in tests/test_future_regressor_nn.py
debug test_future_regressor_nn_shared_coef_2
tests/test_future_regressor_nn.py
shared_neural_nets
def test_future_regressor_nn_shared_coef_2(): log.info("future regressor with NN shared coef 2") df = pd.read_csv(TUTORIAL_FILE, nrows=NROWS) m = NeuralProphet( yearly_seasonality=False, weekly_seasonality=False, daily_seasonality=True, future_regressors_model="shared_neural_nets_coef", future_regressors_d_hidden=4, future_regressors_num_hidden_layers=2, n_forecasts=3, n_lags=5, drop_missing=True, ) df_train, df_val = m.split_df(df, freq="H", valid_p=0.2) # Add the new future regressor m.add_future_regressor("temperature") metrics = m.fit( df_train, validation_df=df_val, freq="H", epochs=EPOCHS, learning_rate=LR, early_stopping=True, progress=False )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Need to
debug test_future_regressor_nn_shared_coef_2
intests/test_future_regressor_nn.py
shared_neural_nets
passes tests, but also requires attentionThe text was updated successfully, but these errors were encountered: