mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 01:17:26 +08:00
|
||
---|---|---|
.. | ||
CMakeLists.txt | ||
eval_mlp.cpp | ||
eval_mlp.py | ||
README.md | ||
train_mlp.cpp | ||
train_mlp.py |
Setup
Install MLX:
pip install mlx>=0.22
Build the C++ examples:
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
Run
Eval MLP
Run the Python script to export the eval function:
python eval_mlp.py
Then run the C++ program to import and run the function:
./build/eval_mlp
The Python and C++ programs should output the same result.
Train MLP
Run the Python script to export the model initialization and training functions:
python train_mlp.py
Then run the C++ program to import and run the functions:
./build/train_mlp
The Python and C++ programs should output the same results.