-
Notifications
You must be signed in to change notification settings - Fork 27.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Aria #34157
Add Aria #34157
Conversation
fd11549
to
9c0b59a
Compare
@ArthurZucker I have this error that we discussed in
|
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
cc @Cyrilvallez as well! |
df4a92d
to
0dabca3
Compare
utils/modular_model_converter.py
Outdated
self._maybe_add_function_to_body( | ||
dependency, body, self.all_definitions[dependency], parent=parent | ||
) | ||
if dependency not in builtin_functions and dependency in self.all_definitions: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ArthurZucker I added the second part of the check here to pass the test, it does not seem to create any missed imports so I let it but maybe it has unwanted consequences.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice then thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ha nice @aymeric-roucher, indeed I forgot about built-ins when adding this! Thanks for correcting it! If you only check for if dependency in self.all_definitions
, it should be enough though no? Built-ins will never be added to self.all_definitions
during visit, so it would avoid having the large list
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's done! ✅
fea2ddf
to
e5038aa
Compare
8908df0
to
7922635
Compare
68996e3
to
c0f5774
Compare
6402834
to
461d14d
Compare
a197f4b
to
137eedb
Compare
137eedb
to
9c3dd8a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
e76357b
to
d2303f8
Compare
7580372
to
8a5dd4b
Compare
8a5dd4b
to
76ee868
Compare
eda1f63
to
956cea2
Compare
I'm unable to run the processor of this model in vLLM:
Perhaps we need to add the |
This also happens with vanilla Transformers. Let me open a new issue on this. Edit: Opened #35768 |
What does this PR do?
Add rhymes-ai/Aria to transformers!
@ArthurZucker