Home

Awesome

手写 transformer 模型

GitHub Issues or Pull Requests GitHub Issues or Pull Requests GitHub repo size GitHub code size in bytes GitHub contributors GitHub commit activity

使用指南

YdrMaster/llama2.rs 发展来的手写 transformer 模型项目。

使用

推荐测试模型:TinyLlama-1.1B-Chat

下文所述“模型目录”,需要至少包含下列 3 个文件:

转换参数

cargo cast --model <model> --dt <date_type>

用于转换参数类型以加速模型加载。

参数:

启动对话服务

cargo chat --model <model>

必要参数:

其他参数参见 cargo chat --help

启动文本生成

cargo generate --model <model> --prompt <prompt>

必要参数:

其他参数参见 cargo generate --help