Close Menu
  • Home
  • AI Models
    • DeepSeek
    • xAI
    • OpenAI
    • Meta AI Llama
    • Google DeepMind
    • Amazon AWS AI
    • Microsoft AI
    • Anthropic (Claude)
    • NVIDIA AI
    • IBM WatsonX Granite 3.1
    • Adobe Sensi
    • Hugging Face
    • Alibaba Cloud (Qwen)
    • Baidu (ERNIE)
    • C3 AI
    • DataRobot
    • Mistral AI
    • Moonshot AI (Kimi)
    • Google Gemma
    • xAI
    • Stability AI
    • H20.ai
  • AI Research
    • Allen Institue for AI
    • arXiv AI
    • Berkeley AI Research
    • CMU AI
    • Google Research
    • Microsoft Research
    • Meta AI Research
    • OpenAI Research
    • Stanford HAI
    • MIT CSAIL
    • Harvard AI
  • AI Funding & Startups
    • AI Funding Database
    • CBInsights AI
    • Crunchbase AI
    • Data Robot Blog
    • TechCrunch AI
    • VentureBeat AI
    • The Information AI
    • Sifted AI
    • WIRED AI
    • Fortune AI
    • PitchBook
    • TechRepublic
    • SiliconANGLE – Big Data
    • MIT News
    • Data Robot Blog
  • Expert Insights & Videos
    • Google DeepMind
    • Lex Fridman
    • Matt Wolfe AI
    • Yannic Kilcher
    • Two Minute Papers
    • AI Explained
    • TheAIEdge
    • Matt Wolfe AI
    • The TechLead
    • Andrew Ng
    • OpenAI
  • Expert Blogs
    • François Chollet
    • Gary Marcus
    • IBM
    • Jack Clark
    • Jeremy Howard
    • Melanie Mitchell
    • Andrew Ng
    • Andrej Karpathy
    • Sebastian Ruder
    • Rachel Thomas
    • IBM
  • AI Policy & Ethics
    • ACLU AI
    • AI Now Institute
    • Center for AI Safety
    • EFF AI
    • European Commission AI
    • Partnership on AI
    • Stanford HAI Policy
    • Mozilla Foundation AI
    • Future of Life Institute
    • Center for AI Safety
    • World Economic Forum AI
  • AI Tools & Product Releases
    • AI Assistants
    • AI for Recruitment
    • AI Search
    • Coding Assistants
    • Customer Service AI
    • Image Generation
    • Video Generation
    • Writing Tools
    • AI for Recruitment
    • Voice/Audio Generation
  • Industry Applications
    • Finance AI
    • Healthcare AI
    • Legal AI
    • Manufacturing AI
    • Media & Entertainment
    • Transportation AI
    • Education AI
    • Retail AI
    • Agriculture AI
    • Energy AI
  • AI Art & Entertainment
    • AI Art News Blog
    • Artvy Blog » AI Art Blog
    • Weird Wonderful AI Art Blog
    • The Chainsaw » AI Art
    • Artvy Blog » AI Art Blog
What's Hot

OpenAI Gives Us a Glimpse of How It Monitors for Misuse on ChatGPT

IBM integrates Anthropic Claude into AI IDE and other tools

Microsoft retires AutoGen and debuts Agent Framework to unify and govern enterprise AI agents

