Module Index : Topics : Keywords
 
 
structure_learning.approximators
index
/Users/165421/Documents/code/structure_learning/src/structure_learning/approximators/__init__.py

 
Package Contents
       
approximator
dibs
greedy
hillclimb
mcmc
partition_mcmc
pc
structure_mcmc

 
Functions
       
get_approximator(name: str)
Get a approximator class by its name.
 
Parameters:
    name (str): Name of the approximator.
 
Returns:
    Approximator class corresponding to the given name.

 
Data
        State = ~State
Tuple = typing.Tuple
Union = typing.Union
approximators = {'GreedySearch': <class 'structure_learning.approximators.greedy.GreedySearch'>, 'HillClimb': <class 'structure_learning.approximators.hillclimb.HillClimb'>, 'PC': <class 'structure_learning.approximators.pc.PC'>, 'PartitionMCMC': <class 'structure_learning.approximators.partition_mcmc.PartitionMCMC'>, 'StructureMCMC': <class 'structure_learning.approximators.structure_mcmc.StructureMCMC'>}