Aria AI Operations Research Portfolio
Collection
Enterprise OR, optimization, and decomposition demos by Aria AI • 136 items • Updated
Multi-head meta-model for optimization solver portfolio selection — predicts best solver, configuration, runtime, optimality gap, and feasibility probability from 18 instance features.
Ensemble calibrated scoring (LightGBM / CatBoost / Random Forest / Learning-to-Rank style) with expert-calibrated weights. No training required at inference time.
| Head | Output |
|---|---|
| Solver rank | Top-1 solver recommendation + full ranking |
| Runtime | Predicted solve time (seconds) |
| Gap | Predicted optimality gap (%) |
| Feasible | Probability of finding feasible solution |
| Config | Auto-tuned solver parameters |
General (7) + Graph (5) + Problem-specific (6) — see instance feature dataset.
cp_sat, highs, cbc, scip, glpk, gurobi, minizinc, alns
time_limit_sec, num_search_workers, presolve, cut_strategy, search_branching, heuristic_frequency, neighborhood_size, initial_solution
from huggingface_hub import hf_hub_download
import json
weights = json.load(open(hf_hub_download(
"alirezaaminzadeh/solverport-selection-model",
"selection_weights.json",
)))
config = json.load(open(hf_hub_download(
"alirezaaminzadeh/solverport-selection-model",
"config.json",
)))
Apache 2.0