Using mjai-reviewer for analysing tournament games (different rules) #158
-
It's clear from the description on mjai.ekyu.moe that mjai-reviewer is to be used only for "standard games with common rules". After manually editing the tenhou.net/6 JSON (decreasing the starting points to 25k instead of 30k), I was met with the "negative points" error, since some games would end shortly if it wasn't for the increased starting points.
Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It is a limitation of Mortal. Regarding negative points, Mortal cannot encode points outside the range of 0 to 100000, and any values beyond this range will be clipped. This is a hard limit. As for the sum of points, this is a soft limit. If the sum is not 100000, Mortal may still work but in an undefined manner, as it still assumes the sum is 100000.
For negative points, it's unlikely without redesigning and retraining. You could try adjusting the points to fit within Mortal's accepted range. |
Beta Was this translation helpful? Give feedback.
It is a limitation of Mortal.
Regarding negative points, Mortal cannot encode points outside the range of 0 to 100000, and any values beyond this range will be clipped. This is a hard limit.
As for the sum of points, this is a soft limit. If the sum is not 100000, Mortal may still work but in an undefined manner, as it still assumes the sum is 100000.
For negative points, it's unlikely without redesigning and retraining. You could try adjusting the points to fit within Mortal's accepted range.