Learning.feedbackCondAction
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.
feedbackCondActionπ
Learning.feedbackCondAction
The kernel representing the conditional distribution of the feedback given the action
at time n in an oblivious environment.
Learning.feedbackCondAction.{u_1, u_2} {π : Type u_1} {π¨ : Type u_2} {mπ : MeasurableSpace π} {mπ¨ : MeasurableSpace π¨} (env : Environment π π¨) [h_obl : IsObliviousEnv env] (n : β) : ProbabilityTheory.Kernel π π¨Learning.feedbackCondAction.{u_1, u_2} {π : Type u_1} {π¨ : Type u_2} {mπ : MeasurableSpace π} {mπ¨ : MeasurableSpace π¨} (env : Environment π π¨) [h_obl : IsObliviousEnv env] (n : β) : ProbabilityTheory.Kernel π π¨
Code
noncomputable def feedbackCondAction (env : Environment π π¨) [h_obl : IsObliviousEnv env] (n : β) : Kernel π π¨ := h_obl.exists_eq_prodMkLeft.choose n
Type uses (2)
Used by (12)
Actions: Source Β· Open Issue
Dependency graph
Type dependencies (2)
Environmentπ
Learning.EnvironmentA stochastic environment.
Learning.Environment.{u_4, u_5} (π : Type u_4) (π¨ : Type u_5) [MeasurableSpace π] [MeasurableSpace π¨] : Type (max u_4 u_5)Learning.Environment.{u_4, u_5} (π : Type u_4) (π¨ : Type u_5) [MeasurableSpace π] [MeasurableSpace π¨] : Type (max u_4 u_5)
Code
structure Environment (π π¨ : Type*) [MeasurableSpace π] [MeasurableSpace π¨] where /-- Distribution of the next observation as function of the past history. -/ feedback : (n : β) β Kernel ((Iic n β π Γ π¨) Γ π) π¨ /-- The feedback kernels are Markov kernels. -/ [h_feedback : β n, IsMarkovKernel (feedback n)] /-- Distribution of the first observation given the first action. -/ Ξ½0 : Kernel π π¨ /-- The initial observation kernel is a Markov kernel. -/ [hp0 : IsMarkovKernel Ξ½0]
Actions: Source Β· Open Issue
IsObliviousEnvπ
Learning.IsObliviousEnvAn environment is oblivious if the distribution of the next feedback depends only on the last action and not on the past history.
Learning.IsObliviousEnv.{u_1, u_2} {π : Type u_1} {π¨ : Type u_2} {mπ : MeasurableSpace π} {mπ¨ : MeasurableSpace π¨} (env : Environment π π¨) : PropLearning.IsObliviousEnv.{u_1, u_2} {π : Type u_1} {π¨ : Type u_2} {mπ : MeasurableSpace π} {mπ¨ : MeasurableSpace π¨} (env : Environment π π¨) : Prop
Code
class IsObliviousEnv (env : Environment π π¨) : Prop where
exists_eq_prodMkLeft : β Ξ½ : β β Kernel π π¨, (β n, IsMarkovKernel (Ξ½ n)) β§
(env.Ξ½0 = Ξ½ 0) β§ (β n, env.feedback n = (Ξ½ (n + 1)).prodMkLeft _)Type uses (1)
Used by (13)
Actions: Source Β· Open Issue