Skip to content
New issue

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

Feature add activation to BlockRNN (#2492) #2504

Merged
Prev Previous commit
Next Next commit
Update darts/models/forecasting/block_rnn_model.py
Co-authored-by: Dennis Bader <dennis.bader@gmx.ch>
  • Loading branch information
SzymonCogiel and dennisbader authored Aug 31, 2024
commit e2114be69937071ad0e0da3b948dec9123892f2a
2 changes: 1 addition & 1 deletion darts/models/forecasting/block_rnn_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(
n_rnn_layers: int = 1,
hidden_fc_sizes: Optional[List] = None,
dropout: float = 0.0,
activation: Optional[str] = None,
activation: str = "ReLU",
**kwargs,
):
"""Block Recurrent Neural Network Model (RNNs).
Expand Down