lwm-temporal / examples /scripts /generate_data.py
Sadjad Alikhani
added the dynamic dataset generation pipeline
80a230c
"""Backwards-compatible entry point for dynamic scenario generation.
This module now delegates to the first-class CLI implemented in
``LWMTemporal.cli.generate_dynamic_data``. Invoke ``python generate_data.py``
exactly as before; the new CLI exposes additional flags for customization.
"""
from __future__ import annotations
from LWMTemporal.cli.generate_dynamic_data import main
if __name__ == "__main__":
main()