LeanMachineLearning exposition

Learning.step🔗

Minimal Lean file

step🔗

DefinitionLearning.step

Step of the algorithm-environment sequence: the action-feedback pair at time n.

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

Code

def step (A : ℕ → Ω → 𝓐) (Y : ℕ → Ω → 𝓨) (n : ℕ) (ω : Ω) : 𝓐 × 𝓨 :=
  (A n ω, Y n ω)
Used by (12)

Actions: Source · Open Issue