-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explain experiments and use case recipe in docs (#143)
Co-authored-by: Stefan Verhoeven <[email protected]>
- Loading branch information
1 parent
ce3bdfd
commit 9b43c69
Showing
5 changed files
with
129 additions
and
65 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
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,56 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: 2023 Springtime authors | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
We provide several "recipes" for downloading data from various sources and | ||
executing a range of ML methods with it. | ||
Note that a "recipe" is a file with `yaml` extension. | ||
|
||
??? example "Daymet recipe" | ||
```yaml | ||
{% include "../tests/recipes/daymet.yaml" %} | ||
``` | ||
|
||
|
||
??? example "EOBS recipe" | ||
```yaml | ||
{% include "../tests/recipes/eobs.yaml" %} | ||
``` | ||
|
||
|
||
??? example "MODIS recipe" | ||
```yaml | ||
{% include "../tests/recipes/modis.yaml" %} | ||
``` | ||
|
||
|
||
??? example "NPN recipe" | ||
```yaml | ||
{% include "../tests/recipes/NPN.yaml" %} | ||
``` | ||
|
||
|
||
??? example "PEP recipe" | ||
```yaml | ||
{% include "../tests/recipes/pep725.yaml" %} | ||
``` | ||
|
||
|
||
??? example "PhenoCam recipe" | ||
```yaml | ||
{% include "../tests/recipes/phenocam.yaml" %} | ||
``` | ||
|
||
|
||
??? example "PPO recipe" | ||
```yaml | ||
{% include "../tests/recipes/ppo.yaml" %} | ||
``` | ||
|
||
|
||
??? example "PyPhenology recipe" | ||
```yaml | ||
{% include "../tests/recipes/pyphenology.yaml" %} | ||
``` |
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 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: 2023 Springtime authors | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
Springtime executes machine learning algorithms that are supported by the | ||
package [PyCaret](https://pycaret.readthedocs.io/). PyCaret is a Python wrapper | ||
around several machine learning libraries and frameworks such as | ||
[scikit-learn](https://scikit-learn.org/stable/), and | ||
[XGBoost](https://xgboost.readthedocs.io/en/latest/). In addition, springtime | ||
supports [mixed effects random forest | ||
(MERF)](https://manifoldai.github.io/merf/) and Glassbox Models from | ||
[InterpretML](https://interpret.ml/docs/intro.html). | ||
<!-- see PR #137 --> |
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