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