IT评测·应用市场-qidao123.com

标题: 零底子入门AI:一键本地运行各种开源大语言模子 - Ollama [打印本页]

作者: 来自云龙湖轮廓分明的月亮    时间: 2025-3-11 07:43
标题: 零底子入门AI:一键本地运行各种开源大语言模子 - Ollama
什么是 Ollama?

Ollama 是一个可以在本地部署和管理开源大语言模子的框架,由于它极大的简化了开源大语言模子的安装和设置细节,一经推出就广受好评,目前已在github上获得了46k star。
不管是著名的羊驼系列,还是最新的AI新贵Mistral,等等各种开源大语言模子,都可以用Ollama实现一键安装并运行,支持的更多模子的列表可以检察Ollama官网。
ModelParametersSizeDownloadLlama 27B3.8GBollama run llama2Mistral7B4.1GBollama run mistral 本文就让我们一起入门Ollama。
如何安装 Ollama框架?

Ollama支持各个平台:Mac、Windows 和 Linux,也提供了docker image。 在Ollama官网或者Github可以下载,然后一键安装Ollama框架:

由于Ollama刚支持windows不久,在windows上的相关设置还不够完善,以下我将重要以Linux上运行Ollama来举例阐明。
运行 Ollama 服务

在Ollama安装完成后, 一样平常会自动启动 Ollama 服务,而且会自动设置为开机自启动。安装完成后,可以使用如下下令检察是否Ollama是否正常启动。如下例子中表现“Active: active (running)”表示Ollama已经正常启动。
  1. $ systemctl status ollama
  2. ● ollama.service - Ollama Service
  3.      Loaded: loaded (/etc/systemd/system/ollama.service; enabled; vendor preset: enabled)
  4.     Drop-In: /etc/systemd/system/ollama.service.d
  5.              └─environment.conf
  6.      Active: active (running) since Thu 2024-03-07 09:09:39 HKT; 4 days ago
  7.    Main PID: 19975 (ollama)
  8.       Tasks: 29 (limit: 69456)
  9.      Memory: 1.1G
  10.         CPU: 14min 44.702s
  11.      CGroup: /system.slice/ollama.service
  12.              └─19975 /usr/local/bin/ollama serve
复制代码
在Linux上,假如Ollama未启动,可以用如下下令启动 Ollama 服务:ollama serve,或者 sudo systemctl start ollama。
通过分析Linux的安装脚本install.sh,就会看到其中已经将ollama serve设置为一个系统服务,以是可以使用systemctl来 start / stop ollama进程。
  1.     status "Creating ollama systemd service..."
  2.     cat <<EOF | $SUDO tee /etc/systemd/system/ollama.service >/dev/null
  3. [Unit]
  4. Description=Ollama Service
  5. After=network-online.target
  6. [Service]
  7. ExecStart=$BINDIR/ollama serve
  8. User=ollama
  9. Group=ollama
  10. Restart=always
  11. RestartSec=3
  12. Environment="PATH=$PATH"
复制代码
启动Ollama服务后,可以检察当前的Ollama版本,以及常用下令
  1. ~$ ollama -v
  2. ollama version is 0.1.20
  3. ~$ ollama --help
  4. Large language model runner
  5. Usage:
  6.   ollama [flags]
  7.   ollama [command]
  8. Available Commands:
  9.   serve       Start ollama
  10.   create      Create a model from a Modelfile
  11.   show        Show information for a model
  12.   run         Run a model
  13.   pull        Pull a model from a registry
  14.   push        Push a model to a registry
  15.   list        List models
  16.   cp          Copy a model
  17.   rm          Remove a model
  18.   help        Help about any command
  19. Flags:
  20.   -h, --help      help for ollama
  21.   -v, --version   Show version information
  22. Use "ollama [command] --help" for more information about a command.
复制代码
如何下载并运行大语言模子?

