xinference 0.14.3__py3-none-any.whl → 0.14.4__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/_version.py +3 -3
- xinference/core/worker.py +18 -9
- xinference/model/audio/chattts.py +4 -3
- xinference/model/audio/cosyvoice.py +4 -3
- xinference/model/audio/custom.py +4 -5
- xinference/model/embedding/core.py +2 -0
- xinference/model/embedding/custom.py +4 -5
- xinference/model/flexible/core.py +5 -1
- xinference/model/image/custom.py +4 -5
- xinference/model/image/stable_diffusion/core.py +21 -6
- xinference/model/llm/llm_family.py +5 -6
- xinference/model/llm/sglang/core.py +7 -1
- xinference/model/llm/transformers/core.py +2 -0
- xinference/model/llm/utils.py +3 -0
- xinference/model/llm/vllm/core.py +0 -33
- xinference/model/rerank/custom.py +4 -5
- xinference/model/utils.py +41 -1
- xinference/model/video/core.py +3 -1
- xinference/model/video/diffusers.py +41 -38
- xinference/model/video/model_spec.json +24 -1
- xinference/model/video/model_spec_modelscope.json +25 -1
- xinference/thirdparty/fish_speech/tools/api.py +1 -1
- xinference/thirdparty/matcha/__init__.py +0 -0
- xinference/thirdparty/matcha/app.py +357 -0
- xinference/thirdparty/matcha/cli.py +419 -0
- xinference/thirdparty/matcha/data/__init__.py +0 -0
- xinference/thirdparty/matcha/data/components/__init__.py +0 -0
- xinference/thirdparty/matcha/data/text_mel_datamodule.py +274 -0
- xinference/thirdparty/matcha/hifigan/__init__.py +0 -0
- xinference/thirdparty/matcha/hifigan/config.py +28 -0
- xinference/thirdparty/matcha/hifigan/denoiser.py +64 -0
- xinference/thirdparty/matcha/hifigan/env.py +17 -0
- xinference/thirdparty/matcha/hifigan/meldataset.py +217 -0
- xinference/thirdparty/matcha/hifigan/models.py +368 -0
- xinference/thirdparty/matcha/hifigan/xutils.py +60 -0
- xinference/thirdparty/matcha/models/__init__.py +0 -0
- xinference/thirdparty/matcha/models/baselightningmodule.py +210 -0
- xinference/thirdparty/matcha/models/components/__init__.py +0 -0
- xinference/thirdparty/matcha/models/components/decoder.py +443 -0
- xinference/thirdparty/matcha/models/components/flow_matching.py +132 -0
- xinference/thirdparty/matcha/models/components/text_encoder.py +410 -0
- xinference/thirdparty/matcha/models/components/transformer.py +316 -0
- xinference/thirdparty/matcha/models/matcha_tts.py +244 -0
- xinference/thirdparty/matcha/onnx/__init__.py +0 -0
- xinference/thirdparty/matcha/onnx/export.py +181 -0
- xinference/thirdparty/matcha/onnx/infer.py +168 -0
- xinference/thirdparty/matcha/text/__init__.py +53 -0
- xinference/thirdparty/matcha/text/cleaners.py +121 -0
- xinference/thirdparty/matcha/text/numbers.py +71 -0
- xinference/thirdparty/matcha/text/symbols.py +17 -0
- xinference/thirdparty/matcha/train.py +122 -0
- xinference/thirdparty/matcha/utils/__init__.py +5 -0
- xinference/thirdparty/matcha/utils/audio.py +82 -0
- xinference/thirdparty/matcha/utils/generate_data_statistics.py +112 -0
- xinference/thirdparty/matcha/utils/get_durations_from_trained_model.py +195 -0
- xinference/thirdparty/matcha/utils/instantiators.py +56 -0
- xinference/thirdparty/matcha/utils/logging_utils.py +53 -0
- xinference/thirdparty/matcha/utils/model.py +90 -0
- xinference/thirdparty/matcha/utils/monotonic_align/__init__.py +22 -0
- xinference/thirdparty/matcha/utils/monotonic_align/core.pyx +47 -0
- xinference/thirdparty/matcha/utils/monotonic_align/setup.py +7 -0
- xinference/thirdparty/matcha/utils/pylogger.py +21 -0
- xinference/thirdparty/matcha/utils/rich_utils.py +101 -0
- xinference/thirdparty/matcha/utils/utils.py +259 -0
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/METADATA +20 -12
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/RECORD +70 -28
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/LICENSE +0 -0
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/WHEEL +0 -0
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.3.dist-info → xinference-0.14.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
|
|
2
2
|
xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=UK39f7bKAwfaeWtCUM51WiC6chlaNYVcNxfTpFv9Flg,498
|
|
4
4
|
xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
|
|
5
5
|
xinference/constants.py,sha256=FZwKBlSwUMb1_qKMZWfkz9z6nrgdgOhO-g7S_Qn3cis,3319
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
@@ -31,7 +31,7 @@ xinference/core/scheduler.py,sha256=X5lWhzkgTgZgIU-RKz1ytFIju4kE9voII0y0KYUaym4,
|
|
|
31
31
|
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
32
32
|
xinference/core/supervisor.py,sha256=BhL-VCUvfazH_UQ8n99vCgapwt_ZB73KWwZy9NY6rPw,52253
|
|
33
33
|
xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
34
|
+
xinference/core/worker.py,sha256=l5Dm-wrm2wKsSQ0P59ZpqW0mRxndtQlnDKlDFqisuMw,46156
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
36
|
xinference/deploy/cmdline.py,sha256=PNp5_Y9_ZMceTHiwbKcj7EEKQo6lpaOVMVfkGxx9190,48489
|
|
37
37
|
xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
|
|
@@ -42,12 +42,12 @@ xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQ
|
|
|
42
42
|
xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
|
|
43
43
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
44
44
|
xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
|
|
45
|
-
xinference/model/utils.py,sha256=
|
|
45
|
+
xinference/model/utils.py,sha256=4rseD7ckXDwhzIFbsXoJPPfV0I1BB5PT96qs9rMQ-Xk,12634
|
|
46
46
|
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
47
|
-
xinference/model/audio/chattts.py,sha256=
|
|
47
|
+
xinference/model/audio/chattts.py,sha256=osLh_7eTtsYGLBWI-QaNusBIqmLGxYRVZQJMNDYMV-U,4495
|
|
48
48
|
xinference/model/audio/core.py,sha256=All5OqarDEcmWWpGwPKblDOsoVpJx5xDVJCjI_TznWo,6496
|
|
49
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
50
|
-
xinference/model/audio/custom.py,sha256=
|
|
49
|
+
xinference/model/audio/cosyvoice.py,sha256=dPrSvbd6nXzPozMdy_8AjA0FulVSzgEt1OLBRp99JQI,4987
|
|
50
|
+
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
51
51
|
xinference/model/audio/fish_speech.py,sha256=UFPn9crljYYOXGHW1z_uEwHvjTClgjJap85u0rbxJ38,7015
|
|
52
52
|
xinference/model/audio/funasr.py,sha256=zAkQPZp9H4zXbCjWJW1qxWK4B88XXrVaewvdoPQylo4,3985
|
|
53
53
|
xinference/model/audio/model_spec.json,sha256=GSbEIX9g-Ec8IvuLEcNxc-e3CQupEZlnC63bI4MTe0s,4758
|
|
@@ -55,33 +55,33 @@ xinference/model/audio/model_spec_modelscope.json,sha256=dTINTAHopLQtDVLNJXURUG8
|
|
|
55
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
56
56
|
xinference/model/audio/whisper.py,sha256=okhJWnWoE-1Jmk-oKxTotCQ56rQIFMhTOZOmJBk5ug0,7764
|
|
57
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
58
|
-
xinference/model/embedding/core.py,sha256=
|
|
59
|
-
xinference/model/embedding/custom.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=sP_R5Zc9Gx2zUdb3sE6phx-zdCa4PgXzbQbO8SuKwIM,17601
|
|
59
|
+
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
60
60
|
xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
|
|
61
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
|
|
62
62
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
63
63
|
xinference/model/flexible/__init__.py,sha256=AmJBQVIHyrLtDe1kDxxvJIUL_KmVSkiu4PWg61BRBhg,1408
|
|
64
|
-
xinference/model/flexible/core.py,sha256=
|
|
64
|
+
xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
|
|
65
65
|
xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
|
|
66
66
|
xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
|
|
67
67
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
68
68
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
69
69
|
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
70
70
|
xinference/model/image/core.py,sha256=JmzqyvY_DicnAa1TeKUXHTTvDB0gg-bT9ONwh5-3GhM,8871
|
|
71
|
-
xinference/model/image/custom.py,sha256=
|
|
71
|
+
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
72
72
|
xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtAAE_-Hqjjo,5086
|
|
73
73
|
xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
|
|
74
74
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
75
75
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
76
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
76
|
+
xinference/model/image/stable_diffusion/core.py,sha256=Z6KjLdHV_ityLMByd38wcyILBSc7wV3Qe1vVJ2oqn9U,12532
|
|
77
77
|
xinference/model/llm/__init__.py,sha256=Gc1UfXo2PIbZ4oOqK7w0yBxZg7h2-AdaqK-XAQbXduk,11581
|
|
78
78
|
xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
|
|
79
79
|
xinference/model/llm/llm_family.json,sha256=XnWU4i00VB0nT5hPOHFpBVr_5NcdwozNbN9s_XXeEjY,190276
|
|
80
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
80
|
+
xinference/model/llm/llm_family.py,sha256=3FI9UYlWnArtUR1NqwLPIAT077u0pf8TSMpKBQL-e-U,38147
|
|
81
81
|
xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
|
|
82
82
|
xinference/model/llm/llm_family_modelscope.json,sha256=1-to5OOgJEsmhwErurfTX0DRNhWP2PnwBA2XonC1H5Y,125262
|
|
83
83
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
84
|
-
xinference/model/llm/utils.py,sha256=
|
|
84
|
+
xinference/model/llm/utils.py,sha256=boZBoSuxHko_hlj5tY6AsvSgOEw9isZ0yP4oYllk5VI,35808
|
|
85
85
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
86
86
|
xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
|
|
87
87
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -89,13 +89,13 @@ xinference/model/llm/lmdeploy/core.py,sha256=-oG8jYXIkzNLUMl0tR0MxFykQhPFCai002x
|
|
|
89
89
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
90
90
|
xinference/model/llm/mlx/core.py,sha256=rxZ7aS9QoapJJ0jBOct4ckj5KsftWlND0n6Qlbs3A-w,14485
|
|
91
91
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
92
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
92
|
+
xinference/model/llm/sglang/core.py,sha256=AIG5YzM956VsGSJ8chx1bCvVbtq_mccyAwmFo59kZPU,15951
|
|
93
93
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
94
94
|
xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
|
|
95
95
|
xinference/model/llm/transformers/cogvlm2.py,sha256=hPghq5UUgJ80g5JC1FbH_MUmFssmkkchgp7Xife2HFQ,16811
|
|
96
96
|
xinference/model/llm/transformers/cogvlm2_video.py,sha256=1gYBHTz5ZrvcsMroDmIRQ3bc03Qq-JL_rO2VSHlu9Ms,18876
|
|
97
97
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
98
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
98
|
+
xinference/model/llm/transformers/core.py,sha256=eDUZwIao0i8I_67zp5tAY2VLmGkg47yik7CZf9rTJdM,30914
|
|
99
99
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
|
|
100
100
|
xinference/model/llm/transformers/glm4v.py,sha256=L9rTyuwd0VriudlqH6FkNAugWNy3eOasFYMy59KuNeo,15706
|
|
101
101
|
xinference/model/llm/transformers/intern_vl.py,sha256=ogWYnNl6FOT4KvY3M3d364twC5ZlQT6_xxlK_UgBKoc,19256
|
|
@@ -109,18 +109,18 @@ xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjD
|
|
|
109
109
|
xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
|
|
110
110
|
xinference/model/llm/transformers/yi_vl.py,sha256=JeraCcpwzscLrqNq4fIGVohFbgEYHJYR6YAvvTzU7Pc,10116
|
|
111
111
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
112
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
112
|
+
xinference/model/llm/vllm/core.py,sha256=DMuA6iGZei1UYadMsT4KPUssl3kuvzGoyldptTn7ie8,26441
|
|
113
113
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
114
114
|
xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
|
|
115
|
-
xinference/model/rerank/custom.py,sha256=
|
|
115
|
+
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
116
116
|
xinference/model/rerank/model_spec.json,sha256=zZHVUq9B5vwTQOzXOXNK3pgGpQVrMG9npAYwftqFZ3I,1608
|
|
117
117
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
118
118
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
119
119
|
xinference/model/video/__init__.py,sha256=DZBkad3SRlQIVRHP72R-cN3mKN0H-7NWUa6VBHm6IVU,2027
|
|
120
|
-
xinference/model/video/core.py,sha256=
|
|
121
|
-
xinference/model/video/diffusers.py,sha256=
|
|
122
|
-
xinference/model/video/model_spec.json,sha256=
|
|
123
|
-
xinference/model/video/model_spec_modelscope.json,sha256=
|
|
120
|
+
xinference/model/video/core.py,sha256=PMqyWhhBWO77VjpEvTC7EQrGmyLWxJ_-Mm1VRqb2dNY,6031
|
|
121
|
+
xinference/model/video/diffusers.py,sha256=kSEBRf0vtWyo0IrwoiEpr_ROu7SwDAVBZ4leqkcPycM,6244
|
|
122
|
+
xinference/model/video/model_spec.json,sha256=yQcLSU3vRJys-ACdHGtTNdz2pX1O9QDQ5rGHQd9LdFY,817
|
|
123
|
+
xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfnGbyvOC4FtYIf2ucr8TvM,815
|
|
124
124
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
125
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
126
|
xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -252,7 +252,7 @@ xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8H
|
|
|
252
252
|
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
|
|
253
253
|
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
|
|
254
254
|
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
-
xinference/thirdparty/fish_speech/tools/api.py,sha256=
|
|
255
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=Voi8YlyENsYNI9cOZ_FhbOTRbE0XENoXqHYRRtoCf1Y,14806
|
|
256
256
|
xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
|
|
257
257
|
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=kTFkIZTdYpnJe0vzNA_uVaGbdBAp43mLBrZnSQIoSsY,1373
|
|
258
258
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
@@ -292,6 +292,48 @@ xinference/thirdparty/llava/model/clip_encoder/builder.py,sha256=D1d2_hW2V1kT4jn
|
|
|
292
292
|
xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UFIxbcMufZewxofnSSP9t5dBhMFLfMJcFN4,2789
|
|
293
293
|
xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
294
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
295
|
+
xinference/thirdparty/matcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
+
xinference/thirdparty/matcha/app.py,sha256=bBOG1VM5L8X64aF8rH4iddu45dje9lmkyr5ubAq_4-4,13992
|
|
297
|
+
xinference/thirdparty/matcha/cli.py,sha256=QfYJNwcmItevYGsbQAQc4zQSNsiRPwNu1rqyS9xH66U,15592
|
|
298
|
+
xinference/thirdparty/matcha/train.py,sha256=eKFZFkaSvmdfMNhOAcvp63kp-Wvj_9IE47mAp4sHGxg,4613
|
|
299
|
+
xinference/thirdparty/matcha/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
|
+
xinference/thirdparty/matcha/data/text_mel_datamodule.py,sha256=aC9ULlp2re5fKBh6wTXMth7KFp3-ki3vOI9EwKfynhA,9206
|
|
301
|
+
xinference/thirdparty/matcha/data/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
+
xinference/thirdparty/matcha/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
+
xinference/thirdparty/matcha/hifigan/config.py,sha256=cxS_YTK_UoO2uma_Ue8QRFtNA6ldSEt1EL36u2-NgCc,779
|
|
304
|
+
xinference/thirdparty/matcha/hifigan/denoiser.py,sha256=Q2juI2a3QTqce6fuvqWQnShoV671kVW2JsQyoqwwvLI,2644
|
|
305
|
+
xinference/thirdparty/matcha/hifigan/env.py,sha256=QthDmqTWWAIo2tSI-arVteRVxnKUnm9mkjlQVnXbmDc,429
|
|
306
|
+
xinference/thirdparty/matcha/hifigan/meldataset.py,sha256=4Ps0NXA3Yv0oV2PyCdHcptc4lZ43tp978m3BM2NYWxc,6786
|
|
307
|
+
xinference/thirdparty/matcha/hifigan/models.py,sha256=Ln7J7YzeN4h33tBKQHhlPcoNfmX-_-kwBkTZIYJY5q8,11668
|
|
308
|
+
xinference/thirdparty/matcha/hifigan/xutils.py,sha256=aNtYu1SyQaGtbN_NnSfLGhTi-r_y3vYKMIf7EYGaDOA,1396
|
|
309
|
+
xinference/thirdparty/matcha/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
|
+
xinference/thirdparty/matcha/models/baselightningmodule.py,sha256=0PKvALIWaJLGV2Pgyl9mwAXbTViC-M3J1Yj934mJ1rU,7049
|
|
311
|
+
xinference/thirdparty/matcha/models/matcha_tts.py,sha256=bIRbDYMzUir6W7oH9MoCGD_5s7Ug8kcc-vmOJM92QNU,10383
|
|
312
|
+
xinference/thirdparty/matcha/models/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
+
xinference/thirdparty/matcha/models/components/decoder.py,sha256=fqlKYc08lnA6oQf9zRuC3i8vat4go8X0NLYAUxgXams,14459
|
|
314
|
+
xinference/thirdparty/matcha/models/components/flow_matching.py,sha256=pvKy7somAHSdV13ahiTYZNkEIn4qn3ZKbLK4kpBEXmw,4657
|
|
315
|
+
xinference/thirdparty/matcha/models/components/text_encoder.py,sha256=QEQynUB7PaBsdlJ-e1TUBAe9rL2LBnmk5bAkr_vCTek,14845
|
|
316
|
+
xinference/thirdparty/matcha/models/components/transformer.py,sha256=Zv8gktl0qZslG52OXAi7zszq7fr0HivYrytLx6Vty-o,13237
|
|
317
|
+
xinference/thirdparty/matcha/onnx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
+
xinference/thirdparty/matcha/onnx/export.py,sha256=VUAviRbyh9WhXaxLPQjdQLwaVK_ZZNgaWPMFA2UKh4c,5386
|
|
319
|
+
xinference/thirdparty/matcha/onnx/infer.py,sha256=ACgjtfMdvzuU4XmalNLrebmkBD2W8VLcLi8blXnjUmU,6293
|
|
320
|
+
xinference/thirdparty/matcha/text/__init__.py,sha256=Nyfj5js7itNwOf2xfb0EAxa7tvcivYKnxJYfN3qLPr8,1708
|
|
321
|
+
xinference/thirdparty/matcha/text/cleaners.py,sha256=CrzCUkbU1Pk0yhjH3U3rdLkQhFD6pqtTXxXHwY1ZHh0,3797
|
|
322
|
+
xinference/thirdparty/matcha/text/numbers.py,sha256=Nwp-HmqaqstAELVqqlMu_7bj4qiWQzMXFmw56nBq1h0,2249
|
|
323
|
+
xinference/thirdparty/matcha/text/symbols.py,sha256=hw78I8JtBmkri5HiDUQC05i2N9MFkxWJoHujIxJFP1c,635
|
|
324
|
+
xinference/thirdparty/matcha/utils/__init__.py,sha256=YNs91rjzeUcVSs3aZjv9thma42I81Jksy9RF3nquvOo,326
|
|
325
|
+
xinference/thirdparty/matcha/utils/audio.py,sha256=L3QQZL_MlIXRmkI1ZJbYriTeyAw9bvXKf06Kv7-cYco,2282
|
|
326
|
+
xinference/thirdparty/matcha/utils/generate_data_statistics.py,sha256=EX0qYTuZH2py6V9Zt5-oInuzEWmIeP5PQ3ATpJ6b7TU,3307
|
|
327
|
+
xinference/thirdparty/matcha/utils/get_durations_from_trained_model.py,sha256=1dIDpP-oC3f0SxjOCahNs1FMieLkNwFg3SJbWv-jBx8,6473
|
|
328
|
+
xinference/thirdparty/matcha/utils/instantiators.py,sha256=QxqOnRVabCSeurpPODXqh3JSZ-E7m8jKSsxy1WvTX-I,1828
|
|
329
|
+
xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKKkCez3N7DJlH27Vz48yAEtU,1711
|
|
330
|
+
xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
|
|
331
|
+
xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
|
|
332
|
+
xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
|
|
333
|
+
xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8GHZyZdwm89O4TQ,8455
|
|
334
|
+
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
335
|
+
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
336
|
+
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
295
337
|
xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
338
|
xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
|
|
297
339
|
xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
|
|
@@ -15570,9 +15612,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15570
15612
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15571
15613
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15572
15614
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15573
|
-
xinference-0.14.
|
|
15574
|
-
xinference-0.14.
|
|
15575
|
-
xinference-0.14.
|
|
15576
|
-
xinference-0.14.
|
|
15577
|
-
xinference-0.14.
|
|
15578
|
-
xinference-0.14.
|
|
15615
|
+
xinference-0.14.4.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15616
|
+
xinference-0.14.4.dist-info/METADATA,sha256=xIi4XF0lThHekxV1K7A2HQy0_9u8IM12DSwM5hde0BY,18757
|
|
15617
|
+
xinference-0.14.4.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
15618
|
+
xinference-0.14.4.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15619
|
+
xinference-0.14.4.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15620
|
+
xinference-0.14.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|