Facebook X (Twitter) Instagram
Advanced AI News
  • Home
  • AI Models
    • OpenAI (GPT-4 / GPT-4o)
    • Anthropic (Claude 3)
    • Google DeepMind (Gemini)
    • Meta (LLaMA)
    • Cohere (Command R)
    • Amazon (Titan)
    • IBM (Watsonx)
    • Inflection AI (Pi)
  • AI Research
    • Allen Institue for AI
    • arXiv AI
    • Berkeley AI Research
    • CMU AI
    • Google Research
    • Meta AI Research
    • Microsoft Research
    • OpenAI Research
    • Stanford HAI
    • MIT CSAIL
    • Harvard AI
  • AI Funding
    • AI Funding Database
    • CBInsights AI
    • Crunchbase AI
    • Data Robot Blog
    • TechCrunch AI
    • VentureBeat AI
    • The Information AI
    • Sifted AI
    • WIRED AI
    • Fortune AI
    • PitchBook
    • TechRepublic
    • SiliconANGLE – Big Data
    • MIT News
    • Data Robot Blog
  • AI Experts
    • Google DeepMind
    • Lex Fridman
    • Meta AI Llama
    • Yannic Kilcher
    • Two Minute Papers
    • AI Explained
    • TheAIEdge
    • The TechLead
    • Matt Wolfe AI
    • Andrew Ng
    • OpenAI
    • Expert Blogs
      • François Chollet
      • Gary Marcus
      • IBM
      • Jack Clark
      • Jeremy Howard
      • Melanie Mitchell
      • Andrew Ng
      • Andrej Karpathy
      • Sebastian Ruder
      • Rachel Thomas
      • IBM
  • AI Tools
    • AI Assistants
    • AI for Recruitment
    • AI Search
    • Coding Assistants
    • Customer Service AI
  • AI Policy
    • ACLU AI
    • AI Now Institute
    • Center for AI Safety
  • Business AI
    • Advanced AI News Features
    • Finance AI
    • Healthcare AI
    • Education AI
    • Energy AI
    • Legal AI
LinkedIn Instagram YouTube Threads X (Twitter)
Advanced AI News
Mozilla Foundation AI

Apple quietly releases MLX AI framework to build foundation AI models

By Advanced AI EditorAugust 6, 2025No Comments4 Mins Read
Share Facebook Twitter Pinterest Copy Link Telegram LinkedIn Tumblr Email
Share
Facebook Twitter LinkedIn Pinterest Email


Apple quietly releases MLX AI framework

Apple’s machine learning research team has quietly introduced and released a new machine learning framework called MLX, designed to optimize the development of machine learning models on Apple Silicon. The new framework has been specifically designed and engineered to enhance the way developers engage with machine learning on their devices and has been inspired by frameworks such as PyTorch, Jax, and ArrayFire.

The difference from these frameworks and MLX is the unified memory model. Arrays in MLX live in shared memory. Operations on MLX arrays can be performed on any of the supported device types without performing data copies. Currently supported device types are the CPU and GPU.

What is Apple MLX?

MLX is a NumPy-like array framework designed for efficient and flexible machine learning on Apple silicon, brought to you by Apple machine learning research. The Python API closely follows NumPy with a few exceptions. MLX also has a fully featured C++ API which closely follows the Python API. The main differences between MLX and NumPy are:

Composable function transformations: MLX has composable function transformations for automatic differentiation, automatic vectorization, and computation graph optimization.
Lazy computation: Computations in MLX are lazy. Arrays are only materialized when needed.
Multi-device: Operations can run on any of the supported devices (CPU, GPU, …)

The MLX framework is a significant advancement, especially for those working with Apple’s M-series chips, which are known for their powerful performance in AI tasks. This new framework is not only a step forward for Apple but also for the broader AI community, as it is now available as open-source, marking a shift from Apple’s typically closed-off software development practices. MLX is available on PyPI. All you have to do to use MLX with your own Apple silicon computer is  : pip install mlx

Apple MLX AI framework

The MLX framework is designed to work in harmony with the M-series chips, including the advanced M3 chip, which boasts a specialized neural engine for AI operations. This synergy between hardware and software leads to improved efficiency and speed in machine learning tasks, such as processing text, generating images, and recognizing speech. The framework’s ability to work with popular machine learning platforms like PyTorch and JAX is a testament to its versatility. This is made possible by the MLX data package, which eases the process of managing data and integrating it into existing workflows.

Developers can access MLX through a Python API, which is as user-friendly as NumPy, making it accessible to a wide range of users. For those looking for even faster performance, there is also a C++ API that takes advantage of the speed that comes with lower-level programming. The framework’s innovative features, such as composable function transformation and lazy computation, lead to code that is not only more efficient but also easier to maintain. Additionally, MLX’s support for multiple devices and a unified memory model ensures that resources are optimized across different Apple devices.

Apple MLX

