xinference 1.0.1__py3-none-any.whl → 1.1.1__py3-none-any.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.

Potentially problematic release.


This version of xinference might be problematic. Click here for more details.

Files changed (170) hide show
  1. xinference/_compat.py +2 -0
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +28 -6
  4. xinference/core/utils.py +10 -6
  5. xinference/deploy/cmdline.py +3 -1
  6. xinference/deploy/test/test_cmdline.py +56 -0
  7. xinference/isolation.py +24 -0
  8. xinference/model/audio/core.py +10 -0
  9. xinference/model/audio/cosyvoice.py +25 -3
  10. xinference/model/audio/f5tts.py +200 -0
  11. xinference/model/audio/f5tts_mlx.py +260 -0
  12. xinference/model/audio/fish_speech.py +36 -111
  13. xinference/model/audio/model_spec.json +27 -3
  14. xinference/model/audio/model_spec_modelscope.json +18 -0
  15. xinference/model/audio/utils.py +32 -0
  16. xinference/model/embedding/core.py +203 -142
  17. xinference/model/embedding/model_spec.json +7 -0
  18. xinference/model/embedding/model_spec_modelscope.json +8 -0
  19. xinference/model/image/core.py +69 -1
  20. xinference/model/image/model_spec.json +127 -4
  21. xinference/model/image/model_spec_modelscope.json +130 -4
  22. xinference/model/image/stable_diffusion/core.py +45 -13
  23. xinference/model/llm/__init__.py +2 -2
  24. xinference/model/llm/llm_family.json +219 -53
  25. xinference/model/llm/llm_family.py +15 -36
  26. xinference/model/llm/llm_family_modelscope.json +167 -20
  27. xinference/model/llm/mlx/core.py +287 -51
  28. xinference/model/llm/sglang/core.py +1 -0
  29. xinference/model/llm/transformers/chatglm.py +9 -5
  30. xinference/model/llm/transformers/core.py +1 -0
  31. xinference/model/llm/transformers/qwen2_vl.py +2 -0
  32. xinference/model/llm/transformers/utils.py +16 -8
  33. xinference/model/llm/utils.py +5 -1
  34. xinference/model/llm/vllm/core.py +16 -2
  35. xinference/thirdparty/cosyvoice/bin/average_model.py +92 -0
  36. xinference/thirdparty/cosyvoice/bin/export_jit.py +12 -2
  37. xinference/thirdparty/cosyvoice/bin/export_onnx.py +112 -0
  38. xinference/thirdparty/cosyvoice/bin/export_trt.sh +9 -0
  39. xinference/thirdparty/cosyvoice/bin/inference.py +5 -7
  40. xinference/thirdparty/cosyvoice/bin/train.py +42 -8
  41. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +96 -25
  42. xinference/thirdparty/cosyvoice/cli/frontend.py +77 -30
  43. xinference/thirdparty/cosyvoice/cli/model.py +330 -80
  44. xinference/thirdparty/cosyvoice/dataset/dataset.py +6 -2
  45. xinference/thirdparty/cosyvoice/dataset/processor.py +76 -14
  46. xinference/thirdparty/cosyvoice/flow/decoder.py +92 -13
  47. xinference/thirdparty/cosyvoice/flow/flow.py +99 -9
  48. xinference/thirdparty/cosyvoice/flow/flow_matching.py +110 -13
  49. xinference/thirdparty/cosyvoice/flow/length_regulator.py +5 -4
  50. xinference/thirdparty/cosyvoice/hifigan/discriminator.py +140 -0
  51. xinference/thirdparty/cosyvoice/hifigan/generator.py +58 -42
  52. xinference/thirdparty/cosyvoice/hifigan/hifigan.py +67 -0
  53. xinference/thirdparty/cosyvoice/llm/llm.py +139 -6
  54. xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken +58836 -0
  55. xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py +279 -0
  56. xinference/thirdparty/cosyvoice/transformer/embedding.py +2 -2
  57. xinference/thirdparty/cosyvoice/transformer/encoder_layer.py +7 -7
  58. xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +318 -0
  59. xinference/thirdparty/cosyvoice/utils/common.py +28 -1
  60. xinference/thirdparty/cosyvoice/utils/executor.py +69 -7
  61. xinference/thirdparty/cosyvoice/utils/file_utils.py +2 -12
  62. xinference/thirdparty/cosyvoice/utils/frontend_utils.py +9 -5
  63. xinference/thirdparty/cosyvoice/utils/losses.py +20 -0
  64. xinference/thirdparty/cosyvoice/utils/scheduler.py +1 -2
  65. xinference/thirdparty/cosyvoice/utils/train_utils.py +101 -45
  66. xinference/thirdparty/f5_tts/api.py +166 -0
  67. xinference/thirdparty/f5_tts/configs/E2TTS_Base_train.yaml +44 -0
  68. xinference/thirdparty/f5_tts/configs/E2TTS_Small_train.yaml +44 -0
  69. xinference/thirdparty/f5_tts/configs/F5TTS_Base_train.yaml +46 -0
  70. xinference/thirdparty/f5_tts/configs/F5TTS_Small_train.yaml +46 -0
  71. xinference/thirdparty/f5_tts/eval/README.md +49 -0
  72. xinference/thirdparty/f5_tts/eval/ecapa_tdnn.py +330 -0
  73. xinference/thirdparty/f5_tts/eval/eval_infer_batch.py +207 -0
  74. xinference/thirdparty/f5_tts/eval/eval_infer_batch.sh +13 -0
  75. xinference/thirdparty/f5_tts/eval/eval_librispeech_test_clean.py +84 -0
  76. xinference/thirdparty/f5_tts/eval/eval_seedtts_testset.py +84 -0
  77. xinference/thirdparty/f5_tts/eval/utils_eval.py +405 -0
  78. xinference/thirdparty/f5_tts/infer/README.md +191 -0
  79. xinference/thirdparty/f5_tts/infer/SHARED.md +74 -0
  80. xinference/thirdparty/f5_tts/infer/examples/basic/basic.toml +11 -0
  81. xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_en.wav +0 -0
  82. xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_zh.wav +0 -0
  83. xinference/thirdparty/f5_tts/infer/examples/multi/country.flac +0 -0
  84. xinference/thirdparty/f5_tts/infer/examples/multi/main.flac +0 -0
  85. xinference/thirdparty/f5_tts/infer/examples/multi/story.toml +19 -0
  86. xinference/thirdparty/f5_tts/infer/examples/multi/story.txt +1 -0
  87. xinference/thirdparty/f5_tts/infer/examples/multi/town.flac +0 -0
  88. xinference/thirdparty/f5_tts/infer/examples/vocab.txt +2545 -0
  89. xinference/thirdparty/f5_tts/infer/infer_cli.py +226 -0
  90. xinference/thirdparty/f5_tts/infer/infer_gradio.py +851 -0
  91. xinference/thirdparty/f5_tts/infer/speech_edit.py +193 -0
  92. xinference/thirdparty/f5_tts/infer/utils_infer.py +538 -0
  93. xinference/thirdparty/f5_tts/model/__init__.py +10 -0
  94. xinference/thirdparty/f5_tts/model/backbones/README.md +20 -0
  95. xinference/thirdparty/f5_tts/model/backbones/dit.py +163 -0
  96. xinference/thirdparty/f5_tts/model/backbones/mmdit.py +146 -0
  97. xinference/thirdparty/f5_tts/model/backbones/unett.py +219 -0
  98. xinference/thirdparty/f5_tts/model/cfm.py +285 -0
  99. xinference/thirdparty/f5_tts/model/dataset.py +319 -0
  100. xinference/thirdparty/f5_tts/model/modules.py +658 -0
  101. xinference/thirdparty/f5_tts/model/trainer.py +366 -0
  102. xinference/thirdparty/f5_tts/model/utils.py +185 -0
  103. xinference/thirdparty/f5_tts/scripts/count_max_epoch.py +33 -0
  104. xinference/thirdparty/f5_tts/scripts/count_params_gflops.py +39 -0
  105. xinference/thirdparty/f5_tts/socket_server.py +159 -0
  106. xinference/thirdparty/f5_tts/train/README.md +77 -0
  107. xinference/thirdparty/f5_tts/train/datasets/prepare_csv_wavs.py +139 -0
  108. xinference/thirdparty/f5_tts/train/datasets/prepare_emilia.py +230 -0
  109. xinference/thirdparty/f5_tts/train/datasets/prepare_libritts.py +92 -0
  110. xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py +65 -0
  111. xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py +125 -0
  112. xinference/thirdparty/f5_tts/train/finetune_cli.py +174 -0
  113. xinference/thirdparty/f5_tts/train/finetune_gradio.py +1846 -0
  114. xinference/thirdparty/f5_tts/train/train.py +75 -0
  115. xinference/thirdparty/fish_speech/fish_speech/conversation.py +94 -83
  116. xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +63 -20
  117. xinference/thirdparty/fish_speech/fish_speech/text/clean.py +1 -26
  118. xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +1 -1
  119. xinference/thirdparty/fish_speech/fish_speech/tokenizer.py +152 -0
  120. xinference/thirdparty/fish_speech/fish_speech/train.py +2 -2
  121. xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1 -1
  122. xinference/thirdparty/fish_speech/tools/{post_api.py → api_client.py} +7 -13
  123. xinference/thirdparty/fish_speech/tools/api_server.py +98 -0
  124. xinference/thirdparty/fish_speech/tools/download_models.py +5 -5
  125. xinference/thirdparty/fish_speech/tools/fish_e2e.py +2 -2
  126. xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py +192 -0
  127. xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py +125 -0
  128. xinference/thirdparty/fish_speech/tools/inference_engine/utils.py +39 -0
  129. xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py +57 -0
  130. xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +2 -2
  131. xinference/thirdparty/fish_speech/tools/llama/generate.py +117 -89
  132. xinference/thirdparty/fish_speech/tools/run_webui.py +104 -0
  133. xinference/thirdparty/fish_speech/tools/schema.py +11 -28
  134. xinference/thirdparty/fish_speech/tools/server/agent/__init__.py +57 -0
  135. xinference/thirdparty/fish_speech/tools/server/agent/generate.py +119 -0
  136. xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py +122 -0
  137. xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py +72 -0
  138. xinference/thirdparty/fish_speech/tools/server/api_utils.py +75 -0
  139. xinference/thirdparty/fish_speech/tools/server/exception_handler.py +27 -0
  140. xinference/thirdparty/fish_speech/tools/server/inference.py +45 -0
  141. xinference/thirdparty/fish_speech/tools/server/model_manager.py +122 -0
  142. xinference/thirdparty/fish_speech/tools/server/model_utils.py +129 -0
  143. xinference/thirdparty/fish_speech/tools/server/views.py +246 -0
  144. xinference/thirdparty/fish_speech/tools/webui/__init__.py +173 -0
  145. xinference/thirdparty/fish_speech/tools/webui/inference.py +91 -0
  146. xinference/thirdparty/fish_speech/tools/webui/variables.py +14 -0
  147. xinference/thirdparty/matcha/utils/utils.py +2 -2
  148. xinference/web/ui/build/asset-manifest.json +3 -3
  149. xinference/web/ui/build/index.html +1 -1
  150. xinference/web/ui/build/static/js/{main.2f269bb3.js → main.4eb4ee80.js} +3 -3
  151. xinference/web/ui/build/static/js/main.4eb4ee80.js.map +1 -0
  152. xinference/web/ui/node_modules/.cache/babel-loader/8c5eeb02f772d02cbe8b89c05428d0dd41a97866f75f7dc1c2164a67f5a1cf98.json +1 -0
  153. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/METADATA +41 -17
  154. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/RECORD +160 -88
  155. xinference/thirdparty/cosyvoice/bin/export_trt.py +0 -8
  156. xinference/thirdparty/cosyvoice/flow/__init__.py +0 -0
  157. xinference/thirdparty/cosyvoice/hifigan/__init__.py +0 -0
  158. xinference/thirdparty/cosyvoice/llm/__init__.py +0 -0
  159. xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
  160. xinference/thirdparty/fish_speech/tools/api.py +0 -943
  161. xinference/thirdparty/fish_speech/tools/msgpack_api.py +0 -95
  162. xinference/thirdparty/fish_speech/tools/webui.py +0 -548
  163. xinference/web/ui/build/static/js/main.2f269bb3.js.map +0 -1
  164. xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json +0 -1
  165. /xinference/thirdparty/{cosyvoice/bin → f5_tts}/__init__.py +0 -0
  166. /xinference/web/ui/build/static/js/{main.2f269bb3.js.LICENSE.txt → main.4eb4ee80.js.LICENSE.txt} +0 -0
  167. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/LICENSE +0 -0
  168. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/WHEEL +0 -0
  169. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/entry_points.txt +0 -0
  170. {xinference-1.0.1.dist-info → xinference-1.1.1.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
- xinference/_compat.py,sha256=vpf_M9Ou6d9qaq-hG5isJ-C8e8UdPZPqoWcPhabfNko,4135
3
- xinference/_version.py,sha256=ENOsRw9OHQL_a2m0T4MVfI2yL84k11_7guNq3F53rsg,497
2
+ xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
+ xinference/_version.py,sha256=KVn0Ov8TDbw_64Bnx0sEL1tJHtIHnjgOBjDH52SqYSA,497
4
4
  xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
5
5
  xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
6
6
  xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
- xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
8
+ xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
9
  xinference/types.py,sha256=t9SIU06Y1Y_lmXMfQmYAHmP8K6vTnD5Ly32z4KqriZE,12514
10
10
  xinference/utils.py,sha256=zYgf9bCvfbybRt3gEog6r5WJCpj0czZCf0qgRdYjkN8,720
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=4tEu4YiT5iQU9ZVPI5gpQzwe-pEXiM05o_7S7MnJHBg,92140
12
+ xinference/api/restful_api.py,sha256=hqz4cnAQML3_-FFkx8JFC-Me4bOp9EZZ1oUosN9IC0A,93605
13
13
  xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
14
14
  xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
15
15
  xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
@@ -31,36 +31,38 @@ xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1
31
31
  xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
32
32
  xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
33
33
  xinference/core/supervisor.py,sha256=6DNERyU_Un-Xc9a1P2EyVmJiNOaKI7pBBNwiC4BA92s,53088
34
- xinference/core/utils.py,sha256=trVesJM9GLiDXYtyoVt23rV_AS3G-gAu2BZpBkSMn8w,11067
34
+ xinference/core/utils.py,sha256=ATE3bHC5_C9cf6Kvm0-aAdSxO5l40emyZCF6hHd0oDs,11282
35
35
  xinference/core/worker.py,sha256=YIlaQosBRj_VStfZGPfWnT2ie13GW8K4NNEP5qz28lI,46402
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=yQI6KuRUzih0rs_fInp2Lr3rwkOjBOM0eydPaF7VKDQ,48385
37
+ xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
38
38
  xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
39
39
  xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
40
40
  xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
41
41
  xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
42
42
  xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
43
- xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
43
+ xinference/deploy/test/test_cmdline.py,sha256=UecwELfMA03i-AL8uxluhW8A12kzhbHc6gsMg1R_c24,9015
44
44
  xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
45
45
  xinference/model/core.py,sha256=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
46
46
  xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
47
47
  xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
48
48
  xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
49
- xinference/model/audio/core.py,sha256=bdStvxdYJC2R8YAs4W58P97MrcREq70Ta9JX1ROxynM,6894
50
- xinference/model/audio/cosyvoice.py,sha256=Enur1Y4Xa-mpr7wwnoXWwhyh7PUAjrHZ8DV91tTrpjE,6426
49
+ xinference/model/audio/core.py,sha256=jQN-0podPYYu1FEjTPQtlTc4g1fZnk89lgapkshp3Ss,7290
50
+ xinference/model/audio/cosyvoice.py,sha256=aGg2twmh4_NHHbW2jFVQ7x6bi-iZrFLSM5v5dqfbnBM,7301
51
51
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
52
- xinference/model/audio/fish_speech.py,sha256=rdt73VK512WocFhL6WqcqoxOkMYtB00sMu40umt9RuQ,8856
52
+ xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
53
+ xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
54
+ xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
53
55
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
54
- xinference/model/audio/model_spec.json,sha256=Z_Y7Fv6fxLGAX8em5pgGVR2ZxBxtCsy0ANsKrjy9vA0,7300
55
- xinference/model/audio/model_spec_modelscope.json,sha256=U82E5vZahi4si6kpCjdp2FAG2lCpQ7s7w_1t6lj2ysI,2038
56
- xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
56
+ xinference/model/audio/model_spec.json,sha256=7tHhrduauuIAawExL8kUg9QSqqSS4Gz0LZQ7dNCnJr0,8029
57
+ xinference/model/audio/model_spec_modelscope.json,sha256=T-dbWajqrY0aXhUJa2CIxj0gtT7TwOuTmTazs68Wr5k,2521
58
+ xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
57
59
  xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
58
60
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
59
61
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
60
- xinference/model/embedding/core.py,sha256=kGMxfKQ5s0G2fJcW-zVxKThDFbOWpSQD8vkCgnhFnoU,29593
62
+ xinference/model/embedding/core.py,sha256=ijobgaf8ZXY7epxE4m1jqnMIJDaAwzHPoWExhaMtBMY,32201
61
63
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
62
- xinference/model/embedding/model_spec.json,sha256=cVYzB4VLYw2FoP7bfLntTuMVDEigHTGDSyBtcj8F6gc,7060
63
- xinference/model/embedding/model_spec_modelscope.json,sha256=kWPY9tILL69X_6iDuVoh6Y_VODLJ7EFsD0CGkbuQlGo,6210
64
+ xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
65
+ xinference/model/embedding/model_spec_modelscope.json,sha256=XGXKaB0sI-pDuboCW39AIugRuDFNvQE6hNhp67uoKsA,6414
64
66
  xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
65
67
  xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
66
68
  xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
@@ -69,10 +71,10 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
69
71
  xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
70
72
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
71
73
  xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
72
- xinference/model/image/core.py,sha256=qq5Yz0lr50Ap2UV8Yd9B3ddYPaAYGZFcZY9tKzdar0c,10625
74
+ xinference/model/image/core.py,sha256=hsYQMqQYtdyBVzMvaiXDVnwvRGggDjYO6yDyZgBDt9E,12947
73
75
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
74
- xinference/model/image/model_spec.json,sha256=YLwNpHd9QU3Mvs_DVE7UrHjqUF_dVzqxKwb6gzHlEbg,5911
75
- xinference/model/image/model_spec_modelscope.json,sha256=0RIecnegAoe86paNiMxs-YVc8c4Ag3BXRG2CKBSmvNk,4806
76
+ xinference/model/image/model_spec.json,sha256=usoI22RQaGnO2SyWT41stVOCaM00ur_pEsIJSVXorqw,8972
77
+ xinference/model/image/model_spec_modelscope.json,sha256=F-n6cGZDke7UqAT5_wEhS9l--QVqDGp7Nb-OClerXms,7875
76
78
  xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
77
79
  xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
78
80
  xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -80,31 +82,31 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
80
82
  xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
81
83
  xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
82
84
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
83
- xinference/model/image/stable_diffusion/core.py,sha256=M_sYFsY_q91l0D6O7AqQVd_h-RIgXcmaydyCvASyNsI,23055
85
+ xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRIr9EEK4IzgydYuRf7pI,24286
84
86
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
85
- xinference/model/llm/__init__.py,sha256=WqNnI4ePhe1XJ_gzFOk-wpM9fjBjUpDwGlAW9CuzlNM,14020
87
+ xinference/model/llm/__init__.py,sha256=RDfLCynV34DcGfL2Y8Aw7S3pruC1TiPc8apcmgAYqZs,14052
86
88
  xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
87
- xinference/model/llm/llm_family.json,sha256=mlqXYbBkjBeB3xWRpaYpScpoDM5DIT1ESxI8IE7lDoI,307998
88
- xinference/model/llm/llm_family.py,sha256=tI2wPefd7v-PWcVhUO2qy6iGob_ioeNCwAQQzal-2o4,39549
89
+ xinference/model/llm/llm_family.json,sha256=txOGr7yF-OTqnvjz4_S-9NqnNrL_PN4BLiQ8zAyoBu4,317854
90
+ xinference/model/llm/llm_family.py,sha256=HiWobT1SInGXWT78g673K5-FoDkDi1dSUU4pmfFAPPI,39050
89
91
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
90
- xinference/model/llm/llm_family_modelscope.json,sha256=nySjsEQk6V6PK0IX4zpjUyTQLBVGYv77cxwdHlagvps,238793
92
+ xinference/model/llm/llm_family_modelscope.json,sha256=vCQ1oVuqKvFDobVR9N4YN6ROJO2Tqj_qAmeJmyHLBRI,248311
91
93
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
92
94
  xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
93
- xinference/model/llm/utils.py,sha256=uHLhiaxPNgrIOzGvVJJlwE2S7eQtFis4uvfOjFSVm4Q,24294
95
+ xinference/model/llm/utils.py,sha256=3g14I8vKnTyEal34BfzV2j24ztlIWt8_2V_uU_OZ02A,24458
94
96
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
95
97
  xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
96
98
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
99
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
98
100
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
99
- xinference/model/llm/mlx/core.py,sha256=ojemIUVXt4ApI5LgjJ2BBXF_gw49Cu4EtixurLnSH1s,15318
101
+ xinference/model/llm/mlx/core.py,sha256=wBxWibZlgQy43h6AWZS5SV6cbfUUPq8WrXfzbXNcf_s,24141
100
102
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
101
- xinference/model/llm/sglang/core.py,sha256=1xXOyn3oWYYl-AYvAGwsQkxsaEf0kpbdKQlfORgU7Dk,16721
103
+ xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
102
104
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
103
- xinference/model/llm/transformers/chatglm.py,sha256=tr6nEfHAg_mFRDlqXLMvbSq6U47851jOpqTz_vkWNJM,22266
105
+ xinference/model/llm/transformers/chatglm.py,sha256=vHBPIn5nEkrjBmonYkCHAIxDwvNeZHXK8EQz3B2vObE,22418
104
106
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
105
107
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
106
108
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
107
- xinference/model/llm/transformers/core.py,sha256=8-BKAXWhBAQOnk1tDHwNQzq5x74-y1P9kdxO2D3ZhjQ,28247
109
+ xinference/model/llm/transformers/core.py,sha256=ADX1ckh41ziKYZSmlcjGFEjSh2TZGWNxzFMhV_ZW4qg,28270
108
110
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
109
111
  xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
110
112
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
@@ -116,13 +118,13 @@ xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDO
116
118
  xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
117
119
  xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
118
120
  xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
119
- xinference/model/llm/transformers/qwen2_vl.py,sha256=i8mypQwaPaaGQ0OIS55H8yuUX6gH87ubPuPQHHAD9fw,7304
121
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=rn2_-rZk6XiL8Mmhr2Sne5vhLSuqKDenYfkje-p6n1A,7390
120
122
  xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
121
123
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
122
- xinference/model/llm/transformers/utils.py,sha256=Ej9Tu2yVAotfXMFsl30QlYXLZTODU6Pv_UppsGGUiSw,19185
124
+ xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
123
125
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
124
126
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
125
- xinference/model/llm/vllm/core.py,sha256=ZPg4oJql8mhHMs5CpHo83Fm6peeKvB3EBXwaFNQQ3Cw,35185
127
+ xinference/model/llm/vllm/core.py,sha256=irdnUgrbMvo6toayZWbtvwqTgsnU8lISX-p1R3Wf1Vw,35956
126
128
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
127
129
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
128
130
  xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
@@ -137,49 +139,53 @@ xinference/model/video/model_spec.json,sha256=yQcLSU3vRJys-ACdHGtTNdz2pX1O9QDQ5r
137
139
  xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfnGbyvOC4FtYIf2ucr8TvM,815
138
140
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
141
  xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
- xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=WWPad_PGBT_C0AJ4w_ki5EJxGr9gX5fmK0kUsnhgnGs,2343
142
- xinference/thirdparty/cosyvoice/bin/export_trt.py,sha256=cjek1s4asmBUOMfNpi1gVMlkbn1sn2E3MXe_vDxyR-E,623
143
- xinference/thirdparty/cosyvoice/bin/inference.py,sha256=nq5doMD1JCgwVgh1o35pp-8O9njOxezJvnjvWVsNMCA,5533
144
- xinference/thirdparty/cosyvoice/bin/train.py,sha256=984UhhoGC5SO5fE3sL_k28Sndz9ElzUAO8FBqRYF9DM,5212
142
+ xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=5x2fXo-HX6r_3aBoXfyGYG6w1Qp9l_XUcxesYZqGUyA,3143
143
+ xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=o6qMUNJDrvXw5MHwIKS6Tj_eeJsSrOrAnvQ0YD5HTmk,2628
144
+ xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=PjD9UHpK2uGn4i7NBows5vpDd2Ho5oXy-jey2p0Jz8E,4560
145
+ xinference/thirdparty/cosyvoice/bin/export_trt.sh,sha256=LS96nBmlkJn097zmyGhSAdDLQpZBtAkQGxCFedNikAQ,931
146
+ xinference/thirdparty/cosyvoice/bin/inference.py,sha256=l4wX0LPraGw41VFQOMWp8_kMe1Ac3ZkuK4tXQHhjXko,5471
147
+ xinference/thirdparty/cosyvoice/bin/train.py,sha256=8S9T_DIGY-hYsq_jQJ5y74Wp3w-fhojLD8ChZYWH1Gg,6806
145
148
  xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=h9XEzKSqyg-5rj79D_H4hQRHNr05boGo82zjGntsr6s,5429
147
- xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5ZRsZjVYSSEEC7iGQG62zFCzbhjygNPxKeR0Ougf86M,8997
148
- xinference/thirdparty/cosyvoice/cli/model.py,sha256=R4YAp0OIqzf9dPxZeQef4r-t7f44vKLI5Fblpcy4Dns,10178
149
+ xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=VrtqD6do3ISDH74-HdRTyyz-NKBDZOg4oB39ZHeauRc,10150
150
+ xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5rA7nUy7Mkc9WEKXrkxHDIqQK26sN_LRgqRO8_8UfQE,12587
151
+ xinference/thirdparty/cosyvoice/cli/model.py,sha256=J5JnJ9fqIrfg8tiIn8a1cyZfkFEoeyKZeSCeYoT8DIg,26351
149
152
  xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=o4y725HGw4wOQ6ZKMIXUiXPJJuNlVCuat5yLKrfw50A,5233
151
- xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=Dd0r4VxbcR2o7cgCtYVPd_VxEc1uNIxCB7euLn0FxiM,13008
152
- xinference/thirdparty/cosyvoice/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=4RXtRZwEgTZ_21m6TcYtYzjBtOR5GyaSfZKBjVB1bhc,8878
154
- xinference/thirdparty/cosyvoice/flow/flow.py,sha256=44ZtlRw4aBb8YFo2ejeOTUJ-BMyVVI2k0XFVjhtppwU,6065
155
- xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=TMhnw1sUSJeJ1zLc-PcD9GWRNTGju6lv_zY23Y95vgo,5882
156
- xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=jjgY29-djOCv61-h0lth5a8mpWoL5nDo5BKgc_uU73w,2890
157
- xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=6CJJZv1hOzK6jTbqsYpcL5UQk1O5dnc25NVgnSDuA_U,5403
154
+ xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=t-qv63eCAXmeU863MKckFT7J45nTQomT_DLiMH6m_Cg,15416
155
+ xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=SH54O2Z7iXBjwVtlOufgF9SyEEV7p5hg4yv4ueccbSg,12311
156
+ xinference/thirdparty/cosyvoice/flow/flow.py,sha256=l8tkOqkLo7CkH9tb2CzcEsIoQcMqbMMIMH5fclLmxi0,10252
157
+ xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=AhSNEWfkm9nnfqXCgl0MHusJzO30ACcX50jdGpuq0so,10647
158
+ xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=CG331RLBuvsAWUmglhz00OiFmnnmi9KpO-arTitwsuM,3060
159
+ xinference/thirdparty/cosyvoice/hifigan/discriminator.py,sha256=PorODWt9kG9fk1PNApkPm8QPuzF-ufUkhOukoQ8g9ao,5341
158
160
  xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
159
- xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=cEDILcx6BD7Ihpb-XG-xFGhjT43FsadBXX6JkIb6e3A,15010
160
- xinference/thirdparty/cosyvoice/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
- xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PZD7gm6YTfwiHwt8h3OGiSkQ695drKfVUHciTKR4ucA,9253
161
+ xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=AzO0ALwzt7XvZqzxzl2xuRSsM3IecoUQOHoQU_fkTPk,15498
162
+ xinference/thirdparty/cosyvoice/hifigan/hifigan.py,sha256=CH96CjSUNW-C2dCocseSZhIUQ2OAS0OLj4sRsSbCYys,3231
163
+ xinference/thirdparty/cosyvoice/llm/llm.py,sha256=vPJIVmQmLvboKN-ywb5bHkshXyAetaJtHxWzE7TYQWc,14420
164
+ xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py,sha256=lDQPx83ycMaaOutjKQxSQQROIHFOAf6nNvNh-eWlbfI,7456
165
+ xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken,sha256=dHl5Yx6BMZNDaqvP98HCNdN96Al7ccVj7Itjt6UVxxg,907395
162
166
  xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
167
  xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
164
168
  xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
165
169
  xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
166
170
  xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
167
171
  xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
168
- xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=LLSnAPvJBIUDeV7vRhyVBZuWXDRmJ73dlZug9aJfodw,11398
172
+ xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=NkbnSHg_5sBptCTMnL_oG8VKXM_qGucEHfOYpgPMzT4,11399
169
173
  xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
170
- xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=8eMmGrfnPyXmXwrWLcxhX-mL8sj1eHaLXBhFnBkNDy8,9595
174
+ xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=GSBYK-LJt894Nee1ORGOweudqPLHEcYlf4WYs3kpUbk,9602
171
175
  xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
172
176
  xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
173
177
  xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
178
+ xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=f1mSmwAVFN8srFbkCTVBPEkGfqpZwbUsaTKuY9NW3cA,13766
174
179
  xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
180
  xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
176
- xinference/thirdparty/cosyvoice/utils/common.py,sha256=xGxkyedwKLr08T0NXTP1PgdgKfgMfepDfHzuebJw5CM,5146
177
- xinference/thirdparty/cosyvoice/utils/executor.py,sha256=3SpBSW9iJ4wSRHv-qLEd3G_tMEL01b6ZAZC48hyqeEI,5114
178
- xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=5b-KWbUTxGD7bIguqSssTXGqHZfadnFbTaMPxCEdnxk,2021
179
- xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=v5CBGTaebwT4e4TFf33PmwRtFx9bACylpU88ycBursU,4042
181
+ xinference/thirdparty/cosyvoice/utils/common.py,sha256=nBnqfbt_6hpmJOqFu52GDgwZgrY7KmBE5QvvifMxhfk,5834
182
+ xinference/thirdparty/cosyvoice/utils/executor.py,sha256=tivb-mBApjKUakLKqBeMvjqAZUyPa_6I6cZfbJoxmhc,8559
183
+ xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=rNS-oF5o3Xe159ge-rAxPdnIYkd7B50ufC3yz5rP9mE,1661
184
+ xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=kk4JnPCuzmO-K2jARcqyLhZpQ6iq2B823ksmgX_qufE,4029
185
+ xinference/thirdparty/cosyvoice/utils/losses.py,sha256=VRkh1v_mmss65WcRKv9-EPqOwSKGixeUtI0bIXZgdZk,607
180
186
  xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
181
- xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=BYzf1Ugnbba26wnoSfv_yq9FZaAJHLTn1q6QjgvZJQY,24940
182
- xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=UsBZ-2kkew_hbdsUpQ4aVfiWvPBrF7IwcVGaCMPnbqU,11863
187
+ xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=lEfquE_Lcer2VG2zUVa0n-UxgvJEdEodyT66so-h6jQ,24920
188
+ xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=JH6OWnIcR9NZE9CP-Clu6-YuBAmHgkzzVp4q48FUvsc,15154
183
189
  xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
184
190
  xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
185
191
  xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
@@ -211,11 +217,62 @@ xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT
211
217
  xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
212
218
  xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
213
219
  xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
220
+ xinference/thirdparty/f5_tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
+ xinference/thirdparty/f5_tts/api.py,sha256=yYr9SwJrgyzm8E7Z5LZYkW8p28PbVRtjr9lIcDRvJjk,5571
222
+ xinference/thirdparty/f5_tts/socket_server.py,sha256=XwClpY1a3MtTdedMWT5fLTS1Bt2DnvydZs2jnLxSBdc,5353
223
+ xinference/thirdparty/f5_tts/configs/E2TTS_Base_train.yaml,sha256=93n-t-7bs21nPNiA7iHDfub5BOU154wusr5HQ4FCgrg,1524
224
+ xinference/thirdparty/f5_tts/configs/E2TTS_Small_train.yaml,sha256=OICiTEILCBFCzuH8-uB_yaubX7RFpXlmQmkHfEz7uBc,1450
225
+ xinference/thirdparty/f5_tts/configs/F5TTS_Base_train.yaml,sha256=0ABJmiY1MZuSlnpZM2P1V-nUPSCf3Z2H_YhH6GNUcbg,1593
226
+ xinference/thirdparty/f5_tts/configs/F5TTS_Small_train.yaml,sha256=Ipd_-hzSm3Kd1M_kS70viE_X6oF-hyiQrzpprjJv2rE,1545
227
+ xinference/thirdparty/f5_tts/eval/README.md,sha256=JL2cAWgA1ruqrNmEpGSYjyIwX2MR33JPI5-rP6pSfvU,1739
228
+ xinference/thirdparty/f5_tts/eval/ecapa_tdnn.py,sha256=mU979VeH7XIOl01W7N0wR7EZg-TsR12nKde_dNLqIBM,11365
229
+ xinference/thirdparty/f5_tts/eval/eval_infer_batch.py,sha256=TUKSXmAo1LKvlTr8RS7_pOwowDANvLF-fOzJ8e17EE0,7337
230
+ xinference/thirdparty/f5_tts/eval/eval_infer_batch.sh,sha256=qWvsnkBJEVStA4FSlgoMkgxbMUtKrjtYIb0lrxatPEQ,736
231
+ xinference/thirdparty/f5_tts/eval/eval_librispeech_test_clean.py,sha256=1Pt7o6MbmKHQGu3jsKz8Ez6lbWiEGm_T_-h9jV2_3SM,3119
232
+ xinference/thirdparty/f5_tts/eval/eval_seedtts_testset.py,sha256=FjkHt_Cr3L8kRDmLFwU9crc3f2qB70-XalI1IhZykMU,2855
233
+ xinference/thirdparty/f5_tts/eval/utils_eval.py,sha256=lgr85GHc8q43omDab7MEeKUknoXWYIFJgA9a3bfZkoo,13752
234
+ xinference/thirdparty/f5_tts/infer/README.md,sha256=dN4SXdOntZFn8GC6LDu_HSA17XiGwA1LXpNrA5fLG7A,7200
235
+ xinference/thirdparty/f5_tts/infer/SHARED.md,sha256=tsli9AOniGJn9RWqMRaxmKrNU8fIjLuoXvfBIC3aJbE,3257
236
+ xinference/thirdparty/f5_tts/infer/infer_cli.py,sha256=FbCLpvlvG2qRHlzVh7YEPqkbsexWJ9xvblHhBPfQA5M,7579
237
+ xinference/thirdparty/f5_tts/infer/infer_gradio.py,sha256=kZstlld1FU01I1X_dfTX_AZZHtr11NHyCNJujPsngOk,32230
238
+ xinference/thirdparty/f5_tts/infer/speech_edit.py,sha256=ZQHqvjTz44WoNIeDeKFaRU4JTZavm41zUuFroZZJtoE,6448
239
+ xinference/thirdparty/f5_tts/infer/utils_infer.py,sha256=bgY9giSv520fSx-4SCTRVVoC8m5LVgcicvoKKJq4zAI,17969
240
+ xinference/thirdparty/f5_tts/infer/examples/vocab.txt,sha256=Thc5NL5WIZ6zh1n6jUxIEy1aNEVPDESrzkCbz2oH7EY,11255
241
+ xinference/thirdparty/f5_tts/infer/examples/basic/basic.toml,sha256=vyD-fjKRJl63z8tpHQbbJJRXK8x4qbpxiEB894BWeVg,538
242
+ xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_en.wav,sha256=sOIgSOckFPzB5rY0LkendNdIoZXtNOSls_z0FnB_K3E,256018
243
+ xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_zh.wav,sha256=lnJKETJA0fgsbe0TNBIvAXa5bJImzNPJGeYlvP0qPt4,324558
244
+ xinference/thirdparty/f5_tts/infer/examples/multi/country.flac,sha256=uxVwi0s4deN77sRlkaXYnhqaY_2tO4_kpchzj09VRAA,180321
245
+ xinference/thirdparty/f5_tts/infer/examples/multi/main.flac,sha256=SrsRB3cc5-FJJv3oeblZ3ebbblckdrmGhPBORel4qxk,279219
246
+ xinference/thirdparty/f5_tts/infer/examples/multi/story.toml,sha256=YXyG9WKvRQoEbvzymPfC0JfhRPuIqhVPt4Pl6FCnYAw,469
247
+ xinference/thirdparty/f5_tts/infer/examples/multi/story.txt,sha256=x2786TF7Ddmd9rLCbw8g_UoNWk3Ay2m3uTMPwZ5vvMU,1404
248
+ xinference/thirdparty/f5_tts/infer/examples/multi/town.flac,sha256=59BpuOvVGAw7MP3l03jwod2slnItYs9DU378PD86POg,229383
249
+ xinference/thirdparty/f5_tts/model/__init__.py,sha256=JmdAzUUCK6TLeuzZI1SA-54ws4l7SszormqEt6e12Qw,276
250
+ xinference/thirdparty/f5_tts/model/cfm.py,sha256=9rv6V6Mjc8PrHEF9d4hx3P4qZPmT23NO0t-S2WzTdMA,9415
251
+ xinference/thirdparty/f5_tts/model/dataset.py,sha256=yk7j7n2nBejWjod9v9cbYgpfzeWjPBJkYnd7bK_hkbk,10544
252
+ xinference/thirdparty/f5_tts/model/modules.py,sha256=9y8oJzryjNPzHGYP99GBNuJQ4p8cOz08KUQNO8oIphk,21737
253
+ xinference/thirdparty/f5_tts/model/trainer.py,sha256=PCV3_Q3ZunpAdkooybzOC1MW4XKLTf_EQC9dKBkQ0k4,16312
254
+ xinference/thirdparty/f5_tts/model/utils.py,sha256=8-dKoDRiK135BNf_ziaC8HLspjgiR-hXYBrW2iq3jvI,6466
255
+ xinference/thirdparty/f5_tts/model/backbones/README.md,sha256=-PRyZ0YTZ2a9AjorY6d70mqL4FGgv1XdE4qSPhUHQDg,701
256
+ xinference/thirdparty/f5_tts/model/backbones/dit.py,sha256=xC1jkPO6bQ2768B-UBuJRWiR-iQogu7cINXm-d3utEo,5240
257
+ xinference/thirdparty/f5_tts/model/backbones/mmdit.py,sha256=o4iKTCcmmw_0mtKPqrEEjVWxij4xgRN6JCtTcXjre08,4208
258
+ xinference/thirdparty/f5_tts/model/backbones/unett.py,sha256=hS5j_Nc1N2q7VXLfcz-z185kr40zd8STCgpNAgkL5Ho,6956
259
+ xinference/thirdparty/f5_tts/scripts/count_max_epoch.py,sha256=-XaRu5xK5MAlCRapuA4BlO4ukE9Mymw4ttOcNWR1ZTk,1099
260
+ xinference/thirdparty/f5_tts/scripts/count_params_gflops.py,sha256=DjZzIilUXXR-X43MRr45q8u7CK88Bps1CezHoZWxIfY,1358
261
+ xinference/thirdparty/f5_tts/train/README.md,sha256=SW5eJOHaUSmtCGwfv_pgFPOgqzvGp7mvRZHeBDyOr94,2352
262
+ xinference/thirdparty/f5_tts/train/finetune_cli.py,sha256=C0SV3gRhWjrWn_K5s8YtQW7ntsj-BCp3w9p0pIgYj8o,6646
263
+ xinference/thirdparty/f5_tts/train/finetune_gradio.py,sha256=zeYpvRFO-JK3c_aNTzOQZyV9XwJYGjw3DxfV4ib_ZhA,65801
264
+ xinference/thirdparty/f5_tts/train/train.py,sha256=tmO4AfMDS641s2DIFSZPdTBg3KxRU3P1B8wvSF_NFUs,2577
265
+ xinference/thirdparty/f5_tts/train/datasets/prepare_csv_wavs.py,sha256=26tkuj8Fzjsy_-NGBY4N1K6Grq35n0SQJSf-4G_fA_s,5301
266
+ xinference/thirdparty/f5_tts/train/datasets/prepare_emilia.py,sha256=UKMIPzc3ZG0SpZe4cyeQKdM2qp0JI5eB87X5mlfHumY,7414
267
+ xinference/thirdparty/f5_tts/train/datasets/prepare_libritts.py,sha256=d6H0_VtlEX2pXoW8VW98VLcaKYmq0dTT7-opVMGiN4s,3151
268
+ xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py,sha256=OVL5AlqiNsbzuw-YzR6Os01cyebvqbfZirlgC4Au0a0,2246
269
+ xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py,sha256=4MSCHkjjlKjao_2dAK2H9bU98fCVd26MoVZ3KBMy3CM,4579
214
270
  xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
271
  xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
- xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=zwsHs1oG4k7TBqBDZosGLW4uWADTzKWOjo0pI956PNM,7401
272
+ xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=UpWitG4B0Ss5ypESvMmLUXm2trBHX23f30MReF9mOfY,8066
217
273
  xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
218
- xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
274
+ xinference/thirdparty/fish_speech/fish_speech/tokenizer.py,sha256=EfI8cLdmC8IvZAG2aIn62f6lipcnDqXLHt9W-sjLOcQ,4686
275
+ xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=MtVaLPtMUEmLTsypsO3CAag17PHuiyMpc9WOR3vsnkA,4470
219
276
  xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
220
277
  xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
221
278
  xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
@@ -240,15 +297,15 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1
240
297
  xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
241
298
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
299
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
243
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=mlrD22dZALaaoVphbriUYL6Ss1II0u-IZhwple2e5FI,28039
300
+ xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=dkw6XUWxvfBpDhEIjnt15VsBQGh0vloeWCu2ApnZqKo,29681
244
301
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
245
302
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
303
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
247
304
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
248
305
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
249
306
  xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
250
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=hcrKvtDWa-jmPzFqhFJwHxEeY2QNZfAadKhwAo-E5CU,1203
251
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
307
+ xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=YewVVv_LremHj0wKuHSTIsfiE9I6HR4QAfZNmpye6f0,832
308
+ xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=lQ7tT28B2go8B8HSG8fYm_ONmvN7SGax7nRxB8qpg_s,3832
252
309
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
253
310
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
254
311
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -274,26 +331,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2
274
331
  xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
275
332
  xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
276
333
  xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
277
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=NwcVYzbRLqdh8Y1RAXBNpsmzYjQj1GKOTkW5EaNxMYo,46887
334
+ xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=naidGvMXg5hU5J-DdtR6dBOflXcr7FG0BxichP7z-No,46891
278
335
  xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
279
336
  xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
280
337
  xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
281
- xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
- xinference/thirdparty/fish_speech/tools/api.py,sha256=LXq6L84EW_5bvBp6fgIkkegDgVQ8obYPph1OFm9SW5Q,29282
283
- xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
338
+ xinference/thirdparty/fish_speech/tools/api_client.py,sha256=-3cKLJqgDzlm-syIqb8ffCe2UcPNk9jmn7U0zAky818,6666
339
+ xinference/thirdparty/fish_speech/tools/api_server.py,sha256=rHA1Np-M5zkhklkerwHF0-ubiE9__xNLz9_WRpEQbZU,3193
340
+ xinference/thirdparty/fish_speech/tools/download_models.py,sha256=yVTkHPe5TkA1Ol59wlXD13ON19Auh986go_q1m1-rfk,1357
284
341
  xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
285
342
  xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
286
343
  xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
287
- xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=JKrZwFdUXFegFe7d8eJcF8xKbvOnddjegxORCTL3KBk,9625
288
- xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=yKWc9wAycB4GSeAACO0_qmc7ONZN_zZP8tRBmCTbPkE,2623
289
- xinference/thirdparty/fish_speech/tools/post_api.py,sha256=tWpMgh264Abk7t4w0du51sGMeXDYQm3bLdh1NadxUAo,6993
290
- xinference/thirdparty/fish_speech/tools/schema.py,sha256=gh43aA3-kG2bZV-8UJhGqY8d-q1aHZIZy__fBtw0FLk,5257
344
+ xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=YQ3XfvJCI7dYO8cMfkmWeDf2ZW2FE-FQ5LsRnTQyDbI,9633
345
+ xinference/thirdparty/fish_speech/tools/run_webui.py,sha256=hWAztS4rPG7tV8NGXY8furs7y4DpJoG3vZoGr5H0csY,3273
346
+ xinference/thirdparty/fish_speech/tools/schema.py,sha256=B8o1McuIqwd5GLN8ka3Gu4AFxJG6IQ0ChfOSIBw77NA,4647
291
347
  xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
292
- xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
293
348
  xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
349
+ xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py,sha256=cyhHYIwjj5DqCacvgzHypnVoF-CU_f5nuA8Ah5VHSKs,6291
350
+ xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py,sha256=a-GjyCDyq4Mb8DXu_8DrxUcjYTZBozca0MP7wtdpiq0,4186
351
+ xinference/thirdparty/fish_speech/tools/inference_engine/utils.py,sha256=mNMegqyStPPrikXLYn6y0xJWniGBrF2Un4gOmyQo9to,1006
352
+ xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py,sha256=4Od83XlT3Yjs-Hwh9rc6N2eDq9Gb5GEM0vWZbjwJ_us,2099
294
353
  xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
295
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
296
- xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=mbC8hXgpkXAQS_GAIodpcZiHVBqe5TJOBAqi6WQ2rDo,33784
354
+ xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=mFFPR8F3ALc-nj9q8Kp8nl-uqGwJ0VWOV7bYbjqIoys,4619
355
+ xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=p_GPFRL4g7NXjdN2clxWFz02srUDx19PzR_9O8jhrc4,34651
297
356
  xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
298
357
  xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
299
358
  xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
@@ -302,9 +361,22 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
302
361
  xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
303
362
  xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
304
363
  xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
364
+ xinference/thirdparty/fish_speech/tools/server/api_utils.py,sha256=0TZLCteNhH-CK1Z3V9hzsBekrFuqvUlC2ALOa3vJMvk,2419
365
+ xinference/thirdparty/fish_speech/tools/server/exception_handler.py,sha256=CUcaxCbpJtnIJOP2fDDw4ohLF6LlAkkvFjIDXIB1wXE,729
366
+ xinference/thirdparty/fish_speech/tools/server/inference.py,sha256=vfiDZUuw-Qwl5rocw_0Lfla8bh6ByMzjfg_3Oa22blQ,1334
367
+ xinference/thirdparty/fish_speech/tools/server/model_manager.py,sha256=fGqpX8bpV_zMWK27xCTuntyyOvUdv_HUfxnwWKKUCNE,3769
368
+ xinference/thirdparty/fish_speech/tools/server/model_utils.py,sha256=UOJ4elAEECtLZ6xV4OfPg7w35_VJcEE3Xbv4h5zy7vs,3947
369
+ xinference/thirdparty/fish_speech/tools/server/views.py,sha256=n0xuA4YzpKEDnaHQyhRAVTPnvi0dSueNn2_xB-ZHxn4,7709
370
+ xinference/thirdparty/fish_speech/tools/server/agent/__init__.py,sha256=SFo8uPXSY4H4ieaZ7VXbY4g0FNoxETSswSM-NZdj-HE,1946
371
+ xinference/thirdparty/fish_speech/tools/server/agent/generate.py,sha256=uOmgs9EvyL_VX9bhsHw1bSvNs-TEcDuEnrBo3rDYLoc,3516
372
+ xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py,sha256=IagvrWRjhSLHSMDI1Bg-dbjpSdebpGZwA1NkRyaMark,3678
373
+ xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py,sha256=Of2SFuaxinnVeFmiM27cHzcVwcR4f52SXDeRLFC8jAY,2614
305
374
  xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
306
375
  xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
307
376
  xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=NL53U8qZ4IkvUssv83ltP1c1-zW7QWvhxZcDTR7ZiOE,3824
377
+ xinference/thirdparty/fish_speech/tools/webui/__init__.py,sha256=lqYBevPJ1c9fXRuVTqcRBVf0800SyfCEy0bSD9bw6mE,6867
378
+ xinference/thirdparty/fish_speech/tools/webui/inference.py,sha256=Rh-6T0fKKOZCo_hn7mQwLiUYK8KrpeeVU8xg4Eqd1no,2155
379
+ xinference/thirdparty/fish_speech/tools/webui/variables.py,sha256=9XiZPmdSeOa6BQfjPTuGWfwhPt1HbN9OEP8-8aldihY,601
308
380
  xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
381
  xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
310
382
  xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
@@ -360,7 +432,7 @@ xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKK
360
432
  xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
361
433
  xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
362
434
  xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
363
- xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8GHZyZdwm89O4TQ,8455
435
+ xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvcrwaoZxWuKiHCiY,8459
364
436
  xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
365
437
  xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
366
438
  xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
@@ -410,14 +482,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
410
482
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
411
483
  xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
412
484
  xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
413
- xinference/web/ui/build/asset-manifest.json,sha256=uLgNRWGul6eu1yZ7PBjasZ-kWl19Q4677SvHU08XXhw,453
485
+ xinference/web/ui/build/asset-manifest.json,sha256=lxBw-PD6UKkQ129kBVzrjT7hZqMuoEXmgtMAzu7w5qk,453
414
486
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
415
- xinference/web/ui/build/index.html,sha256=-HDEsjVrmZKmDgb87MKkhZT0i6ZTeDdwmAZbH0pBBQ4,650
487
+ xinference/web/ui/build/index.html,sha256=2_u_R4l4IG3SoMr_3ZtCgLFnMCLdhgsaF9qaaFH3o70,650
416
488
  xinference/web/ui/build/static/css/main.5061c4c3.css,sha256=P7rcts4xzIqV_ikvTokJEYzZ5R9w_3wigAhs7ai9hgU,4392
417
489
  xinference/web/ui/build/static/css/main.5061c4c3.css.map,sha256=K2E6sUL58gZNSOo_9U-IMm9XCKQfnBlehW72IEYQQCw,8658
418
- xinference/web/ui/build/static/js/main.2f269bb3.js,sha256=k54GbViEf4aAqIgi7HAbgqgGR_CQCq11A77mQgWdUvo,1122862
419
- xinference/web/ui/build/static/js/main.2f269bb3.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
420
- xinference/web/ui/build/static/js/main.2f269bb3.js.map,sha256=BVlEU3ztz5hmQi8oszjIb2HJKvSArVG75HcCgHDXeoM,4924413
490
+ xinference/web/ui/build/static/js/main.4eb4ee80.js,sha256=yNA9dzznqqY-OdONLE5JZVUPeYaTOPSq3IVxn9jHrkA,1123418
491
+ xinference/web/ui/build/static/js/main.4eb4ee80.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
492
+ xinference/web/ui/build/static/js/main.4eb4ee80.js.map,sha256=RHeb95y2q3rAg-wUT7QSvYtDPPXWfH1DHwm98-Rz-A8,4926622
421
493
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
422
494
  xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
423
495
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -7099,6 +7171,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/8c5a08e9c5d9667198db3a7cc45ca
7099
7171
  xinference/web/ui/node_modules/.cache/babel-loader/8c5a2d0fccd50597ab4b3f3de8f42529dce51f00b58882c6b42911ed84052335.json,sha256=rxHXST-ejFa0qbVWfOfsxKf2KVMlVGLUj-50CMPZ-qc,1561
7100
7172
  xinference/web/ui/node_modules/.cache/babel-loader/8c5ba88b620eeedbb99db18a610138353a5a657170fdb8bd6969585f81b34f74.json,sha256=jfvwyJKrqXuVj2E8rMSzZFQcplrjJj6_fOUXHF_LkQY,842
7101
7173
  xinference/web/ui/node_modules/.cache/babel-loader/8c5e2f90ead0799d0a0cfc6a8241682d6825294a9d3991f2b32c85368742373f.json,sha256=Gt7-npuMYG1brqAXSRHCUyf3GvuMXl-Ig4rCaJ1HA1A,2091
7174
+ xinference/web/ui/node_modules/.cache/babel-loader/8c5eeb02f772d02cbe8b89c05428d0dd41a97866f75f7dc1c2164a67f5a1cf98.json,sha256=keCAL_5JzBZp1GZwVLv4eGJDG0DXeQXR-gM8m2eovUc,68763
7102
7175
  xinference/web/ui/node_modules/.cache/babel-loader/8c5fb74a2d3a9341168a21bcb58c9001100fee77062042d17f9c55bdb674d78f.json,sha256=Si5tMoQ5vB5Y2zi_DVWlYquZfA6PVNJmHaGP6GFmZNE,2485
7103
7176
  xinference/web/ui/node_modules/.cache/babel-loader/8c66da2a8e6a3e9dbeed44b9797891c385b34eb405a0f8a2451c711233af2f9f.json,sha256=OsGmjNmxfN6yB-K7pQQtqtCQECCEpcMuV7cOeXiqkmU,7262
7104
7177
  xinference/web/ui/node_modules/.cache/babel-loader/8c6a1448a8121b5c3b3604e2b713dd1a0fa6a2c4fceafa2eb1e2d80c274cfae7.json,sha256=igrhNRaUpoE9FxRgUdQwTWJZ5eAQx5cxfrUfab8WfqA,8462
@@ -9414,7 +9487,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/bd55c70319dbc19ceec0f0acfd8ed
9414
9487
  xinference/web/ui/node_modules/.cache/babel-loader/bd5faddae8fd655cc1db76fb5119e0f20685e414b354c19fc55926914ec64e0f.json,sha256=7hj24Mwy05PFGaav9LsjVMoYQv9lOOcXQaUK15K9mjo,1693
9415
9488
  xinference/web/ui/node_modules/.cache/babel-loader/bd6254d64cd97a3fa5456e01e896e803275ea461980e7c2b6f22e7875a605e2f.json,sha256=4Imjadq6nfq1gn0M0UrR2iwr15WmFQ8YPpkL9U73uHM,807
9416
9489
  xinference/web/ui/node_modules/.cache/babel-loader/bd69f67515abb09f7746f74513f1094198c604ffc9a0bab4b4d328e9a6d44a1b.json,sha256=cP0-aLAH3o6k_Y_BNywyr-LGQTsGcKbMfYm9ciiYE9g,1263
9417
- xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json,sha256=vK_50akBXt_n6RuP1yHaz71-pwUzDKkk6EsHNGLqPIM,65089
9418
9490
  xinference/web/ui/node_modules/.cache/babel-loader/bd6e3b3cbee9f2d64bbc8c62da1a628a8a8ec2f5037697a950f5c363a619e7aa.json,sha256=7iquDU6fzG8wmI1-_ZuH9tphn_EgdNLqWkZszgqTa8w,1113
9419
9491
  xinference/web/ui/node_modules/.cache/babel-loader/bd918644e0ecb7d99e41af695ac8a8d371eb497b9062c83fac3fceb8f903dff0.json,sha256=Akmf_Wc8uIU0Ba14mCw4ZYwMAoC_8Luxsi2eH4RbE_Y,1897
9420
9492
  xinference/web/ui/node_modules/.cache/babel-loader/bd9187144579112dafc1f14ccafaee12259e75aa8ecca852b0fd0a58c9ddeddd.json,sha256=uHo_vmj_Cto-nqLwe4HBdWHvNZF0vgVaO_LEuCp3uq4,324
@@ -15524,9 +15596,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15524
15596
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15525
15597
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15526
15598
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15527
- xinference-1.0.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15528
- xinference-1.0.1.dist-info/METADATA,sha256=pLzWAyI3EYcEd7FbPEOnh6qtrxo0LqjCv2EWxREy8ZU,21992
15529
- xinference-1.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15530
- xinference-1.0.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15531
- xinference-1.0.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15532
- xinference-1.0.1.dist-info/RECORD,,
15599
+ xinference-1.1.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15600
+ xinference-1.1.1.dist-info/METADATA,sha256=RRwH9NxEUeXOIK2ugtadSZTroLR9PVk-Nj5Ee28NS4M,23279
15601
+ xinference-1.1.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15602
+ xinference-1.1.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15603
+ xinference-1.1.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15604
+ xinference-1.1.1.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- # TODO 跟export_jit一样的逻辑,完成flow部分的estimator的onnx导出。
2
- # tensorrt的安装方式,再这里写一下步骤提示如下,如果没有安装,那么不要执行这个脚本,提示用户先安装,不给选择
3
- try:
4
- import tensorrt
5
- except ImportError:
6
- print('step1, 下载\n step2. 解压,安装whl,')
7
- # 安装命令里tensosrt的根目录用环境变量导入,比如os.environ['tensorrt_root_dir']/bin/exetrace,然后python里subprocess里执行导出命令
8
- # 后面我会在run.sh里写好执行命令 tensorrt_root_dir=xxxx python cosyvoice/bin/export_trt.py --model_dir xxx
File without changes
File without changes
File without changes
File without changes