feat(转换工具): 1. 添加模型转换示例 2. 更新 Cargo.toml 文件以包含新依赖 3. 删除过时的模型指南文档 4. 更新 README 文件以反映项目结构和使用说明

This commit is contained in:
2026-07-08 15:13:57 +08:00
parent 3f952c5fe9
commit e235edee4a
6 changed files with 150 additions and 318 deletions
+13
View File
@@ -0,0 +1,13 @@
[package]
name = "convert"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "convert"
path = "src/main.rs"
[dependencies]
minicpm-convert = { path = "../../crates/minicpm-convert" }
burn = { version = "0.21", default-features = false, features = ["std", "flex"] }
anyhow = "1.0"