You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text_input=Kino.Input.textarea("Text",default: "numbat, forest, high quality, detailed, digital art")seed_input=Kino.Input.number("Seed")form=Kino.Control.form([text: text_input,seed: seed_input],submit: "Run")frame=Kino.Frame.new()Kino.listen(form,fn%{data: %{text: text,seed: seed}}->Kino.Frame.render(frame,Kino.Text.new("Running..."))output=Nx.Serving.run(serving,%{prompt: text,seed: seed})forresult<-output.resultsdoKino.Image.new(result.image)end|>Kino.Layout.grid(columns: 2)|>then(&Kino.Frame.render(frame,&1))end)Kino.Layout.grid([form,frame],boxed: true,gap: 16)
I've tried:
enabling/disabling LIBMLX_ENABLE_JIT
installing XCode instead of command line tools
enabling LIBMLX_BUILD and build from sources
updating MacOS from 14 to 15
changing number of steps. Either black, grey or very-very blurred results.
My main concern:
I'm newbie to NN world. So I want reliable environment for learning & experimenting. And I want to avoid Python when I can and use LiveBook. I have set it up on my Linux PC with Nvidia GPU and it works well. With MacOS I was able to run ollama with big models, use BERT in LiveBook, but image generation doesn't work. I spent 10+ hours trying to fix it and this issue is manifestation of my despair =)
The text was updated successfully, but these errors were encountered:
I have a MacBook with M3 Pro and I'm trying to utilize GPU for Neural Network tasks with LiveBook & Bumblebee.
DistillBERT (question answering) works fine, but when I try to use "text-to-image" I always get results like this.
But if use 3090 RTX via EXLA and the same model with the same settings I get normal images.
I'm using LiveBook. My setup:
And Bumble-related codeblocks:
And UI:
I've tried:
LIBMLX_ENABLE_JIT
LIBMLX_BUILD
and build from sourcesMy main concern:
I'm newbie to NN world. So I want reliable environment for learning & experimenting. And I want to avoid Python when I can and use LiveBook. I have set it up on my Linux PC with Nvidia GPU and it works well. With MacOS I was able to run ollama with big models, use BERT in LiveBook, but image generation doesn't work. I spent 10+ hours trying to fix it and this issue is manifestation of my despair =)
The text was updated successfully, but these errors were encountered: