You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-1Lines changed: 23 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,7 @@ Also take a look at the [production_example.py](https://github.com/winedarksea/A
112
112
* Use the `subset` parameter when there are many similar series, `subset=100` will often generalize well for tens of thousands of similar series.
113
113
* if using `subset`, passing `weights` for series will weight subset selection towards higher priority series.
114
114
* if limited by RAM, it can be distributed by running multiple instances of AutoTS on different batches of data, having first imported a template pretrained as a starting point for all.
115
-
* Set `model_interrupt=True`which passes over the current model when a `KeyboardInterrupt` ie `crtl+c` is pressed (although if the interrupt falls between generations it will stop the entire training).
115
+
* Set `model_interrupt=True`to skip only the current model when you hit `Ctrl+C`. Tap `Ctrl+C` a second time within 1.5 seconds to end the entire run, or pass something like `model_interrupt={"mode": "skip", "double_press_window": 1.2}` to tighten/loosen the window.
116
116
* Use the `result_file` method of `.fit()` which will save progress after each generation - helpful to save progress if a long training is being done. Use `import_results` to recover.
117
117
* While Transformations are pretty fast, setting `transformer_max_depth` to a lower number (say, 2) will increase speed. Also utilize `transformer_list` == 'fast' or 'superfast'.
118
118
* Check out [this example](https://github.com/winedarksea/AutoTS/discussions/76) of using AutoTS with pandas UDF.
@@ -125,6 +125,19 @@ Also take a look at the [production_example.py](https://github.com/winedarksea/A
125
125
* Set `runtime_weighting` in `metric_weighting` to a higher value. This will guide the search towards faster models, although it may come at the expense of accuracy.
126
126
* Memory shortage is the most common cause of random process/kernel crashes. Try testing a data subset and using a different model list if issues occur. Please also report crashes if found to be linked to a specific set of model parameters (not AutoTS parameters but the underlying forecasting model params). Also crashes vary significantly by setup such as underlying linpack/blas so seeing crash differences between environments can be expected.
127
127
128
+
## MCP Server
129
+
See the README.md in ./autots/mcp
130
+
```json
131
+
{
132
+
"mcpServers": {
133
+
"autots": {
134
+
"command": "autots-mcp"
135
+
}
136
+
}
137
+
}
138
+
```
139
+
mcp-name: io.github.winedarksea/AutoTS
140
+
128
141
## How to Contribute:
129
142
* Give feedback on where you find the documentation confusing
130
143
* Use AutoTS and...
@@ -167,4 +180,13 @@ flowchart TD
167
180
R --> B[Import Best Models Template]
168
181
```
169
182
183
+
## Citation
184
+
If you wish to cite AutoTS in an academic work, the following paper may be used.
185
+
186
+
Colin Catlin,
187
+
Adaptive forecasting in dynamic markets: An evaluation of AutoTS within the M6 competition,
0 commit comments