nexaai 1.0.29__cp310-cp310-macosx_14_0_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (580) hide show
  1. nexaai/__init__.py +99 -0
  2. nexaai/_stub.cpython-310-darwin.so +0 -0
  3. nexaai/_version.py +4 -0
  4. nexaai/asr.py +68 -0
  5. nexaai/asr_impl/__init__.py +0 -0
  6. nexaai/asr_impl/mlx_asr_impl.py +93 -0
  7. nexaai/asr_impl/pybind_asr_impl.py +127 -0
  8. nexaai/base.py +39 -0
  9. nexaai/binds/__init__.py +7 -0
  10. nexaai/binds/asr_bind.cpython-310-darwin.so +0 -0
  11. nexaai/binds/common_bind.cpython-310-darwin.so +0 -0
  12. nexaai/binds/cpu_gpu/libggml-base.dylib +0 -0
  13. nexaai/binds/cpu_gpu/libggml-cpu.so +0 -0
  14. nexaai/binds/cpu_gpu/libggml-metal.so +0 -0
  15. nexaai/binds/cpu_gpu/libggml.dylib +0 -0
  16. nexaai/binds/cpu_gpu/libmtmd.dylib +0 -0
  17. nexaai/binds/cpu_gpu/libnexa_cpu_gpu.dylib +0 -0
  18. nexaai/binds/cpu_gpu/libnexa_plugin.dylib +0 -0
  19. nexaai/binds/cv_bind.cpython-310-darwin.so +0 -0
  20. nexaai/binds/diarize_bind.cpython-310-darwin.so +0 -0
  21. nexaai/binds/embedder_bind.cpython-310-darwin.so +0 -0
  22. nexaai/binds/libnexa_bridge.dylib +0 -0
  23. nexaai/binds/llm_bind.cpython-310-darwin.so +0 -0
  24. nexaai/binds/metal/libnexa_plugin.dylib +0 -0
  25. nexaai/binds/metal/py-lib/ml.py +888 -0
  26. nexaai/binds/metal/py-lib/mlx_audio/__init__.py +0 -0
  27. nexaai/binds/metal/py-lib/mlx_audio/codec/__init__.py +1 -0
  28. nexaai/binds/metal/py-lib/mlx_audio/codec/models/__init__.py +5 -0
  29. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  30. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  31. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  32. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  33. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  34. nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  35. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/__init__.py +1 -0
  36. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/base.py +228 -0
  37. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/dac.py +285 -0
  38. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  39. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  40. nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  41. nexaai/binds/metal/py-lib/mlx_audio/codec/models/encodec/__init__.py +1 -0
  42. nexaai/binds/metal/py-lib/mlx_audio/codec/models/encodec/encodec.py +777 -0
  43. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/__init__.py +1 -0
  44. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/mimi.py +286 -0
  45. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  46. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  47. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  48. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  49. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  50. nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  51. nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/__init__.py +1 -0
  52. nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/model.py +260 -0
  53. nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/model_v2.py +383 -0
  54. nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/utils.py +122 -0
  55. nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/__init__.py +1 -0
  56. nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/attention.py +97 -0
  57. nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/layers.py +306 -0
  58. nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/snac.py +154 -0
  59. nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/vq.py +135 -0
  60. nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/__init__.py +1 -0
  61. nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/mel.py +33 -0
  62. nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/vocos.py +359 -0
  63. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/__init__.py +0 -0
  64. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  65. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_descript.py +109 -0
  66. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_encodec.py +58 -0
  67. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_mimi.py +22 -0
  68. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_s3.py +25 -0
  69. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_snac.py +40 -0
  70. nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_vocos.py +93 -0
  71. nexaai/binds/metal/py-lib/mlx_audio/server.py +525 -0
  72. nexaai/binds/metal/py-lib/mlx_audio/sts/__init__.py +0 -0
  73. nexaai/binds/metal/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  74. nexaai/binds/metal/py-lib/mlx_audio/sts/voice_pipeline.py +327 -0
  75. nexaai/binds/metal/py-lib/mlx_audio/stt/__init__.py +0 -0
  76. nexaai/binds/metal/py-lib/mlx_audio/stt/generate.py +174 -0
  77. nexaai/binds/metal/py-lib/mlx_audio/stt/models/__init__.py +0 -0
  78. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  79. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  80. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/attention.py +187 -0
  81. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/audio.py +76 -0
  82. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  83. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  84. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  85. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  86. nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  87. nexaai/binds/metal/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  88. nexaai/binds/metal/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  89. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/__init__.py +1 -0
  90. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/audio.py +82 -0
  91. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/decoding.py +742 -0
  92. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/timing.py +329 -0
  93. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  94. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/whisper.py +862 -0
  95. nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/writers.py +268 -0
  96. nexaai/binds/metal/py-lib/mlx_audio/stt/tests/test_models.py +381 -0
  97. nexaai/binds/metal/py-lib/mlx_audio/stt/utils.py +195 -0
  98. nexaai/binds/metal/py-lib/mlx_audio/tts/__init__.py +1 -0
  99. nexaai/binds/metal/py-lib/mlx_audio/tts/audio_player.py +120 -0
  100. nexaai/binds/metal/py-lib/mlx_audio/tts/convert.py +71 -0
  101. nexaai/binds/metal/py-lib/mlx_audio/tts/generate.py +449 -0
  102. nexaai/binds/metal/py-lib/mlx_audio/tts/models/__init__.py +0 -0
  103. nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/__init__.py +4 -0
  104. nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/bark.py +528 -0
  105. nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/isftnet.py +12 -0
  106. nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/pipeline.py +442 -0
  107. nexaai/binds/metal/py-lib/mlx_audio/tts/models/base.py +84 -0
  108. nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/__init__.py +1 -0
  109. nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/audio.py +287 -0
  110. nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/config.py +256 -0
  111. nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/dia.py +592 -0
  112. nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/layers.py +870 -0
  113. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/__init__.py +3 -0
  114. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/attention.py +180 -0
  115. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  116. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/conformer.py +247 -0
  117. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  118. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  119. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  120. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  121. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  122. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  123. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/indextts.py +412 -0
  124. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/mel.py +37 -0
  125. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/normalize.py +294 -0
  126. nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  127. nexaai/binds/metal/py-lib/mlx_audio/tts/models/interpolate.py +108 -0
  128. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  129. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  130. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  131. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/modules.py +659 -0
  132. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  133. nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/voice.py +113 -0
  134. nexaai/binds/metal/py-lib/mlx_audio/tts/models/llama/__init__.py +3 -0
  135. nexaai/binds/metal/py-lib/mlx_audio/tts/models/llama/llama.py +324 -0
  136. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/__init__.py +1 -0
  137. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  138. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  139. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/outetts.py +255 -0
  140. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  141. nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/tokens.py +36 -0
  142. nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/__init__.py +3 -0
  143. nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/attention.py +195 -0
  144. nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/sesame.py +633 -0
  145. nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  146. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/__init__.py +1 -0
  147. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  148. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/bicodec.py +269 -0
  149. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  150. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  151. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  152. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  153. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  154. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  155. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  156. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  157. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  158. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  159. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  160. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  161. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  162. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  163. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  164. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/spark.py +382 -0
  165. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  166. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/file.py +221 -0
  167. nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  168. nexaai/binds/metal/py-lib/mlx_audio/tts/tests/__init__.py +0 -0
  169. nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_base.py +66 -0
  170. nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_convert.py +173 -0
  171. nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_interpolate.py +88 -0
  172. nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_models.py +974 -0
  173. nexaai/binds/metal/py-lib/mlx_audio/tts/utils.py +337 -0
  174. nexaai/binds/metal/py-lib/mlx_audio/utils.py +237 -0
  175. nexaai/binds/metal/py-lib/mlx_audio/version.py +1 -0
  176. nexaai/binds/metal/py-lib/profiling.py +239 -0
  177. nexaai/binds/nexaml/libfftw3.3.dylib +0 -0
  178. nexaai/binds/nexaml/libfftw3f.3.dylib +0 -0
  179. nexaai/binds/nexaml/libggml-base.dylib +0 -0
  180. nexaai/binds/nexaml/libggml-cpu.so +0 -0
  181. nexaai/binds/nexaml/libggml-metal.so +0 -0
  182. nexaai/binds/nexaml/libggml.dylib +0 -0
  183. nexaai/binds/nexaml/libmp3lame.0.dylib +0 -0
  184. nexaai/binds/nexaml/libmpg123.0.dylib +0 -0
  185. nexaai/binds/nexaml/libnexa-mm-process.dylib +0 -0
  186. nexaai/binds/nexaml/libnexa-sampling.dylib +0 -0
  187. nexaai/binds/nexaml/libnexa_plugin.dylib +0 -0
  188. nexaai/binds/nexaml/libnexaproc.dylib +0 -0
  189. nexaai/binds/nexaml/libomp.dylib +0 -0
  190. nexaai/binds/nexaml/libqwen3-vl.dylib +0 -0
  191. nexaai/binds/nexaml/libqwen3vl-vision.dylib +0 -0
  192. nexaai/binds/rerank_bind.cpython-310-darwin.so +0 -0
  193. nexaai/binds/vlm_bind.cpython-310-darwin.so +0 -0
  194. nexaai/common.py +106 -0
  195. nexaai/cv.py +95 -0
  196. nexaai/cv_impl/__init__.py +0 -0
  197. nexaai/cv_impl/mlx_cv_impl.py +91 -0
  198. nexaai/cv_impl/pybind_cv_impl.py +124 -0
  199. nexaai/diarize.py +80 -0
  200. nexaai/diarize_impl/__init__.py +1 -0
  201. nexaai/diarize_impl/pybind_diarize_impl.py +125 -0
  202. nexaai/embedder.py +73 -0
  203. nexaai/embedder_impl/__init__.py +0 -0
  204. nexaai/embedder_impl/mlx_embedder_impl.py +118 -0
  205. nexaai/embedder_impl/pybind_embedder_impl.py +96 -0
  206. nexaai/image_gen.py +141 -0
  207. nexaai/image_gen_impl/__init__.py +0 -0
  208. nexaai/image_gen_impl/mlx_image_gen_impl.py +292 -0
  209. nexaai/image_gen_impl/pybind_image_gen_impl.py +85 -0
  210. nexaai/llm.py +98 -0
  211. nexaai/llm_impl/__init__.py +0 -0
  212. nexaai/llm_impl/mlx_llm_impl.py +271 -0
  213. nexaai/llm_impl/pybind_llm_impl.py +238 -0
  214. nexaai/log.py +92 -0
  215. nexaai/mlx_backend/asr/__init__.py +12 -0
  216. nexaai/mlx_backend/asr/interface.py +122 -0
  217. nexaai/mlx_backend/common/__init__.py +0 -0
  218. nexaai/mlx_backend/common/utils.py +25 -0
  219. nexaai/mlx_backend/cv/__init__.py +0 -0
  220. nexaai/mlx_backend/cv/generate.py +195 -0
  221. nexaai/mlx_backend/cv/interface.py +162 -0
  222. nexaai/mlx_backend/cv/main.py +81 -0
  223. nexaai/mlx_backend/cv/modeling/pp_ocr_v4.py +1736 -0
  224. nexaai/mlx_backend/embedding/__init__.py +0 -0
  225. nexaai/mlx_backend/embedding/generate.py +333 -0
  226. nexaai/mlx_backend/embedding/interface.py +617 -0
  227. nexaai/mlx_backend/embedding/main.py +173 -0
  228. nexaai/mlx_backend/embedding/modeling/__init__.py +0 -0
  229. nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py +399 -0
  230. nexaai/mlx_backend/image_gen/__init__.py +1 -0
  231. nexaai/mlx_backend/image_gen/generate_sd.py +244 -0
  232. nexaai/mlx_backend/image_gen/interface.py +82 -0
  233. nexaai/mlx_backend/image_gen/main.py +281 -0
  234. nexaai/mlx_backend/image_gen/stable_diffusion/__init__.py +306 -0
  235. nexaai/mlx_backend/image_gen/stable_diffusion/clip.py +116 -0
  236. nexaai/mlx_backend/image_gen/stable_diffusion/config.py +65 -0
  237. nexaai/mlx_backend/image_gen/stable_diffusion/model_io.py +386 -0
  238. nexaai/mlx_backend/image_gen/stable_diffusion/sampler.py +105 -0
  239. nexaai/mlx_backend/image_gen/stable_diffusion/tokenizer.py +100 -0
  240. nexaai/mlx_backend/image_gen/stable_diffusion/unet.py +460 -0
  241. nexaai/mlx_backend/image_gen/stable_diffusion/vae.py +274 -0
  242. nexaai/mlx_backend/llm/__init__.py +0 -0
  243. nexaai/mlx_backend/llm/generate.py +149 -0
  244. nexaai/mlx_backend/llm/interface.py +764 -0
  245. nexaai/mlx_backend/llm/main.py +68 -0
  246. nexaai/mlx_backend/ml.py +888 -0
  247. nexaai/mlx_backend/mlx_audio/__init__.py +0 -0
  248. nexaai/mlx_backend/mlx_audio/codec/__init__.py +1 -0
  249. nexaai/mlx_backend/mlx_audio/codec/models/__init__.py +5 -0
  250. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  251. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  252. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  253. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  254. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  255. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  256. nexaai/mlx_backend/mlx_audio/codec/models/descript/__init__.py +1 -0
  257. nexaai/mlx_backend/mlx_audio/codec/models/descript/base.py +228 -0
  258. nexaai/mlx_backend/mlx_audio/codec/models/descript/dac.py +285 -0
  259. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  260. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  261. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  262. nexaai/mlx_backend/mlx_audio/codec/models/encodec/__init__.py +1 -0
  263. nexaai/mlx_backend/mlx_audio/codec/models/encodec/encodec.py +777 -0
  264. nexaai/mlx_backend/mlx_audio/codec/models/mimi/__init__.py +1 -0
  265. nexaai/mlx_backend/mlx_audio/codec/models/mimi/mimi.py +286 -0
  266. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  267. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  268. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  269. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  270. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  271. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  272. nexaai/mlx_backend/mlx_audio/codec/models/s3/__init__.py +1 -0
  273. nexaai/mlx_backend/mlx_audio/codec/models/s3/model.py +260 -0
  274. nexaai/mlx_backend/mlx_audio/codec/models/s3/model_v2.py +383 -0
  275. nexaai/mlx_backend/mlx_audio/codec/models/s3/utils.py +122 -0
  276. nexaai/mlx_backend/mlx_audio/codec/models/snac/__init__.py +1 -0
  277. nexaai/mlx_backend/mlx_audio/codec/models/snac/attention.py +97 -0
  278. nexaai/mlx_backend/mlx_audio/codec/models/snac/layers.py +306 -0
  279. nexaai/mlx_backend/mlx_audio/codec/models/snac/snac.py +154 -0
  280. nexaai/mlx_backend/mlx_audio/codec/models/snac/vq.py +135 -0
  281. nexaai/mlx_backend/mlx_audio/codec/models/vocos/__init__.py +1 -0
  282. nexaai/mlx_backend/mlx_audio/codec/models/vocos/mel.py +33 -0
  283. nexaai/mlx_backend/mlx_audio/codec/models/vocos/vocos.py +359 -0
  284. nexaai/mlx_backend/mlx_audio/codec/tests/__init__.py +0 -0
  285. nexaai/mlx_backend/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  286. nexaai/mlx_backend/mlx_audio/codec/tests/test_descript.py +109 -0
  287. nexaai/mlx_backend/mlx_audio/codec/tests/test_encodec.py +58 -0
  288. nexaai/mlx_backend/mlx_audio/codec/tests/test_mimi.py +22 -0
  289. nexaai/mlx_backend/mlx_audio/codec/tests/test_s3.py +25 -0
  290. nexaai/mlx_backend/mlx_audio/codec/tests/test_snac.py +40 -0
  291. nexaai/mlx_backend/mlx_audio/codec/tests/test_vocos.py +93 -0
  292. nexaai/mlx_backend/mlx_audio/server.py +525 -0
  293. nexaai/mlx_backend/mlx_audio/sts/__init__.py +0 -0
  294. nexaai/mlx_backend/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  295. nexaai/mlx_backend/mlx_audio/sts/voice_pipeline.py +327 -0
  296. nexaai/mlx_backend/mlx_audio/stt/__init__.py +0 -0
  297. nexaai/mlx_backend/mlx_audio/stt/generate.py +174 -0
  298. nexaai/mlx_backend/mlx_audio/stt/models/__init__.py +0 -0
  299. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  300. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  301. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/attention.py +187 -0
  302. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/audio.py +76 -0
  303. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  304. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  305. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  306. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  307. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  308. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  309. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  310. nexaai/mlx_backend/mlx_audio/stt/models/whisper/__init__.py +1 -0
  311. nexaai/mlx_backend/mlx_audio/stt/models/whisper/audio.py +82 -0
  312. nexaai/mlx_backend/mlx_audio/stt/models/whisper/decoding.py +742 -0
  313. nexaai/mlx_backend/mlx_audio/stt/models/whisper/timing.py +329 -0
  314. nexaai/mlx_backend/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  315. nexaai/mlx_backend/mlx_audio/stt/models/whisper/whisper.py +862 -0
  316. nexaai/mlx_backend/mlx_audio/stt/models/whisper/writers.py +268 -0
  317. nexaai/mlx_backend/mlx_audio/stt/tests/test_models.py +381 -0
  318. nexaai/mlx_backend/mlx_audio/stt/utils.py +195 -0
  319. nexaai/mlx_backend/mlx_audio/tts/__init__.py +1 -0
  320. nexaai/mlx_backend/mlx_audio/tts/audio_player.py +120 -0
  321. nexaai/mlx_backend/mlx_audio/tts/convert.py +71 -0
  322. nexaai/mlx_backend/mlx_audio/tts/generate.py +449 -0
  323. nexaai/mlx_backend/mlx_audio/tts/models/__init__.py +0 -0
  324. nexaai/mlx_backend/mlx_audio/tts/models/bark/__init__.py +4 -0
  325. nexaai/mlx_backend/mlx_audio/tts/models/bark/bark.py +528 -0
  326. nexaai/mlx_backend/mlx_audio/tts/models/bark/isftnet.py +12 -0
  327. nexaai/mlx_backend/mlx_audio/tts/models/bark/pipeline.py +442 -0
  328. nexaai/mlx_backend/mlx_audio/tts/models/base.py +84 -0
  329. nexaai/mlx_backend/mlx_audio/tts/models/dia/__init__.py +1 -0
  330. nexaai/mlx_backend/mlx_audio/tts/models/dia/audio.py +287 -0
  331. nexaai/mlx_backend/mlx_audio/tts/models/dia/config.py +256 -0
  332. nexaai/mlx_backend/mlx_audio/tts/models/dia/dia.py +592 -0
  333. nexaai/mlx_backend/mlx_audio/tts/models/dia/layers.py +870 -0
  334. nexaai/mlx_backend/mlx_audio/tts/models/indextts/__init__.py +3 -0
  335. nexaai/mlx_backend/mlx_audio/tts/models/indextts/attention.py +180 -0
  336. nexaai/mlx_backend/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  337. nexaai/mlx_backend/mlx_audio/tts/models/indextts/conformer.py +247 -0
  338. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  339. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  340. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  341. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  342. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  343. nexaai/mlx_backend/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  344. nexaai/mlx_backend/mlx_audio/tts/models/indextts/indextts.py +412 -0
  345. nexaai/mlx_backend/mlx_audio/tts/models/indextts/mel.py +37 -0
  346. nexaai/mlx_backend/mlx_audio/tts/models/indextts/normalize.py +294 -0
  347. nexaai/mlx_backend/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  348. nexaai/mlx_backend/mlx_audio/tts/models/interpolate.py +108 -0
  349. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  350. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  351. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  352. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/modules.py +659 -0
  353. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  354. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/voice.py +113 -0
  355. nexaai/mlx_backend/mlx_audio/tts/models/llama/__init__.py +3 -0
  356. nexaai/mlx_backend/mlx_audio/tts/models/llama/llama.py +324 -0
  357. nexaai/mlx_backend/mlx_audio/tts/models/outetts/__init__.py +1 -0
  358. nexaai/mlx_backend/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  359. nexaai/mlx_backend/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  360. nexaai/mlx_backend/mlx_audio/tts/models/outetts/default_speaker.json +461 -0
  361. nexaai/mlx_backend/mlx_audio/tts/models/outetts/outetts.py +255 -0
  362. nexaai/mlx_backend/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  363. nexaai/mlx_backend/mlx_audio/tts/models/outetts/tokens.py +36 -0
  364. nexaai/mlx_backend/mlx_audio/tts/models/sesame/__init__.py +3 -0
  365. nexaai/mlx_backend/mlx_audio/tts/models/sesame/attention.py +195 -0
  366. nexaai/mlx_backend/mlx_audio/tts/models/sesame/sesame.py +633 -0
  367. nexaai/mlx_backend/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  368. nexaai/mlx_backend/mlx_audio/tts/models/spark/__init__.py +1 -0
  369. nexaai/mlx_backend/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  370. nexaai/mlx_backend/mlx_audio/tts/models/spark/bicodec.py +269 -0
  371. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  372. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  373. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  374. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  375. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  376. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  377. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  378. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  379. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  380. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  381. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  382. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  383. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  384. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  385. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  386. nexaai/mlx_backend/mlx_audio/tts/models/spark/spark.py +382 -0
  387. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  388. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/file.py +221 -0
  389. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  390. nexaai/mlx_backend/mlx_audio/tts/tests/__init__.py +0 -0
  391. nexaai/mlx_backend/mlx_audio/tts/tests/test_base.py +66 -0
  392. nexaai/mlx_backend/mlx_audio/tts/tests/test_convert.py +173 -0
  393. nexaai/mlx_backend/mlx_audio/tts/tests/test_interpolate.py +88 -0
  394. nexaai/mlx_backend/mlx_audio/tts/tests/test_models.py +974 -0
  395. nexaai/mlx_backend/mlx_audio/tts/utils.py +337 -0
  396. nexaai/mlx_backend/mlx_audio/utils.py +237 -0
  397. nexaai/mlx_backend/mlx_audio/version.py +1 -0
  398. nexaai/mlx_backend/profiling.py +239 -0
  399. nexaai/mlx_backend/rerank/__init__.py +0 -0
  400. nexaai/mlx_backend/rerank/generate.py +174 -0
  401. nexaai/mlx_backend/rerank/interface.py +287 -0
  402. nexaai/mlx_backend/rerank/main.py +127 -0
  403. nexaai/mlx_backend/rerank/modeling/__init__.py +0 -0
  404. nexaai/mlx_backend/rerank/modeling/nexa_jina_rerank.py +330 -0
  405. nexaai/mlx_backend/sd/__init__.py +1 -0
  406. nexaai/mlx_backend/sd/interface.py +362 -0
  407. nexaai/mlx_backend/sd/main.py +286 -0
  408. nexaai/mlx_backend/sd/modeling/__init__.py +306 -0
  409. nexaai/mlx_backend/sd/modeling/clip.py +116 -0
  410. nexaai/mlx_backend/sd/modeling/config.py +65 -0
  411. nexaai/mlx_backend/sd/modeling/model_io.py +385 -0
  412. nexaai/mlx_backend/sd/modeling/sampler.py +105 -0
  413. nexaai/mlx_backend/sd/modeling/tokenizer.py +100 -0
  414. nexaai/mlx_backend/sd/modeling/unet.py +460 -0
  415. nexaai/mlx_backend/sd/modeling/vae.py +274 -0
  416. nexaai/mlx_backend/tts/__init__.py +12 -0
  417. nexaai/mlx_backend/tts/interface.py +276 -0
  418. nexaai/mlx_backend/vlm/__init__.py +3 -0
  419. nexaai/mlx_backend/vlm/generate.py +572 -0
  420. nexaai/mlx_backend/vlm/generate_qwen3_vl.py +374 -0
  421. nexaai/mlx_backend/vlm/generate_qwen3_vl_moe.py +259 -0
  422. nexaai/mlx_backend/vlm/interface.py +559 -0
  423. nexaai/mlx_backend/vlm/main.py +365 -0
  424. nexaai/mlx_backend/vlm/modeling/__init__.py +0 -0
  425. nexaai/mlx_backend/vlm/modeling/convert.py +68 -0
  426. nexaai/mlx_backend/vlm/modeling/models/__init__.py +0 -0
  427. nexaai/mlx_backend/vlm/modeling/models/aya_vision/__init__.py +8 -0
  428. nexaai/mlx_backend/vlm/modeling/models/aya_vision/aya_vision.py +193 -0
  429. nexaai/mlx_backend/vlm/modeling/models/aya_vision/interpolate.py +186 -0
  430. nexaai/mlx_backend/vlm/modeling/models/aya_vision/language.py +233 -0
  431. nexaai/mlx_backend/vlm/modeling/models/aya_vision/vision.py +503 -0
  432. nexaai/mlx_backend/vlm/modeling/models/base.py +202 -0
  433. nexaai/mlx_backend/vlm/modeling/models/cache.py +230 -0
  434. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/__init__.py +10 -0
  435. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/conversation.py +264 -0
  436. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/deepseek_vl_v2.py +472 -0
  437. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/language.py +591 -0
  438. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/processing_deepsek_vl_v2.py +526 -0
  439. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/vision.py +356 -0
  440. nexaai/mlx_backend/vlm/modeling/models/florence2/__init__.py +8 -0
  441. nexaai/mlx_backend/vlm/modeling/models/florence2/florence2.py +366 -0
  442. nexaai/mlx_backend/vlm/modeling/models/florence2/language.py +488 -0
  443. nexaai/mlx_backend/vlm/modeling/models/florence2/vision.py +591 -0
  444. nexaai/mlx_backend/vlm/modeling/models/gemma3/__init__.py +8 -0
  445. nexaai/mlx_backend/vlm/modeling/models/gemma3/gemma3.py +213 -0
  446. nexaai/mlx_backend/vlm/modeling/models/gemma3/language.py +315 -0
  447. nexaai/mlx_backend/vlm/modeling/models/gemma3/vision.py +238 -0
  448. nexaai/mlx_backend/vlm/modeling/models/gemma3n/__init__.py +2 -0
  449. nexaai/mlx_backend/vlm/modeling/models/gemma3n/audio.py +1038 -0
  450. nexaai/mlx_backend/vlm/modeling/models/gemma3n/config.py +139 -0
  451. nexaai/mlx_backend/vlm/modeling/models/gemma3n/gemma3n.py +322 -0
  452. nexaai/mlx_backend/vlm/modeling/models/gemma3n/language.py +629 -0
  453. nexaai/mlx_backend/vlm/modeling/models/gemma3n/vision.py +1022 -0
  454. nexaai/mlx_backend/vlm/modeling/models/idefics2/__init__.py +9 -0
  455. nexaai/mlx_backend/vlm/modeling/models/idefics2/idefics2.py +294 -0
  456. nexaai/mlx_backend/vlm/modeling/models/idefics2/language.py +191 -0
  457. nexaai/mlx_backend/vlm/modeling/models/idefics2/vision.py +267 -0
  458. nexaai/mlx_backend/vlm/modeling/models/idefics3/__init__.py +8 -0
  459. nexaai/mlx_backend/vlm/modeling/models/idefics3/idefics3.py +175 -0
  460. nexaai/mlx_backend/vlm/modeling/models/idefics3/language.py +192 -0
  461. nexaai/mlx_backend/vlm/modeling/models/idefics3/vision.py +233 -0
  462. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/__init__.py +9 -0
  463. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/internvl_chat.py +140 -0
  464. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/language.py +220 -0
  465. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/processor.py +393 -0
  466. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/vision.py +293 -0
  467. nexaai/mlx_backend/vlm/modeling/models/kernels.py +307 -0
  468. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/__init__.py +8 -0
  469. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/kimi_vl.py +143 -0
  470. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/language.py +509 -0
  471. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/vision.py +522 -0
  472. nexaai/mlx_backend/vlm/modeling/models/llama4/__init__.py +8 -0
  473. nexaai/mlx_backend/vlm/modeling/models/llama4/language.py +386 -0
  474. nexaai/mlx_backend/vlm/modeling/models/llama4/llama4.py +138 -0
  475. nexaai/mlx_backend/vlm/modeling/models/llama4/vision.py +560 -0
  476. nexaai/mlx_backend/vlm/modeling/models/llava/__init__.py +8 -0
  477. nexaai/mlx_backend/vlm/modeling/models/llava/language.py +240 -0
  478. nexaai/mlx_backend/vlm/modeling/models/llava/llava.py +153 -0
  479. nexaai/mlx_backend/vlm/modeling/models/llava/vision.py +259 -0
  480. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/__init__.py +9 -0
  481. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/language.py +236 -0
  482. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/llava_bunny.py +256 -0
  483. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/vision.py +303 -0
  484. nexaai/mlx_backend/vlm/modeling/models/llava_next/__init__.py +8 -0
  485. nexaai/mlx_backend/vlm/modeling/models/llava_next/language.py +230 -0
  486. nexaai/mlx_backend/vlm/modeling/models/llava_next/llava_next.py +160 -0
  487. nexaai/mlx_backend/vlm/modeling/models/llava_next/vision.py +243 -0
  488. nexaai/mlx_backend/vlm/modeling/models/mistral3/__init__.py +8 -0
  489. nexaai/mlx_backend/vlm/modeling/models/mistral3/mistral3.py +283 -0
  490. nexaai/mlx_backend/vlm/modeling/models/mllama/__init__.py +8 -0
  491. nexaai/mlx_backend/vlm/modeling/models/mllama/language.py +416 -0
  492. nexaai/mlx_backend/vlm/modeling/models/mllama/mllama.py +172 -0
  493. nexaai/mlx_backend/vlm/modeling/models/mllama/vision.py +499 -0
  494. nexaai/mlx_backend/vlm/modeling/models/molmo/__init__.py +8 -0
  495. nexaai/mlx_backend/vlm/modeling/models/molmo/language.py +243 -0
  496. nexaai/mlx_backend/vlm/modeling/models/molmo/molmo.py +133 -0
  497. nexaai/mlx_backend/vlm/modeling/models/molmo/vision.py +465 -0
  498. nexaai/mlx_backend/vlm/modeling/models/multi_modality/__init__.py +10 -0
  499. nexaai/mlx_backend/vlm/modeling/models/multi_modality/language.py +230 -0
  500. nexaai/mlx_backend/vlm/modeling/models/multi_modality/multi_modality.py +385 -0
  501. nexaai/mlx_backend/vlm/modeling/models/multi_modality/sam.py +557 -0
  502. nexaai/mlx_backend/vlm/modeling/models/multi_modality/vision.py +526 -0
  503. nexaai/mlx_backend/vlm/modeling/models/paligemma/__init__.py +8 -0
  504. nexaai/mlx_backend/vlm/modeling/models/paligemma/language.py +282 -0
  505. nexaai/mlx_backend/vlm/modeling/models/paligemma/paligemma.py +160 -0
  506. nexaai/mlx_backend/vlm/modeling/models/paligemma/vision.py +242 -0
  507. nexaai/mlx_backend/vlm/modeling/models/phi3_v/__init__.py +8 -0
  508. nexaai/mlx_backend/vlm/modeling/models/phi3_v/language.py +21 -0
  509. nexaai/mlx_backend/vlm/modeling/models/phi3_v/phi3_v.py +243 -0
  510. nexaai/mlx_backend/vlm/modeling/models/phi3_v/su_rope.py +71 -0
  511. nexaai/mlx_backend/vlm/modeling/models/phi3_v/vision.py +324 -0
  512. nexaai/mlx_backend/vlm/modeling/models/pixtral/__init__.py +8 -0
  513. nexaai/mlx_backend/vlm/modeling/models/pixtral/language.py +229 -0
  514. nexaai/mlx_backend/vlm/modeling/models/pixtral/pixtral.py +161 -0
  515. nexaai/mlx_backend/vlm/modeling/models/pixtral/vision.py +320 -0
  516. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/__init__.py +2 -0
  517. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/config.py +108 -0
  518. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/language.py +490 -0
  519. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/qwen2_5_vl.py +168 -0
  520. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/vision.py +414 -0
  521. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/__init__.py +2 -0
  522. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/config.py +104 -0
  523. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py +490 -0
  524. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py +167 -0
  525. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py +312 -0
  526. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/__init__.py +0 -0
  527. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/base.py +117 -0
  528. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/cache.py +531 -0
  529. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/generate.py +701 -0
  530. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/rope_utils.py +255 -0
  531. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/sample_utils.py +303 -0
  532. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/tokenizer_utils.py +407 -0
  533. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/processor.py +476 -0
  534. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py +1262 -0
  535. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/__init__.py +0 -0
  536. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/base.py +117 -0
  537. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/cache.py +531 -0
  538. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/generate.py +701 -0
  539. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/rope_utils.py +255 -0
  540. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/sample_utils.py +303 -0
  541. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/tokenizer_utils.py +407 -0
  542. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/processor.py +476 -0
  543. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/qwen3vl_moe.py +1308 -0
  544. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/switch_layers.py +210 -0
  545. nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py +8 -0
  546. nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py +62 -0
  547. nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py +209 -0
  548. nexaai/mlx_backend/vlm/modeling/processing_qwen2_vl.py +215 -0
  549. nexaai/mlx_backend/vlm/modeling/prompt_utils.py +474 -0
  550. nexaai/mlx_backend/vlm/modeling/sample_utils.py +39 -0
  551. nexaai/mlx_backend/vlm/modeling/tokenizer_utils.py +344 -0
  552. nexaai/mlx_backend/vlm/modeling/trainer/__init__.py +9 -0
  553. nexaai/mlx_backend/vlm/modeling/trainer/lora.py +70 -0
  554. nexaai/mlx_backend/vlm/modeling/trainer/trainer.py +296 -0
  555. nexaai/mlx_backend/vlm/modeling/trainer/utils.py +160 -0
  556. nexaai/mlx_backend/vlm/modeling/utils.py +928 -0
  557. nexaai/rerank.py +57 -0
  558. nexaai/rerank_impl/__init__.py +0 -0
  559. nexaai/rerank_impl/mlx_rerank_impl.py +94 -0
  560. nexaai/rerank_impl/pybind_rerank_impl.py +136 -0
  561. nexaai/runtime.py +68 -0
  562. nexaai/runtime_error.py +24 -0
  563. nexaai/tts.py +75 -0
  564. nexaai/tts_impl/__init__.py +0 -0
  565. nexaai/tts_impl/mlx_tts_impl.py +94 -0
  566. nexaai/tts_impl/pybind_tts_impl.py +43 -0
  567. nexaai/utils/decode.py +18 -0
  568. nexaai/utils/manifest_utils.py +531 -0
  569. nexaai/utils/model_manager.py +1745 -0
  570. nexaai/utils/model_types.py +49 -0
  571. nexaai/utils/progress_tracker.py +389 -0
  572. nexaai/utils/quantization_utils.py +245 -0
  573. nexaai/vlm.py +130 -0
  574. nexaai/vlm_impl/__init__.py +0 -0
  575. nexaai/vlm_impl/mlx_vlm_impl.py +259 -0
  576. nexaai/vlm_impl/pybind_vlm_impl.py +275 -0
  577. nexaai-1.0.29.dist-info/METADATA +35 -0
  578. nexaai-1.0.29.dist-info/RECORD +580 -0
  579. nexaai-1.0.29.dist-info/WHEEL +5 -0
  580. nexaai-1.0.29.dist-info/top_level.txt +1 -0
