Exemple #1
0
    def __init__(self, model, api=None, fields=None):
        """Empty attributes to be overriden

        """
        self.tree_class = RTree
        Model.__init__(self, model, api, fields)
Exemple #2
0
    def __init__(self, model, api=None, fields=None):
        """Empty attributes to be overriden

        """
        self.tree_class = TableauTree
        Model.__init__(self, model, api, fields)
Exemple #3
0
 def __init__(self, model, api=None, fields=None):
     self.tree_class = JsTree
     Model.__init__(self, model, api, fields)
Exemple #4
0
 def __init__(self, model, api=None, fields=None):
     self.tree_class = JsTree
     Model.__init__(self, model, api, fields)
Exemple #5
0
    def __init__(self, model, api=None, fields=None, boosting=None):
        """Empty attributes to be overriden

        """
        self.tree_class = PythonTree if not boosting else PythonBoostedTree
        Model.__init__(self, model, api, fields)
Exemple #6
0
    def __init__(self, model, api=None, fields=None, boosting=None):
        """Empty attributes to be overriden

        """
        self.tree_class = PythonTree if not boosting else PythonBoostedTree
        Model.__init__(self, model, api, fields)