LeanMachineLearning exposition

Learning.trajectory🔗

Minimal Lean file

trajectory🔗

DefinitionLearning.trajectory

A random variable that gives the sequence of action-feedback pairs.

🔗def
Learning.trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} (A : Ω 𝓐) (Y : Ω 𝓨) (ω : Ω) : 𝓐 × 𝓨
Learning.trajectory.{u_1, u_2, u_3} {𝓐 : Type u_1} {𝓨 : Type u_2} {Ω : Type u_3} (A : Ω 𝓐) (Y : Ω 𝓨) (ω : Ω) : 𝓐 × 𝓨

Code

def trajectory (A : ℕ → Ω → 𝓐) (Y : ℕ → Ω → 𝓨) (ω : Ω) : ℕ → 𝓐 × 𝓨 := fun n ↦ (A n ω, Y n ω)
Used by (18)

Actions: Source · Open Issue