Dullard's College Football - Week 3, 2006

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Otaking

Diamond Member
Mar 13, 2000
5,219
0
0
OMG we are worse than Navy?!!!! TEH NOES!! :( :( :(

But I will admit we looked horrible against Ohio State, and our penalties were nothing to brag about against Rice.
 

dullard

Elite Member
May 21, 2001
25,982
4,592
126
Originally posted by: Feldenak
That 7-3 score in the Auburn/LSU game tanked both teams Win Rating, didn't it?
It doesn't use absolute scores, it uses score differences. Thus a 7-3 game is exactly the same as a 47-43 game. I suppose I could program it to treat them differently, but I haven't yet.
 

Feldenak

Lifer
Jan 31, 2003
14,090
2
81
Originally posted by: dullard
Originally posted by: Feldenak
That 7-3 score in the Auburn/LSU game tanked both teams Win Rating, didn't it?
It doesn't use absolute scores, it uses score differences. Thus a 7-3 game is exactly the same as a 47-43 game. I suppose I could program it to treat them differently, but I haven't yet.

Ahh, ok. Just wondering how your program looked at a score like that.
 

dullard

Elite Member
May 21, 2001
25,982
4,592
126
Originally posted by: b0mbrman
Forgive me if it seems obvious to everyone else, but what are your algorithms?
The algorithm is below. We want to know a team's rating, R. It is calculated by solving the following equation:

  • R = A*W + (B-1)*L + sum[C(SD)*SD] + sum[D(R)*R]
where
  • R is the rating for a team.
  • A is a weighting factor for winning.
  • W is the number of wins that the team had.
  • B is a weighting factor for losing.
  • L is the number of losses that the team had.
  • C(SD) is a weighting factor for the score difference. I like to make this a function of the score difference. Use any formula you like for this function. This is where you can be quite creative. Or just use a constant. If score is meaningless to you, then C(SD) = 0.
  • SD is the score difference in each game. If Ohio St. beat Iowa by 31 to 6, then for Ohio St. use a SD of 31-6 = 25, for Iowa use 6-31 = -25.
  • D(R) is a weighting factor for the schedule difficulty. For simplicity, start with D(R) = 1.
  • R is the rating for the teams you played.
The B-1 is a fudge factor to please Anandtech. They wanted me to weight losses more than I was. So I put in the -1 part. I get better predictions by just using B*L, but then it ranks a lot of 1 loss teams above 0 loss teams for example. People get pissed. I fudged for Anandtech and people were happier with the results. I guess all that matters really is that you have 0 or 1 loss in the season. Nothing else is important since we have a 1 game playoff for the championship.

There are multiple ways to solve that equation. The easiest way to describe is to assume a rating, R, of all teams. Then plug it into the equation for each team to find an updated rating, R. Repeat until converged and the rating values don't change anymore.

To get the weighting factors - A, B, C, and D - I do a little optimization. In fact, I do two completely different optimizations.
1) Win Rating. I vary the weighting factors until the results in the poll have the largest percent of teams ranked ahead of teams that they beat in the last game. Since there are many combinations of the weighting factors that give the same result, I choose one specific combination. That specific combination has the smallest error in the score of the games from last week that still maintains my main goal of having the largest percent of teams ranked ahead of teams they beat.

2) Score Rating. I just toss out the whole "winners must be ahead of teams they beat" idea. And I choose the combinations of A, B, C, and D that simply gives scores that most closely match last week's scores. This later rating is easier in that generally there is just one combination that is optimal. In the case of a tie, I go with the option that also has the highest winning percentage.

So the tie breaker for #1 is the main goal of #2. The tie breaker for #2 is the main goal for #1.
 

Tom

Lifer
Oct 9, 1999
13,293
1
76
Which rating do you think is most predictive of wins and losses, just for fun ?

And how would I use the numbers, just compare the values ?

 

saahmed

Golden Member
Oct 5, 2005
1,388
1
0
Originally posted by: NeoV
you shouldn't even bother posting this until like week 6, these rankings are just plain silly.

What has Iowa done to get a ranking that high? They barely beat an awful Syracuse team, and didn't exactly dominate an average Iowa St team - so what gives?

Michigan beating ND was that much better in your formula that Ohio St beating Texas?

EDIT - just read that it is stricly going by teams that are 3-0 and those teams will have higher rankings - again, why bother?


Against Syracuse Drew Tate was out, they were playing with a senior QB who was starting for the first time. Yeh, the Iowa St. game is always tough. Iowa always struggles in September, they always tend to get a lot better after the first few weeks. I think theyll give OSU a tough time and could possibly come out with the win.
 

dullard

Elite Member
May 21, 2001
25,982
4,592
126
Originally posted by: Tom
Which rating do you think is most predictive of wins and losses, just for fun ?

And how would I use the numbers, just compare the values ?
They are both fairly similar for prediction values.

To use the numbers, just compare the values. If one team has a higher value than the other team, then the one with the higher value should win. The amount they should win by can be estimated by subtracting the values. However, teams tend to get ~3 bonus points for being at home. That may be enough to switch the winner around in the prediction.