Skip to content

Commit 0969ece

Browse files
authored
Merge pull request #361 from RTIInternational/229-investigate-ensemble-evaluation-methods
229 investigate ensemble evaluation methods
2 parents 492b6ae + c547c9c commit 0969ece

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1808
-822
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ instance/
7272
docs/sphinx/_build/
7373
docs/sphinx/_autosummary/
7474
docs/sphinx/_static/*.html
75-
docs/sphinx/generated/
75+
docs/sphinx/api/generated/
7676
docs/sphinx/savefig/
7777
docs/sphinx/getting_started/test_data/temp_test.db
7878
docs/sphinx/jupyter_execute/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ python -m teehr.utils.install_spark_jars
3737
```
3838
Use Docker
3939
```bash
40-
$ docker build -t teehr:v0.4.6 .
41-
$ docker run -it --rm --volume $HOME:$HOME -p 8888:8888 teehr:v0.4.6 jupyter lab --ip 0.0.0.0 $HOME
40+
$ docker build -t teehr:v0.4.7 .
41+
$ docker run -it --rm --volume $HOME:$HOME -p 8888:8888 teehr:v0.4.7 jupyter lab --ip 0.0.0.0 $HOME
4242
```
4343

4444
## Examples

docs/sphinx/_templates/autoapi/index.rst

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/sphinx/_templates/custom-class-template.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
.. autoclass:: {{ objname }}
66
:members:
77
:show-inheritance:
8-
:inherited-members:
98
:special-members: __call__, __add__, __mul__
109

1110
{% block methods %}
Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
.. currentmodule:: teehr
2-
31
.. _api:
42

3+
.. currentmodule:: teehr
4+
55
#############
66
API reference
77
#############
@@ -24,7 +24,7 @@ The top-level class for interacting with and exploring a TEEHR Evaluation.
2424

2525

2626
Creating and Managing an Evaluation
27-
------------------------------------
27+
-----------------------------------
2828

2929
Methods for creating, cloning, and configuring an Evaluation.
3030

@@ -74,16 +74,19 @@ Methods for fetching NWM and USGS data from external sources.
7474
Fetch.nwm_forecast_grids
7575

7676

77-
Metric Queries
78-
--------------
77+
Metric Functions
78+
----------------
7979

80-
Methods for querying and calculating metrics.
80+
Functions for calculating metrics.
8181

8282
.. autosummary::
83-
:template: custom-class-template.rst
8483
:toctree: generated
84+
:template: custom-module-template.rst
85+
:recursive:
8586

86-
evaluation.metrics.Metrics
87+
deterministic_funcs
88+
signature_funcs
89+
probabilistic_funcs
8790

8891

8992
Metric and Bootstrap Models
@@ -92,12 +95,27 @@ Metric and Bootstrap Models
9295
Classes for defining and customizing metrics and bootstrap models.
9396

9497
.. autosummary::
95-
:template: custom-module-template.rst
9698
:toctree: generated
99+
:template: custom-class-template.rst
100+
:recursive:
101+
102+
DeterministicMetrics
103+
SignatureMetrics
104+
ProbabilisticMetrics
105+
Bootstrappers
106+
107+
108+
Calculated Field Models
109+
-------------------------
110+
111+
Classes for defining and customizing user-defined field models.
112+
113+
.. autosummary::
114+
:toctree: generated
115+
:template: custom-class-template.rst
97116

98-
metric_models
99-
bootstrap_models
100-
metric_funcs
117+
RowLevelCalculatedFields
118+
TimeseriesAwareCalculatedFields
101119

102120

103121
Visualization

docs/sphinx/api_dataset_index.rst

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/sphinx/api_evaluation_index.rst

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/sphinx/api_fetch_index.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/sphinx/api_metrics_index.rst

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/sphinx/api_visualization_index.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)