Skip to content

Commit ef1738f

Browse files
committed
Remove follow_mode from docs
1 parent ccb4efb commit ef1738f

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

docs/freqai-parameter-table.md

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Mandatory parameters are marked as **Required** and have to be set in one of the
1818
| `purge_old_models` | Delete all unused models during live runs (not relevant to backtesting). If set to false (not default), dry/live runs will accumulate all unused models to disk. If <br> **Datatype:** Boolean. <br> Default: `True`.
1919
| `save_backtest_models` | Save models to disk when running backtesting. Backtesting operates most efficiently by saving the prediction data and reusing them directly for subsequent runs (when you wish to tune entry/exit parameters). Saving backtesting models to disk also allows to use the same model files for starting a dry/live instance with the same model `identifier`. <br> **Datatype:** Boolean. <br> Default: `False` (no models are saved).
2020
| `fit_live_predictions_candles` | Number of historical candles to use for computing target (label) statistics from prediction data, instead of from the training dataset (more information can be found [here](freqai-configuration.md#creating-a-dynamic-target-threshold)). <br> **Datatype:** Positive integer.
21-
| `follow_mode` | Use a `follower` that will look for models associated with a specific `identifier` and load those for inferencing. A `follower` will **not** train new models. <br> **Datatype:** Boolean. <br> Default: `False`.
2221
| `continual_learning` | Use the final state of the most recently trained model as starting point for the new model, allowing for incremental learning (more information can be found [here](freqai-running.md#continual-learning)). <br> **Datatype:** Boolean. <br> Default: `False`.
2322
| `write_metrics_to_disk` | Collect train timings, inference timings and cpu usage in json file. <br> **Datatype:** Boolean. <br> Default: `False`
2423
| `data_kitchen_thread_count` | <br> Designate the number of threads you want to use for data processing (outlier methods, normalization, etc.). This has no impact on the number of threads used for training. If user does not set it (default), FreqAI will use max number of threads - 2 (leaving 1 physical core available for Freqtrade bot and FreqUI) <br> **Datatype:** Positive integer.

docs/freqai-running.md

-17
Original file line numberDiff line numberDiff line change
@@ -165,20 +165,3 @@ tensorboard --logdir user_data/models/unique-id
165165
where `unique-id` is the `identifier` set in the `freqai` configuration file. This command must be run in a separate shell if you wish to view the output in your browser at 127.0.0.1:6060 (6060 is the default port used by Tensorboard).
166166

167167
![tensorboard](assets/tensorboard.jpg)
168-
169-
## Setting up a follower
170-
171-
You can indicate to the bot that it should not train models, but instead should look for models trained by a leader with a specific `identifier` by defining:
172-
173-
```json
174-
"freqai": {
175-
"enabled": true,
176-
"follow_mode": true,
177-
"identifier": "example",
178-
"feature_parameters": {
179-
// leader bots feature_parameters inserted here
180-
},
181-
}
182-
```
183-
184-
In this example, the user has a leader bot with the `"identifier": "example"`. The leader bot is already running or is launched simultaneously with the follower. The follower will load models created by the leader and inference them to obtain predictions instead of training its own models. The user will also need to duplicate the `feature_parameters` parameters from from the leaders freqai configuration file into the freqai section of the followers config.

0 commit comments

Comments
 (0)