Beispiel #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)
Beispiel #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)
Beispiel #3
0
 def __init__(self, model, api=None, fields=None):
     self.tree_class = JsTree
     Model.__init__(self, model, api, fields)
Beispiel #4
0
 def __init__(self, model, api=None, fields=None):
     self.tree_class = JsTree
     Model.__init__(self, model, api, fields)
Beispiel #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)
Beispiel #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)