@@ -0,0 +1,503 @@
1
+ import inspect
2
+ from dataclasses import dataclass
3
+ from typing import Optional
4
+
5
+ import mlx.core as mx
6
+ import mlx.nn as nn
7
+ import numpy as np
8
+
9
+
10
+ @dataclass
11
+ class VisionConfig:
12
+ model_type: str
13
+ hidden_size: int
14
+ num_attention_heads: int
15
+ patch_size: int
16
+ num_hidden_layers: int = 12
17
+ intermediate_size: int = 3072
18
+ image_size: int = 224
19
+ num_channels: int = 3
20
+ layer_norm_eps: float = 1e-6
21
+
22
+ @classmethod
23
+ def from_dict(cls, params):
24
+ return cls(
25
+ **{
26
+ k: v
27
+ for k, v in params.items()
28
+ if k in inspect.signature(cls).parameters
29
+ }
30
+ )
31
+
32
+
33
+ def check_array_shape(arr):
34
+ shape = arr.shape
35
+
36
+ # Check if the shape has 4 dimensions
37
+ if len(shape) != 4:
38
+ return False
39
+
40
+ out_channels, kH, KW, _ = shape
41
+
42
+ # Check if out_channels is the largest, and kH and KW are the same
43
+ if (out_channels >= kH) and (out_channels >= KW) and (kH == KW):
44
+ return True
45
+ else:
46
+ return False
47
+
48
+
49
+ class Attention(nn.Module):
50
+ def __init__(
51
+ self,
52
+ dims: int,
53
+ num_heads: int,
54
+ query_input_dims: Optional[int] = None,
55
+ key_input_dims: Optional[int] = None,
56
+ value_input_dims: Optional[int] = None,
57
+ value_dims: Optional[int] = None,
58
+ value_output_dims: Optional[int] = None,
59
+ bias: bool = True,
60
+ ):
61
+ super().__init__()
62
+
63
+ if (dims % num_heads) != 0:
64
+ raise ValueError(
65
+ "The input feature dimensions should be divisible by the "
66
+ f"number of heads ({dims} % {num_heads}) != 0"
67
+ )
68
+
69
+ query_input_dims = query_input_dims or dims
70
+ key_input_dims = key_input_dims or dims
71
+ value_input_dims = value_input_dims or key_input_dims
72
+ value_dims = value_dims or dims
73
+ value_output_dims = value_output_dims or dims
74
+
75
+ self.num_heads = num_heads
76
+ head_dim = dims // num_heads
77
+ self.scale = head_dim**-0.5
78
+
79
+ self.q_proj = nn.Linear(query_input_dims, dims, bias=bias)
80
+ self.k_proj = nn.Linear(key_input_dims, dims, bias=bias)
81
+ self.v_proj = nn.Linear(value_input_dims, value_dims, bias=bias)
82
+ self.out_proj = nn.Linear(value_dims, value_output_dims, bias=bias)
83
+
84
+ def __call__(self, x, mask=None):
85
+ queries = self.q_proj(x)
86
+ keys = self.k_proj(x)
87
+ values = self.v_proj(x)
88
+
89
+ num_heads = self.num_heads
90
+ B, L, D = queries.shape
91
+ _, S, _ = keys.shape
92
+ queries = queries.reshape(B, L, num_heads, -1).transpose(0, 2, 1, 3)
93
+ keys = keys.reshape(B, S, num_heads, -1).transpose(0, 2, 1, 3)
94
+ values = values.reshape(B, S, num_heads, -1).transpose(0, 2, 1, 3)
95
+
96
+ output = mx.fast.scaled_dot_product_attention(
97
+ queries, keys, values, scale=self.scale, mask=mask
98
+ )
99
+ output = output.transpose(0, 2, 1, 3).reshape(B, L, -1)
100
+ return self.out_proj(output)
101
+
102
+
103
+ class MLP(nn.Module):
104
+ def __init__(self, config: VisionConfig):
105
+ super().__init__()
106
+ self.activation_fn = nn.GELU(approx="precise")
107
+ self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size, bias=True)
108
+ self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size, bias=True)
109
+
110
+ def __call__(self, x: mx.array) -> mx.array:
111
+ x = self.fc1(x)
112
+ x = self.activation_fn(x)
113
+ x = self.fc2(x)
114
+ return x
115
+
116
+
117
+ class EncoderLayer(nn.Module):
118
+ def __init__(self, config: VisionConfig):
119
+ super().__init__()
120
+ self.embed_dim = config.hidden_size
121
+ self.self_attn = Attention(
122
+ config.hidden_size, config.num_attention_heads, bias=True
123
+ )
124
+ self.layer_norm1 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
125
+ self.mlp = MLP(config)
126
+ self.layer_norm2 = nn.LayerNorm(self.embed_dim, eps=config.layer_norm_eps)
127
+
128
+ def __call__(self, x: mx.array, mask: Optional[mx.array] = None) -> mx.array:
129
+ r = self.self_attn(self.layer_norm1(x), mask)
130
+ h = x + r
131
+ r = self.mlp(self.layer_norm2(h))
132
+ return h + r
133
+
134
+
135
+ class Encoder(nn.Module):
136
+ def __init__(self, config: VisionConfig):
137
+ super().__init__()
138
+ self.layers = [EncoderLayer(config) for _ in range(config.num_hidden_layers)]
139
+
140
+ def __call__(
141
+ self,
142
+ x: mx.array,
143
+ output_hidden_states: Optional[bool] = None,
144
+ mask: Optional[mx.array] = None,
145
+ ) -> mx.array:
146
+ encoder_states = (x,) if output_hidden_states else None
147
+ h = x
148
+ for l in self.layers:
149
+ x = l(x, mask=mask)
150
+ if output_hidden_states:
151
+ encoder_states = encoder_states + (x,)
152
+
153
+ h = x
154
+
155
+ return (h, encoder_states)
156
+
157
+
158
+ def gaussian_blur_axis(image, sigma, axis):
159
+ """
160
+ Applies a 1D Gaussian blur along the given axis.
161
+ This version works for arrays with any number of dimensions.
162
+ """
163
+ radius = int(3 * sigma)
164
+ if radius < 1:
165
+ return image
166
+ x = mx.arange(-radius, radius + 1)
167
+ kernel = mx.exp(-(x**2) / (2 * sigma**2))
168
+ kernel = kernel / mx.sum(kernel)
169
+
170
+ # MLX doesn't have a direct apply_along_axis equivalent,
171
+ # so we'll implement the convolution differently based on the axis
172
+
173
+ # Helper function to apply 1D convolution along specific axis
174
+ def conv_1d(array, kernel, axis):
175
+ # Reshape kernel to broadcast along the right dimensions
176
+ kernel_shape = [1] * image.ndim
177
+ kernel_shape[axis] = len(kernel)
178
+ kernel_reshaped = kernel.reshape(kernel_shape)
179
+
180
+ # Pad the array
181
+ pad_width = [(0, 0)] * image.ndim
182
+ pad_width[axis] = (radius, radius)
183
+ padded = mx.pad(array, pad_width, mode="edge")
184
+
185
+ # Perform convolution via sliding window sum
186
+ result = mx.zeros_like(array)
187
+ slices = [slice(None)] * padded.ndim
188
+
189
+ for i in range(2 * radius + 1):
190
+ slices[axis] = slice(i, i + array.shape[axis])
191
+ result = result + padded[tuple(slices)] * kernel_reshaped
192
+
193
+ return result
194
+
195
+ return conv_1d(image, kernel, axis)
196
+
197
+
198
+ def bilinear_interpolate(image, new_height, new_width, align_corners=False):
199
+ """
200
+ Performs bilinear interpolation on an array whose spatial dimensions are the first two.
201
+ It supports extra dimensions (e.g. channels or batch dimensions that have been moved to the trailing axes).
202
+ """
203
+ # image is assumed to have shape (H, W, ...) where H and W are spatial dimensions.
204
+ H_in, W_in = image.shape[0], image.shape[1]
205
+
206
+ # Compute sampling positions in the input image.
207
+ if new_height == 1:
208
+ row_positions = mx.array([0.0])
209
+ else:
210
+ if align_corners:
211
+ row_positions = mx.linspace(0, H_in - 1, new_height)
212
+ else:
213
+ row_positions = (mx.arange(new_height) + 0.5) * H_in / new_height - 0.5
214
+
215
+ if new_width == 1:
216
+ col_positions = mx.array([0.0])
217
+ else:
218
+ if align_corners:
219
+ col_positions = mx.linspace(0, W_in - 1, new_width)
220
+ else:
221
+ col_positions = (mx.arange(new_width) + 0.5) * W_in / new_width - 0.5
222
+
223
+ # Compute floor and ceil indices.
224
+ row_floor = mx.floor(row_positions).astype(mx.int32)
225
+ col_floor = mx.floor(col_positions).astype(mx.int32)
226
+ row_ceil = row_floor + 1
227
+ col_ceil = col_floor + 1
228
+
229
+ row_floor = mx.clip(row_floor, 0, H_in - 1)
230
+ row_ceil = mx.clip(row_ceil, 0, H_in - 1)
231
+ col_floor = mx.clip(col_floor, 0, W_in - 1)
232
+ col_ceil = mx.clip(col_ceil, 0, W_in - 1)
233
+
234
+ row_weight = row_positions - row_floor # shape (new_height,)
235
+ col_weight = col_positions - col_floor # shape (new_width,)
236
+
237
+ # Use advanced indexing for gather operations
238
+ # Create meshgrid for coordinates
239
+ row_floor_grid, col_floor_grid = mx.meshgrid(row_floor, col_floor, indexing="ij")
240
+ row_ceil_grid, col_floor_grid = mx.meshgrid(row_ceil, col_floor, indexing="ij")
241
+ row_floor_grid, col_ceil_grid = mx.meshgrid(row_floor, col_ceil, indexing="ij")
242
+ row_ceil_grid, col_ceil_grid = mx.meshgrid(row_ceil, col_ceil, indexing="ij")
243
+
244
+ # Gather the four surrounding pixels using take_along_axis
245
+ # For higher dimensional arrays, we'll need to reshape and broadcast
246
+ extra_dims = image.ndim - 2
247
+
248
+ def gather_pixels(row_indices, col_indices):
249
+ # Flatten the spatial dimensions for gathering
250
+ flat_indices = row_indices * W_in + col_indices
251
+ flat_image = mx.reshape(image, (-1,) + image.shape[2:])
252
+ # Gather and reshape back
253
+ gathered = mx.take(flat_image, flat_indices.reshape(-1), axis=0)
254
+ return mx.reshape(gathered, (new_height, new_width) + image.shape[2:])
255
+
256
+ top_left = gather_pixels(row_floor_grid, col_floor_grid)
257
+ top_right = gather_pixels(row_floor_grid, col_ceil_grid)
258
+ bottom_left = gather_pixels(row_ceil_grid, col_floor_grid)
259
+ bottom_right = gather_pixels(row_ceil_grid, col_ceil_grid)
260
+
261
+ # Expand the weights to have shape (new_height, new_width, *[1]*extra_dims)
262
+ r_weight = row_weight.reshape(new_height, 1, *([1] * extra_dims))
263
+ c_weight = col_weight.reshape(1, new_width, *([1] * extra_dims))
264
+
265
+ # Perform bilinear interpolation.
266
+ result = (
267
+ (1 - r_weight) * (1 - c_weight) * top_left
268
+ + (1 - r_weight) * c_weight * top_right
269
+ + r_weight * (1 - c_weight) * bottom_left
270
+ + r_weight * c_weight * bottom_right
271
+ )
272
+ return result
273
+
274
+
275
+ def resize_bilinear(image, new_size, align_corners=False, antialias=True):
276
+ """
277
+ Resizes an image (or embedding tensor) to new_size=(new_height, new_width)
278
+ using bilinear interpolation with MLX.
279
+
280
+ Supports:
281
+ - 2D: (H, W)
282
+ - 3D: (H, W, C)
283
+ - 4D: (B, C, H, W) (assumed for typical image batches)
284
+ """
285
+ new_height, new_width = new_size
286
+
287
+ # Convert numpy arrays to MLX arrays if needed
288
+ if isinstance(image, np.ndarray):
289
+ image = mx.array(image)
290
+
291
+ if image.ndim == 2 or image.ndim == 3:
292
+ # Assume spatial dims are the first two.
293
+ resized = image
294
+ H_in, W_in = image.shape[:2]
295
+ if antialias:
296
+ if new_height < H_in:
297
+ scale_y = new_height / H_in
298
+ sigma_y = (1 / scale_y - 1) / 2.0 # heuristic
299
+ if sigma_y > 0:
300
+ resized = gaussian_blur_axis(resized, sigma_y, axis=0)
301
+ if new_width < W_in:
302
+ scale_x = new_width / W_in
303
+ sigma_x = (1 / scale_x - 1) / 2.0
304
+ if sigma_x > 0:
305
+ resized = gaussian_blur_axis(resized, sigma_x, axis=1)
306
+ resized = bilinear_interpolate(
307
+ resized, new_height, new_width, align_corners=align_corners
308
+ )
309
+ return resized
310
+
311
+ elif image.ndim == 4:
312
+ # Assume shape is (B, C, H, W) (typical PyTorch/MLX format).
313
+ B, C, H_in, W_in = image.shape
314
+ # Permute to bring spatial dims to the front: (H, W, B, C)
315
+ image_perm = mx.transpose(image, (2, 3, 0, 1))
316
+ resized = image_perm
317
+ if antialias:
318
+ if new_height < H_in:
319
+ scale_y = new_height / H_in
320
+ sigma_y = (1 / scale_y - 1) / 2.0
321
+ if sigma_y > 0:
322
+ resized = gaussian_blur_axis(resized, sigma_y, axis=0)
323
+ if new_width < W_in:
324
+ scale_x = new_width / W_in
325
+ sigma_x = (1 / scale_x - 1) / 2.0
326
+ if sigma_x > 0:
327
+ resized = gaussian_blur_axis(resized, sigma_x, axis=1)
328
+ resized = bilinear_interpolate(
329
+ resized, new_height, new_width, align_corners=align_corners
330
+ )
331
+ # Permute back to (B, C, new_height, new_width)
332
+ resized = mx.transpose(resized, (2, 3, 0, 1))
333
+ return resized
334
+
335
+ else:
336
+ raise ValueError("Unsupported image dimensions.")
337
+
338
+
339
+ class VisionEmbeddings(nn.Module):
340
+ def __init__(self, config: VisionConfig):
341
+ super().__init__()
342
+ self.config = config
343
+ self.embed_dim = config.hidden_size
344
+ self.image_size = config.image_size
345
+ self.patch_size = config.patch_size
346
+
347
+ self.patch_embedding = nn.Conv2d(
348
+ config.num_channels,
349
+ config.hidden_size,
350
+ kernel_size=self.patch_size,
351
+ stride=self.patch_size,
352
+ )
353
+
354
+ self.num_patches = (self.image_size // self.patch_size) ** 2
355
+ self.num_positions = self.num_patches
356
+ self.position_embedding = nn.Embedding(self.num_positions, self.embed_dim)
357
+
358
+ @staticmethod
359
+ def resize_positional_embeddings(
360
+ positional_embeddings: mx.array,
361
+ spatial_shapes: mx.array,
362
+ max_length: int,
363
+ ) -> mx.array:
364
+ """
365
+ Resize positional embeddings to image-specific size and pad to a fixed size.
366
+
367
+ Args:
368
+ positional_embeddings (`torch.Tensor`):
369
+ Position embeddings of shape (height, width, embed_dim)
370
+ spatial_shapes (`torch.LongTensor`):
371
+ Spatial shapes of shape (batch_size, 2) to resize the positional embeddings to
372
+ max_length (`int`):
373
+ Maximum length of the positional embeddings to pad resized positional embeddings to
374
+
375
+ Returns:
376
+ `torch.Tensor`: Embeddings of shape (batch_size, max_length, embed_dim)
377
+ """
378
+ batch_size = spatial_shapes.shape[0]
379
+ embed_dim = positional_embeddings.shape[-1]
380
+ source_dtype = positional_embeddings.dtype
381
+
382
+ resulted_positional_embeddings = mx.zeros(
383
+ (batch_size, max_length, embed_dim)
384
+ ).astype(source_dtype)
385
+
386
+ # (height, width, embed_dim) -> (1, embed_dim, height, width) for interpolation
387
+ positional_embeddings = positional_embeddings.transpose(2, 0, 1).reshape(
388
+ 1, embed_dim, -1
389
+ )
390
+
391
+ # Upcast to float32 on CPU because antialias is not supported for bfloat16/float16 on CPU
392
+ if positional_embeddings.device.type == "cpu":
393
+ positional_embeddings = positional_embeddings.astype(mx.float32)
394
+
395
+ for i in range(batch_size):
396
+ # (1, dim, height, width) -> (1, dim, target_height, target_width)
397
+ height, width = spatial_shapes[i]
398
+ # Then upsample width dimension
399
+ resized_embeddings = resize_bilinear(
400
+ positional_embeddings,
401
+ (height, width),
402
+ align_corners=False,
403
+ antialias=True,
404
+ )
405
+
406
+ # (1, dim, target_height, target_width) -> (target_height * target_width, dim)
407
+ resized_embeddings = resized_embeddings.reshape(
408
+ embed_dim, height * width
409
+ ).transpose(0, 1)
410
+
411
+ # Cast to original dtype
412
+ resized_embeddings = resized_embeddings.astype(source_dtype)
413
+
414
+ resulted_positional_embeddings[i, : height * width] = resized_embeddings
415
+ resulted_positional_embeddings[i, height * width :] = resized_embeddings[0]
416
+
417
+ return resulted_positional_embeddings
418
+
419
+ def __call__(
420
+ self, x: mx.array, spatial_shapes: Optional[mx.array] = None
421
+ ) -> mx.array:
422
+ batch_size = x.shape[0]
423
+ patch_embeddings = self.patch_embedding(x)
424
+ patch_embeddings = mx.flatten(patch_embeddings, start_axis=1, end_axis=2)
425
+ if spatial_shapes is None:
426
+ position_ids = mx.array(np.arange(self.num_positions)[None, :])
427
+ embeddings = patch_embeddings
428
+ embeddings += self.position_embedding(position_ids)
429
+
430
+ else:
431
+ # Get positional resized and padded positional embeddings
432
+ positional_embeddings = self.position_embedding.weight.reshape(
433
+ self.position_embedding_size, self.position_embedding_size, -1
434
+ )
435
+
436
+ resized_positional_embeddings = self.resize_positional_embeddings(
437
+ positional_embeddings, spatial_shapes, max_length=x.shape[1]
438
+ )
439
+
440
+ # Add positional embeddings to patch embeddings
441
+ embeddings = patch_embeds + resized_positional_embeddings
442
+ return embeddings
443
+
444
+
445
+ class SigLipVisionModel(nn.Module):
446
+ def __init__(self, config: VisionConfig):
447
+ super().__init__()
448
+
449
+ self.embeddings = VisionEmbeddings(config)
450
+ self.encoder = Encoder(config)
451
+ self.post_layernorm = nn.LayerNorm(config.hidden_size)
452
+
453
+ def __call__(
454
+ self,
455
+ x: mx.array,
456
+ spatial_shapes: mx.array,
457
+ output_hidden_states: Optional[bool] = None,
458
+ ) -> mx.array:
459
+ x = self.embeddings(x, spatial_shapes)
460
+ x = x.astype(self.embeddings.patch_embedding.weight.dtype)
461
+ encoder_outputs = self.encoder(
462
+ x=x, output_hidden_states=output_hidden_states, mask=None
463
+ )
464
+ pooler_output = self.post_layernorm(encoder_outputs[0])
465
+ return pooler_output, x, encoder_outputs[-1]
466
+
467
+
468
+ class VisionModel(nn.Module):
469
+ def __init__(self, config: VisionConfig):
470
+ super().__init__()
471
+ self.model_type = config.model_type
472
+ if self.model_type not in ["siglip_vision_model"]:
473
+ raise ValueError(f"Unsupported model type: {self.model_type}")
474
+
475
+ self.vision_model = SigLipVisionModel(config)
476
+
477
+ def __call__(
478
+ self,
479
+ x: mx.array,
480
+ spatial_shapes: Optional[mx.array] = None,
481
+ output_hidden_states: Optional[bool] = None,
482
+ ) -> mx.array:
483
+ return self.vision_model(x, spatial_shapes, output_hidden_states)
484
+
485
+ def sanitize(self, weights):
486
+ sanitized_weights = {}
487
+ for k, v in weights.items():
488
+ if "position_ids" in k:
489
+ # Remove unused position_ids
490
+ continue
491
+ elif "patch_embedding.weight" in k:
492
+ # PyTorch conv2d weight tensors have shape:
493
+ # [out_channels, in_channels, kH, KW]
494
+ # MLX conv2d expects the weight be of shape:
495
+ # [out_channels, kH, KW, in_channels]
496
+ if check_array_shape(v):
497
+ sanitized_weights[k] = v
498
+ else:
499
+ sanitized_weights[k] = v.transpose(0, 2, 3, 1)
500
+ else:
501
+ sanitized_weights[k] = v
502
+
503
+ return sanitized_weights
@@ -0,0 +1,202 @@
1
+ import math
2
+ from abc import ABC, abstractmethod
3
+ from dataclasses import dataclass
4
+ from typing import Any, Dict, List, Optional
5
+
6
+ import mlx.core as mx
7
+ import mlx.nn as nn
8
+ from mlx_lm.models.base import create_attention_mask, scaled_dot_product_attention
9
+ from mlx_lm.models.cache import RotatingKVCache
10
+ from PIL import Image
11
+ from transformers.image_processing_utils import BaseImageProcessor as ImageProcessor
12
+ from transformers.image_processing_utils import get_size_dict
13
+ from transformers.image_utils import ChannelDimension, PILImageResampling
14
+
15
+
16
+ @dataclass
17
+ class LanguageModelOutput:
18
+ logits: mx.array
19
+ cross_attention_states: Optional[List[mx.array]] = None
20
+ encoder_outputs: Optional[List[mx.array]] = None
21
+
22
+
23
+ def expand2square(pil_img, background_color):
24
+ width, height = pil_img.size
25
+ if width == height:
26
+ return pil_img
27
+ elif width > height:
28
+ result = Image.new(pil_img.mode, (width, width), background_color)
29
+ result.paste(pil_img, (0, (width - height) // 2))
30
+ return result
31
+ else:
32
+ result = Image.new(pil_img.mode, (height, height), background_color)
33
+ result.paste(pil_img, ((height - width) // 2, 0))
34
+ return result
35
+
36
+
37
+ def check_array_shape(arr):
38
+ shape = arr.shape
39
+
40
+ # Check if the shape has 4 dimensions
41
+ if len(shape) == 4:
42
+ out_channels, kH, KW, _ = shape
43
+ # Check if out_channels is the largest, and kH and KW are the same
44
+ if (out_channels >= kH) and (out_channels >= KW) and (kH == KW):
45
+ return True
46
+ else:
47
+ return False
48
+ # Check if the shape has 3 dimensions
49
+ elif len(shape) == 3:
50
+ _, kW, out_channels = shape
51
+ # Check if out_channels is the largest
52
+ if kW >= out_channels:
53
+ return True
54
+ else:
55
+ return False
56
+ else:
57
+ return False
58
+
59
+
60
+ class BaseImageProcessor(ImageProcessor):
61
+ def __init__(
62
+ self,
63
+ image_mean=(0.5, 0.5, 0.5),
64
+ image_std=(0.5, 0.5, 0.5),
65
+ size=(384, 384),
66
+ crop_size: Dict[str, int] = None,
67
+ resample=PILImageResampling.BICUBIC,
68
+ rescale_factor=1 / 255,
69
+ data_format=ChannelDimension.FIRST,
70
+ ):
71
+ crop_size = (
72
+ crop_size if crop_size is not None else {"height": 384, "width": 384}
73
+ )
74
+ crop_size = get_size_dict(
75
+ crop_size, default_to_square=True, param_name="crop_size"
76
+ )
77
+
78
+ self.image_mean = image_mean
79
+ self.image_std = image_std
80
+ self.size = size
81
+ self.resample = resample
82
+ self.rescale_factor = rescale_factor
83
+ self.data_format = data_format
84
+ self.crop_size = crop_size
85
+
86
+ @abstractmethod
87
+ def preprocess(self, images):
88
+ pass
89
+
90
+
91
+ # Add this code to visualize the chunked attention mask
92
+ def visualize_attention_mask(mask):
93
+ """Visualize attention mask with symbols for better readability."""
94
+ if mask is None:
95
+ print("No mask")
96
+ return
97
+
98
+ seq_len = mask.shape[0]
99
+
100
+ print(" ", end="")
101
+ for i in range(seq_len):
102
+ print(f"{i:2d} ", end="")
103
+ print()
104
+
105
+ for i in range(seq_len):
106
+ print(f"Token {i:2d}: ", end="")
107
+ for j in range(seq_len):
108
+ if mask[i, j]:
109
+ print(" ■ ", end="")
110
+ else:
111
+ print(" ⬚ ", end="")
112
+ print()
113
+
114
+
115
+ def check_activation_stats(name, tensor):
116
+ """Helper function to check for anomalies and log stats."""
117
+
118
+ print(f"--- Activation Stats: {name} ---")
119
+ # Check for NaNs/Infs
120
+ has_nan = mx.isnan(tensor).any()
121
+ has_inf = mx.isinf(tensor).any()
122
+ if has_nan:
123
+ print(f"WARNING: Found NaN in {name}")
124
+ if has_inf:
125
+ print(f"WARNING: Found Inf in {name}")
126
+
127
+ # Calculate and print stats (ensure computation happens)
128
+ min_val = mx.min(tensor).item()
129
+ max_val = mx.max(tensor).item()
130
+ mean_val = mx.mean(tensor).item()
131
+ std_val = mx.std(tensor).item()
132
+ print(f" Shape: {tensor.shape}")
133
+ print(f" Min: {min_val:.4f}, Max: {max_val:.4f}")
134
+ print(f" Mean: {mean_val:.4f}, Std: {std_val:.4f}")
135
+ print("-" * (len(name) + 24))
136
+
137
+
138
+ def pixel_shuffle(input_tensor, shuffle_ratio):
139
+ # input_tensor: [batch_size, num_patches, channels]
140
+ batch_size, num_patches, channels = input_tensor.shape
141
+ patch_size = int(math.sqrt(num_patches))
142
+
143
+ input_tensor = input_tensor.reshape(batch_size, patch_size, patch_size, -1)
144
+ batch_size, height, width, channels = input_tensor.shape
145
+
146
+ reshaped_tensor = input_tensor.reshape(
147
+ batch_size, height, int(width * shuffle_ratio), int(channels / shuffle_ratio)
148
+ )
149
+ reshaped_tensor = reshaped_tensor.transpose(0, 2, 1, 3)
150
+
151
+ reshaped_tensor = reshaped_tensor.reshape(
152
+ batch_size,
153
+ int(height * shuffle_ratio),
154
+ int(width * shuffle_ratio),
155
+ int(channels / (shuffle_ratio**2)),
156
+ )
157
+ reshaped_tensor = reshaped_tensor.transpose(0, 2, 1, 3)
158
+
159
+ output_tensor = reshaped_tensor.reshape(batch_size, -1, reshaped_tensor.shape[-1])
160
+ return output_tensor
161
+
162
+
163
+ def interpolate(pos_embed, size, mode="cubic", align_corners=False):
164
+ """
165
+ MLX implementation of PyTorch's F.interpolate with bicubic mode
166
+
167
+ Args:
168
+ pos_embed: MLX array with shape [B, C, H_src, W_src] or [C, H_src, W_src]
169
+ size: Tuple (H_dst, W_dst) - target size
170
+ align_corners: Boolean - whether to align corners
171
+
172
+ Returns:
173
+ Interpolated array with shape [B, C, H_dst, W_dst] or [C, H_dst, W_dst]
174
+ """
175
+ # Handle different input shapes
176
+ input_dim = pos_embed.ndim
177
+ original_shape = pos_embed.shape
178
+
179
+ if input_dim == 3:
180
+ # [C, H, W] -> [1, C, H, W]
181
+ pos_embed = pos_embed.reshape(1, *original_shape)
182
+
183
+ # Get source dimensions
184
+ h_src, w_src = pos_embed.shape[-2:]
185
+ h_dst, w_dst = size
186
+
187
+ # Calculate scale factors
188
+ scale_h = h_dst / h_src
189
+ scale_w = w_dst / w_src
190
+
191
+ # Create upsampler
192
+ upsampler = nn.Upsample(
193
+ scale_factor=(scale_h, scale_w), mode=mode, align_corners=align_corners
194
+ )
195
+
196
+ # Apply upsampling
197
+ result = upsampler(pos_embed)
198
+
199
+ # Return in the original dimension format
200
+ if input_dim == 3:
201
+ return result.reshape(original_shape[0], *size)
202
+ return result