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

 
Modules
       
pandas

 
Classes
       
abc.ABC(builtins.object)
Approximator

 
class Approximator(abc.ABC)
    Approximator(data: Union[structure_learning.data.data.Data, pandas.core.frame.DataFrame], **kwargs)
 

 
 
Method resolution order:
Approximator
abc.ABC
builtins.object

Methods defined here:
__init__(self, data: Union[structure_learning.data.data.Data, pandas.core.frame.DataFrame], **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
config(self)
run(self)
save(self, filename: str, compression='gzip')
Saves the Graph object to a file.
 
Parameters:
    filename (str): Path to the output file.

Class methods defined here:
load(filename: str, compression='gzip')
Loads a Graph object from a file.
 
Parameters:
    filename (str): Path to the input file.
 
Returns:
    Graph: Loaded Graph object.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__abstractmethods__ = frozenset({'config', 'run'})

 
Data
        Union = typing.Union