下载Meta-Llama-3-8B详细步骤

内容纲要

官网:https://llama.meta.com/llama-downloads/
Huggingface:https://huggingface.co/meta-llama/Meta-Llama-3-8B
Github:https://github.com/meta-llama/llama3

一、获得授权(meta-llama/Meta-Llama-3-8B)

1、访问 申请访问 链接

2、填写表单

3、等待收到授权邮件

二、下载模型

1、打开terminal

2、登录Huggingface
①访问Huggingface Access Tokens页面,获取 Access Tokens
https://huggingface.co/settings/tokens

②terminal中输入登录命令,回车

huggingface-cli login

③粘贴Access Tokens回车

④输入 Y 回车

3、安装依赖

pip install accelerate

4、打开python

python

5、输入代码

输入 meta-llama/Meta-Llama-3-8B页面上的 Use with transformers 调用代码下载模型到本地

Windows上模型存储位置:

C:\Users\用户名\.cache\huggingface\hub\models--meta-llama--Meta->Llama-3-8B

Linux上模型存储位置:

/root/.cache/huggingface/hub/models--meta-llama--Meta-Llama-3-8B
import transformers
import torch

model_id = "meta-llama/Meta-Llama-3-8B"

pipeline = transformers.pipeline(
pipeline("Hey how are you doing today?")

等待下载完成即可。

Leave a Comment

您的电子邮箱地址不会被公开。 必填项已用*标注

close
arrow_upward