Mistral 3 Fast Inference#289
Merged
Merged
Conversation
| # Find missing attributes (in original but not in new) | ||
| missing_in_new = orig_attrs - new_attrs | ||
| missing_in_new = missing_in_new - {'hf_device_map'} | ||
| missing_in_new = missing_in_new - {'hf_device_map', 'source_cls'} |
Member
There was a problem hiding this comment.
if this is a set, wrap in set ie set({...})
Collaborator
Author
There was a problem hiding this comment.
Oh this is already a set right? I don't think we need to do a wrap
|
|
||
| # Get layer names from config | ||
| layer_templates = get_model_layer_config(return_non_layered=False) | ||
| layer_names = sum(layer_templates.values(), []) |
Collaborator
Author
There was a problem hiding this comment.
Oh basically this is like join but I wanted a single deflated list. So sum everything with empty list and you get a single list of everything :)
Collaborator
Author
There was a problem hiding this comment.
its like a=[1,2,3]; b = [4,5,6] and doing a+b which is [1,2,3,4,5,6] or something
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.
No description provided.