至此,已经完成Ollama框架的安装,接下来,可以用一条下令在本地运行大语言模子。以著名的羊驼举例:ollama run llama2。
假如还没有下载过指定的大语言模子,这条下令将会先实行ollama pull llama2,将大语言模子下载到本地,再在本地运行大语言模子。
下载完成后,运行效果如下:
  1. :~$ ollama run llama2
  2. >>> who are you?
  3. I am LLaMA, an AI assistant developed by Meta AI that can understand and respond to human input in a conversational manner. I am trained on a massive dataset of text from the internet and can
  4. generate human-like responses to a wide range of topics and questions. I can be used to create chatbots, virtual assistants, and other applications that require natural language understanding and
  5. generation capabilities.
  6. >>> Send a message (/? for help)
复制代码
REST API

Ollama还提供了API接口:
  1. curl http://localhost:11434/api/generate -d '{
  2.   "model": "llama2",
  3.   "prompt":"Why is the sky blue?",
  4.   "stream": false
  5. }'
复制代码
返回效果如下:
  1. {
  2.     "model": "llama2",
  3.     "created_at": "2024-02-26T04:35:10.787352404Z",
  4.     "response": "The sky appears blue because of a phenomenon called Rayleigh scattering, which occurs when sunlight enters Earth's atmosphere. The sunlight encounters tiny molecules of gases such as nitrogen and oxygen, which scatter the light in all directions. The shorter wavelengths of light, such as blue and violet, are scattered more than the longer wavelengths, such as red and orange. This is known as Rayleigh scattering, named after Lord Rayleigh, who first described the phenomenon in the late 19th century. As a result of this scattering, the light that reaches our eyes from the sun appears blue, especially when viewed from a distance. The closer we get to the horizon, the more the blue color appears to fade, as the light has to travel through more of the atmosphere, which scatters the shorter wavelengths even more. It's worth noting that the exact shade of blue can vary depending on the time of day and atmospheric conditions. For example, during sunrise and sunset, when the sun is low in the sky, the sky can take on a more orange or red hue due to the scattering of light by atmospheric particles. So, to summarize, the sky appears blue because of the way light interacts with the tiny molecules of gases in Earth's atmosphere, particularly nitrogen and oxygen.",
  5.     "done": true,
  6.     "total_duration": 7001870820,
  7.     "load_duration": 4930376,
  8.     "prompt_eval_duration": 60907000,
  9.     "eval_count": 309,
  10.     "eval_duration": 6931593000
  11. }
复制代码
使用API接口,就可以实现更多灵活的功能,好比与IDE插件共同,实现本地的编程助手,可参考如下文章: 零底子入门AI:搭建本地的编程助手
FAQ

如何检察运行的日记?

在Linux上运行下令journalctl -u ollama,即可检察运行日记。
如何设置本地大模子对局域网提供服务?

在Linux上创建如下设置文件,并设置情况变量 OLLAMA_HOST 来指定对局域网提供服务的地址,再重启Ollama服务即可。
  1. :~$ cat /etc/systemd/system/ollama.service.d/environment.conf
  2. [Service]
  3. Environment=OLLAMA_HOST=0.0.0.0:11434
复制代码
云云设置后,即可由一台GPU服务器为本地局域网提供大语言模子的服务。
本地有多张GPU,如何用指定的GPU来运行Ollama?

在Linux上创建如下设置文件,并设置情况变量 CUDA_VISIBLE_DEVICES 来指定运行Ollama的GPU,再重启Ollama服务即可。
  1. :~$ cat /etc/systemd/system/ollama.service.d/environment.conf
  2. [Service]
  3. Environment=CUDA_VISIBLE_DEVICES=1,2
复制代码
下载的大模子存储在哪个路径?

默认情况下,差别操作系统存储的路径如下:

如何修改大模子存储的路径?

