Expand source code
from typing import Optional, List
import numpy as np
from ...model import Model
from ...mutation import TreeMutation
from ...samplers.sampler import Sampler
from ...samplers.scalar import UniformScalarSampler
from ...samplers.treemutation import TreeMutationLikihoodRatio
from ...samplers.treemutation import TreeMutationProposer
from ...samplers.oblivioustrees.likihoodratio import UniformTreeMutationLikihoodRatio
from ...samplers.oblivioustrees.proposer import UniformMutationProposer
from ...tree import Tree, mutate
class UnconstrainedTreeMutationSampler(Sampler):
"""
A sampler for tree mutation space.
Responsible for producing samples of ways to mutate a tree within a model
Works by combining a proposer and likihood evaluator into:
- propose a mutation
- assess likihood
- accept if likihood higher than a uniform(0, 1) draw
Parameters
----------
proposer: TreeMutationProposer
likihood_ratio: TreeMutationLikihoodRatio
"""
def __init__(self,
proposer: TreeMutationProposer,
likihood_ratio: TreeMutationLikihoodRatio,
scalar_sampler=UniformScalarSampler()):
self.proposer = proposer
self.likihood_ratio = likihood_ratio
self._scalar_sampler = scalar_sampler
def sample(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]:
proposals: List[TreeMutation] = self.proposer.propose(tree)
ratio = np.sum([self.likihood_ratio.log_probability_ratio(model, tree, x) for x in proposals])
if self._scalar_sampler.sample() < ratio:
return proposals
else:
return None
def step(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]:
mutations = self.sample(model, tree)
if mutations is not None:
for mutation in mutations:
mutate(tree, mutation)
return mutations
def get_tree_sampler(p_grow: float,
p_prune: float):
proposer = UniformMutationProposer(p_grow, p_prune)
likihood = UniformTreeMutationLikihoodRatio([p_grow, p_prune])
return UnconstrainedTreeMutationSampler(proposer, likihood)
Functions
def get_tree_sampler(p_grow: float, p_prune: float)
-
Expand source code
def get_tree_sampler(p_grow: float, p_prune: float): proposer = UniformMutationProposer(p_grow, p_prune) likihood = UniformTreeMutationLikihoodRatio([p_grow, p_prune]) return UnconstrainedTreeMutationSampler(proposer, likihood)
Classes
class UnconstrainedTreeMutationSampler (proposer: TreeMutationProposer, likihood_ratio: TreeMutationLikihoodRatio, scalar_sampler=<imodels.experimental.bartpy.samplers.scalar.UniformScalarSampler object>)
-
A sampler for tree mutation space. Responsible for producing samples of ways to mutate a tree within a model
Works by combining a proposer and likihood evaluator into: - propose a mutation - assess likihood - accept if likihood higher than a uniform(0, 1) draw
Parameters
proposer
:TreeMutationProposer
likihood_ratio
:TreeMutationLikihoodRatio
Expand source code
class UnconstrainedTreeMutationSampler(Sampler): """ A sampler for tree mutation space. Responsible for producing samples of ways to mutate a tree within a model Works by combining a proposer and likihood evaluator into: - propose a mutation - assess likihood - accept if likihood higher than a uniform(0, 1) draw Parameters ---------- proposer: TreeMutationProposer likihood_ratio: TreeMutationLikihoodRatio """ def __init__(self, proposer: TreeMutationProposer, likihood_ratio: TreeMutationLikihoodRatio, scalar_sampler=UniformScalarSampler()): self.proposer = proposer self.likihood_ratio = likihood_ratio self._scalar_sampler = scalar_sampler def sample(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]: proposals: List[TreeMutation] = self.proposer.propose(tree) ratio = np.sum([self.likihood_ratio.log_probability_ratio(model, tree, x) for x in proposals]) if self._scalar_sampler.sample() < ratio: return proposals else: return None def step(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]: mutations = self.sample(model, tree) if mutations is not None: for mutation in mutations: mutate(tree, mutation) return mutations
Ancestors
- Sampler
- abc.ABC
Methods
def sample(self, model: Model, tree: Tree) ‑> Optional[List[TreeMutation]]
-
Expand source code
def sample(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]: proposals: List[TreeMutation] = self.proposer.propose(tree) ratio = np.sum([self.likihood_ratio.log_probability_ratio(model, tree, x) for x in proposals]) if self._scalar_sampler.sample() < ratio: return proposals else: return None
def step(self, model: Model, tree: Tree) ‑> Optional[List[TreeMutation]]
-
Expand source code
def step(self, model: Model, tree: Tree) -> Optional[List[TreeMutation]]: mutations = self.sample(model, tree) if mutations is not None: for mutation in mutations: mutate(tree, mutation) return mutations