-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
feat(studio): MLX training tab on Apple Silicon (LoRA / full FT, VLM, export) #5265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6c9345a
462fb93
c588fe6
4cc55b7
48632f8
2abf4cb
1bf5853
4e5b229
728d08c
902fa4f
297adec
c420327
e654ac1
a91f4f2
77f53af
67fdd3f
f1673fc
a2f2f40
f08953d
3dba5ec
e1f096f
4e42bfd
de85036
a258a23
be99b87
9b811ad
a253b0f
07714f3
9b49c3c
fd14a7d
dca214d
4a425a4
0ba5366
8b014ec
e0ab0b1
8405e32
dfdcf5d
1a9dbe1
b42426e
7c91739
477bd7e
a0d8822
2f4e038
bb23d6f
a9edbfa
f71656a
4d58b95
d38f9bc
f08b021
300a58e
b511646
fc0298c
ae8b5d6
f0c00eb
72d17a5
0e62b46
47d992b
59b4232
b76e0eb
5d51e08
d799e2e
f1a378c
8c51668
a1cd51c
760714c
1856e32
f40554d
6dfb9db
b1d5215
bf56f80
0b1baa1
dc0ca40
7b3b20d
55bc5b7
7fdd4ce
7d4e896
48ec7db
605bfaf
df0cc6e
a159966
6468373
cad3597
4940597
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -228,3 +228,4 @@ setup_leo.sh | |
| server.pid | ||
| *.log | ||
| package-lock.json | ||
| llama.cpp/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,7 +89,7 @@ huggingfacenotorch = [ | |
| ] | ||
| huggingface = [ | ||
| "unsloth[huggingfacenotorch]", | ||
| "unsloth_zoo>=2026.5.1", | ||
| "unsloth_zoo>=2026.4.8", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This dependency now allows Useful? React with 👍 / 👎. |
||
| "torchvision", | ||
| "unsloth[triton]", | ||
| ] | ||
|
|
@@ -579,7 +579,7 @@ colab-ampere-torch220 = [ | |
| "flash-attn>=2.6.3 ; ('linux' in sys_platform)", | ||
| ] | ||
| colab-new = [ | ||
| "unsloth_zoo>=2026.5.1", | ||
| "unsloth_zoo>=2026.4.8", | ||
| "packaging", | ||
| "tyro", | ||
| "transformers>=4.51.3,!=4.52.0,!=4.52.1,!=4.52.2,!=4.52.3,!=4.53.0,!=4.54.0,!=4.55.0,!=4.55.1,!=4.57.0,!=4.57.4,!=4.57.5,!=5.0.0,!=5.1.0,<=5.5.0", | ||
|
|
||
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This block is labeled optional, but because
install.shruns withset -e, a transientuv pip install mlx-vlmfailure aborts the entire installer on macOS arm64. That turns an optional VLM capability into a hard install dependency and can prevent Studio setup from completing for users who only need text/chat flows.Useful? React with 👍 / 👎.