Every model in the landscape figure is one dot with a tooltip. That is enough to compare them and not enough to use one. These cards are the other half: the same ten fields for every model, in the same order, so you can read one without having read any of the others.
The colour on the tokenization row is the same colour the model carries on the landscape chart, which makes each card a zoom-in on that figure rather than a separate thing to learn.
Two of the fields matter more than the rest. Headline result gives the metric and the condition it was measured under, because the number on its own does not tell you much. What it does not do is the field summaries usually leave out, and it is often the one that tells you whether the model fits your problem.
On GROVER specifically, the card’s headline result is not really the point of the paper. The PromScan number is good, MCC 63% against 52% for the next best human model, but GROVER exists to answer a different question: if DNA has no spaces, what are its words?
The answer is a vocabulary the genome chose. Byte-pair encoding starts from the four bases and repeatedly merges the most frequent pair into a longer token, so common patterns become long words and rare ones stay short. Run it for too few cycles and the tokens are uninformative; too many and performance falls off again. GROVER settled on 600 cycles and a 601-token vocabulary, with tokens from one base up to 16 and an average length of 4.07.
How that number was chosen is the part worth copying. Ranking candidate vocabularies on a biological task would have quietly biased the design toward biology already known. So the authors used next-k-mer prediction instead, which asks only whether the model has a sense of sequence context, and picked the vocabulary that did best at it.
What the model then learned is readable back out of the embeddings without supervision: promoters, exons and introns, repeat elements including which strand they sit on, chromatin state, and lexical ambiguity, where the same token means different things in different places.
Numbers are from the Nature Machine Intelligence paper. Sizes are the largest reported checkpoint, and release is the first public preprint, matching the conventions used on the landscape figure.