4 Star 9 Fork 7

Gitee 极速下载/chatrwkv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/BlinkDL/ChatRWKV
克隆/下载
rwkv_state_merger.py 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
PENG Bo 提交于 2024-05-11 21:07 . Add files via upload
import torch
base_model = 'E:/RWKV-Runner/models/rwkv-final-v6-2.1-3b.pth'
state_model = 'E:/RWKV-Runner/models/rwkv-x060-chn_single_round_qa-3B-20240505-ctx1024.pth'
out_model = 'E:/RWKV-Runner/models/rwkv-final-v6-2.1-3b-20240505.pth'
print('loading...', base_model)
base = torch.load(base_model, map_location="cpu")
print('loading...', state_model)
state = torch.load(state_model, map_location="cpu")
for k in list(state.keys()):
base[k] = state[k].clone()
print('saving...', out_model)
torch.save(base, out_model)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/chatrwkv.git
[email protected]:mirrors/chatrwkv.git
mirrors
chatrwkv
chatrwkv
main

搜索帮助