Spaces:
Runtime error
Runtime error
| """Random Forest configuration.""" | |
| from sklearn.ensemble import RandomForestClassifier | |
| MODEL_NAME = "RandomForestClassifier" | |
| def build_model(): | |
| """Return an untrained ``RandomForestClassifier``.""" | |
| return RandomForestClassifier() | |