pub use DType and Tensor

This commit is contained in:
jhqxxx
2026-04-17 19:46:34 +08:00
parent 6769ad376e
commit 0cb979145f
4 changed files with 108 additions and 1 deletions
+1 -1
View File
@@ -6,4 +6,4 @@ pub mod position_embed;
pub mod tokenizer;
pub mod utils;
pub use candle_core::Device;
pub use candle_core::{DType, Device, Tensor};
+36
View File
@@ -64,6 +64,42 @@ impl<'a> Qwen3_5GenerateModel<'a> {
})
}
pub fn init_without_visual(
path: &str,
device: Option<&Device>,
dtype: Option<DType>,
) -> Result<Self> {
let model_name = std::path::Path::new(path)
.file_name()
.and_then(|s| s.to_str())
.unwrap_or("qwen3.5");
let chat_template = ChatTemplate::init(path)?;
let tokenizer = TokenizerModel::init(path)?;
let config_path = path.to_string() + "/config.json";
let cfg: Qwen3_5Config = serde_json::from_slice(&std::fs::read(config_path)?)?;
let device = get_device(device);
let cfg_dtype = cfg.text_config.dtype.as_str();
let dtype = get_dtype(dtype, cfg_dtype);
// let pre_processor = Qwen3VLProcessor::new(path, &device, dtype)?;
let pre_processor = None;
let model_list = find_type_files(path, "safetensors")?;
let vb = unsafe { VarBuilder::from_mmaped_safetensors(&model_list, dtype, &device)? };
let eos_ids = vec![cfg.text_config.eos_token_id];
// let qwen3_5 = Qwen3_5Model::new_from_vb(vb, cfg, eos_ids)?;
let qwen3_5 = Qwen3_5Model::new_from_vb_without_visual(vb, cfg, eos_ids)?;
Ok(Self {
chat_template,
tokenizer,
pre_processor,
qwen3_5,
device,
model_name: model_name.to_string(),
repeat_penalty: 1.0,
repeat_last_n: 64,
})
}
pub fn init_from_gguf(
model_file: &str,
mmproj_file: Option<&str>,
+32
View File
@@ -1077,6 +1077,38 @@ impl Qwen3_5Model {
})
}
pub fn new_from_vb_without_visual(
vb: VarBuilder,
config: Qwen3_5Config,
eos_ids: Vec<u32>,
) -> Result<Self> {
let vb_m = vb.pp("model");
// let visual = Qwen3VLVisionModel::new(config.vision_config.clone(), vb_m.pp("visual"))?;
let visual = None;
let language_model =
Qwen3_5TextModel::new_from_vb(vb_m.pp("language_model"), &config.text_config)?;
let lm_head = if config.tie_word_embeddings {
Linear::new(language_model.embed_tokens.embeddings().clone(), None)
} else {
linear_no_bias(
config.text_config.hidden_size,
config.text_config.vocab_size,
vb.pp("lm_head"),
)?
};
Ok(Self {
spatial_merge_size: config.vision_config.spatial_merge_size,
image_token_id: config.image_token_id,
video_token_id: config.video_token_id,
vision_start_token_id: config.vision_start_token_id,
visual,
language_model,
lm_head: ProjKind::LinearProj(lm_head),
rope_deltas: None,
stop_token_ids: eos_ids,
})
}
pub fn new_from_gguf<R: Read + Seek>(
gguf: &mut Gguf<R>,
mmproj_gguf: Option<&mut Gguf<R>>,