|
12 | 12 |
|
13 | 13 | class Session:
|
14 | 14 | """
|
15 |
| - Create a new Session in `prog_server`. |
| 15 | + Create a new Session in `prog_server` |
16 | 16 |
|
17 | 17 | Args:
|
18 | 18 | model (str): The model to use for this session (e.g., batt)
|
19 |
| - host (str, optional): Host address for PaaS Service. Defaults to '127.0.0.1'. |
| 19 | + host (str, optional): Host address for PaaS Service. Defaults to '127.0.0.1' |
20 | 20 | port (int, optional): Port for PaaS Service. Defaults to 5000.
|
21 | 21 | model_cfg (dict, optional): Configuration for ProgModel.
|
22 | 22 | x0 (dict, optional): Initial state for ProgModel.
|
23 | 23 | load_est (str, optional): Load estimator to use.
|
24 | 24 | load_est_cfg (dict, optional): Configuration for load estimator.
|
25 |
| - state_est (str, optional): State Estimator to use (e.g., ParticleFilter). Class name for state estimator in `prog_algs.state_estimators` |
| 25 | + state_est (str, optional): State Estimator to use (e.g., ParticleFilter). Class name for state estimator in `progpy.state_estimators` |
26 | 26 | state_est_cfg (dict, optional): Configuration for state estimator.
|
27 |
| - pred (str, optional): Prediction algorithm to use (e.g., MonteCarlo). Class name for prediction algorithm in `prog_algs.predictors` |
| 27 | + pred (str, optional): Prediction algorithm to use (e.g., MonteCarlo). Class name for prediction algorithm in `progpy.predictors` |
28 | 28 | pred_cfg (dict, optional): Configuration for prediction algorithm.
|
29 | 29 |
|
30 | 30 | Use:
|
|
0 commit comments