forked from neuralhydrology/neuralhydrology
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.9.2-beta release (neuralhydrology#2)
- speed improvement in `Tester`, when merging date and time_step index - renaming of `MultiFreqLSTM` into `MTSLSTM` (multi timescale `LSTM`) - more documentation - restructuring of data module into `neuralhydrolog.datasetzoo` and `neuralhydrology.datautils` - GitHub workflow for sphinx build on PR
- Loading branch information
Showing
53 changed files
with
1,306 additions
and
964 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "docs check" | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- public | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
- name: Install pandoc | ||
run: | | ||
sudo apt-get update -y && sudo apt-get install -y pandoc | ||
- name: Install dependencies | ||
run: | | ||
pip install sphinx sphinx-rtd-theme nbsphinx nbsphinx-link | ||
- name: Build Sphinx docs | ||
working-directory: docs/ | ||
run: | | ||
make html |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.../api/neuralhydrology.data.basedataset.rst → ...euralhydrology.datasetzoo.basedataset.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
BaseDataset | ||
=========== | ||
|
||
.. automodule:: neuralhydrology.data.basedataset | ||
.. automodule:: neuralhydrology.datasetzoo.basedataset | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
2 changes: 1 addition & 1 deletion
2
...rce/api/neuralhydrology.data.camelsgb.rst → ...i/neuralhydrology.datasetzoo.camelsgb.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CamelsGB | ||
======== | ||
|
||
.. automodule:: neuralhydrology.data.camelsgb | ||
.. automodule:: neuralhydrology.datasetzoo.camelsgb | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
2 changes: 1 addition & 1 deletion
2
...rce/api/neuralhydrology.data.camelsus.rst → ...i/neuralhydrology.datasetzoo.camelsus.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CamelsUS | ||
======== | ||
|
||
.. automodule:: neuralhydrology.data.camelsus | ||
.. automodule:: neuralhydrology.datasetzoo.camelsus | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
2 changes: 1 addition & 1 deletion
2
...i/neuralhydrology.data.hourlycamelsus.rst → ...alhydrology.datasetzoo.hourlycamelsus.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
HourlyCamelsUS | ||
============== | ||
|
||
.. automodule:: neuralhydrology.data.hourlycamelsus | ||
.. automodule:: neuralhydrology.datasetzoo.hourlycamelsus | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
nh.datasetzoo | ||
============= | ||
|
||
.. automodule:: neuralhydrology.datasetzoo | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
neuralhydrology.datasetzoo.basedataset | ||
neuralhydrology.datasetzoo.camelsus | ||
neuralhydrology.datasetzoo.hourlycamelsus | ||
neuralhydrology.datasetzoo.camelsgb |
2 changes: 1 addition & 1 deletion
2
...i/neuralhydrology.data.climateindices.rst → ...ralhydrology.datautils.climateindices.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
climateindices | ||
============== | ||
|
||
.. automodule:: neuralhydrology.data.climateindices | ||
.. automodule:: neuralhydrology.datautils.climateindices | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
2 changes: 1 addition & 1 deletion
2
...i/neuralhydrology.data.dischargeinput.rst → ...ralhydrology.datautils.dischargeinput.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
dischargeinput | ||
============== | ||
|
||
.. automodule:: neuralhydrology.data.dischargeinput | ||
.. automodule:: neuralhydrology.datautils.dischargeinput | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
2 changes: 1 addition & 1 deletion
2
docs/source/api/neuralhydrology.data.pet.rst → ...rce/api/neuralhydrology.datautils.pet.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
pet | ||
=== | ||
|
||
.. automodule:: neuralhydrology.data.pet | ||
.. automodule:: neuralhydrology.datautils.pet | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
nh.datautils | ||
============ | ||
|
||
.. automodule:: neuralhydrology.datautils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
neuralhydrology.datautils.climateindices | ||
neuralhydrology.datautils.dischargeinput | ||
neuralhydrology.datautils.pet | ||
neuralhydrology.datautils.utils |
2 changes: 1 addition & 1 deletion
2
...source/api/neuralhydrology.data.utils.rst → ...e/api/neuralhydrology.datautils.utils.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
utils | ||
===== | ||
|
||
.. automodule:: neuralhydrology.data.utils | ||
.. automodule:: neuralhydrology.datautils.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
4 changes: 2 additions & 2 deletions
4
...urce/api/neuralhydrology.data.caravan.rst → .../api/neuralhydrology.modelzoo.mtslstm.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Caravan | ||
MTSLSTM | ||
======= | ||
|
||
.. automodule:: neuralhydrology.data.caravan | ||
.. automodule:: neuralhydrology.modelzoo.mtslstm | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.9.1-beta" | ||
__version__ = "0.9.2-beta" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.