Linux平台安装Ollama时,默认安装时会创建用户ollama,再将模子文件存储到该用户的目录/usr/share/ollama/.ollama/models。但由于大模子文件往往特殊大,有时需要将大模子文件存储到专门的数据盘,此时就需要修改大模子文件的存储路径。
官方提供的方法是设置情况变量“OLLAMA_MODELS”,但我在Linux上尝试后,并没有乐成。
分析Linux版的安装脚本install.sh后,我发现是由于其中创建了用户ollama和用户组ollama,然后将大模子存储到了该用户的目录/usr/share/ollama/.ollama/models,而我的帐户对ollama帐户的一些操作并不能生效,即使我再手动将我的帐户添加进ollama用户组,也仍然会有一些权限题目,导致对ollama帐户的目录操作不生效。
由于新建的ollama帐户并没有给我带来额外的便利,末了我用以下步骤来实现修改大模子文件的存储路径:
  1.    # if ! id ollama >/dev/null 2>&1; then
  2.        # status "Creating ollama user..."
  3.        # $SUDO useradd -r -s /bin/false -m -d /usr/share/ollama ollama
  4.    # fi
  5.    # status "Adding current user to ollama group..."
  6.    # $SUDO usermod -a -G ollama $(whoami)
  7.    
复制代码
  1.         status "Creating ollama systemd service..."
  2.         cat <<EOF | $SUDO tee /etc/systemd/system/ollama.service >/dev/null
  3.     [Unit]
  4.     Description=Ollama Service
  5.     After=network-online.target
  6.    
  7.     [Service]
  8.     ExecStart=$BINDIR/ollama serve
  9.     User=<myusername>
  10.     Group=<myusername>
  11.    
复制代码
  1. 或者在安装完成后,创建如下配置文件,并配置环境变量`OLLAMA_MODELS`来指定存储路径,再重启Ollama服务。```
  2. :~$ cat /etc/systemd/system/ollama.service.d/environment.conf
  3. [Service]
  4. Environment=OLLAMA_MODELS=<path>/OLLAMA_MODELS
复制代码
末了的末了

感谢你们的阅读和喜好,作为一位在一线互联网行业奋斗多年的老兵,我深知在这个瞬息万变的技术领域中,持续学习和进步的重要性。
为了帮助更多热爱技术、渴望成长的朋友,我特殊整理了一份涵盖大模子领域的宝贵资料集。
这些资料不但是我多年积累的心血结晶,也是我在行业一线实战履历的总结。
这些学习资料不但深入浅出,而且非常实用,让大家系统而高效地掌握AI大模子的各个知识点。假如你乐意花时间沉下心来学习,相信它们一定能为你提供实质性的帮助。
这份完备版的大模子 AI 学习资料已经上传CSDN,朋友们假如需要可以微信扫描下方CSDN官方认证二维码免费领取【保证100%免费】
大模子知识脑图

为了成为更好的 AI大模子 开发者,这里为大家提供了总的门路图。它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证本身学得较为全面。

经典书籍阅读

阅读AI大模子经典书籍可以帮助读者进步技术水平,开辟视野,掌握核心技术,进步解决题目的本领,同时也可以鉴戒他人的履历。对于想要深入学习AI大模子开发的读者来说,阅读经典书籍是非常有须要的。

实战案例

光学理论是没用的,要学会跟着一起敲,要动手实操,才气将本身的所学运用到现实当中去,这时间可以搞点实战案例来学习。

面试资料

我们学习AI大模子必然是想找到高薪的工作,下面这些面试题都是总结当前最新、最热、最高频的面试题,并且每道题都有具体的答案,面试前刷完这套面试题资料,小小offer,不在话下

640套AI大模子陈诉合集

这套包含640份陈诉的合集,涵盖了AI大模子的理论研究、技术实现、行业应用等多个方面。无论您是科研人员、工程师,还是对AI大模子感爱好的爱好者,这套陈诉合集都将为您提供宝贵的信息和启示。

这份完备版的大模子 AI 学习资料已经上传CSDN,朋友们假如需要可以微信扫描下方CSDN官方认证二维码免费领取【保证100%免费】

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4