Fast approximate-forest regression and multiclass classification in Rust, with Python bindings. It can quickly and accurately fit datasets with arbitrarily large row counts (millions of rows or more), and scales down to tiny datasets too.
Across nineteen numeric and mixed-data benchmarks spanning 1,030 to 20,216,100 rows and covering regression, binary classification, and multiclass classification, FastForest is always either the fastest to train and predict, or the most accurate. For more results, see the benchmarks section.
| Dataset | Model | RMSE ↓ | R² ↑ | Fit (s) ↓ | Predict (s) ↓ |
|---|---|---|---|---|---|
| SGEMM GPU 241,600 rows · 14 features · numeric |
fastforest | 0.06 | 1.00 | 0.07 | 0.017 |
| AutoForest | 0.04 | 1.00 | 0.31 | 0.014 | |
| autogrow | 0.04 | 1.00 | 0.81 | 0.045 | |
| sklearn RF | 0.03 | 1.00 | 1.86 | 0.136 | |
| sklearn HistGBM | 0.20 | 0.97 | 1.23 | 0.022 | |
| Rossmann Store Sales 844,338 rows · 16 features · mixed |
fastforest | 0.15 | 0.86 | 0.51 | 0.033 |
| AutoForest | 0.13 | 0.91 | 3.00 | 0.033 | |
| autogrow | 0.12 | 0.91 | 7.37 | 0.065 | |
| sklearn RF | 0.26 | 0.61 | 20.18 | 0.078 | |
| sklearn HistGBM | 0.30 | 0.46 | 2.87 | 0.051 |
Bold is best for that dataset and metric. AutoForest includes automatic sample sizing; autogrow additionally sizes the forest. Results were measured on an Apple M4 Pro; fit includes preprocessing.
The SGEMM target is the log-transformed mean runtime.
| Dataset | Model | F1 acc ↑ | Log loss ↓ | Fit (s) ↓ | Proba (s) ↓ |
|---|---|---|---|---|---|
| Covertype 581,012 rows · binary features |
fastforest | 0.93 | 0.15 | 0.73 | 0.069 |
| sklearn RF | 0.92 | 0.17 | 4.33 | 0.210 | |
| sklearn HistGBM | 0.74 | 0.57 | 2.38 | 0.076 | |
| Adult Census Income 48,842 rows · 14 features · mixed |
fastforest | 0.81 | 0.31 | 0.09 | 0.008 |
| sklearn RF | 0.80 | 0.37 | 0.96 | 0.026 | |
| sklearn HistGBM | 0.82 | 0.27 | 1.42 | 0.027 |
F1 acc is macro-averaged F1, giving every class equal weight. Covertype is passed with its supplied binary features; FastForest bundles exclusive indicators automatically.
pip install fastforestThis installs the Python library and the native fastforest-fit, fastforest-predict, fastforest-convert, and fastforest-compile executables.
import numpy as np
from fastforest import FastForest,FastForestClassifier
rng = np.random.default_rng(42)
X = rng.random((1_000, 6))
y = 4*X[:, 0] - 2*X[:, 1] + X[:, 5]
ff = FastForest(seed=42, oob=True).fit(X, y)
preds = ff.predict(X[:5])
labels = np.where(X[:, 0]+X[:, 1] > 1, "high", "low")
ffc = FastForestClassifier(seed=42, oob=True).fit(X, labels)
probs,classes = ffc.predict_proba(X[:5]), ffc.predict(X[:5])X may contain numeric values, numeric strings, ordinary strings, and configured missing values. Regression y is converted to contiguous float32 and must be finite. Classification labels may be numeric or strings; classes_ records their probability-column order. Missing labels and single-class targets are rejected.
AutoForest and AutoForestClassifier size the samples while retaining the ordinary estimator API; autogrow=True also sizes the forest:
from fastforest.auto import AutoForest,AutoForestClassifier
model = AutoForest(seed=42).fit(X, y)
classifier = AutoForestClassifier(seed=42).fit(X, labels)
grown = AutoForest(autogrow=True, seed=42).fit(X, y)For sufficiently large data, one parallel eight-tree screen tries only larger bootstrap_max and max_node_samples values. Each extra level requires another 1% reduction in OOB loss, independently on each axis. Ordinary sizing tries bootstrap limits of 80k, 120k, 160k, and 200k and node samples of 640, 960, and 1280; autogrow widens these to 80k, 160k, 240k, and 320k and 640, 1280, and 1920. When the row cap removes wider bootstrap choices, their vacant comparison slots are filled from the ordinary grid. The screen is skipped unless rows exceed 2 * bootstrap_max * max(1, classes-1), so the default thresholds are 80,000 rows for regression and binary classification, 160,000 for three classes, and 480,000 for seven classes.
By default, the final model uses fastforest's ordinary adaptive 32–64 tree rule and does not enable OOB. With autogrow=True, it instead grows in 32-tree batches. An independent random set of at most 40,000 tracking rows per output is fixed before the first batch; at every checkpoint, each row uses only trees for which it was out-of-bag. Another batch is added while cumulative regression MSE or classification Brier loss improves by at least 1%; the first batch that fails this test is discarded by default. Growth is capped at 512 trees by default; keep_last_batch, min_improvement, tree_batch_size, and max_trees control these choices.
Models can be saved as compact, portable .ffm files containing the forest, fitted preprocessing schema, task, and class labels. A loaded model supports ordinary in-memory prediction as well as bounded file prediction:
from fastforest import load
model.save("model.ffm")
restored = load("model.ffm")
predictions = restored.predict(X)
restored.predict_file("test.csv", "predictions.csv")
restored.save_executable("model-predict")predict_file processes CSV or Arrow IPC/Feather in bounded batches rather than loading the whole input. save_executable builds a standalone predictor for the current platform, embedding both the model and Rust prediction runtime; building it requires a Rust toolchain, but running it requires neither Python nor a separate model file.
Installing fastforest also provides four commands. Their parsing, preprocessing, fitting, persistence, and prediction run in Rust:
fastforest-fit train.csv --target price --task regression --output model.ffm
fastforest-predict model.ffm test.csv --output predictions.csv
fastforest-convert numeric.csv --output numeric.arrow
fastforest-compile model.ffm --output model-predict
./model-predict test.csv --output predictions.csvfastforest-fit accepts mixed CSV or numeric Arrow input and supports regression and classification; classification prediction accepts --proba. fastforest-convert streams numeric CSV into standard Arrow IPC for faster repeated ingestion. Run any command with --help for its complete estimator, schema, and batching options.
The native fastforest-predict binary, using a default model trained on an 80% Concrete Strength split, predicts from Arrow end-to-end in 4.5 ms for one row and 4.9 ms for all 206 validation rows. Reproduce it with python tools/cli_bench.py.
This section contains additional results; all benchmarks, including those at the top of the README, follow the approaches described here. Unless noted otherwise, results use one reproducible 80/20 split, stratified for classification. Fit timing includes model construction, schema inspection, preprocessing, and fitting, but excludes process startup and inter-process transfer. Prediction timing includes input transformation. Every model/dataset combination has a 180-second limit.
Each AutoForest row uses the ordinary adaptive tree count. Its following autogrow row uses the same sample sizer with growth capped at 192 trees. Both include the sizing screen and final fit in fit time, and appear only when training rows exceed the sample-sizer activation threshold.
| Dataset | Model | RMSE ↓ | R² ↑ | Fit (s) ↓ | Predict (s) ↓ |
|---|---|---|---|---|---|
| California Housing 20,640 rows · 8 features |
fastforest | 0.50 | 0.81 | 0.11 | 0.003 |
| sklearn RF | 0.51 | 0.80 | 0.44 | 0.013 | |
| sklearn HistGBM | 0.47 | 0.83 | 0.96 | 0.006 | |
| Concrete Strength 1,030 rows · 8 features |
fastforest | 5.70 | 0.87 | 0.01 | 0.000 |
| sklearn RF | 5.46 | 0.88 | 0.06 | 0.013 | |
| sklearn HistGBM | 4.65 | 0.92 | 0.78 | 0.005 | |
| Diamonds 53,940 rows · 9 features |
fastforest | 545 | 0.98 | 0.13 | 0.008 |
| sklearn RF | 550 | 0.98 | 0.97 | 0.032 | |
| sklearn HistGBM | 541 | 0.98 | 1.27 | 0.018 | |
| Allstate Claims 188,318 rows · 130 features |
fastforest | 1,924 | 0.55 | 0.90 | 0.051 |
| AutoForest | 1,922 | 0.55 | 2.66 | 0.053 | |
| autogrow | 1,911 | 0.55 | 4.24 | 0.060 | |
| sklearn RF | timed out at 180s with 50 trees | ||||
| sklearn HistGBM | 1,861 | 0.58 | 4.29 | 0.362 | |
| Diabetes 130-US Hospitals 101,766 rows · 46 features |
fastforest | 2.20 | 0.45 | 0.35 | 0.024 |
| AutoForest | 2.19 | 0.45 | 0.73 | 0.023 | |
| autogrow | 2.19 | 0.45 | 1.28 | 0.026 | |
| sklearn RF | 2.20 | 0.45 | 5.17 | 0.158 | |
| sklearn HistGBM | 2.13 | 0.48 | 2.35 | 0.147 | |
| Blue Book for Bulldozers 412,698 rows · 52 features |
fastforest | 0.27 | 0.87 | 0.85 | 0.013 |
| sklearn RF | timed out | ||||
| sklearn HistGBM | 0.25 | 0.89 | 5.77 | 0.096 | |
| Walmart Store Sales 421,570 rows · 15 features |
fastforest | 3,613 | 0.97 | 0.39 | 0.025 |
| AutoForest | 2,795 | 0.98 | 2.42 | 0.021 | |
| autogrow | 2,730 | 0.98 | 6.78 | 0.051 | |
| sklearn RF | 5,028 | 0.95 | 13.53 | 0.110 | |
| sklearn HistGBM | 6,604 | 0.91 | 2.30 | 0.065 | |
| ASHRAE Great Energy Predictor III 20,216,100 rows · 15 features |
fastforest | 0.98 | 0.79 | 0.98 | 1.161 |
| AutoForest | 0.84 | 0.84 | 5.76 | 1.035 | |
| autogrow | 0.83 | 0.85 | 15.66 | 1.933 | |
| sklearn RF | timed out | ||||
| sklearn HistGBM | 1.43 | 0.55 | 28.75 | 0.856 | |
For mixed data, the sklearn benchmarks use a custom pipeline based on scikit-learn's official preprocessing guidance and examples: wholly numeric columns are parsed and median-imputed, categorical columns use one-hot encoding through 20 levels and target encoding above that, and HistGBM uses native categoricals through its 255-level limit. This numeric parsing is needed for sensible handling of raw CSV-like tables; otherwise the pipeline uses the documented sklearn behavior. fastforest requires no custom preprocessing and takes the original datasets directly. sklearn RF timed out on a smaller Allstate run, so its default configuration was not run. For validation, Blue Book uses its final 12,000 rows, Walmart uses a 12-week chronological holdout to match the competition's future-period forecasting setup, Rossmann uses its final six weeks, and ASHRAE uses December 2016.
| Dataset | Model | F1 acc ↑ | Log loss ↓ | Fit (s) ↓ | Proba (s) ↓ |
|---|---|---|---|---|---|
| Bank Marketing 45,211 rows · 16 mixed features |
fastforest | 0.75 | 0.20 | 0.07 | 0.008 |
| sklearn RF | 0.72 | 0.23 | 0.29 | 0.025 | |
| sklearn HistGBM | 0.76 | 0.20 | 1.37 | 0.026 | |
| Click Prediction Small 39,948 rows · 11 mixed features |
fastforest | 0.54 | 0.44 | 0.18 | 0.011 |
| sklearn RF | 0.54 | 0.44 | 0.47 | 0.027 | |
| sklearn HistGBM | 0.52 | 0.41 | 0.72 | 0.017 | |
| Statlog Shuttle 58,000 rows · 9 numeric features |
fastforest | 0.76 | 0.00 | 0.02 | 0.002 |
| sklearn RF | 0.85 | 0.00 | 0.21 | 0.014 | |
| sklearn HistGBM | 0.58 | 0.24 | 0.71 | 0.012 | |
| Airlines Delay 539,383 rows · 7 mixed features |
fastforest | 0.65 | 0.61 | 0.32 | 0.096 |
| AutoForest | 0.65 | 0.61 | 1.54 | 0.097 | |
| autogrow | 0.66 | 0.61 | 2.45 | 0.117 | |
| sklearn RF | 0.63 | 0.70 | 139.53 | 0.409 | |
| sklearn HistGBM | 0.64 | 0.62 | 2.18 | 0.095 | |
| HIGGS 1,000,000 rows · 28 numeric features |
fastforest | 0.72 | 0.54 | 0.98 | 0.090 |
| AutoForest | 0.72 | 0.54 | 3.81 | 0.067 | |
| autogrow | 0.73 | 0.53 | 6.88 | 0.130 | |
| sklearn RF | 0.73 | 0.53 | 27.68 | 0.672 | |
| sklearn HistGBM | 0.73 | 0.53 | 2.91 | 0.103 | |
| San Francisco Police Incidents 2,215,023 rows · 9 mixed features |
fastforest | 0.47 | 0.36 | 1.40 | 0.356 |
| sklearn RF | 0.55 | 0.37 | 24.16 | 1.894 | |
| sklearn HistGBM | 0.47 | 0.34 | 7.18 | 0.525 | |
| KDD Cup 1999 4,898,431 rows · 41 mixed features |
fastforest | 0.55 | 0.00 | 2.67 | 0.213 |
| AutoForest | 0.61 | 0.00 | 8.96 | 0.234 | |
| autogrow | 0.61 | 0.00 | 14.45 | 0.278 | |
| sklearn RF | 0.67 | 0.00 | 51.65 | 1.976 | |
| sklearn HistGBM | 0.37 | 0.68 | 29.93 | 2.259 |
Install the development dependencies and release build, then reproduce one dataset with:
pip install -e '.[dev]'
cargo build --release --bins
python tools/stage_binaries.py
maturin develop --release
python tools/accuracy.py --dataset californiaAvailable regression datasets are sgemm, california, concrete, diamonds, allstate, diabetes, bluebook, bluebook_raw, walmart, walmart_raw, and walmart_nodate. Classification choices are covertype, adult, bank, click, shuttle, airlines, higgs, sf_police, and kddcup99. Run one forest alone with --ff_only, --auto_only, or --rf_only, or reproduce all displayed results with:
for dataset in sgemm california concrete diamonds allstate diabetes; do
python tools/accuracy.py --dataset "$dataset"
done
for dataset in covertype adult bank click shuttle airlines higgs sf_police kddcup99; do
python tools/accuracy.py --dataset "$dataset"
done
python tools/accuracy.py --dataset walmart --ff_onlyFastForest fits a deterministic schema for every input column:
- Non-missing values are parsed as
float32when every value can be parsed and are otherwise treated as strings. Numeric columns sort numerically and other columns sort lexically. Numeric columns whose values are all integral retain that metadata so analysis displays them with no decimal places. - A constant column is discarded. Every other column becomes one zero-based rank in its sort order; binary columns are therefore ordinary boolean features.
- The default missing value is the empty value. Override it per column with
missing_values, using column names or indexes. Missing is encoded as a separate rank, and each split learns whether it belongs in its left or right child. No imputation or indicator column is added. By default, a column containing no training missing values rejects missing values during prediction; setallow_new_missing=Trueto route them to the larger child seen in the split's sampled rows. Entirely missing columns are discarded.
X = np.array([
["18", "red", ""],
["42", "blue", "3.5"],
["31", "green", "2.0"],
], dtype=object)
model = FastForest(missing_values={2: ""}).fit(X, [1, 4, 3])Binary columns with no missing values are checked for mutual exclusivity on at most 10,000 sampled training-pool rows. Compatible indicators are collapsed into one categorical feature when their bundle is active in more than half the sample. The fitted membership and order are saved with the model; importance, explanations, and partial dependence treat the bundle as one feature and column_info_ lists its members.
Date and time columns are detected by default from at most 200 random training-pool rows using a conservative list of common formats. Every sampled non-missing value must match; ambiguous day/month forms remain candidates until a value above 12 resolves them, with month-first used if they remain ambiguous. Detected formats are saved with the model and never inferred again during prediction. Date columns are expanded natively using the same parts as fastai's add_datepart: year, month, ISO week, day, day-of-week, day-of-year, month/quarter/year boundary flags, hour, minute, second, and Unix elapsed seconds. Constant parts are discarded automatically, while missing or unparsable date values produce ordinary missing date parts.
Set date_columns={} to disable detection, or provide explicit strftime formats to override it:
model = FastForest(date_columns={"saledate":"%m/%d/%Y %H:%M"}).fit(X, y)Ranking is a compact training representation, not a prediction-time requirement for numeric columns. After fitting, rank cutoffs are converted back to native numeric boundaries, so seen and unseen numeric values are compared directly without a rank lookup. Nonnumeric values are mapped through their fitted lexical ordering, with unseen values receiving their insertion rank. Missing numeric values remain NaN during native prediction and follow the direction stored in each split.
Python accepts pandas data frames, NumPy arrays, and Arrow tables, selects the bounded training pool first, converts only retained rows, and performs the bounded 200-row date-format check. The native CSV path likewise builds Arrow arrays only for retained rows, while Arrow IPC keeps its existing typed buffers. Full-column schema fitting and inference transformation then run in Rust behind the Arrow boundary, including numeric and lexical interpretation, missing values, categories, date expansion, and parallel column processing. The compact ranked training matrix and native-value prediction matrix remain internal implementation details.
Generated ranks and date parts remain internal. Feature importance, explanations, and partial-dependence results aggregate them back to the original column and display its original values. Fitted interpretations are available in model.column_info_.
For reproducible sklearn comparisons on the same raw dataframe, sklearn_preprocessor implements the policy used by the benchmark: wholly numeric columns are parsed and median-imputed, categorical columns are one-hot encoded through 20 levels and target encoded above 20, and explicitly supplied missing markers are converted to nulls.
from sklearn.ensemble import RandomForestRegressor
from sklearn.pipeline import make_pipeline
from fastforest import sklearn_preprocessor
preprocess = sklearn_preprocessor(X_train, missing_values={"age":"?"})
model = make_pipeline(preprocess, RandomForestRegressor(n_jobs=-1))
model.fit(X_train, y_train)Install the optional dependencies with pip install 'fastforest[sklearn]'.
Each regression tree draws min(floor(bootstrap_fraction * n_rows), bootstrap_max) training rows. Classification treats bootstrap_max as a per-output cap and therefore uses bootstrap_max * max(1, n_classes-1) total rows per tree. replacement=None adaptively samples with replacement below 10,000 regression rows or 40,000 classification rows, and otherwise without it; pass True or False to override this. When bootstrap_fraction=None, it resolves to 0.8 with OOB enabled and 1 otherwise. Fractions above 1 are supported with replacement; without replacement the maximum is 1. Pass bootstrap_max=None to disable the cap. At each node, the default histogram splitter:
- A node with fewer than
min_node_sizerows, or whose firstmax_node_samplessampled targets are equal, becomes a leaf. - A random contiguous window containing at most
max_node_samplesof the node's shuffled rows is selected. - The tree randomly selects the configured fraction of encoded features, with a minimum of one.
- For each selected feature, the sampled rows are sorted by their encoded rank and every distinct observed boundary is evaluated. Regression minimizes size-weighted sample standard deviation, shrinking each child mean toward its parent by a three-row prior. Classification uses tree-frequency-weighted entropy. Missing values occupy the final contiguous rank range: the ordinary pass leaves them right, and a second ordered pass tries them left only when that range is nonempty. These scores penalize poorly supported small children directly; the only hard requirement is that both children are nonempty.
- Every regression leaf predicts the mean target of all tree-sampled rows that reached it. A classification leaf stores their class-probability vector. Thus leaf fitting processes each tree's capped sample once in total; it does not route the whole dataset through every tree.
By default, forest size targets two million sampled rows across its trees: n_trees = clamp(ceil(2_000_000 / sampled_rows_per_tree), 32, 64). Set n_trees to override it. The standard regression cap resolves to 50 trees; Covertype's seven-class cap resolves to 32. Other defaults are minimum node size 8, all rows capped at 40,000 per output, 90% feature sampling for regression or 60% for classification, at most 320 evaluated rows per node, and a three-row regression split prior. Enabling OOB changes the default sampling fraction to 0.8 so every row can receive held-out predictions. Preprocessing and trees build in parallel over columns and trees respectively. Classification prediction divides rows into roughly four blocks per Rayon worker and calculates how many fitted trees fit in a conservative 512 KiB working-set budget, including nodes and leaf probabilities. It processes those cache-sized tree batches within each row block; small trees retain row locality, while large trees automatically become tree-major. Supplying seed makes the fitted forest deterministic regardless of parallel scheduling.
max_features accepts "sqrt" or a fraction in (0, 1]; its default is 0.9 for regression and 0.6 for classification.
FastForestClassifier.predict_proba averages the leaf probabilities over trees, while predict returns the corresponding original label. With OOB enabled, oob_decision_function_, oob_counts_, and OOB accuracy oob_score_ are available; oob_indices_ maps the bounded results to original training rows. Ordinary fitting remains bounded by the shared pool, per-output row cap, and max_node_samples rows per node.
The histogram splitter is the production default. The original random-cutoff search remains available as a simpler teaching implementation:
model = FastForest(random_splitter=True, seed=42).fit(X, y)
fixed = FastForest(max_features="sqrt", seed=42).fit(X, y)The histogram search randomly selects max_features, builds sparse target-statistic histograms from the node evaluation window, and checks every observed boundary for those features. The random splitter instead proposes random (feature, value) cutoffs, deduplicates them, and evaluates them on the same kind of node window. Its candidate count is controlled by cutoff_divisor; max_features is ignored when random_splitter=True.
The focused sweep tool takes comma-separated levels for every tree hyperparameter. The first value is the shared baseline and each later value creates one one-axis configuration. It compares an eight-tree batched OOB screen with ordinary resolved-tree fits on the dataset's canonical validation split, recording OOB, validation, and both training losses in one per-dataset CSV:
python tools/sweep.py --dataset californiaOOB calculation is opt-in with oob=True. After fitting:
oob_prediction_contains each training row's mean prediction from trees that did not sample that row.oob_counts_contains the number of contributing trees.- A row with no contributing tree has count zero and prediction
NaN. - Sampling without replacement at
bootstrap_fraction=1.0leaves no OOB rows, so all counts are zero and predictions areNaN.
Both attributes are None when OOB is disabled.
FastForest includes analysis tools with ordinary NumPy results. Data frames are accepted and supply feature names automatically; arrays use x0, x1, and so on. Sampling happens before Arrow conversion: permutation importance and feature relations use at most 5,000 rows, PDP/ICE uses 500, feature dependence uses 5,000, and drop-column importance uses at most 40,000 training and 5,000 validation rows by default. These limits are configurable through each function's sampling arguments. Plot methods import matplotlib only when called.
Use validation-set permutation importance by default. It measures the drop in model score after shuffling a feature without retraining:
importance = model.feature_importance(X_valid, y_valid)
importance.sorted()
importance.plot()Correlated features can substitute for one another and therefore look individually unimportant. Permute them together to measure their joint importance:
importance = model.feature_importance(X_valid, y_valid,
features={"location": ["latitude", "longitude"]})model.drop_column_importance(X_train, y_train, X_valid, y_valid) performs the slower complementary analysis: it refits the forest without each feature. It accepts the same features groups. model.split_importance() returns the nearly free, normalized training-time split-gain measure, but permutation or grouped permutation is preferable because split importance is biased by the available cutoffs and correlated predictors.
explanation = model.explain(X_valid[:3])
explanation.row(0) # (feature, observed value, contribution), strongest first
explanation.plot(0)
tree_predictions = model.predict_trees(X_valid)
prediction_std = model.predict_std(X_valid)For every row, prediction = bias + contributions.sum(). Contributions telescope through each tree's decision path and are then averaged across trees. They explain this forest's computation, not causality; correlated features can redistribute contributions between themselves.
year = model.partial_dependence(X_train, "year_made")
year.plot() # average PDP plus individual conditional-expectation lines
year.plot(centered=True)
year.plot(clusters=5) # representative centered ICE curves
interaction = model.partial_dependence(X_train, ["year_made", "sale_year"])
interaction.plot()
enclosure = model.partial_dependence(X_train,
{"enclosure": ["enclosure_ac", "enclosure_erops", "enclosure_orops"]})Partial dependence repeatedly replaces the selected feature values and averages the resulting predictions. ICE retains the individual prediction lines. These plots describe the fitted model rather than a causal intervention, and highly correlated features can produce unrealistic synthetic rows.
from fastforest import feature_dependence,feature_relations
relations = feature_relations(X_train)
relations.groups(threshold=0.2)
relations.plot()
relations.plot_dendrogram()
dependence = feature_dependence(X_train)
dependence.predictability # validation R² for predicting each feature from the others
dependence.plot() # which other features provide that predictive informationfeature_relations uses tie-aware Spearman correlation and average linkage implemented directly with NumPy. feature_dependence detects nonlinear redundancy by treating each feature in turn as a target, fitting a small forest from the remaining features, and measuring grouped prediction and permutation dependence.
The project is locally installed with maturin until it joins the aai-ws workspace:
cargo build --release --bins
python tools/stage_binaries.py
maturin develop
cargo test
pytest -qFor performance work, build the extension in release mode and run the benchmark:
maturin develop --release
python tools/bench.pyCompare accuracy and timings against sklearn's random forest and histogram GBM on one fixed California Housing split:
python tools/accuracy.pyThe displayed results live in tools/results/. After updating those CSVs, regenerate every table—including summary projections, displayed-value ties, formatting, links, and rowspans—with python tools/mk_readme.py. Edit prose in README.tmpl; README.md is generated.
Use --dataset concrete for the smaller Concrete Compressive Strength regression dataset, or --dataset sgemm for the 241,600-row SGEMM GPU Kernel Performance dataset. Each model/dataset combination runs in an isolated process with a three-minute timeout; process startup and input transfer are excluded from reported timings.
Use --ff_only with --min_node_size, --bootstrap_fraction, --bootstrap_max, --replacement, --max_node_samples, and --cutoff_divisor for focused FastForest experiments. These spellings come directly from the call_parse function parameters.