pyemma.msm.ImpliedTimescales

class pyemma.msm.ImpliedTimescales(estimator, lags=None, nits=None, n_jobs=1, show_progress=True)

Implied timescales for a series of lag times.

__init__(estimator, lags=None, nits=None, n_jobs=1, show_progress=True)

Implied timescales for a series of lag times.

Parameters:
  • estimator (Estimator) – Estimator to be used for estimating timescales at each lag time.
  • lags (array-like with integers or None, optional) – integer lag times at which the implied timescales will be calculated. If set to None (default) as list of lagtimes will be automatically generated.
  • nits (int, optional) – maximum number of implied timescales to be computed and stored. If less timescales are available, nits will be set to a smaller value during estimation. None means the number of timescales will be automatically determined.
  • n_jobs (int, optional) – how many subprocesses to start to estimate the models for each lag time.

Methods

__init__(estimator[, lags, nits, n_jobs, ...]) Implied timescales for a series of lag times.
estimate(X, **params) Estimates the model given the data X
fit(X) Estimates parameters - for compatibility with sklearn.
get_params([deep]) Get parameters for this estimator.
get_sample_conf([conf, process]) Returns the confidence interval that contains alpha % of the sample data
get_sample_mean([process]) Returns the sample means of implied timescales.
get_sample_std([process]) Returns the standard error of implied timescales.
get_timescales([process]) Returns the implied timescale estimates
register_progress_callback(call_back[, stage]) Registers the progress reporter.
set_params(**params) Set the parameters of this estimator.

Attributes

estimators Returns the estimators for all lagtimes .
fraction_of_frames Returns the fraction of frames used to compute the count matrix at each lagtime.
lags Return the list of lag times for which timescales were computed.
lagtimes Return the list of lag times for which timescales were computed.
logger The logger for this class instance
model The model estimated by this Estimator
models Returns the models for all lagtimes .
name The name of this instance
number_of_timescales Return the number of timescales.
sample_mean Returns the sample means of implied timescales.
sample_std Returns the standard error of implied timescales.
samples_available Returns True if samples are available and thus sample
show_progress whether to show the progress of heavy calculations on this object.
timescales Returns the implied timescale estimates
estimate(X, **params)

Estimates the model given the data X

Parameters:
  • X (object) – A reference to the data from which the model will be estimated
  • params (dict) – New estimation parameter values. The parameters must that have been announced in the __init__ method of this estimator. The present settings will overwrite the settings of parameters given in the __init__ method, i.e. the parameter values after this call will be those that have been used for this estimation. Use this option if only one or a few parameters change with respect to the __init__ settings for this run, and if you don’t need to remember the original settings of these changed parameters.
Returns:

estimator – The estimated estimator with the model being available.

Return type:

object

estimators

Returns the estimators for all lagtimes .

fit(X)

Estimates parameters - for compatibility with sklearn.

Parameters:X (object) – A reference to the data from which the model will be estimated
Returns:estimator – The estimator (self) with estimated model.
Return type:object
fraction_of_frames

Returns the fraction of frames used to compute the count matrix at each lagtime.

Notes

In a list of discrete trajectories with varying lengths, the estimation at longer lagtimes will mean discarding some trajectories for which not even one count can be computed. This function returns the fraction of frames that was actually used in computing the count matrix.

Be aware: this fraction refers to the full count matrix, and not that of the largest connected set. Hence, the output is not necessarily the active fraction. For that, use the activte_count_fraction function of the pyemma.msm.MaximumLikelihoodMSM class object or for HMM respectively.

get_params(deep=True)

Get parameters for this estimator.

Parameters:deep (boolean, optional) – If True, will return the parameters for this estimator and contained subobjects that are estimators.
Returns:params – Parameter names mapped to their values.
Return type:mapping of string to any
get_sample_conf(conf=0.95, process=None)

Returns the confidence interval that contains alpha % of the sample data

etc.

Parameters:conf (float, default = 0.95) –

the confidence interval. Use:

  • conf = 0.6827 for 1-sigma confidence interval
  • conf = 0.9545 for 2-sigma confidence interval
  • conf = 0.9973 for 3-sigma confidence interval
Returns:(L,R) – lower and upper timescales bounding the confidence interval
  • if process is None, will return two (l x k) arrays, where l is the number of lag times and k is the number of computed timescales.
  • if process is an integer, will return two (l)-arrays with the selected process time scale for every lag time
Return type:(float[],float[]) or (float[][],float[][])
get_sample_mean(process=None)

Returns the sample means of implied timescales. Need to generate the samples first, e.g. by calling bootstrap

Parameters:process (int or None, default = None) – index in [0:n-1] referring to the process whose timescale will be returned. By default, process = None and all computed process timescales will be returned.
Returns:
  • if process is None, will return a (l x k) array, where l is the number of lag times
  • and k is the number of computed timescales.
  • if process is an integer, will return a (l) array with the selected process time scale
  • for every lag time
get_sample_std(process=None)

Returns the standard error of implied timescales. Need to generate the samples first, e.g. by calling bootstrap

Parameters:process (int or None, default = None) – index in [0:n-1] referring to the process whose timescale will be returned. By default, process = None and all computed process timescales will be returned.
Returns:
  • if process is None, will return a (l x k) array, where l is the number of lag times
  • and k is the number of computed timescales.
  • if process is an integer, will return a (l) array with the selected process time scale
  • for every lag time
get_timescales(process=None)

Returns the implied timescale estimates

Parameters:process (int or None, default = None) – index in [0:n-1] referring to the process whose timescale will be returned. By default, process = None and all computed process timescales will be returned.
Returns:
  • if process is None, will return a (l x k) array, where l is the number of lag times
  • and k is the number of computed timescales.
  • if process is an integer, will return a (l) array with the selected process time scale
  • for every lag time
lags

Return the list of lag times for which timescales were computed.

lagtimes

Return the list of lag times for which timescales were computed.

logger

The logger for this class instance

model

The model estimated by this Estimator

models

Returns the models for all lagtimes .

name

The name of this instance

number_of_timescales

Return the number of timescales.

register_progress_callback(call_back, stage=0)

Registers the progress reporter.

Parameters:
  • call_back (function) –

    This function will be called with the following arguments:

    1. stage (int)
    2. instance of pyemma.utils.progressbar.ProgressBar
    3. optional *args and named keywords (**kw), for future changes
  • stage (int, optional, default=0) – The stage you want the given call back function to be fired.
sample_mean

Returns the sample means of implied timescales. Need to generate the samples first, e.g. by calling bootstrap

Returns:timescales – mean timescales for all processes and lag times. l is the number of lag times and k is the number of computed timescales.
Return type:ndarray((l x k), dtype=float)
sample_std

Returns the standard error of implied timescales. Need to generate the samples first, e.g. by calling bootstrap

Returns:timescales – standard deviations of timescales for all processes and lag times. l is the number of lag times and k is the number of computed timescales.
Return type:ndarray((l x k), dtype=float)
samples_available

Returns True if samples are available and thus sample means, standard errors and confidence intervals can be obtained

set_params(**params)

Set the parameters of this estimator. The method works on simple estimators as well as on nested objects (such as pipelines). The former have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object. :returns: :rtype: self

show_progress

whether to show the progress of heavy calculations on this object.

timescales

Returns the implied timescale estimates

Returns:timescales – timescales for all processes and lag times. l is the number of lag times and k is the number of computed timescales.
Return type:ndarray((l x k), dtype=float)