Machine learning framework optimized for Apple silicon chips.
Array framework for Apple silicon
$ pip install mlx$ python -c "import mlx.core as mx; print(mx.metal.is_available())"$ python -c "import mlx.core as mx; a = mx.array([1, 2, 3]); print(a * 2)"$ python train_model.py --framework mlx$ python -c "import mlx.core as mx; M = mx.random.normal((100, 100)); print(mx.linalg.norm(M))"