mirror of https://github.com/tqdm/tqdm.git
0.05 ema weight default
This commit is contained in:
parent
9dd7199e45
commit
116513f7b7
|
@ -72,7 +72,7 @@ Documentation
|
|||
file=sys.stderr, ncols=None, mininterval=0.1,
|
||||
miniters=None, ascii=None, disable=False,
|
||||
unit='it', unit_scale=False, gui=False, dynamic_ncols=False,
|
||||
smoothing=0.7):
|
||||
smoothing=0.05):
|
||||
|
||||
Parameters
|
||||
~~~~~~~~~~
|
||||
|
@ -127,8 +127,8 @@ Parameters
|
|||
for window resizes) [default: False].
|
||||
* smoothing : float
|
||||
Exponential moving average smoothing factor for speed estimates
|
||||
(ignored in GUI mode). Ranges from 0 (initial speed) to 1
|
||||
(current/instantaneous speed) [default: 0.7].
|
||||
(ignored in GUI mode). Ranges from 0 (average speed) to 1
|
||||
(current/instantaneous speed) [default: 0.05].
|
||||
|
||||
Returns
|
||||
~~~~~~~
|
||||
|
|
|
@ -211,7 +211,7 @@ class tqdm(object):
|
|||
file=sys.stderr, ncols=None, mininterval=0.1,
|
||||
miniters=None, ascii=None, disable=False,
|
||||
unit='it', unit_scale=False, gui=False, dynamic_ncols=False,
|
||||
smoothing=0.7):
|
||||
smoothing=0.05):
|
||||
"""
|
||||
Parameters
|
||||
----------
|
||||
|
@ -265,7 +265,7 @@ class tqdm(object):
|
|||
smoothing : float
|
||||
Exponential moving average smoothing factor for speed estimates
|
||||
(ignored in GUI mode). Ranges from 0 (average speed) to 1
|
||||
(current/instantaneous speed) [default: 0.7].
|
||||
(current/instantaneous speed) [default: 0.05].
|
||||
|
||||
Returns
|
||||
-------
|
||||
|
|
Loading…
Reference in New Issue