当前位置:   article > 正文

windows wsl2(ubuntu)使用xinference快速部署ai模型_windows xinference

windows xinference

xinference介绍

Xorbits Inference(Xinference)是一个性能强大且功能全面的分布式推理框架。可用于大语言模型(LLM),语音识别模型,多模态模型等各种模型的推理。通过 Xorbits Inference,你可以轻松地一键部署你自己的模型或内置的前沿开源模型。无论你是研究者,开发者,或是数据科学家,都可以通过 Xorbits Inference 与最前沿的 AI 模型,发掘更多可能。

官方文档:GitHub - xorbitsai/inference: Replace OpenAI GPT with another LLM in your app by changing a single line of code. Xinference gives you the freedom to use any LLM you need. With Xinference, you're empowered to run inference with any open-source language models, speech recognition models, and multimodal models, whether in the cloud, on-premises, or even on your laptop.

如何安装wsl2 并安装linux子系统

参考文档:windows 使用wsl2安装linux子系统 http://t.csdnimg.cn/58VpZ

演示安装ubuntu 22

列出可安装的子系统 命令:wsl --list --online

  1. PS C:\Users\linyu> wsl --list --online
  2. 以下是可安装的有效分发的列表。
  3. 使用 'wsl.exe --install <Distro>' 安装。
  4. NAME FRIENDLY NAME
  5. Ubuntu Ubuntu
  6. Debian Debian GNU/Linux
  7. kali-linux Kali Linux Rolling
  8. Ubuntu-18.04 Ubuntu 18.04 LTS
  9. Ubuntu-20.04 Ubuntu 20.04 LTS
  10. Ubuntu-22.04 Ubuntu 22.04 LTS
  11. OracleLinux_7_9 Oracle Linux 7.9
  12. OracleLinux_8_7 Oracle Linux 8.7
  13. OracleLinux_9_1 Oracle Linux 9.1
  14. openSUSE-Leap-15.5 openSUSE Leap 15.5
  15. SUSE-Linux-Enterprise-Server-15-SP4 SUSE Linux Enterprise Server 15 SP4
  16. SUSE-Linux-Enterprise-15-SP5 SUSE Linux Enterprise 15 SP5
  17. openSUSE-Tumbleweed openSUSE Tumbleweed

安装ubuntu 命令:wsl --install -d Ubuntu-22.04

  1. PS C:\Users\linyu> wsl --install -d Ubuntu-22.04
  2. 正在安装: Ubuntu 22.04 LTS
  3. 已安装 Ubuntu 22.04 LTS。
  4. 正在启动 Ubuntu 22.04 LTS...
  5. Installing, this may take a few minutes...
  6. Please create a default UNIX user account. The username does not need to match your Windows username.
  7. For more information visit: https://aka.ms/wslusers

输入账号密码 安装完成

  1. Enter new UNIX username:
  2. New password:
  3. Retype new password:
  4. passwd: password updated successfully
  5. Installation successful!

安装显卡驱动与cuda驱动

参考文档:wsl2 ubuntu子系统安装显卡驱动与cuda

安装python虚拟运行环境conda

参考文档:conda环境安装

创建xinference python虚拟运行环境

创建xinference运行目录

mkdir -p /data/xinference

创建环境命令:

conda create -n xinference python==3.10

进入环境:

conda activate xinference

按需安装参考官方文档:GitHub - xorbitsai/inference: Replace OpenAI GPT with another LLM in your app by changing a single line of code. Xinference gives you the freedom to use any LLM you need. With Xinference, you're empowered to run inference with any open-source language models, speech recognition models, and multimodal models, whether in the cloud, on-premises, or even on your laptop.Replace OpenAI GPT with another LLM in your app by changing a single line of code. Xinference gives you the freedom to use any LLM you need. With Xinference, you're empowered to run inference with any open-source language models, speech recognition models, and multimodal models, whether in the cloud, on-premises, or even on your laptop. - xorbitsai/inferenceicon-default.png?t=N7T8https://github.com/xorbitsai/inference

本地快速安装:pip install "xinference[all]"

(xinference) root@DESKTOP-TUR5ISE:/data/xinference# pip install "xinference[all]"

安装完成

国内拉模型配置环境变量

配置如下环境变量可以从国内的modelscope拉模型 默认是从Hugging Face拉取,需要外网。

命令行输入:

  1. export XINFERENCE_MODEL_SRC=modelscope
  2. export HF_ENDPOINT=https://hf-mirror.com

启动服务

启动服务 命令:

XINFERENCE_HOME=/data/xinference xinference-local --host 0.0.0.0 --port 9997

查看ip地址

访问服务 http://IP地址:9997

运行模型

点击小火箭图标 启动chatglm3 模型测试

后台开始下载模型

下载完后就看到模型已经在运行列表中了

之后就可以进行调用或对话了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/600229
推荐阅读
相关标签
  

闽ICP备14008679号