|
|
|
|
|
_pythonStepwiseRegression(self,
w,
X,
XY,
Xw,
E,
auto_corr,
lambda_over_2_auto_corr,
S,
M,
maxiter,
convergence_tol,
resamp_decay,
min_resamp,
verbose,
seed=None)
The (much slower) python version of the stepwise
regression. I'm keeping this around for now so that we can
compare results. |
source code
|
|
|
|
|
|
|
_unsparsify_weights(self,
samples,
weights)
Unsparsify weights via least squares regression. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from base.Classifier:
__repr__,
__str__,
clone,
isTrained,
predict,
repredict,
retrain,
summary,
train,
trained,
untrain
Inherited from misc.state.ClassWithCollections:
__getattribute__,
__new__,
__setattr__,
reset
Inherited from object:
__delattr__,
__format__,
__hash__,
__reduce__,
__reduce_ex__,
__sizeof__,
__subclasshook__
|
|
|
_clf_internals = ['smlr', 'linear', 'has_sensitivity', 'binary...
Describes some specifics about the classifier -- is that it is
doing regression for instance....
|
|
|
lm = Parameter(.1, min= 1e-10, allowedtype= 'float', doc= """T...
|
|
|
convergence_tol = Parameter(1e-3, min= 1e-10, max= 1.0, allowe...
|
|
|
resamp_decay = Parameter(0.5, allowedtype= 'float', min= 0.0, ...
|
|
|
min_resamp = Parameter(0.001, allowedtype= 'float', min= 1e-10...
|
|
|
maxiter = Parameter(10000, allowedtype= 'int', min= 1, doc= ""...
|
|
|
has_bias = Parameter(True, allowedtype= 'bool', doc= """Whethe...
|
|
|
fit_all_weights = Parameter(True, allowedtype= 'bool', doc= ""...
|
|
|
implementation = Parameter(_DEFAULT_IMPLEMENTATION, allowedtyp...
|
|
|
seed = Parameter(None, allowedtype= 'None or int', doc= """See...
|
|
|
unsparsify = Parameter(False, allowedtype= 'bool', doc= """***...
|
|
|
std_to_keep = Parameter(2.0, allowedtype= 'float', doc= """Sta...
|
|
|
biases = property(lambda self: self.__biases)
|
|
|
weights = property(lambda self: self.__weights)
|
|
Inherited from base.Classifier:
_DEV__doc__,
feature_ids,
predicting_time,
predictions,
regression,
retrainable,
trained_dataset,
trained_labels,
trained_nsamples,
training_confusion,
training_time,
values
Inherited from misc.state.ClassWithCollections:
descr
|