Learning.IT.adapted_feedback
This page has the declaration's own card below, then its dependency graph, then a card for each dependency (type dependencies first, then the rest of the transitive closure). For a theorem, the graph and the dependency cards only follow its statement's dependencies (its proof is replaced by sorry, so what it proves doesn't depend on how); for everything else, both the type and the body/value are followed, since their content is part of what later declarations build on.
adapted_feedback🔗
Learning.IT.adapted_feedbackNo docstring.
Learning.IT.adapted_feedback.{u_1, u_2} {𝓐 : Type u_1} {𝓨 : Type u_2} {m𝓐 : MeasurableSpace 𝓐} {m𝓨 : MeasurableSpace 𝓨} : MeasureTheory.Adapted (IT.filtration 𝓐 𝓨) feedbackLearning.IT.adapted_feedback.{u_1, u_2} {𝓐 : Type u_1} {𝓨 : Type u_2} {m𝓐 : MeasurableSpace 𝓐} {m𝓨 : MeasurableSpace 𝓨} : MeasureTheory.Adapted (IT.filtration 𝓐 𝓨) feedback
Code
lemma adapted_feedback : Adapted (IT.filtration 𝓐 𝓨) feedback
Type uses (2)
Actions: Source · Open Issue
Proof
by intro n rw [filtration_eq_comap, feedback_eq_eval_comp_hist] exact measurable_comp_comap _ (by fun_prop)
Dependency graph
Type dependencies (2)
filtration🔗
Learning.IT.filtrationFiltration of the algorithm Seq.
Learning.IT.filtration.{u_4, u_5} (𝓐 : Type u_4) (𝓨 : Type u_5) [MeasurableSpace 𝓐] [MeasurableSpace 𝓨] : MeasureTheory.Filtration ℕ inferInstanceLearning.IT.filtration.{u_4, u_5} (𝓐 : Type u_4) (𝓨 : Type u_5) [MeasurableSpace 𝓐] [MeasurableSpace 𝓨] : MeasureTheory.Filtration ℕ inferInstance
Code
protected def filtration (𝓐 𝓨 : Type*) [MeasurableSpace 𝓐] [MeasurableSpace 𝓨] :
Filtration ℕ (inferInstance : MeasurableSpace (ℕ → 𝓐 × 𝓨)) :=
MeasureTheory.Filtration.piLE (X := fun _ ↦ 𝓐 × 𝓨)Used by (13)
Actions: Source · Open Issue
feedback🔗
Learning.IT.feedback
feedback n is the feedback at time n. This is a random variable on the measurable space
ℕ → 𝓐 × 𝓨.
Learning.IT.feedback.{u_1, u_2} {𝓐 : Type u_1} {𝓨 : Type u_2} (n : ℕ) (h : ℕ → 𝓐 × 𝓨) : 𝓨Learning.IT.feedback.{u_1, u_2} {𝓐 : Type u_1} {𝓨 : Type u_2} (n : ℕ) (h : ℕ → 𝓐 × 𝓨) : 𝓨
Code
def feedback (n : ℕ) (h : ℕ → 𝓐 × 𝓨) : 𝓨 := (h n).2
Used by (16)
Actions: Source · Open Issue