|
22 | 22 | "cell_type": "markdown", |
23 | 23 | "metadata": {}, |
24 | 24 | "source": [ |
25 | | - "The goal of this notebook is to demonstrate the Benchmarking feature offered for Prognostic Models. Specifically, we will demonstrate via a simple example how to benchmark the computational efficiency of models!" |
| 25 | + "The goal of this notebook is to demonstrate the Benchmarking feature offered for Prognostic Models. Specifically, we will demonstrate how to benchmark the computational efficiency of models with a simple example." |
26 | 26 | ] |
27 | 27 | }, |
28 | 28 | { |
|
56 | 56 | "cell_type": "markdown", |
57 | 57 | "metadata": {}, |
58 | 58 | "source": [ |
59 | | - "Next, let's initialize our Battery Circuit by creating model object." |
| 59 | + "Next, let's initialize our Battery Circuit by creating a model object." |
60 | 60 | ] |
61 | 61 | }, |
62 | 62 | { |
|
74 | 74 | "cell_type": "markdown", |
75 | 75 | "metadata": {}, |
76 | 76 | "source": [ |
77 | | - "Then, for our model, we would need to define a future loading function. More information on what a future loading function is and how to use it can be found here: https://nasa.github.io/progpy/prog_models_guide.html#future-loading" |
| 77 | + "Then, for our model, we will need to define a future loading function. More information on what a future loading function is and how to use it can be found here: https://nasa.github.io/progpy/prog_models_guide.html#future-loading" |
78 | 78 | ] |
79 | 79 | }, |
80 | 80 | { |
|
103 | 103 | "cell_type": "markdown", |
104 | 104 | "metadata": {}, |
105 | 105 | "source": [ |
106 | | - "Finally, we are going to need to benchmark the simulation!\n", |
| 106 | + "Finally, we are ready to benchmark the simulation.\n", |
107 | 107 | "\n", |
108 | | - "We can do this by using the `timeit()` function and pass in our `simulate_to()` or `simulate_to_threshold()` function for the `stmt` argument. For more information regarding the `timeit()` function, please read it's documentation located here: https://docs.python.org/3/library/timeit.html" |
| 108 | + "We can do this by using the `timeit()` function and pass in our `simulate_to()` or `simulate_to_threshold()` function for the `stmt` argument. For more information regarding the `timeit()` function, please read its documentation located here: https://docs.python.org/3/library/timeit.html" |
109 | 109 | ] |
110 | 110 | }, |
111 | 111 | { |
|
125 | 125 | "cell_type": "markdown", |
126 | 126 | "metadata": {}, |
127 | 127 | "source": [ |
128 | | - "In this example, we would be benchmarking the simulation for the BatteryCircuit model up to 600 seconds. Furthermore, we will define our `number` argument to be 500 for sake of runtime." |
| 128 | + "In this example, we are benchmarking the simulation for the BatteryCircuit model up to 600 seconds. Furthermore, we define our `number` argument to be 500 for sake of runtime." |
129 | 129 | ] |
130 | 130 | }, |
131 | 131 | { |
|
0 commit comments