Search results for

“MLX”

76 results found

Post

Replies

Boosts

Views

Activity

Reply to MLX support on swift playground
Thanks for asking about this. I tried adding MLX Swift as a package to an app playground project in Swift Playground. I could not find a way to get it installed. None of the versions I tried could be added. Please file a report with Feedback Assistant: https://feedbackassistant.apple.com Please post the Feedback number here so I can check it.
Topic: Machine Learning & AI SubTopic: Core ML Tags:
4w
Reply to Is anyone working on jax-metal?
Still broken as of early 2026 in my testing. For JAX workloads on Apple Silicon I've moved to MLX entirely — the API is different but the Metal backend actually works and gets regular updates. For anything that must stay in JAX, CPU fallback is unfortunately the only reliable path on macOS right now.
Topic: Machine Learning & AI SubTopic: General Tags:
Apr ’26
Reply to Is anyone working on jax-metal?
I'm also interested in this. Apple Silicon is an exciting hardware platform for ML and we need guidance from Apple how it envisions the future ecosystem. Is there going to be more openness and support of the major ML frameworks (incl. JAX), or is jax-metal an abandoned tech demo and we're all meant to use MLX more or less exclusively? The latter scenario would be incredibly unfortunate.
Topic: Machine Learning & AI SubTopic: General Tags:
Aug ’25
Reply to Differences between cloud and local models in Xcode Intelligence
I was surprised not to see a local model option after installing the Xcode 27 beta. I haven't watched any of the coding assistant videos yet, (very much not interested in cloud-based AI providers) but I am also curious about whether MLX has been found to be just not as good as the cloud-based providers, or whether there is some other reason Apple decided not to include a local-model option.
Jun ’26
Reply to Can't install tensorflow-metal on M3 Apple Silicon
Thanks for these replies! I'll try them both today or tomorrow. I was able to get a fresh install to work on a different MacBook Air M2. Although simple tf/keras/gpu test scripts required several edits to even run and display versions and available devices! I've seen a comment on yt that the reason I can't find answers is because M3 users likely prefer the apple mlx libraries over tensorflow due to unified memory support. Thoughts?
Topic: App & System Services SubTopic: Hardware Tags:
Apr ’24
Reply to Differences between cloud and local models in Xcode Intelligence
To fully utilize local models in Xcode 27 beta 6 you need three things: A MLX model from 🤗Hugging Face (https://huggingface.co/models?library=mlx&sort=trending) An inference server, I'm using oLMX (https://omlx.ai) A tool using agent, I use OpenCode (https://opencode.ai) There is lots of info on how to configure OpenCode to use oLMX IMPORTANT Xcode 27 Beta 5 and later requires that the Agent executable be signed or Xcode crashes. Every time you update OpenCode you will need to resign the new executable Self Sign OpenCode # locate you opencode which opencode # codesign it codesign --force -s - /Users/gdunham/.opencode/bin/opencode # verify it codesign --verify --verbose /Users/gdunham/.opencode/bin/opencode # later update opencode opencode upgrade Multiple Models with OpenCode The way to use multiple models with OpenCode in Xcode 27, is to create a custom agent for each model and use environmental variables to specify the model.
4d
Reply to Will Apple Intelligence Support Third-Party LLMs or Custom AI Agent Integrations?
Thank you for the response and for pointing me toward MLX — I’ll definitely dive deeper into it. I understand the limitations around sharing roadmap details, and I’m looking forward to WWDC25 for any related announcements. Thanks again! — Aishwarya Dekhane
Replies
Boosts
Views
Activity
May ’25
Reply to Tensor Flow Metal 1.2.0 on M2 Fails to converge on common toy models
Thanks for the tip! I'll have to try MLX out later. Right now I need some results. I'm taking a course and a full week behind because all the data and models that I generated in the previous week is now suspect.
Topic: Machine Learning & AI SubTopic: Core ML Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to Looking for a prebuilt TensorFlow Lite C++ library (libtensorflowlite) for macOS M1/M2
Hello, We don't offer something that specific so we're wondering if you've considered the Tensorflow Plugin for Metal. We also offer Metal-cpp if you prefer pure C++ to Obj-C++. Another framework you may want to consider for ML is MLX.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’25
Reply to Official One-Click Local LLM Deployment for 2019 Mac Pro (7,1) Dual W6900X
If your goal is inference, Apple Silicon with unified memory sidesteps these driver issues entirely. I've been loading 30B+ models via MLX on an M2 Pro — no PCIe bottleneck, no VRAM split, no driver compatibility fights. Might be worth comparing the cost of a Mac Studio vs the time spent debugging ROCm on the 2019 Pro.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Will mps support metal 4 new features for machine learning?
Hello, We need some more details to help us understand your questions. Is mps introduced website a reference to Metal Performance Shaders? With respect to PyTorch, are you asking if MPS-accelerated PyTorch has been updated to use Metal 4? Separately, have you considered MLX for machine learning optimization?
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Compatibility issue of TensorFlow-metal with PyArrow
Hi, Thank you for pointing me out to MLX, it's definitely a good option for developing new projects. However, PyArrow is a dependency for several packages. I went over the error, and there is a bug in the backend cpp code. I am not sure if you want me to report that here: Feedback Assistant.
Replies
Boosts
Views
Activity
May ’25
Reply to MLX support on swift playground
Thanks for asking about this. I tried adding MLX Swift as a package to an app playground project in Swift Playground. I could not find a way to get it installed. None of the versions I tried could be added. Please file a report with Feedback Assistant: https://feedbackassistant.apple.com Please post the Feedback number here so I can check it.
Topic: Machine Learning & AI SubTopic: Core ML Tags:
Replies
Boosts
Views
Activity
4w
Reply to Is anyone working on jax-metal?
Still broken as of early 2026 in my testing. For JAX workloads on Apple Silicon I've moved to MLX entirely — the API is different but the Metal backend actually works and gets regular updates. For anything that must stay in JAX, CPU fallback is unfortunately the only reliable path on macOS right now.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to After loading my custom model - unsupportedTokenizer error
Tokenizer breakage across mlx versions is a recurring pain point — the tokenizer factory gets updated without guaranteed backward compat for custom-fused models. Check if tokenizer_config.json in your fused model specifies a tokenizer_class that 2.29.1 still recognizes. Manually setting the tokenizer type in LLMModelFactory registration usually gets around it.
Replies
Boosts
Views
Activity
Apr ’26
Reply to Tensor Flow Metal 1.2.0 on M2 Fails to converge on common toy models
I have M2 Max and faced similar issues ( not resolved fully yet ). but thing that helped me progress was different version of tensorflow and pythons ( generally 3.13.2) performed best , and tensorflow 2.16 give a shot , or only MLX then is option :-( pip install tensorflow-macos 2.16 Downside is when you try coremltools it won’t convert to .mlmodels
Topic: Machine Learning & AI SubTopic: Core ML Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to Is anyone working on jax-metal?
I'm also interested in this. Apple Silicon is an exciting hardware platform for ML and we need guidance from Apple how it envisions the future ecosystem. Is there going to be more openness and support of the major ML frameworks (incl. JAX), or is jax-metal an abandoned tech demo and we're all meant to use MLX more or less exclusively? The latter scenario would be incredibly unfortunate.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Sharing a Swift port of Gemma 4 for mlx-swift-lm — feedback welcome
Solid work — 12-14 tok/s on A-series with 4-bit is respectable. 341-392 MB resident on 7.4 GB does leave thin margins though. Have you profiled whether MLX is placing any matmuls on ANE, or is this pure GPU? In my experience with Whisper-scale models the GPU path is more predictable but ANE helps with battery if the ops map cleanly.
Replies
Boosts
Views
Activity
Apr ’26
Reply to Differences between cloud and local models in Xcode Intelligence
I was surprised not to see a local model option after installing the Xcode 27 beta. I haven't watched any of the coding assistant videos yet, (very much not interested in cloud-based AI providers) but I am also curious about whether MLX has been found to be just not as good as the cloud-based providers, or whether there is some other reason Apple decided not to include a local-model option.
Replies
Boosts
Views
Activity
Jun ’26
Reply to Can't install tensorflow-metal on M3 Apple Silicon
Thanks for these replies! I'll try them both today or tomorrow. I was able to get a fresh install to work on a different MacBook Air M2. Although simple tf/keras/gpu test scripts required several edits to even run and display versions and available devices! I've seen a comment on yt that the reason I can't find answers is because M3 users likely prefer the apple mlx libraries over tensorflow due to unified memory support. Thoughts?
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Apr ’24
Reply to Differences between cloud and local models in Xcode Intelligence
To fully utilize local models in Xcode 27 beta 6 you need three things: A MLX model from 🤗Hugging Face (https://huggingface.co/models?library=mlx&sort=trending) An inference server, I'm using oLMX (https://omlx.ai) A tool using agent, I use OpenCode (https://opencode.ai) There is lots of info on how to configure OpenCode to use oLMX IMPORTANT Xcode 27 Beta 5 and later requires that the Agent executable be signed or Xcode crashes. Every time you update OpenCode you will need to resign the new executable Self Sign OpenCode # locate you opencode which opencode # codesign it codesign --force -s - /Users/gdunham/.opencode/bin/opencode # verify it codesign --verify --verbose /Users/gdunham/.opencode/bin/opencode # later update opencode opencode upgrade Multiple Models with OpenCode The way to use multiple models with OpenCode in Xcode 27, is to create a custom agent for each model and use environmental variables to specify the model.
Replies
Boosts
Views
Activity
4d