Apple is committed to supporting developers who are interested in using MLX. They have provided a GitHub repository that contains sample code and comprehensive documentation. This is an invaluable resource for those who want to explore the capabilities of MLX and integrate it into their machine learning projects.

The introduction of the MLX framework is a clear indication of Apple’s commitment to advancing machine learning technology. Its compatibility with the M-series chips, open-source nature, and ability to support a variety of machine learning tasks make it a potent tool for developers. The MLX data package’s compatibility with other frameworks, coupled with the availability of both Python and C++ APIs, positions MLX to become a staple in the machine learning community.

The Apple MLX framework’s additional features, such as composable function transformation, lazy computation, multi-device support, and a unified memory model, further enhance its appeal. As developers begin to utilize the resources provided on GitHub, we can expect to see innovative machine learning applications that fully leverage the capabilities of Apple Silicon. Here are some other articles you may find of interest on the subject of AI models :

Filed Under: Technology News, Top News





Latest Geeky Gadgets Deals

Disclosure: Some of our articles include affiliate links. If you buy something through one of these links, Geeky Gadgets may earn an affiliate commission. Learn about our Disclosure Policy.



Source link

Follow on Google News Follow on Flipboard
Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
Previous ArticlePerplexity can help you figure out where to eat, and book your table too
Next Article PetSmart hires former Walmart exec as chief commercial officer
Advanced AI Editor
  • Website

Related Posts

Near Foundation Plans AI Delegates to Solve DAO Voter Apathy

October 3, 2025

x402 Foundation AI micropayments by Coinbase, Cloudflare

September 24, 2025

Ethereum Foundation Launches AI Team, Underscoring Network’s Future Priorities

September 15, 2025

Comments are closed.

Latest Posts

Basquiat Work on Paper Headline’s Phillips’ Frieze Week Sales

Charges Against Isaac Wright ‘to Be Dropped’ After His Arrest by NYPD

What the Los Angeles Wildfires Taught the Art Insurance Industry

Musée d’Orsay Puts Manet on (Mock) Trial for Obscenity

Latest Posts

OpenAI Gives Us a Glimpse of How It Monitors for Misuse on ChatGPT

October 7, 2025

IBM integrates Anthropic Claude into AI IDE and other tools

October 7, 2025

Microsoft retires AutoGen and debuts Agent Framework to unify and govern enterprise AI agents

October 7, 2025

Subscribe to News

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

Recent Posts

  • OpenAI Gives Us a Glimpse of How It Monitors for Misuse on ChatGPT
  • IBM integrates Anthropic Claude into AI IDE and other tools
  • Microsoft retires AutoGen and debuts Agent Framework to unify and govern enterprise AI agents
  • Wall Street analysts explain how AMD’s own stock will pay for OpenAI’s billions in chip purchases 
  • Alignment Tipping Process: How Self-Evolution Pushes LLM Agents Off the Rails – Takara TLDR

Recent Comments

  1. digi 995 ammo abyss on Foundation AI: Cisco launches AI model for integration in security applications
  2. DannyhougS on Foundation AI: Cisco launches AI model for integration in security applications
  3. Lindseyror on Google DeepMind Taught Itself to Play Minecraft
  4. Bridgetwoort on C3 AI and Arcfield Announce Partnership to Accelerate AI Capabilities to Serve U.S. Defense and Intelligence Communities
  5. Reece on China Using DeepSeek to Design Warplanes: Report

Welcome to Advanced AI News—your ultimate destination for the latest advancements, insights, and breakthroughs in artificial intelligence.

At Advanced AI News, we are passionate about keeping you informed on the cutting edge of AI technology, from groundbreaking research to emerging startups, expert insights, and real-world applications. Our mission is to deliver high-quality, up-to-date, and insightful content that empowers AI enthusiasts, professionals, and businesses to stay ahead in this fast-evolving field.

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

LinkedIn Instagram YouTube Threads X (Twitter)
  • Home
  • About Us
  • Advertise With Us
  • Contact Us
  • DMCA
  • Privacy Policy
  • Terms & Conditions
© 2025 advancedainews. Designed by advancedainews.

Type above and press Enter to search. Press Esc to cancel.