xinference 0.14.2__py3-none-any.whl → 0.14.3__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/chat_interface.py +1 -1
- xinference/core/image_interface.py +9 -0
- xinference/core/model.py +4 -1
- xinference/core/worker.py +48 -41
- xinference/model/audio/chattts.py +24 -9
- xinference/model/audio/core.py +8 -2
- xinference/model/audio/fish_speech.py +228 -0
- xinference/model/audio/model_spec.json +8 -0
- xinference/model/embedding/core.py +23 -1
- xinference/model/image/model_spec.json +2 -1
- xinference/model/image/model_spec_modelscope.json +2 -1
- xinference/model/image/stable_diffusion/core.py +49 -1
- xinference/model/llm/__init__.py +6 -0
- xinference/model/llm/llm_family.json +54 -9
- xinference/model/llm/llm_family.py +2 -0
- xinference/model/llm/llm_family_modelscope.json +56 -10
- xinference/model/llm/lmdeploy/__init__.py +0 -0
- xinference/model/llm/lmdeploy/core.py +557 -0
- xinference/model/llm/transformers/cogvlm2.py +4 -45
- xinference/model/llm/transformers/cogvlm2_video.py +524 -0
- xinference/model/llm/transformers/core.py +1 -0
- xinference/model/llm/transformers/glm4v.py +2 -23
- xinference/model/llm/transformers/intern_vl.py +94 -11
- xinference/model/llm/transformers/minicpmv25.py +2 -23
- xinference/model/llm/transformers/minicpmv26.py +2 -22
- xinference/model/llm/transformers/yi_vl.py +2 -24
- xinference/model/llm/utils.py +10 -1
- xinference/model/llm/vllm/core.py +1 -1
- xinference/thirdparty/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py +113 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +2 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py +53 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py +36 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py +496 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py +147 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/core.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +123 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +133 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/models/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py +202 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +779 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py +92 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +442 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +44 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +625 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +115 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +225 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py +94 -0
- xinference/thirdparty/fish_speech/fish_speech/scheduler.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/text/__init__.py +4 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py +172 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py +30 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py +342 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py +75 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py +35 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py +43 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py +51 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py +177 -0
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +69 -0
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +130 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py +23 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py +217 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/context.py +13 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/file.py +16 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py +50 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logger.py +55 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py +48 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py +100 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/utils.py +114 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py +120 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1237 -0
- xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/api.py +495 -0
- xinference/thirdparty/fish_speech/tools/auto_rerank.py +159 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +55 -0
- xinference/thirdparty/fish_speech/tools/extract_model.py +21 -0
- xinference/thirdparty/fish_speech/tools/file.py +108 -0
- xinference/thirdparty/fish_speech/tools/gen_ref.py +36 -0
- xinference/thirdparty/fish_speech/tools/llama/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +169 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +171 -0
- xinference/thirdparty/fish_speech/tools/llama/generate.py +698 -0
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +95 -0
- xinference/thirdparty/fish_speech/tools/llama/quantize.py +497 -0
- xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py +57 -0
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py +55 -0
- xinference/thirdparty/fish_speech/tools/post_api.py +164 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py +573 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +332 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py +61 -0
- xinference/thirdparty/fish_speech/tools/smart_pad.py +47 -0
- xinference/thirdparty/fish_speech/tools/vqgan/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py +83 -0
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +227 -0
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +120 -0
- xinference/thirdparty/fish_speech/tools/webui.py +619 -0
- xinference/thirdparty/fish_speech/tools/whisper_asr.py +176 -0
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.ffc26121.js → main.661c7b0a.js} +3 -3
- xinference/web/ui/build/static/js/main.661c7b0a.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json +1 -0
- {xinference-0.14.2.dist-info → xinference-0.14.3.dist-info}/METADATA +18 -6
- {xinference-0.14.2.dist-info → xinference-0.14.3.dist-info}/RECORD +135 -37
- xinference/web/ui/build/static/js/main.ffc26121.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json +0 -1
- /xinference/web/ui/build/static/js/{main.ffc26121.js.LICENSE.txt → main.661c7b0a.js.LICENSE.txt} +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.3.dist-info}/LICENSE +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.3.dist-info}/WHEEL +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.3.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.3.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=JWgEuyb1ChbWkTQh3vVk8IVPl8kYkCFXITCkKLUPfvM,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
|
|
@@ -21,17 +21,17 @@ xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7
|
|
|
21
21
|
xinference/client/restful/restful_client.py,sha256=3He6Tj6GUJ3IVc_CjDDX1pzKUSomEOSK5oE_2Zj2VBk,51649
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
24
|
+
xinference/core/chat_interface.py,sha256=iOc44reuewD7w2AtQUJWHU0yWdkhleS0KZbqnDW1_TA,20944
|
|
25
25
|
xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
|
|
26
|
-
xinference/core/image_interface.py,sha256=
|
|
26
|
+
xinference/core/image_interface.py,sha256=B_unlVzesE-shlsQg6Q2UCD12NnyHWr2OefkYNwsWlA,10539
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=7JB0-sCCkAgGHpwGHUaZNey7yadm_1QlbgBChNM4CCQ,27836
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
30
|
xinference/core/scheduler.py,sha256=X5lWhzkgTgZgIU-RKz1ytFIju4kE9voII0y0KYUaym4,15651
|
|
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=lL8X9rGadRaOtDZxanXM34Ffnm4FuQ8wvbubX1qtKKI,45866
|
|
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
|
|
@@ -44,17 +44,18 @@ xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,
|
|
|
44
44
|
xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
|
|
45
45
|
xinference/model/utils.py,sha256=0aTidQMD-boAsTzEwWTJjzirtcHkG_7vPUv04PuPwBc,11762
|
|
46
46
|
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
47
|
-
xinference/model/audio/chattts.py,sha256=
|
|
48
|
-
xinference/model/audio/core.py,sha256=
|
|
47
|
+
xinference/model/audio/chattts.py,sha256=tMK8EMY3q6VIGvEZEmSrMipDE9HQZdPsc0KTmN5GuWk,4525
|
|
48
|
+
xinference/model/audio/core.py,sha256=All5OqarDEcmWWpGwPKblDOsoVpJx5xDVJCjI_TznWo,6496
|
|
49
49
|
xinference/model/audio/cosyvoice.py,sha256=rX_Msy05ymN-J6fdV7fXia36p5CDG7z0aslJows5MRY,4988
|
|
50
50
|
xinference/model/audio/custom.py,sha256=01NTD927pairIBWOo9At6Bjqpo1kdcIn3AVijbOdp7Y,5056
|
|
51
|
+
xinference/model/audio/fish_speech.py,sha256=UFPn9crljYYOXGHW1z_uEwHvjTClgjJap85u0rbxJ38,7015
|
|
51
52
|
xinference/model/audio/funasr.py,sha256=zAkQPZp9H4zXbCjWJW1qxWK4B88XXrVaewvdoPQylo4,3985
|
|
52
|
-
xinference/model/audio/model_spec.json,sha256
|
|
53
|
+
xinference/model/audio/model_spec.json,sha256=GSbEIX9g-Ec8IvuLEcNxc-e3CQupEZlnC63bI4MTe0s,4758
|
|
53
54
|
xinference/model/audio/model_spec_modelscope.json,sha256=dTINTAHopLQtDVLNJXURUG8u8Iv39-D7Vp_bDr3Lck8,1729
|
|
54
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
55
56
|
xinference/model/audio/whisper.py,sha256=okhJWnWoE-1Jmk-oKxTotCQ56rQIFMhTOZOmJBk5ug0,7764
|
|
56
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
57
|
-
xinference/model/embedding/core.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=DrfReLEBXE28wQKRYDaugaLmqooVJ1GUBfkx0VPBdu0,17553
|
|
58
59
|
xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65wwhT2IL8,3919
|
|
59
60
|
xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
|
|
60
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
|
|
@@ -68,44 +69,47 @@ xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRU
|
|
|
68
69
|
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
69
70
|
xinference/model/image/core.py,sha256=JmzqyvY_DicnAa1TeKUXHTTvDB0gg-bT9ONwh5-3GhM,8871
|
|
70
71
|
xinference/model/image/custom.py,sha256=nn1iZDTYNz68A2gWFXvUuv__Gx8EGdkz_sHvHnPnSoA,3841
|
|
71
|
-
xinference/model/image/model_spec.json,sha256=
|
|
72
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
72
|
+
xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtAAE_-Hqjjo,5086
|
|
73
|
+
xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
|
|
73
74
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
74
75
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
75
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
76
|
-
xinference/model/llm/__init__.py,sha256=
|
|
76
|
+
xinference/model/image/stable_diffusion/core.py,sha256=po7vIKxoDuPiRCnYYphj68_0MsuLR4OqmHvWiJoa0PA,11901
|
|
77
|
+
xinference/model/llm/__init__.py,sha256=Gc1UfXo2PIbZ4oOqK7w0yBxZg7h2-AdaqK-XAQbXduk,11581
|
|
77
78
|
xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
|
|
78
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
79
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
79
|
+
xinference/model/llm/llm_family.json,sha256=XnWU4i00VB0nT5hPOHFpBVr_5NcdwozNbN9s_XXeEjY,190276
|
|
80
|
+
xinference/model/llm/llm_family.py,sha256=MiGR4hs1TgZ2si9zXqXOzpqqf1IouXv3lIgXRXEYIaM,38222
|
|
80
81
|
xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
|
|
81
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
82
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=1-to5OOgJEsmhwErurfTX0DRNhWP2PnwBA2XonC1H5Y,125262
|
|
82
83
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
83
|
-
xinference/model/llm/utils.py,sha256=
|
|
84
|
+
xinference/model/llm/utils.py,sha256=1sTPxzLCAv3l9cAJjkIvV8arbhP0a_EGuBKAW8tLLgo,35715
|
|
84
85
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
85
86
|
xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
|
|
87
|
+
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
xinference/model/llm/lmdeploy/core.py,sha256=-oG8jYXIkzNLUMl0tR0MxFykQhPFCai002x_KE_ZeVM,20714
|
|
86
89
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
87
90
|
xinference/model/llm/mlx/core.py,sha256=rxZ7aS9QoapJJ0jBOct4ckj5KsftWlND0n6Qlbs3A-w,14485
|
|
88
91
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
89
92
|
xinference/model/llm/sglang/core.py,sha256=GMSAR4XHBMAhF-YqK9E9bTC9nMxSnx5hW3y2ZwiMInk,15778
|
|
90
93
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
91
94
|
xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
|
|
92
|
-
xinference/model/llm/transformers/cogvlm2.py,sha256=
|
|
95
|
+
xinference/model/llm/transformers/cogvlm2.py,sha256=hPghq5UUgJ80g5JC1FbH_MUmFssmkkchgp7Xife2HFQ,16811
|
|
96
|
+
xinference/model/llm/transformers/cogvlm2_video.py,sha256=1gYBHTz5ZrvcsMroDmIRQ3bc03Qq-JL_rO2VSHlu9Ms,18876
|
|
93
97
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
94
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
98
|
+
xinference/model/llm/transformers/core.py,sha256=m9WaZQvyzvx8PEdll1w6ZBS_vl9U7SObJY8TwJhZRw8,30886
|
|
95
99
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
|
|
96
|
-
xinference/model/llm/transformers/glm4v.py,sha256=
|
|
97
|
-
xinference/model/llm/transformers/intern_vl.py,sha256=
|
|
100
|
+
xinference/model/llm/transformers/glm4v.py,sha256=L9rTyuwd0VriudlqH6FkNAugWNy3eOasFYMy59KuNeo,15706
|
|
101
|
+
xinference/model/llm/transformers/intern_vl.py,sha256=ogWYnNl6FOT4KvY3M3d364twC5ZlQT6_xxlK_UgBKoc,19256
|
|
98
102
|
xinference/model/llm/transformers/internlm2.py,sha256=9x_mPhCQifmBVNoIQ_z3DXtI2qRsA_3wOckRsGmDDog,7831
|
|
99
103
|
xinference/model/llm/transformers/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
|
|
100
|
-
xinference/model/llm/transformers/minicpmv25.py,sha256=
|
|
101
|
-
xinference/model/llm/transformers/minicpmv26.py,sha256=
|
|
104
|
+
xinference/model/llm/transformers/minicpmv25.py,sha256=NLuJpeTmqnc8Cn_13-bSjVmtqSUbtxXd20j-sOOWP84,7879
|
|
105
|
+
xinference/model/llm/transformers/minicpmv26.py,sha256=BlmsIqjrD4oHewaskGTemOAN8Dr2S0V7YmFoZQXffZs,9603
|
|
102
106
|
xinference/model/llm/transformers/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
|
|
103
107
|
xinference/model/llm/transformers/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
|
|
104
108
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
105
109
|
xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
|
|
106
|
-
xinference/model/llm/transformers/yi_vl.py,sha256=
|
|
110
|
+
xinference/model/llm/transformers/yi_vl.py,sha256=JeraCcpwzscLrqNq4fIGVohFbgEYHJYR6YAvvTzU7Pc,10116
|
|
107
111
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
108
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
112
|
+
xinference/model/llm/vllm/core.py,sha256=RjSvGQIGqFctNCpTgyIUtn2QUgBTbIDA9s0N1L8cWr4,27783
|
|
109
113
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
110
114
|
xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
|
|
111
115
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
@@ -180,6 +184,100 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLK
|
|
|
180
184
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
181
185
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
182
186
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
187
|
+
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
|
|
190
|
+
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
191
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=8Q-M1wBr6z77pQLvZyfHrjTV_zYCrWUrLheA6hQectk,4443
|
|
192
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
193
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
194
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
198
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
199
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
|
|
200
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
202
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
203
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
204
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
205
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
206
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=O7W7R78RoE_vy9S2yuYUBQw91aykw8Mhwgt7WUv3y6g,8123
|
|
208
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=Mdp3T59iZh3KvWwndcut5gpeN7lVyLAKliyDLbOmlGs,9026
|
|
209
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=-XEQvWtxYFCu-MHBjQWmlOzpFiznxEhkqGObFjuEiMg,9533
|
|
210
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=pm4GUSUOC0HcpIJagE0Kabfj-ic4qnsh3Fxp1ByPF6M,9672
|
|
211
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=grThn88-jttZQOzsV4qyydT40u5J5HvrYC66pPXjpaU,7781
|
|
212
|
+
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
215
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=CDrQ6sUJ5gwFXjzBb25T-NUeBuzo1rKkxww_Fv4KoM8,25764
|
|
216
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
217
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=ZcGYSCAe5uCM9lRLqYQ__YlpKRPIIW8wNKJgqYcPnJc,51
|
|
218
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py,sha256=cxzIZ52_pNZE3Z_VOUiBn1MFuN9tjjl8haAN81oI25c,14238
|
|
219
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
220
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py,sha256=bdOovuQUg9R5GD3bwpBcH864k5zr_iEX8B2qWnq3zk0,1203
|
|
222
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=BS8_2ttzcIwlYpOCQe-TJaRz5nEooyyQqnlmKMUMgo0,20469
|
|
223
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=Lgp0ovnddj9ECcXmvAbXsga1OdxXCkaQFCFrHlC1YWk,4000
|
|
224
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py,sha256=1qozYaZ9b9LlUntbg2PHCquyyzG54KWKdPdyXVgWoQM,3613
|
|
225
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py,sha256=UakV7x67j5hZB5kzfxUbvz8dQtKdRgeTNKrR5SWHu_U,6469
|
|
226
|
+
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
227
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=CTNqZJRf8KSvIcAZbIA0t6BSbDeBlJDnHsOs4JQWKpo,1399
|
|
228
|
+
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=GRwZepmtWAfcyOWjCsBfXhC3_l4LP5CIKS5t3m8enuA,3799
|
|
229
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py,sha256=m4d9b6Mr30ChJ4NzWbWQwAG2PtnTjEAkMB5_wGtINAs,4390
|
|
231
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py,sha256=EBvR_-At1FbsbSmryn5ch41UND-ob3K-dLunpceM4LU,976
|
|
232
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py,sha256=yh_e9nw9bsDYBo0JNgps96D3IrRmrXxa8aBXPXKLHw0,11342
|
|
233
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py,sha256=QyeejVyIK_zc8g5eIMwPsRHClVJtxETzV9JDK1z_KJw,689
|
|
234
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py,sha256=q-aWfALNzMDV6aFkj-cjwc_CY7DfkDKpm-O8H-RXp84,2161
|
|
235
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py,sha256=bAc4r56huEhqqGg5hPCPA_icJ3U4mDhG5JtAaU1amlo,665
|
|
236
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py,sha256=xHzkGNHLYhYgVlB0WFhuYq67kHRnznCVEbQeoppZSIc,927
|
|
237
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py,sha256=aSN88hdY5IP6lHimj9XXq7ZjYxo6BfoA9Gr7yQNMwjA,1018
|
|
238
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py,sha256=3DCSkP7Qg5px99rfgF-Qb1yL9HeMDAV6OxE2VSleeSo,838
|
|
239
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py,sha256=cDPtwmnHKD_JP29wIp5p1Og0I132BUg_cmzGdyoJHM8,1557
|
|
240
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py,sha256=8TdfX5c9t144t1sbhbyTeYncvL_3yjgFAwJfuZqXsIs,6936
|
|
241
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=mDvZjkfjn7MhYBK3zbS_DJXxlXV3T8JbuPwJbG47uI8,680
|
|
242
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py,sha256=X_44wW-LJP21kNb19j63DSSzFopkgsSNkqmsElLSS6U,6724
|
|
243
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/context.py,sha256=G5AyI1qavhX-vBesANU0Mb97ojBY80nwiXBrzNFdQ5E,287
|
|
244
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/file.py,sha256=GrVn5R0Mc5Veb3_9kyOaH_yIiN3zoFvV7g1G3SY-Rp4,345
|
|
245
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py,sha256=KkX18XTz13Et3gKzCGELXI1ZsF_Ons8rdQxPm4Rvxh4,1514
|
|
246
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logger.py,sha256=WVnMyEQqlO2nvt4xySkFogcepeNDNcHWjTYY-m0fo4I,2467
|
|
247
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py,sha256=BJ3h8hF-62MbqxajhmZgKglkpjPfz_GTFTr682SIeYU,1384
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2xY1d1Eg24htFnmyj0RRW2NRdww9xz0jWnQt8,3105
|
|
249
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
250
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
|
|
251
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
|
|
253
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
|
|
254
|
+
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=oh-XIWZxjrjaYgBR3S7Mi6MBHOWijy829lnKexFNlNY,14804
|
|
256
|
+
xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
|
|
257
|
+
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=kTFkIZTdYpnJe0vzNA_uVaGbdBAp43mLBrZnSQIoSsY,1373
|
|
258
|
+
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
259
|
+
xinference/thirdparty/fish_speech/tools/file.py,sha256=soQoO6epHGv8aEeRrGxYW9kGHwGleYVrc8NxlbOd-2E,2633
|
|
260
|
+
xinference/thirdparty/fish_speech/tools/gen_ref.py,sha256=_frao-RXnsgEKNSQ2NWYDtyJl-3tcw-dDS-MCBC1FNg,1020
|
|
261
|
+
xinference/thirdparty/fish_speech/tools/merge_asr_files.py,sha256=oeW-WFNVnXp0pH7SoLi64GmubNrWDu46XS_5qi2ffYE,2013
|
|
262
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=QKzUwAZ_bvEC-aTRampep69K9oX5o111-DzVVPdDkvA,5047
|
|
263
|
+
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=MWA78einNJI4gRgb5nrs8bXD9GWv9V4V5xcX-C_qc7I,1264
|
|
264
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=h32_3IidZbIFsbRlOIViMghaQ2QGzM5qkp6ugVM5-sM,18917
|
|
265
|
+
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
266
|
+
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
+
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=sRWljD4-WIziEG8uDbfuOiZ3OsK1Ug1yRKNu9cCrjHw,4910
|
|
268
|
+
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
269
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=czEjxx_RnHzfwN8A0ZO4FkYcbivFGQaJJv3ucgtQYHM,21644
|
|
270
|
+
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=fQSKyLIGV8B1xDuzxCWVMu8WSO_wbYqR_mwLfFNTnJk,3277
|
|
271
|
+
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=kyFK1FuszL6erStml8jqxqDR43LjgcjlT1d3LeHwTz8,16606
|
|
272
|
+
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
273
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
275
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=gLpuvycuY2_QyOqBbwfBCtDQ9CdEQovcBOvmbHvHqjo,10182
|
|
276
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
277
|
+
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
+
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
279
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=85HKh1ZI0wgeMsX1viEZbv3JIVFCUa5X0euhXSPwiGM,6770
|
|
280
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=6YuLl23AMpPj07hZCsPfAn0DQUL9wV4i3T096h8csmo,3777
|
|
183
281
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
282
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
185
283
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -207,14 +305,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
|
|
|
207
305
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
208
306
|
xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
|
|
209
307
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
210
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
308
|
+
xinference/web/ui/build/asset-manifest.json,sha256=oLXWEdxH8dtoBigKuDZ49ruJlIiQb3JQl1OWAbybNuA,453
|
|
211
309
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
212
|
-
xinference/web/ui/build/index.html,sha256=
|
|
310
|
+
xinference/web/ui/build/index.html,sha256=0e3pBYf2BEpdY_opFUy5H41auiqaEuuiVCkqRwyv2zg,650
|
|
213
311
|
xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
|
|
214
312
|
xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
|
|
215
|
-
xinference/web/ui/build/static/js/main.
|
|
216
|
-
xinference/web/ui/build/static/js/main.
|
|
217
|
-
xinference/web/ui/build/static/js/main.
|
|
313
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js,sha256=ZEDxImgd13fLCY-qxAYlr8oNPL4ggW-5-W0s5nE7WS8,991008
|
|
314
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
315
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.map,sha256=H-UjkAiyeb2jAn5mGjgGud1rmTcKC7GQKv0j2O_vv7Q,4394824
|
|
218
316
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
219
317
|
xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
|
|
220
318
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
@@ -555,6 +653,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/06e467e83a2f58a5aeedce0872f73
|
|
|
555
653
|
xinference/web/ui/node_modules/.cache/babel-loader/06eabed6a8247a7e4d6d9aa3c627f5d8f9a9b06eed8ad2194a3260e134a37f86.json,sha256=PvkcfQRIjpa3f-o7rARuhbiTXzwg3hc6oC4iqpsXHp0,725
|
|
556
654
|
xinference/web/ui/node_modules/.cache/babel-loader/06f893dbada7c83fcf82fe1076a6ec550d3da9b326c62a383f29a2d888db6b3c.json,sha256=2w248sk5WCVJXbHuvA8gbcng1oY6UgllxP07wfluyDo,1803
|
|
557
655
|
xinference/web/ui/node_modules/.cache/babel-loader/06feacb80faf0c297a6167ec40f58202b4768b2f1a6e0dc3ba9c76ef54308a70.json,sha256=zyeoYuKySYrj3sDbT0aA7agp76JAdcg0UuPZXLOF6Fs,1366
|
|
656
|
+
xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json,sha256=6moN2B9xnLvt1_SQhX1tBwjYgsyiO5Qapx-oVAremBA,187121
|
|
558
657
|
xinference/web/ui/node_modules/.cache/babel-loader/0714f7d7eed5c0490af5c1795b66746fc124d5a18699de3af3586e5c983fd6eb.json,sha256=BC_Mub10WX3lOzJZ8iMZftRGnz6L6e3VlPNTADQz31I,1053
|
|
559
658
|
xinference/web/ui/node_modules/.cache/babel-loader/0716a316a9ac8a4402261cfad73e47870cef0ed8e6963a44297985aed1be118a.json,sha256=R8PZV1XP5hFeZLSwrqaNlgfADR2QK9b2-ayWY2zU8Ho,1427
|
|
560
659
|
xinference/web/ui/node_modules/.cache/babel-loader/071aa41c309750db22884d0b19b59ec6ed92c07957fd4e989904a365289adde2.json,sha256=hhlAfcqHp8EBTPqeN6HcGY5ieM7dWVRLuQB4UuDjFug,1717
|
|
@@ -2462,7 +2561,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2f3a5bea59fe969316d45d12408a0
|
|
|
2462
2561
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3af892999a476f20c4ef5cad120993815ffccca6de5fd22c7d47e5ff950169.json,sha256=h0QwDDqQFEWRkuMV5o7XbX-SC7Qq-TaK6mSHWzU6adw,1325
|
|
2463
2562
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3d3d288734a6e47745983f9f865df1c688b2430deb4c4c001b898134a819a0.json,sha256=dM_DSp2naYNI1GhebBe7gVGBpUNG55XFM1Y1UWVl_ZQ,1270
|
|
2464
2563
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3f1ed017398baa9a659bb1d7114d278e96faa473364fd2928284563b18412d.json,sha256=yhH5QhdLKU269VXsoumGFLl3sTVLeQatePaAH1uh6b4,1868
|
|
2465
|
-
xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json,sha256=d9QXo0xNACjyHpjR7J--ZpN4s6yKDl1F94Msu6dDeZg,182891
|
|
2466
2564
|
xinference/web/ui/node_modules/.cache/babel-loader/2f43fe5334615d9a3d941e8f1f6639df1fbb5a843ebf3a603177fd3ba3fe18dd.json,sha256=VqCMJbZSamANuQeevKQ3m7FG5D2TGoZ86krqkwHHeQM,1876
|
|
2467
2565
|
xinference/web/ui/node_modules/.cache/babel-loader/2f45cf790b9bf2f826fcda3deba9e70946524b1a2b5d25507cd8dc632d1673db.json,sha256=pnnFpAyopv9mRlIY5FhZs_3Hk_E85Tq5VmLaNrs1hvU,26548
|
|
2468
2566
|
xinference/web/ui/node_modules/.cache/babel-loader/2f4888054f45db39120cffc39b262153d844febe05842dc4c73124e6f9b0f078.json,sha256=vZX-9UHCYEqHlgUikEDm-o2WsDwB5MlE-UiofNRanEk,1638
|
|
@@ -15472,9 +15570,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15472
15570
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15473
15571
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15474
15572
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15475
|
-
xinference-0.14.
|
|
15476
|
-
xinference-0.14.
|
|
15477
|
-
xinference-0.14.
|
|
15478
|
-
xinference-0.14.
|
|
15479
|
-
xinference-0.14.
|
|
15480
|
-
xinference-0.14.
|
|
15573
|
+
xinference-0.14.3.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15574
|
+
xinference-0.14.3.dist-info/METADATA,sha256=-iZ6GGeMDQ6X1G3T6RoLj_tYI3N7UCl-8T7HfqjBiyM,18397
|
|
15575
|
+
xinference-0.14.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
15576
|
+
xinference-0.14.3.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15577
|
+
xinference-0.14.3.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15578
|
+
xinference-0.14.3.dist-info/RECORD,,
|