|
@@ -80,9 +80,11 @@ def main():
|
|
|
help='Path of a file with custom nn.modules, wrapped into special decorator')
|
|
|
parser.add_argument('--identity_path', type=str, required=False, help='Path to identity file to be used in P2P')
|
|
|
|
|
|
- parser.add_argument("--min_balance_quality", type=float, default=0.0,
|
|
|
- help="Rebalance the swarm if its balance quality (a number in [0.0, 1.0]) "
|
|
|
- "goes below this threshold. Default: rebalancing is disabled")
|
|
|
+ parser.add_argument("--min_balance_quality", type=float, default=0.75,
|
|
|
+ help="Rebalance the swarm if its throughput is worse than "
|
|
|
+ "this share of the optimal throughput. Default: 0.75 (means 75%). "
|
|
|
+ "Use 0.0 to disable rebalancing, values > 1.0 to force rebalancing on each check "
|
|
|
+ "for debugging purposes.")
|
|
|
parser.add_argument("--mean_balance_check_period", type=float, default=150,
|
|
|
help="Check the swarm's balance every N seconds (and rebalance it if necessary)")
|
|
|
|