We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import subprocess import sys command = [ sys.executable, '-m', 'mlx_vlm.generate', '--model', 'qnguyen3/nanoLLaVA', '--max-tokens', '100', '--temp', '0.0', '--image', "http://images.cocodataset.org/val2017/000000039769.jpg", ] result = subprocess.run(command, capture_output=True, text=True) caption = result.stdout print(caption)
Currently: Gives input including template, output and speeds
Proposed: with --verbose False only generate the output in the terminal, which makes it easier to interpret the results for further use.
--verbose False
The text was updated successfully, but these errors were encountered:
Hey @s-smits
That makes a lot of sense.
I will add it to the next release I'm working on
Sorry, something went wrong.
How about this?
However, streaming is disabled, so you'll wait for the final answer.
This is done ✅ on the latest release !
#10
No branches or pull requests
Currently:
Gives input including template, output and speeds
Proposed:
with
--verbose False
only generate the output in the terminal, which makes it easier to interpret the results for further use.The text was updated successfully, but these errors were encountered: