-
Notifications
You must be signed in to change notification settings - Fork 801
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
Support for LLaVA #88
Conversation
varshith15
commented
Jul 26, 2024
•
edited
Loading
edited
- Single Machine
- Sharding
- Generate function integration
- Clean up code (deduplication)
Looks good so far! Assigned you on the bounty https://docs.google.com/spreadsheets/d/1cTCpTIp48UnnIvHeLEUNg1iMy_Q6lRybgECSFCoVJpE/edit |
hey @AlexCheema
|
We should merge #87 before this as there's some relevant changes. |
With changes from #87, we should try to re-use as much as possible from |
Is the |
NVM this works fine :) |
if self.shard.start_layer <= i <= self.shard.end_layer: | ||
self.layers.append(TransformerBlock(config=config)) | ||
else: | ||
self.layers.append(IdentityBlock()) |
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.
this isnt needed right @AlexCheema ?
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 is with the new convention, I think
also thanks thanks for pushing the other changes @AlexCheema , they make a lot of sense |
It would be great to hook this up to |
@AlexCheema done PRM |
Woah! Incredible work. You even figured out how to generate the grpc service. I’m catching a flight now but will be able to look properly once I arrive. I can fix up a small UI. email me at [email protected] for the bounty. really awesome work, you rock @varshith15 |
…m url async, use chatgpt-compatible convention for images
Changed a few things, added support for image upload to tiny chat. |
Support for LLaVA