(self, input_shape)
| 7 | |
| 8 | class RFModel: |
| 9 | def __init__(self, input_shape): |
| 10 | self.input_shape = input_shape |
| 11 | |
| 12 | def make_model(self, n_estimators, n_jobs, verbose=1): |
| 13 | model1 = RF(n_estimators=1, criterion='entropy', bootstrap=False, class_weight='balanced_subsample') |
nothing calls this directly
no outgoing calls
no test coverage detected