Beispiel #1
0
 def component_vector(self, index):
     return MeanLinearModel.component(self, index)
Beispiel #2
0
 def project_out_vector(self, instance_vector):
     return MeanLinearModel.project_out(self, instance_vector)
Beispiel #3
0
 def reconstruct_vector(self, instance_vector):
     return MeanLinearModel.reconstruct(self, instance_vector)
Beispiel #4
0
 def instance_vector(self, weights):
     return MeanLinearModel.instance(self, weights)
Beispiel #5
0
 def project_out_vector(self, instance_vector):
     return MeanLinearModel.project_out(self, instance_vector)
Beispiel #6
0
 def __init__(self, components, mean):
     MeanLinearModel.__init__(self, components, mean.as_vector())
     VectorizableBackedModel.__init__(self, mean)
Beispiel #7
0
 def component_vector(self, index):
     return MeanLinearModel.component(self, index)
Beispiel #8
0
 def instance_vector(self, weights):
     return MeanLinearModel.instance(self, weights)
Beispiel #9
0
 def reconstruct_vector(self, instance_vector):
     return MeanLinearModel.reconstruct(self, instance_vector)
Beispiel #10
0
 def __init__(self, components, mean):
     MeanLinearModel.__init__(self, components, mean.as_vector())
     VectorizableBackedModel.__init__(self, mean)
 def project_vector(self, instance_vector, project_weight=None):
     return MeanLinearModel.project(self, instance_vector, project_weight)