Skip to content

Commit a421b92

Browse files
authored
Merge pull request #80 from nasa/examples/param_est
Rename Param Est Example
2 parents 9294699 + dc1f4ce commit a421b92

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/param_est.ipynb renamed to examples/02_param_est.ipynb

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@
55
"cell_type": "markdown",
66
"metadata": {},
77
"source": [
8-
"# Welcome to the Parameter Estimation Feature Example"
8+
"# 2. Parameter Estimation"
99
]
1010
},
1111
{
1212
"attachments": {},
1313
"cell_type": "markdown",
1414
"metadata": {},
1515
"source": [
16-
"The goal of this notebook is to instruct ProgPy users on how to use the estimate_params feature for PrognosticModels.\n",
16+
"Parameter estimation is used to tune the parameters of a general model so its behavior matches the behavior of a specific system. For example, parameters of the battery model can be tuned to configure the model to describe the behavior of a specific battery.\n",
1717
"\n",
18-
"First some background. Parameter estimation is used to tune the parameters of a general model so its behavior matches the behavior of a specific system. For example, parameters of the battery model can be tuned to configure the model to describe the behavior of a specific battery.\n",
19-
"\n",
20-
"Generally, parameter estimation is done by tuning the parameters of the model so that simulation best matches the behavior observed in some available data. In ProgPy, this is done using the progpy.PrognosticsModel.estimate_params() method. This method takes input and output data from one or more runs, and uses scipy.optimize.minimize function to estimate the parameters of the model. For more information, refer to our Documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation)\n",
18+
"Generally, parameter estimation is done by tuning the parameters of the model so that simulation (see 1. Simulation) best matches the behavior observed in some available data. In ProgPy, this is done using the progpy.PrognosticsModel.estimate_params() method. This method takes input and output data from one or more runs, and uses scipy.optimize.minimize function to estimate the parameters of the model. For more information, refer to our Documentation [here](https://nasa.github.io/progpy/prog_models_guide.html#parameter-estimation)\n",
2119
"\n",
2220
"A few definitions:\n",
2321
"* __`keys`__ `(list[str])`: Parameter keys to optimize\n",

0 commit comments

Comments
 (0)