Skip to content

Commit

Permalink
Add example notebook for multi time-series regression
Browse files Browse the repository at this point in the history
This was motivated by [this][1] thread on the PyTorch
discussion forums. It might be a good reference for
more advanced usage.

[1]: https://discuss.pytorch.org/t/hyperparameter-search-for-multioutputregression/73404/6
  • Loading branch information
ottonemo committed Jul 26, 2023
1 parent e83e6a4 commit fe937e6
Show file tree
Hide file tree
Showing 2 changed files with 1,175 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add the option to globally override the use of caching in scoring callbacks on the net by setting the `use_caching` argument on the net (this overrides the settings of individual callbacks)
- Add support for saving and loading parameters with [safetensors](https://github.com/huggingface/safetensors/); use `net.save_params(..., use_safetensors=True)` and `net.load_params(..., use_safetensors=True)` (requires to install the `safetensors` library)
- Example notebook for [RNNs and multiple time-series data](./notebooks/Multiple_time-series_RNN.ipynb)

### Changed
### Fixed
Expand Down
1,174 changes: 1,174 additions & 0 deletions notebooks/Multiple_time-series_RNN.ipynb

Large diffs are not rendered by default.

0 comments on commit fe937e6

Please sign in to comment.