MCPcopy Create free account
hub / github.com/VivekPa/AIAlpha / __init__

Method __init__

models/rfmodel.py:9–10  ·  view source on GitHub ↗
(self, input_shape)

Source from the content-addressed store, hash-verified

7
8class 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')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected