xinference 1.1.0__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.
- xinference/_compat.py +2 -0
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +23 -1
- xinference/core/model.py +1 -6
- xinference/core/utils.py +10 -6
- xinference/model/audio/core.py +5 -0
- xinference/model/audio/cosyvoice.py +25 -3
- xinference/model/audio/f5tts.py +15 -10
- xinference/model/audio/f5tts_mlx.py +260 -0
- xinference/model/audio/fish_speech.py +35 -111
- xinference/model/audio/model_spec.json +19 -3
- xinference/model/audio/model_spec_modelscope.json +9 -0
- xinference/model/audio/utils.py +32 -0
- xinference/model/image/core.py +69 -1
- xinference/model/image/model_spec.json +127 -4
- xinference/model/image/model_spec_modelscope.json +130 -4
- xinference/model/image/stable_diffusion/core.py +45 -13
- xinference/model/llm/llm_family.json +47 -0
- xinference/model/llm/llm_family.py +15 -36
- xinference/model/llm/llm_family_modelscope.json +49 -0
- xinference/model/llm/mlx/core.py +68 -13
- xinference/model/llm/transformers/core.py +1 -0
- xinference/model/llm/transformers/qwen2_vl.py +2 -0
- xinference/model/llm/utils.py +1 -0
- xinference/model/llm/vllm/core.py +11 -2
- xinference/thirdparty/cosyvoice/bin/average_model.py +92 -0
- xinference/thirdparty/cosyvoice/bin/export_jit.py +12 -2
- xinference/thirdparty/cosyvoice/bin/export_onnx.py +112 -0
- xinference/thirdparty/cosyvoice/bin/export_trt.sh +9 -0
- xinference/thirdparty/cosyvoice/bin/inference.py +5 -7
- xinference/thirdparty/cosyvoice/bin/train.py +42 -8
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py +96 -25
- xinference/thirdparty/cosyvoice/cli/frontend.py +77 -30
- xinference/thirdparty/cosyvoice/cli/model.py +330 -80
- xinference/thirdparty/cosyvoice/dataset/dataset.py +6 -2
- xinference/thirdparty/cosyvoice/dataset/processor.py +76 -14
- xinference/thirdparty/cosyvoice/flow/decoder.py +92 -13
- xinference/thirdparty/cosyvoice/flow/flow.py +99 -9
- xinference/thirdparty/cosyvoice/flow/flow_matching.py +110 -13
- xinference/thirdparty/cosyvoice/flow/length_regulator.py +5 -4
- xinference/thirdparty/cosyvoice/hifigan/discriminator.py +140 -0
- xinference/thirdparty/cosyvoice/hifigan/generator.py +58 -42
- xinference/thirdparty/cosyvoice/hifigan/hifigan.py +67 -0
- xinference/thirdparty/cosyvoice/llm/llm.py +139 -6
- xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken +58836 -0
- xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py +279 -0
- xinference/thirdparty/cosyvoice/transformer/embedding.py +2 -2
- xinference/thirdparty/cosyvoice/transformer/encoder_layer.py +7 -7
- xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +318 -0
- xinference/thirdparty/cosyvoice/utils/common.py +28 -1
- xinference/thirdparty/cosyvoice/utils/executor.py +69 -7
- xinference/thirdparty/cosyvoice/utils/file_utils.py +2 -12
- xinference/thirdparty/cosyvoice/utils/frontend_utils.py +9 -5
- xinference/thirdparty/cosyvoice/utils/losses.py +20 -0
- xinference/thirdparty/cosyvoice/utils/scheduler.py +1 -2
- xinference/thirdparty/cosyvoice/utils/train_utils.py +101 -45
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +94 -83
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +63 -20
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +1 -26
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +1 -1
- xinference/thirdparty/fish_speech/fish_speech/tokenizer.py +152 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +2 -2
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1 -1
- xinference/thirdparty/fish_speech/tools/{post_api.py → api_client.py} +7 -13
- xinference/thirdparty/fish_speech/tools/api_server.py +98 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +5 -5
- xinference/thirdparty/fish_speech/tools/fish_e2e.py +2 -2
- xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py +192 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py +125 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/utils.py +39 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py +57 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +2 -2
- xinference/thirdparty/fish_speech/tools/llama/generate.py +117 -89
- xinference/thirdparty/fish_speech/tools/run_webui.py +104 -0
- xinference/thirdparty/fish_speech/tools/schema.py +11 -28
- xinference/thirdparty/fish_speech/tools/server/agent/__init__.py +57 -0
- xinference/thirdparty/fish_speech/tools/server/agent/generate.py +119 -0
- xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py +122 -0
- xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py +72 -0
- xinference/thirdparty/fish_speech/tools/server/api_utils.py +75 -0
- xinference/thirdparty/fish_speech/tools/server/exception_handler.py +27 -0
- xinference/thirdparty/fish_speech/tools/server/inference.py +45 -0
- xinference/thirdparty/fish_speech/tools/server/model_manager.py +122 -0
- xinference/thirdparty/fish_speech/tools/server/model_utils.py +129 -0
- xinference/thirdparty/fish_speech/tools/server/views.py +246 -0
- xinference/thirdparty/fish_speech/tools/webui/__init__.py +173 -0
- xinference/thirdparty/fish_speech/tools/webui/inference.py +91 -0
- xinference/thirdparty/fish_speech/tools/webui/variables.py +14 -0
- xinference/thirdparty/matcha/utils/utils.py +2 -2
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/METADATA +11 -6
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/RECORD +95 -74
- xinference/thirdparty/cosyvoice/bin/__init__.py +0 -0
- xinference/thirdparty/cosyvoice/bin/export_trt.py +0 -8
- xinference/thirdparty/cosyvoice/flow/__init__.py +0 -0
- xinference/thirdparty/cosyvoice/hifigan/__init__.py +0 -0
- xinference/thirdparty/cosyvoice/llm/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/api.py +0 -943
- xinference/thirdparty/fish_speech/tools/msgpack_api.py +0 -95
- xinference/thirdparty/fish_speech/tools/webui.py +0 -548
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/LICENSE +0 -0
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/WHEEL +0 -0
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/entry_points.txt +0 -0
- {xinference-1.1.0.dist-info → xinference-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xinference
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Model Serving Made Easy
|
|
5
5
|
Home-page: https://github.com/xorbitsai/inference
|
|
6
6
|
Author: Qin Xuye
|
|
@@ -55,13 +55,11 @@ Requires-Dist: protobuf; extra == "all"
|
|
|
55
55
|
Requires-Dist: einops; extra == "all"
|
|
56
56
|
Requires-Dist: tiktoken>=0.6.0; extra == "all"
|
|
57
57
|
Requires-Dist: sentence-transformers>=3.1.0; extra == "all"
|
|
58
|
-
Requires-Dist: diffusers>=0.30.0; extra == "all"
|
|
59
58
|
Requires-Dist: imageio-ffmpeg; extra == "all"
|
|
60
59
|
Requires-Dist: controlnet-aux; extra == "all"
|
|
61
60
|
Requires-Dist: orjson; extra == "all"
|
|
62
61
|
Requires-Dist: optimum; extra == "all"
|
|
63
62
|
Requires-Dist: outlines>=0.0.34; extra == "all"
|
|
64
|
-
Requires-Dist: qwen-vl-utils; extra == "all"
|
|
65
63
|
Requires-Dist: attrdict; extra == "all"
|
|
66
64
|
Requires-Dist: timm>=0.9.16; extra == "all"
|
|
67
65
|
Requires-Dist: torchvision; extra == "all"
|
|
@@ -76,6 +74,8 @@ Requires-Dist: lightning>=2.0.0; extra == "all"
|
|
|
76
74
|
Requires-Dist: hydra-core>=1.3.2; extra == "all"
|
|
77
75
|
Requires-Dist: inflect; extra == "all"
|
|
78
76
|
Requires-Dist: conformer; extra == "all"
|
|
77
|
+
Requires-Dist: diffusers>=0.32.0; extra == "all"
|
|
78
|
+
Requires-Dist: gguf; extra == "all"
|
|
79
79
|
Requires-Dist: gdown; extra == "all"
|
|
80
80
|
Requires-Dist: pyarrow; extra == "all"
|
|
81
81
|
Requires-Dist: HyperPyYAML; extra == "all"
|
|
@@ -98,6 +98,7 @@ Requires-Dist: tomli; extra == "all"
|
|
|
98
98
|
Requires-Dist: vocos; extra == "all"
|
|
99
99
|
Requires-Dist: jieba; extra == "all"
|
|
100
100
|
Requires-Dist: soundfile; extra == "all"
|
|
101
|
+
Requires-Dist: qwen-vl-utils; extra == "all"
|
|
101
102
|
Requires-Dist: datamodel-code-generator; extra == "all"
|
|
102
103
|
Requires-Dist: jsonschema; extra == "all"
|
|
103
104
|
Requires-Dist: verovio>=4.3.1; extra == "all"
|
|
@@ -106,6 +107,7 @@ Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
|
|
|
106
107
|
Requires-Dist: mlx-lm; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
107
108
|
Requires-Dist: mlx-vlm; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
108
109
|
Requires-Dist: mlx-whisper; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
110
|
+
Requires-Dist: f5-tts-mlx; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
109
111
|
Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
|
|
110
112
|
Requires-Dist: sglang>=0.2.7; sys_platform == "linux" and extra == "all"
|
|
111
113
|
Requires-Dist: nemo-text-processing<1.1.0; sys_platform == "linux" and extra == "all"
|
|
@@ -123,7 +125,7 @@ Requires-Dist: lightning>=2.0.0; extra == "audio"
|
|
|
123
125
|
Requires-Dist: hydra-core>=1.3.2; extra == "audio"
|
|
124
126
|
Requires-Dist: inflect; extra == "audio"
|
|
125
127
|
Requires-Dist: conformer; extra == "audio"
|
|
126
|
-
Requires-Dist: diffusers>=0.
|
|
128
|
+
Requires-Dist: diffusers>=0.32.0; extra == "audio"
|
|
127
129
|
Requires-Dist: gdown; extra == "audio"
|
|
128
130
|
Requires-Dist: pyarrow; extra == "audio"
|
|
129
131
|
Requires-Dist: HyperPyYAML; extra == "audio"
|
|
@@ -179,9 +181,10 @@ Requires-Dist: timm; extra == "doc"
|
|
|
179
181
|
Provides-Extra: embedding
|
|
180
182
|
Requires-Dist: sentence-transformers>=3.1.0; extra == "embedding"
|
|
181
183
|
Provides-Extra: image
|
|
182
|
-
Requires-Dist: diffusers>=0.
|
|
184
|
+
Requires-Dist: diffusers>=0.32.0; extra == "image"
|
|
183
185
|
Requires-Dist: controlnet-aux; extra == "image"
|
|
184
186
|
Requires-Dist: deepcache; extra == "image"
|
|
187
|
+
Requires-Dist: gguf; extra == "image"
|
|
185
188
|
Requires-Dist: verovio>=4.3.1; extra == "image"
|
|
186
189
|
Requires-Dist: transformers>=4.37.2; extra == "image"
|
|
187
190
|
Requires-Dist: tiktoken>=0.6.0; extra == "image"
|
|
@@ -197,7 +200,9 @@ Provides-Extra: mlx
|
|
|
197
200
|
Requires-Dist: mlx-lm; extra == "mlx"
|
|
198
201
|
Requires-Dist: mlx-vlm; extra == "mlx"
|
|
199
202
|
Requires-Dist: mlx-whisper; extra == "mlx"
|
|
203
|
+
Requires-Dist: f5-tts-mlx; extra == "mlx"
|
|
200
204
|
Requires-Dist: qwen-vl-utils; extra == "mlx"
|
|
205
|
+
Requires-Dist: tomli; extra == "mlx"
|
|
201
206
|
Provides-Extra: rerank
|
|
202
207
|
Requires-Dist: FlagEmbedding; extra == "rerank"
|
|
203
208
|
Provides-Extra: sglang
|
|
@@ -227,7 +232,7 @@ Requires-Dist: jsonschema; extra == "transformers"
|
|
|
227
232
|
Requires-Dist: auto-gptq; sys_platform != "darwin" and extra == "transformers"
|
|
228
233
|
Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "transformers"
|
|
229
234
|
Provides-Extra: video
|
|
230
|
-
Requires-Dist: diffusers>=0.
|
|
235
|
+
Requires-Dist: diffusers>=0.32.0; extra == "video"
|
|
231
236
|
Requires-Dist: imageio-ffmpeg; extra == "video"
|
|
232
237
|
Provides-Extra: vllm
|
|
233
238
|
Requires-Dist: vllm>=0.2.6; extra == "vllm"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
|
-
xinference/_compat.py,sha256=
|
|
3
|
-
xinference/_version.py,sha256=
|
|
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
|
|
@@ -9,7 +9,7 @@ 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=
|
|
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
|
|
@@ -25,13 +25,13 @@ xinference/core/chat_interface.py,sha256=Kiqs1XOXgYBlP7DOXLEXaFjbVuS0yC1-dXJyxrx
|
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
26
|
xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=k5hMtDUhZZjytz1aniTq4F9Bl2Kx-7fPv8cd_yLbCUw,40646
|
|
29
29
|
xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
|
|
30
30
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
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=
|
|
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
37
|
xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
|
|
@@ -46,15 +46,16 @@ 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=
|
|
50
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
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/f5tts.py,sha256=
|
|
53
|
-
xinference/model/audio/
|
|
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
|
|
54
55
|
xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
|
|
55
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
56
|
-
xinference/model/audio/model_spec_modelscope.json,sha256=
|
|
57
|
-
xinference/model/audio/utils.py,sha256=
|
|
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
|
|
58
59
|
xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
|
|
59
60
|
xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
|
|
60
61
|
xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
|
|
@@ -70,10 +71,10 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
|
|
|
70
71
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
71
72
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
72
73
|
xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
|
|
73
|
-
xinference/model/image/core.py,sha256=
|
|
74
|
+
xinference/model/image/core.py,sha256=hsYQMqQYtdyBVzMvaiXDVnwvRGggDjYO6yDyZgBDt9E,12947
|
|
74
75
|
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
75
|
-
xinference/model/image/model_spec.json,sha256=
|
|
76
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
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
|
|
77
78
|
xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
|
|
78
79
|
xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
|
|
79
80
|
xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -81,23 +82,23 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
|
|
|
81
82
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
82
83
|
xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
|
|
83
84
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
84
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
85
|
+
xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRIr9EEK4IzgydYuRf7pI,24286
|
|
85
86
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
86
87
|
xinference/model/llm/__init__.py,sha256=RDfLCynV34DcGfL2Y8Aw7S3pruC1TiPc8apcmgAYqZs,14052
|
|
87
88
|
xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
|
|
88
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
89
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
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
|
|
90
91
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
91
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
92
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=vCQ1oVuqKvFDobVR9N4YN6ROJO2Tqj_qAmeJmyHLBRI,248311
|
|
92
93
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
|
|
93
94
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
94
|
-
xinference/model/llm/utils.py,sha256=
|
|
95
|
+
xinference/model/llm/utils.py,sha256=3g14I8vKnTyEal34BfzV2j24ztlIWt8_2V_uU_OZ02A,24458
|
|
95
96
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
96
97
|
xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
|
|
97
98
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
99
|
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
99
100
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
100
|
-
xinference/model/llm/mlx/core.py,sha256
|
|
101
|
+
xinference/model/llm/mlx/core.py,sha256=wBxWibZlgQy43h6AWZS5SV6cbfUUPq8WrXfzbXNcf_s,24141
|
|
101
102
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
102
103
|
xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
|
|
103
104
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -105,7 +106,7 @@ xinference/model/llm/transformers/chatglm.py,sha256=vHBPIn5nEkrjBmonYkCHAIxDwvNe
|
|
|
105
106
|
xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
|
|
106
107
|
xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
|
|
107
108
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
108
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
109
|
+
xinference/model/llm/transformers/core.py,sha256=ADX1ckh41ziKYZSmlcjGFEjSh2TZGWNxzFMhV_ZW4qg,28270
|
|
109
110
|
xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
|
|
110
111
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
|
|
111
112
|
xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
|
|
@@ -117,13 +118,13 @@ xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDO
|
|
|
117
118
|
xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
|
|
118
119
|
xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
|
|
119
120
|
xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
|
|
120
|
-
xinference/model/llm/transformers/qwen2_vl.py,sha256=
|
|
121
|
+
xinference/model/llm/transformers/qwen2_vl.py,sha256=rn2_-rZk6XiL8Mmhr2Sne5vhLSuqKDenYfkje-p6n1A,7390
|
|
121
122
|
xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
|
|
122
123
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
123
124
|
xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
|
|
124
125
|
xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
|
|
125
126
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
126
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
127
|
+
xinference/model/llm/vllm/core.py,sha256=irdnUgrbMvo6toayZWbtvwqTgsnU8lISX-p1R3Wf1Vw,35956
|
|
127
128
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
128
129
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
129
130
|
xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
|
|
@@ -138,49 +139,53 @@ xinference/model/video/model_spec.json,sha256=yQcLSU3vRJys-ACdHGtTNdz2pX1O9QDQ5r
|
|
|
138
139
|
xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfnGbyvOC4FtYIf2ucr8TvM,815
|
|
139
140
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
141
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
142
|
-
xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=
|
|
143
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
144
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
145
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
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
|
|
146
148
|
xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
-
xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=
|
|
148
|
-
xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=
|
|
149
|
-
xinference/thirdparty/cosyvoice/cli/model.py,sha256=
|
|
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
|
|
150
152
|
xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=
|
|
152
|
-
xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=
|
|
153
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
154
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
155
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
156
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
157
|
-
xinference/thirdparty/cosyvoice/
|
|
158
|
-
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
|
|
159
160
|
xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
|
|
160
|
-
xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=
|
|
161
|
-
xinference/thirdparty/cosyvoice/
|
|
162
|
-
xinference/thirdparty/cosyvoice/llm/llm.py,sha256=
|
|
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
|
|
163
166
|
xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
167
|
xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
|
|
165
168
|
xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
|
|
166
169
|
xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
|
|
167
170
|
xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
|
|
168
171
|
xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
|
|
169
|
-
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=
|
|
172
|
+
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=NkbnSHg_5sBptCTMnL_oG8VKXM_qGucEHfOYpgPMzT4,11399
|
|
170
173
|
xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
|
|
171
|
-
xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=
|
|
174
|
+
xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=GSBYK-LJt894Nee1ORGOweudqPLHEcYlf4WYs3kpUbk,9602
|
|
172
175
|
xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
|
|
173
176
|
xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
|
|
174
177
|
xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
|
|
178
|
+
xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=f1mSmwAVFN8srFbkCTVBPEkGfqpZwbUsaTKuY9NW3cA,13766
|
|
175
179
|
xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
180
|
xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
|
|
177
|
-
xinference/thirdparty/cosyvoice/utils/common.py,sha256=
|
|
178
|
-
xinference/thirdparty/cosyvoice/utils/executor.py,sha256=
|
|
179
|
-
xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=
|
|
180
|
-
xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=
|
|
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
|
|
181
186
|
xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
|
|
182
|
-
xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=
|
|
183
|
-
xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=
|
|
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
|
|
184
189
|
xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
|
|
185
190
|
xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
|
|
186
191
|
xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
|
|
@@ -264,9 +269,10 @@ xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py,sha256=OVL5AlqiN
|
|
|
264
269
|
xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py,sha256=4MSCHkjjlKjao_2dAK2H9bU98fCVd26MoVZ3KBMy3CM,4579
|
|
265
270
|
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
271
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=
|
|
272
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=UpWitG4B0Ss5ypESvMmLUXm2trBHX23f30MReF9mOfY,8066
|
|
268
273
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
269
|
-
xinference/thirdparty/fish_speech/fish_speech/
|
|
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
|
|
270
276
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
271
277
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
272
278
|
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
@@ -291,15 +297,15 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1
|
|
|
291
297
|
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
|
|
292
298
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
299
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
294
|
-
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=
|
|
300
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=dkw6XUWxvfBpDhEIjnt15VsBQGh0vloeWCu2ApnZqKo,29681
|
|
295
301
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
296
302
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
303
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
298
304
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
|
|
299
305
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
|
|
300
306
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
301
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
302
|
-
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=
|
|
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
|
|
303
309
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
304
310
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
305
311
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -325,26 +331,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2
|
|
|
325
331
|
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
326
332
|
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
|
|
327
333
|
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
|
|
328
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=
|
|
334
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=naidGvMXg5hU5J-DdtR6dBOflXcr7FG0BxichP7z-No,46891
|
|
329
335
|
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
330
336
|
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
331
337
|
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
332
|
-
xinference/thirdparty/fish_speech/tools/
|
|
333
|
-
xinference/thirdparty/fish_speech/tools/
|
|
334
|
-
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=
|
|
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
|
|
335
341
|
xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
|
|
336
342
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
337
343
|
xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
|
|
338
|
-
xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=
|
|
339
|
-
xinference/thirdparty/fish_speech/tools/
|
|
340
|
-
xinference/thirdparty/fish_speech/tools/
|
|
341
|
-
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
|
|
342
347
|
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
|
|
343
|
-
xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
|
|
344
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
|
|
345
353
|
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
346
|
-
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=
|
|
347
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
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
|
|
348
356
|
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
|
|
349
357
|
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
|
|
350
358
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
@@ -353,9 +361,22 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
|
|
|
353
361
|
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
354
362
|
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
|
|
355
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
|
|
356
374
|
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
357
375
|
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
|
|
358
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
|
|
359
380
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
381
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
361
382
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -411,7 +432,7 @@ xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKK
|
|
|
411
432
|
xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
|
|
412
433
|
xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
|
|
413
434
|
xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
|
|
414
|
-
xinference/thirdparty/matcha/utils/utils.py,sha256=
|
|
435
|
+
xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvcrwaoZxWuKiHCiY,8459
|
|
415
436
|
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
416
437
|
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
417
438
|
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
@@ -15575,9 +15596,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15575
15596
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15576
15597
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15577
15598
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15578
|
-
xinference-1.1.
|
|
15579
|
-
xinference-1.1.
|
|
15580
|
-
xinference-1.1.
|
|
15581
|
-
xinference-1.1.
|
|
15582
|
-
xinference-1.1.
|
|
15583
|
-
xinference-1.1.
|
|
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,,
|
|
File without changes
|
|
@@ -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
|