Spaces:
Runtime error
Runtime error
File size: 242 Bytes
d840583 | 1 2 3 4 5 6 7 8 9 10 11 | """Random Forest configuration."""
from sklearn.ensemble import RandomForestClassifier
MODEL_NAME = "RandomForestClassifier"
def build_model():
"""Return an untrained ``RandomForestClassifier``."""
return RandomForestClassifier()
|