Jump to content

Connect Leeroopedia MCP: Equip your AI agents to search best practices, build plans, verify code, diagnose failures, and look up hyperparameter defaults.

Principle:Sdv dev SDV Sequential Data Sampling

From Leeroopedia
Knowledge Sources
Domains Time_Series, Data_Generation
Last Updated 2026-02-14 00:00 GMT

Overview

A two-phase generation process that first samples entity contexts and then autoregressively generates time-series sequences for each entity.

Description

Sequential data sampling generates synthetic time-series by first sampling context rows (one per entity) from the fitted Gaussian copula model, then generating temporal sequences for each context using the autoregressive PARModel. The number of sequences and optionally the sequence length can be specified.

Usage

Call sample on a fitted PARSynthesizer with the desired number of sequences. Optionally specify a fixed sequence length.

Theoretical Basis

  1. Context generation: Sample num_sequences context rows from GaussianCopulaSynthesizer
  2. Sequence key assignment: Generate unique sequence key values
  3. Autoregressive generation: For each context row, PARModel generates timesteps one at a time
  4. Post-processing: Reverse-transform generated data and apply constraints

Related Pages

Implemented By

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment