I've created simple page for tracking rating of Slovak shogi players.
We started to use it from our last session - few of our club game
results are stored there. Rating system used is ELO similar but bit
simpler to one used by FESA. While I was coding, handicaps become
impassable obstacle. Do you know how FESAs rating system cope with
this problem please?
Are handicaps assigned according to grade system mentioned on FESA
page? E.g. 15th vs 5th kyu => 2 pieces. Providing it's true, is this
"table" available somewhere?
I also found table proposing standard handicap according to rating
burrowed somewhere in shogi.net ( http://www.shogi.net/mso2000/mso-shogi-rules.html#anchor2236759
)
H ERD
L 100
B 200
R 250
RL 350
2P 450
4P 550
5P 750
6P 1000
Is this used by FESA? Or it was just rule of MSO at 2000?
Thank you for your advice.
Cheers,
Adam
PS: Rating page url is http://rating.shogi.sk if you are interested
but there's not that much to see, yet.
The current "Suggested Handicaps" at the New York Shogi Club are as follows:
0-20 Furigoma [Even]
21-60 Sente [Move]
61-180 Kyo [Lance]
181-300 Kaku [Bishop]
301-420 Hissha [Rook]
421-540 Hissha-Kyo [Rook+Lance]
541-660 Ni-Mai [2P]
661-780 Yon-Mai [4P]
781-900 Go-Mai [5P]
901-1020+ Roku-Mai. [6P]
Regards,
George
Hi,
thanks for the answer, Larry.
> As for the table, my recollection is that the rank values are 0.8, 2.0,
> 2.8, 3.6, and 4.8 for lance thru two piece handicap, but I'm not so sure
> about this and I've asked for confirmation. These values are in the ratio of
> 2-5-7-9-12, which were the rank values of the handicaps in pro play prior to
> WWII.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "SHOGI-L" group.
To post to this group, send email to sho...@googlegroups.com
To unsubscribe from this group, send email to shogi-l+u...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/shogi-l?hl=en
-~----------~----~----~----~------~----~------~--~---
----- Original Message -----From: Adam SkalnySent: Wednesday, July 15, 2009 3:07 AMSubject: Re: Shogi rating and ELO
Hi,
thank you for help Larry and Bernhard it seems a bit clearer now ^_^
Seems a bit complicated but I'd like to have handicaps as an option in rating system because handicaps
So algorithm is basically:
(I'll use game of players P1 (rating 835, bishop handicap) vs P2 (rating 403) as an example)
1) Get handicap giver rating.
E.g. P1 => 835points
2) Look at table in paragraph 2 of http://www.shogi.net/fesa/rating.intro and calculate players decimal grade
E.g. 10th kyu is from 800 to 880 thus result is 10 - 35 / (880 - 800).
I believe we use the midpoints, so that 10 kyu is exactly 840, and so 835 would be (10 + 5/80) kyu or 10.06 kyu.
Which means that player P1 has grade of 9.57kyu
3) Get handicap grade penalty and subtract it from handicap givers decimal grade
E.g. B => 1.5 according to Bernhard's code fragment. Thus effective grade of P1 is 9.57 + 1.5 = 10.07kyu
4) Convert back grade to rating using table from step 2.
E.g. 11th kyu is from 720 to 800 so effective rating of P1 is 10.07kyu => 800 + (800 - 720) * 0.07 = 805points
Here too the conversion back uses the midpoint as the rating equivalent of the rank.
5) Finally calculate ELO rating difference using diff = k * (1 - res ^ ... ) formula.
Is this correct?
Except as noted above, I believe it is correct.
@George: Thank you for table update I'll use that one instead of FESA suggested one.
Note that George's table is not a table of "fair" handicaps but of suggested ones. If you use his table the stronger player will still be expected to win well over 50% of the time, maybe around 60% or more.
Once again thank you for help.
Cheers,
Adam
Larry