MCPcopy Create free account

hub / github.com/unit8co/darts / functions

Functions3,734 in github.com/unit8co/darts

Methodinit_predict_tqdm
Override this to customize the tqdm bar for predicting.
darts/utils/callbacks.py:82
Methodinit_sanity_tqdm
Override this to customize the tqdm bar for the validation sanity run.
darts/utils/callbacks.py:71
Methodinit_size
(self, n: int, m: int)
darts/dataprocessing/dtw/window.py:372
Methodinit_train_tqdm
Override this to customize the tqdm bar for training.
darts/utils/callbacks.py:94
Methodinit_validation_tqdm
Override this to customize the tqdm bar for validation.
darts/utils/callbacks.py:106
Methodinput_chunk_length
(self)
darts/models/forecasting/torch_forecasting_model.py:2540
Methodinput_size
(self)
darts/models/forecasting/tft_submodels.py:107
Methodinput_size_total
(self)
darts/models/forecasting/tft_submodels.py:481
Methodintercept_fit_args
(*args, **kwargs)
darts/tests/utils/historical_forecasts/test_historical_forecasts.py:4254
Methodintercept_fit_args
(*args, verbose=False, **kwargs)
darts/tests/models/forecasting/test_sklearn_models.py:3970
Methodintercept_fit_args
(*args, verbose=False, **kwargs)
darts/tests/models/forecasting/test_classifier_model.py:716
Functionintersection_func
(series_or_times_1, series_or_times_2)
darts/utils/data/tabularization/tabularization.py:1825
Functioninterval_support
This decorator adds support for quantile interval metrics with sanity checks, processing, and extraction of quantiles from the intervals.
darts/metrics/utils.py:76
Methodintvl
(start, end)
darts/timeseries.py:2342
Methodinvalid_callable
(index)
darts/tests/dataprocessing/encoders/test_encoders.py:990
Methodinverse
( self, x: torch.Tensor, loc_scale: tuple[torch.Tensor, torch.Tensor] )
darts/models/components/chronos2_submodels.py:102
Methodinverse_func
(x)
darts/tests/dataprocessing/transformers/test_mappers.py:16
Methodinverse_ts_func
(ts, x)
darts/tests/dataprocessing/transformers/test_mappers.py:24
Methodinvertible
Returns whether the pipeline is invertible or not. A pipeline is invertible if all transformers in the pipeline are themselves invert
darts/dataprocessing/pipeline.py:244
Functionio_processor
Applies some input / output processing to PLForecastingModule.forward. Note that this wrapper must be added to each of PLForecastingModule's subc
darts/models/forecasting/pl_forecasting_module.py:33
Methodis_deterministic
Whether the series is deterministic.
darts/timeseries.py:1638
Methodis_probabilistic
Whether the series is stochastic (probabilistic).
darts/timeseries.py:1648
Methodis_probabilistic
Whether the scorer expects a probabilistic prediction as the first input.
darts/ad/scorers/scorers.py:239
Methodis_probabilistic
(self)
darts/ad/scorers/scorers.py:941
Methodis_stochastic
Whether the series is stochastic (probabilistic).
darts/timeseries.py:1643
Methodis_trainable
Whether the scorer is trainable.
darts/ad/scorers/scorers.py:249
Methodis_trainable
Whether the Scorer is trainable.
darts/ad/scorers/scorers.py:646
Methodis_univariate
Whether the series is univariate.
darts/timeseries.py:1653
Methodis_univariate
Whether the Scorer is a univariate scorer.
darts/ad/scorers/scorers.py:244
Functionis_valid
(cell)
darts/dataprocessing/dtw/dtw.py:79
Methodis_within_range
Whether the given timestamp or integer is within the time interval of the series. `ts` does not need to be an element of the series' time ind
darts/timeseries.py:3753
Functioniw
Interval Width (IW). IL gives the width / length of predicted quantile intervals. For the true series :math:`y` and predicted stochastic or
darts/metrics/metrics.py:3331
Functioniws
Interval Winkler Score (IWS) [1]_. IWS gives the length / width of the quantile intervals plus a penalty if the observation is outside the interv
darts/metrics/metrics.py:3533
Methodlagged_feature_names
The lagged feature names the model has been trained on. The naming convention for target, past and future covariates is: ``"{name}_{type}_lag
darts/models/forecasting/sklearn_model.py:1478
Methodlagged_label_names
The lagged label name for the model's estimators. The naming convention is: ``"{name}_target_hrz{i}"``, where: - ``{name}`` the
darts/models/forecasting/sklearn_model.py:1496
Methodlast_value
Last value of the univariate series. Returns ------- float The last value of this univariate deterministic time s
darts/timeseries.py:2025
Methodlikelihood
(self)
darts/models/forecasting/sklearn_model.py:1510
Methodlikelihood
Returns the likelihood (if any) that the model uses for probabilistic forecasts.
darts/models/forecasting/forecasting_model.py:222
Methodlikelihood
(self)
darts/models/forecasting/sf_model.py:418
Methodlikelihood
(self)
darts/models/forecasting/torch_forecasting_model.py:2532
Methodlikelihood
(self)
darts/models/forecasting/conformal_models.py:1584
Methodload
Loads a model from a given path or file handle. Parameters ---------- path Path or file handle from whic
darts/models/forecasting/forecasting_model.py:2726
Methodload
Loads a model from a given path or file handle. Parameters ---------- path Path or file handle from whic
darts/models/forecasting/conformal_models.py:1439
Methodlow_threshold
(self)
darts/ad/detectors/threshold_detector.py:103
Methodlow_threshold
(self)
darts/ad/detectors/detectors.py:280
Methodlow_threshold
(self)
darts/ad/detectors/quantile_detector.py:121
Methodmake_series
(idx, country)
darts/tests/dataprocessing/transformers/test_static_covariates_transformer.py:378
Methodmap_cols
(comps, name, suffix)
darts/explainability/tft_explainer.py:567
Functionmarre
Mean Absolute Ranged Relative Error (MARRE). For the true series :math:`y` and predicted series :math:`\\hat{y}` of length :math:`T`, it is compu
darts/metrics/metrics.py:2243
Functionmase
Mean Absolute Scaled Error (MASE) (see [1]_ for more information on scaled forecasting errors). It is the Mean Absolute Error (MAE) scaled by the
darts/metrics/metrics.py:544
Methodmc_dropout_enabled
(self)
darts/utils/torch.py:48
Functionmcrps
Mean Continuous Ranked Probability Score (MCRPS). MCRPS is a proper scoring rule that generalises the Mean Absolute Error (MAE) to probabilistic
darts/metrics/metrics.py:3230
Functionmerr
Mean Error (MERR). For the true series :math:`y` and predicted series :math:`\\hat{y}` of length :math:`T`, it is computed per component/colu
darts/metrics/metrics.py:140
Methodmetadata
The metadata of this series. If defined, the metadata is given as a dictionary.
darts/timeseries.py:1577
Functionmetric_autc
Reference implementation for AUTC metric.
darts/tests/metrics/test_metrics.py:162
Functionmetric_cov
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:54
Functionmetric_f1
(y_true, y_pred)
darts/tests/metrics/test_metrics.py:158
Functionmetric_ic
(y_true, y_pred, q_interval=None, **kwargs)
darts/tests/metrics/test_metrics.py:116
Functionmetric_incs_qr
(y_true, y_pred, q_interval=None, **kwargs)
darts/tests/metrics/test_metrics.py:129
Functionmetric_iw
(y_true, y_pred, q_interval=None, **kwargs)
darts/tests/metrics/test_metrics.py:82
Functionmetric_iws
(y_true, y_pred, q_interval=None, **kwargs)
darts/tests/metrics/test_metrics.py:95
Functionmetric_macc
(y_true, y_pred)
darts/tests/metrics/test_metrics.py:142
Functionmetric_marre
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:64
Functionmetric_ope
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:48
Functionmetric_precision
(y_true, y_pred)
darts/tests/metrics/test_metrics.py:152
Functionmetric_recall
(y_true, y_pred)
darts/tests/metrics/test_metrics.py:146
Functionmetric_residuals
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:26
Functionmetric_rmsle
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:74
Functionmetric_smape
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:38
Functionmetric_wmape
(y_true, y_pred, **kwargs)
darts/tests/metrics/test_metrics.py:32
Methodmin_train_samples
(self)
darts/models/forecasting/sklearn_model.py:622
Methodmin_train_samples
(self)
darts/models/forecasting/rnn_model.py:629
Methodmin_train_samples
The minimum number of samples for training the model.
darts/models/forecasting/forecasting_model.py:488
Methodmin_train_samples
(self)
darts/models/forecasting/forecasting_model.py:2961
Methodmin_train_samples
(self)
darts/models/forecasting/torch_forecasting_model.py:2580
Methodmin_train_samples
(self)
darts/models/forecasting/ensemble_model.py:638
Methodmin_train_samples
(self)
darts/models/forecasting/conformal_models.py:1536
Methodmin_train_series_length
The minimum required length for the training series.
darts/models/forecasting/forecasting_model.py:480
Functionmincs_qr
Mean Interval Non-Conformity Score for Quantile Regression (MINCS_QR). MINCS_QR gives the time-aggregated INCS_QR :func:`~darts.metrics.metrics.i
darts/metrics/metrics.py:4081
Functionmiw
Mean Interval Width (MIW). MIW gives the time-aggregated width / length of predicted quantile intervals. For the true series :math:`y` and p
darts/metrics/metrics.py:3436
Functionmiws
Mean Interval Winkler Score (IWS) [1]_. MIWS gives the time-aggregated length / width of the quantile intervals plus a penalty if the observation
darts/metrics/metrics.py:3665
Functionmock_download
( repo_id: str, filename: str, revision: str | None, local_dir: str | Path | None, **kwarg
darts/tests/models/forecasting/test_foundation.py:41
Methodmodel_created
(self)
darts/models/forecasting/torch_forecasting_model.py:2524
Methodmodel_params
(self)
darts/models/forecasting/forecasting_model.py:2653
Functionmpl_safe_plotting
Patches plt.show() and closes all plots / figures from memory at the end of the test.
darts/tests/conftest.py:104
Functionmql
Mean Quantile Loss (MQL). Also known as Pinball Loss. QL is a metric that quantifies the accuracy of a specific quantile :math:`q` from the p
darts/metrics/metrics.py:3015
Functionmse
Mean Squared Error (MSE). For the true series :math:`y` and predicted series :math:`\\hat{y}` of length :math:`T`, it is computed per compone
darts/metrics/metrics.py:767
Functionmsse
Mean Squared Scaled Error (MSSE) (see [1]_ for more information on scaled forecasting errors). It is the Mean Squared Error (MSE) scaled by the M
darts/metrics/metrics.py:986
Functionmulti_ts_support
This decorator further adapts the metrics that took as input two (or three for scaled metrics with `insample`) univariate/multivariate ``Time
darts/metrics/utils.py:161
Functionmultivariate_support
This decorator transforms a metric function that takes as input two univariate TimeSeries instances into a function that takes two equally-si
darts/metrics/utils.py:328
Methodn_components
The number of components (columns) in the series.
darts/timeseries.py:1628
Methodn_samples
The number of samples contained in the series.
darts/timeseries.py:1623
Methodn_timesteps
The number of time steps in the series.
darts/timeseries.py:1618
Methodname
Name of the data transformer.
darts/dataprocessing/transformers/base_data_transformer.py:720
Methodnum_inputs
(self)
darts/models/forecasting/tft_submodels.py:488
Methodnum_parameters
Returns the number of distribution parameters for a single target value.
darts/utils/likelihood_models/base.py:102
Methodnumeric_static_variables
List of numeric static variables in model
darts/models/forecasting/tft_model.py:351
Functionobjective
(trial: optuna.trial.Trial)
darts/tests/utils/test_callbacks.py:84
Methodobjective
(trial)
darts/tests/optional_deps/test_optuna.py:47
Methodon_fit_end
(self)
darts/models/forecasting/pl_forecasting_module.py:312
← previousnext →1,901–2,000 of 3,734, ranked by callers