Skip to content

Commit

Permalink
Fixed documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
teubert committed Nov 8, 2024
1 parent f455eef commit 6999577
Show file tree
Hide file tree
Showing 89 changed files with 19,886 additions and 18,262 deletions.
Binary file modified docs/.doctrees/api_ref/prog_server/load_ests.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/DataModel.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/EnsembleModel.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/IncludedModels.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/Loading.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/SimResult.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/ToEPredictionProfile.doctree
Binary file not shown.
Binary file modified docs/.doctrees/api_ref/progpy/UncertainData.doctree
Binary file not shown.
Binary file modified docs/.doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/.doctrees/index.doctree
Binary file not shown.
Binary file added docs/.doctrees/installing.doctree
Binary file not shown.
Binary file modified docs/.doctrees/prog_algs_guide.doctree
Binary file not shown.
Binary file modified docs/.doctrees/prog_models_guide.doctree
Binary file not shown.
Binary file modified docs/.doctrees/releases.doctree
Binary file not shown.
1,661 changes: 1,661 additions & 0 deletions docs/_downloads/412560afd93e3e54078df8279ff54887/04_New Models.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Using Data-Driven Models\n",
"**A version of this notebook will be added in release v1.8, including:**"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## General Use\n",
"\n",
"### Building a new model from data\n",
"\n",
"### Surrogate Models"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Long Short-Term Memory (LSTM)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Dynamic Mode Decomposition (DMD)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Polynomial Chaos Expansion (PCE)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Extending"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.11.0 64-bit",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.12.0"
},
"orig_nbformat": 4,
"vscode": {
"interpreter": {
"hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
3 changes: 2 additions & 1 deletion docs/_downloads/8b8068cadf898f26bec76d85c19e7d58/playback.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

from progpy.predictors import UnscentedTransformPredictor as Predictor
# VVV Uncomment this to use MonteCarloPredictor instead
# from progpy.predictors import MonteCarlo as Predictor
from progpy.predictors import MonteCarlo as Predictor

# Constants
NUM_SAMPLES = 20
Expand Down Expand Up @@ -91,6 +91,7 @@ def future_loading(t, x=None):
# Prediction Step (every PREDICTION_UPDATE_FREQ steps)
if (step%PREDICTION_UPDATE_FREQ == 0):
mc_results = mc.predict(filt.x, future_loading, t0 = t, n_samples=NUM_SAMPLES, dt=TIME_STEP)
mc_results.outputs.mean
metrics = mc_results.time_of_event.metrics()
print(' - ToE: {} (sigma: {})'.format(metrics['EOD']['mean'], metrics['EOD']['std']))
profile.add_prediction(t, mc_results.time_of_event)
Expand Down
Loading

0 comments on commit 6999577

Please sign in to comment.