How to ACTUALLY USE a saved model in Weka!
Wednesday, October 25th, 2006This was a frusterating 30 minutes of searching to find out how to get Weka to do something that really should have been obvious.
In this data mining competition I was trying out, they give you a final test set without the actual answers and your job is to predict that the actual values are, and well, send them in. I did manage to get it figured out after a lot of searching. So I’m back on my path to winning
So here’s the easiest way to use a model to simply get its predictions without training it again:
If you right-click on the result list you’ll get a popup
with options including “Load model” which allows you to load
some saved model; and there is another option “Re-evaluate
model on the current test-set”; obviously before you can
do that, you will have to load some test-set: tick “Supplied
test set” and then the “Set” button and select your file …
If that quoted answer above still isn’t clear, allow me to summarize:
1. You open Weka and get that little window with the four buttons.
2. Click on Explorer.
3. load any old bogus data set you’re not going to need just so it allows you to get to the classifier tab.
4. Then under test options you choose “supplied test set” and point it to the data you want it to make predictions on. (Note: this 5. must have all of the same attributes, in the same order that you trained your model on.).
6. Finally right click in the result list area and select load model.
7. Point it to your saved model.
8. Next right click to model you just loaded and tell it to re-evaluate on current test set.
Here’s what your output might look like:

You know, all frusteration aside, Weka really is an incredibly useful, free program, and perhaps I should be glad the developers are spending time on the machine learning side of development instead of my personal needs…
My search terms (see the frusteration build):
- weka run a model on test data
- weka use a model
- weka + “use a model”
- weka + (get OR output) + predictions + without + training
- weka + “without training”
- weka don’t have actual
- weka cli
- weka + sucks
- “weka sucks”
Here is more information about saving models in Weka.
[tags]Weka, machine learning, data mining, predictions[/tags]