mhamza-007's picture
Upload 56 files
d840583 verified
Raw
History Blame Contribute Delete
242 Bytes
"""Random Forest configuration."""
from sklearn.ensemble import RandomForestClassifier
MODEL_NAME = "RandomForestClassifier"
def build_model():
"""Return an untrained ``RandomForestClassifier``."""
return RandomForestClassifier()