emhass 0.13.1__py3-none-any.whl → 0.13.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- emhass/__init__.py +0 -0
- emhass/command_line.py +1891 -0
- emhass/data/associations.csv +2 -1
- emhass/data/config_defaults.json +1 -0
- emhass/forecast.py +1768 -0
- emhass/machine_learning_forecaster.py +386 -0
- emhass/machine_learning_regressor.py +245 -0
- emhass/optimization.py +1554 -0
- emhass/retrieve_hass.py +712 -0
- emhass/static/data/param_definitions.json +9 -2
- emhass/utils.py +1764 -0
- emhass/web_server.py +753 -0
- {emhass-0.13.1.dist-info → emhass-0.13.3.dist-info}/METADATA +4 -3
- {emhass-0.13.1.dist-info → emhass-0.13.3.dist-info}/RECORD +17 -8
- {emhass-0.13.1.dist-info → emhass-0.13.3.dist-info}/WHEEL +0 -0
- {emhass-0.13.1.dist-info → emhass-0.13.3.dist-info}/entry_points.txt +0 -0
- {emhass-0.13.1.dist-info → emhass-0.13.3.dist-info}/licenses/LICENSE +0 -0
| @@ -122,13 +122,14 @@ | |
| 122 122 | 
             
                },
         | 
| 123 123 | 
             
                "lp_solver": {
         | 
| 124 124 | 
             
                  "friendly_name": "Linear programming solver",
         | 
| 125 | 
            -
                  "Description": "Set the name of the linear programming solver that will be used. Defaults to ‘COIN_CMD’. The options are ‘PULP_CBC_CMD’, ‘GLPK_CMD | 
| 125 | 
            +
                  "Description": "Set the name of the linear programming solver that will be used. Defaults to ‘COIN_CMD’. The options are ‘PULP_CBC_CMD’, ‘GLPK_CMD’, ‘HiGHS’, and ‘COIN_CMD’.",
         | 
| 126 126 | 
             
                  "input": "select",
         | 
| 127 127 | 
             
                  "select_options": [
         | 
| 128 128 | 
             
                    "default",
         | 
| 129 129 | 
             
                    "COIN_CMD",
         | 
| 130 130 | 
             
                    "PULP_CBC_CMD",
         | 
| 131 | 
            -
                    "GLPK_CMD"
         | 
| 131 | 
            +
                    "GLPK_CMD",
         | 
| 132 | 
            +
                    "HiGHS"
         | 
| 132 133 | 
             
                  ],
         | 
| 133 134 | 
             
                  "default_value": "COIN_CMD"
         | 
| 134 135 | 
             
                },
         | 
| @@ -138,6 +139,12 @@ | |
| 138 139 | 
             
                  "input": "text",
         | 
| 139 140 | 
             
                  "default_value": "/usr/bin/cbc"
         | 
| 140 141 | 
             
                },
         | 
| 142 | 
            +
                "num_threads": {
         | 
| 143 | 
            +
                  "friendly_name": "Number of threads to use for the LP solver",
         | 
| 144 | 
            +
                  "Description": "Set the number of threads for the LP solver to use, when supported by the solver. Defaults to 0 (autodetect)",
         | 
| 145 | 
            +
                  "input": "int",
         | 
| 146 | 
            +
                  "default_value": 0
         | 
| 147 | 
            +
                },
         | 
| 141 148 | 
             
                "lp_solver_timeout": {
         | 
| 142 149 | 
             
                  "friendly_name": "Linear programming solver timeout",
         | 
| 143 150 | 
             
                  "Description": "Set the maximum time (in seconds) for the LP solver. Defaults to 45.",
         |