MCPcopy
hub / github.com/facebook/prophet / ModelInputData

Class ModelInputData

python/prophet/models.py:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27@dataclass
28class ModelInputData:
29 T: int
30 S: int
31 K: int
32 tau: float
33 trend_indicator: int
34 y: Sequence[float] # length T
35 t: Sequence[float] # length T
36 cap: Sequence[float] # length T
37 t_change: Sequence[float] # length S
38 s_a: Sequence[int] # length K
39 s_m: Sequence[int] # length K
40 X: Sequence[Sequence[float]] # shape (T, K)
41 sigmas: Sequence[float] # length K
42
43@dataclass
44class ModelParams:

Callers 1

preprocessMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…