Update model names to human-readable format for presentation (#447)#472
Merged
ctr-lelanchelianTT merged 2 commits intomainfrom Feb 12, 2026
Merged
Conversation
nvukobratTT
approved these changes
Feb 10, 2026
Contributor
nvukobratTT
left a comment
There was a problem hiding this comment.
Few small comments for changes I spot. Approving
3279174 to
738428e
Compare
### Ticket closes tenstorrent/tt-xla#2970 ### Problem description Currently, model architecture and variant name are more in the form of encoding rather than the actual name. We should update them to represent human-readable names used for model presentation purposes ### What's changed This PR updates them to use human-readable naming conventions. As part of this change, the model variant names have been corrected, and in some places where the ModelVariant class incorrectly used author names, those have been fixed as well. This aligns with the guidelines specified in the [README](https://github.com/tenstorrent/tt-forge-models#:~:text=Always%20use%20a%20dedicated%20ModelVariant%20enum%20class%20with%20a%20DEFAULT_VARIANT%20class%20attribute) . I have tested the affected models individually, and the corresponding logs are attached for reference.
738428e to
f6dd9f6
Compare
1 task
1 task
ctr-pmuruganTT
added a commit
to tenstorrent/tt-xla
that referenced
this pull request
Feb 16, 2026
### Ticket Ref : [Nightly failure](https://github.com/tenstorrent/tt-xla/actions/runs/21969404262/job/63467192440#step:17:223) ### Problem description Whisper model is failing with an error in nightly because of a recent naming convention [update](tenstorrent/tt-forge-models#472) error is `AttributeError: 'Seq2SeqModelOutput' object has no attribute 'logits'` ### What's changed * updated the latest variant names as per new convention
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ticket
closes tenstorrent/tt-xla#2970
Problem description
Currently, model architecture and variant name are more in the form of encoding rather than the actual name. We should update them to represent human-readable names used for model presentation purposes
What's changed
This PR updates them to use human-readable naming conventions. As part of this change, the model variant names have been corrected, and in some places where the ModelVariant class incorrectly used author names, those have been fixed as well. This aligns with the guidelines specified in the
README . I have tested the affected models individually, and the corresponding logs are attached for reference.