Introduction
Learn what Sumo Oracle does and how the two models work together.
Quickstart
Set up your R environment and run your first prediction in minutes.
Concepts
Understand the data format, model architecture, and evaluation approach.
Reference
Explore the full function reference for all helper utilities.
How it works
Prepare your data
Provide a CSV file with wrestler attributes for each match: weight, age, height, and number of wins. Mark completed matches with a result (
0 or 1), and leave result blank for matches you want to predict.Train the models
Sumo Oracle reads your CSV, separates historical matches from undecided ones, and fits both a logistic regression (GLM) and a neural network to the historical data.
Generate predictions
Run
predict.glm() and predict() against the undecided matches. Each model outputs a directional prediction: the wrestler on the left wins, or the wrestler on the right wins.