Skip to content

Commit

Permalink
Chore: update submodule (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot authored Oct 25, 2024
1 parent 58a896f commit 5a38855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 47 files
+6 −2 .github/workflows/python.yaml
+1 −1 README.md
+1 −1 README_zh_CN.md
+2 −2 doc/source/models/builtin/embedding/gte-qwen2.rst
+14 −6 setup.cfg
+48 −0 xinference/api/restful_api.py
+19 −0 xinference/client/restful/restful_client.py
+3 −15 xinference/client/tests/test_client.py
+5 −1 xinference/core/chat_interface.py
+5 −1 xinference/core/image_interface.py
+106 −16 xinference/core/model.py
+1 −1 xinference/core/scheduler.py
+108 −0 xinference/core/tests/test_model.py
+6 −5 xinference/deploy/docker/requirements.txt
+5 −4 xinference/deploy/docker/requirements_cpu.txt
+0 −4 xinference/deploy/supervisor.py
+25 −14 xinference/model/audio/chattts.py
+1 −1 xinference/model/audio/model_spec.json
+1 −1 xinference/model/audio/model_spec_modelscope.json
+8 −6 xinference/model/audio/tests/test_chattts.py
+1 −1 xinference/model/embedding/model_spec.json
+59 −4 xinference/model/image/core.py
+24 −3 xinference/model/image/model_spec.json
+25 −3 xinference/model/image/model_spec_modelscope.json
+13 −0 xinference/model/image/ocr/__init__.py
+76 −0 xinference/model/image/ocr/got_ocr2.py
+1 −1 xinference/model/image/scheduler/flux.py
+2 −3 xinference/model/image/stable_diffusion/core.py
+221 −0 xinference/model/image/stable_diffusion/mlx.py
+41 −0 xinference/model/image/tests/test_got_ocr2.py
+9 −0 xinference/model/llm/llm_family.json
+11 −0 xinference/model/llm/llm_family_modelscope.json
+13 −0 xinference/thirdparty/mlx/__init__.py
+15 −0 xinference/thirdparty/mlx/flux/__init__.py
+357 −0 xinference/thirdparty/mlx/flux/autoencoder.py
+154 −0 xinference/thirdparty/mlx/flux/clip.py
+75 −0 xinference/thirdparty/mlx/flux/datasets.py
+247 −0 xinference/thirdparty/mlx/flux/flux.py
+302 −0 xinference/thirdparty/mlx/flux/layers.py
+76 −0 xinference/thirdparty/mlx/flux/lora.py
+134 −0 xinference/thirdparty/mlx/flux/model.py
+56 −0 xinference/thirdparty/mlx/flux/sampler.py
+244 −0 xinference/thirdparty/mlx/flux/t5.py
+185 −0 xinference/thirdparty/mlx/flux/tokenizers.py
+98 −0 xinference/thirdparty/mlx/flux/trainer.py
+179 −0 xinference/thirdparty/mlx/flux/utils.py
+239 −185 xinference/web/ui/src/scenes/launch_model/modelCard.js

0 comments on commit 5a38855

Please sign in to comment.