slyfox7777777 wrote:Does anyone think that they can explain to me how the ranking system works for draft? I see that in the draft folder of the res there's a rankings file which seems to have a pick order for every format, but the ranking system which comes up when you go into an actual draft and look at that category is some completely different number which ranks from 0.0001 (best) to 1.0 (worst,) and seems to have absolutely nothing to do with the rank list. Some of the 0 to 1 rankings of some of the drafts are just terrible, such as, in Origins, you can consistently get any of the flip planeswalkers very late or even wheel them (they are ranked around .75 if I remember correctly, even though almost all of them land very high on the text ranking list,) Vintage Masters has no rankings at all, and Tempest Remastered just generally has some very good cards listed as .97 or near that.
Is there any chance that there is some sort of improvement to this system in the works, or is there something I can do manually to change the pick orders to my liking?
Here's how the rankings work:
We grab from an external source (draft.bestiaire.org) the rankings they have collated of where people have drafted cards. If they don't have the rankings (like in the case of VMA and TPR) we just don't have any rankings. I'm guessing someone "self-ranked" to get Tempest Remastered, I think I remember someone trying to come up with "ok" rankings just to have something. Looking quickly at the list, it's just ordered by Rarity and then Alpha, so not very robust.
The rankings file is saved as you see it 1 through however many cards in that set. When we ingest the format into our system we take the rank in the set, and divide by the amount of cards in the set. So 1/233 = .004. The lower the better. "#239|
Time Ebb|C|TPR" -> #<Rank>|<Card Name>|<Rarity>|<Set Code>
I actually fixed the issue with the Flip Planeswalkers recently, for some reason draft.bestiaire.org doesn't actually list them correctly in their rankings file, and according to the
stats on their website, they have never been picked. If you want the most up-to-date rankings file you can grab it here:
http://svn.slightlymagic.net/websvn/fil ... nkings.txtBut yea, if you want to create your own rankings feel free. I think it should be pretty apparent the format they are in based on the file. If you do create ones for VMA or TPR please post them so we can add it to the rankings file for all of the other users. I wouldn't worry too much about getting the spots "perfect" anything within 10 ranks of each other should be pretty negligible, I haven't looked at the code in a while, but the draft-code has a threshold for determining which is the card to pick, along with some other "Decision points"
Did that help?
Edit: Here's the line in the draft code
// roughly equivalent to 25 ranks in a core set, or 15 ranks in a small set
private static final double TAKE_BEST_THRESHOLD = 0.1;