What does this revision-consistency check print?

from Hugging Face
Transformers 5.16.1 · huggingface_hub 1.30.0 · Python 3.14 beginner 2 min

What does this revision-consistency check print?

Python
revisions = {"tokenizer": "a1c9", "model": "a1c9"}
print(len(set(revisions.values())) == 1)

revisions["model"] = "b7e2"
print(len(set(revisions.values())) == 1)
Open in playground
Report an error