User Tools

Site Tools


chess:programming:database

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
chess:programming:database [2022/01/11 10:29] peterchess:programming:database [2022/01/11 10:50] (current) peter
Line 10: Line 10:
 |Elo Diff|8|0-255|0-255=w, 256-511=b.| |Elo Diff|8|0-255|0-255=w, 256-511=b.|
 |Elo Diff Neg|1|0-1|0=positive, 1=negative.| |Elo Diff Neg|1|0-1|0=positive, 1=negative.|
-|%WDL|9|0-511|0-99=Win, 100-199=Draw, 200-299=Loss. Unused Values 300-511.|+|%WDL|9|0-511|0-99=Percentage Win, 100-199=Percentage Draw, 200-299=Percentage Loss. From White Perspective. Unused Values 300-511.|
 |Count|12|0-4095|Rolling.| |Count|12|0-4095|Rolling.|
-|Weight-ELO|8|0-255|A measure for the likelihood of a win after that particular move has been made. default is to use elo changes.|+|Weight|8|0-255|A measure for the likelihood of a win after that particular move has been made. 0-127=w, 128-255=b. Default is to use ELO changes to calculate this.| 
  
 <WRAP info> <WRAP info>
Line 83: Line 84:
 Range is 0-255. Range is 0-255.
  
-Default is to use elo changes.+Default is to use ELO changes per this formula:
  
 <code> <code>
-  P1 = (1.0 / (1.0 + std::pow(10.0, ((rating1 - rating2) / 400.0)) ) ); +  white_probability = (1.0 / (1.0 + std::pow(10.0, ((rating1 - rating2) / 400.0)) ) ); 
-  P2 = 1 - P1;+  black_probability = 1 - white_probability; 
 + 
 +  if (rating1 > rating2) 
 +  { 
 +    result=-black_probability/20; 
 +  } 
 +  else 
 +  if (rating1 < rating2) 
 +  { 
 +    res=white_probability/20; 
 +  }
 </code> </code>
 +
 +<WRAP info>
 +**NOTE:**  A bespoke formula could be used to update this weighting.
 +
 +  * Instead of using the k factor/value of 400 that the original formula uses, this is changed to be 100 + ((score difference) * 2).
 +  * So the max k factor would be 140 (20-0 is the biggest win, multiply by 2, add to 100).
 +</WRAP>
 +
  
 ---- ----
  
 [[Chess:Programming:Database|Database]] [[Chess:Programming:Database|Database]]
chess/programming/database.1641896970.txt.gz · Last modified: 2022/01/11 10:29 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki