File size: 392 Bytes
ffdd9aa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [project]
name = "embedding-quant-repro"
version = "1.0.0"
description = "Reproduce the MLX embedding quantization sweep and ZeroGPU controls"
requires-python = ">=3.11,<3.14"
dependencies = [
"huggingface-hub>=1.4,<2",
"numpy>=2.0,<3",
]
[project.optional-dependencies]
mlx = [
"mlx==0.32.0",
"mlx-lm==0.31.3",
]
zerogpu = [
"gradio-client>=1.13,<2",
]
[tool.uv]
package = false
|