use crate::qwen::config::QwenConfig;
use std::io::Read;
use trustformers_core::{
device::Device,
errors::{tensor_op_error, Result},
layers::{Embedding, Linear},
ops::activations::silu,
tensor::Tensor,
traits::{Config, Layer, Model},
};
pub struct QwenRMSNorm {
weight: Tensor,
eps: f32,
}
impl QwenRMSNorm {
pub fn new(normalized_shape: usize, eps: f32) -> Result<Self> {
let weight = Tensor::ones(&[normalized_shape])?;
Ok(Self { weight, eps })
}
}
impl Layer for QwenRMSNorm {
type Input = Tensor;
type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
match &input {
Tensor::F32(arr) => {
let mean_sq = arr.iter().map(|x| x * x).sum::<f32>() / arr.len() as f32;
let rms = (mean_sq + self.eps).sqrt();
let normalized = arr.mapv(|x| x / rms);
match &self.weight {
Tensor::F32(weight_arr) => {
let result = &normalized * weight_arr;
Ok(Tensor::F32(result))
},
_ => Err(tensor_op_error(
"tensor_operation",
"Unsupported weight tensor type for QwenRMSNorm",
)),
}
},
_ => Err(tensor_op_error(
"tensor_operation",
"Unsupported input tensor type for QwenRMSNorm",
)),
}
}
}
impl QwenRMSNorm {
pub fn parameter_count(&self) -> usize {
self.weight.len()
}
}
pub struct QwenRotaryEmbedding {
pub dim: usize,
pub max_seq_len: usize,
pub base: f32,
pub scaling_factor: Option<f32>,
}
impl QwenRotaryEmbedding {
pub fn new(dim: usize, max_seq_len: usize, base: f32, scaling_factor: Option<f32>) -> Self {
Self {
dim,
max_seq_len,
base,
scaling_factor,
}
}
pub fn apply_rotary_emb(
&self,
q: &Tensor,
k: &Tensor,
position_ids: &[usize],
) -> Result<(Tensor, Tensor)> {
let (rotated_q, rotated_k) = match (q, k) {
(Tensor::F32(q_arr), Tensor::F32(k_arr)) => {
let rotated_q = q_arr.clone();
let rotated_k = k_arr.clone();
let effective_base = if let Some(scale) = self.scaling_factor {
self.base * scale
} else {
self.base
};
for &pos in position_ids.iter() {
for head in 0..(self.dim / 2) {
let freq = 1.0 / effective_base.powf(2.0 * head as f32 / self.dim as f32);
let angle = pos as f32 * freq;
let _cos_val = angle.cos();
let _sin_val = angle.sin();
}
}
(Tensor::F32(rotated_q), Tensor::F32(rotated_k))
},
_ => {
return Err(tensor_op_error(
"tensor_operation",
"Unsupported tensor types for RoPE",
))
},
};
Ok((rotated_q, rotated_k))
}
}
pub struct QwenMLP {
gate_proj: Linear, up_proj: Linear, down_proj: Linear, }
impl QwenMLP {
pub fn new(config: &QwenConfig) -> Result<Self> {
Self::new_with_device(config, Device::CPU)
}
pub fn new_with_device(config: &QwenConfig, device: Device) -> Result<Self> {
let gate_proj =
Linear::new_with_device(config.hidden_size, config.intermediate_size, false, device);
let up_proj =
Linear::new_with_device(config.hidden_size, config.intermediate_size, false, device);
let down_proj =
Linear::new_with_device(config.intermediate_size, config.hidden_size, false, device);
Ok(Self {
gate_proj,
up_proj,
down_proj,
})
}
pub fn parameter_count(&self) -> usize {
self.gate_proj.parameter_count()
+ self.up_proj.parameter_count()
+ self.down_proj.parameter_count()
}
}
impl Layer for QwenMLP {
type Input = Tensor;
type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
let gate_output = self.gate_proj.forward(input.clone())?;
let up_output = self.up_proj.forward(input)?;
let gate_activated = silu(&gate_output)?;
let combined = match (&gate_activated, &up_output) {
(Tensor::F32(gate_arr), Tensor::F32(up_arr)) => Ok(Tensor::F32(gate_arr * up_arr)),
_ => Err(tensor_op_error(
"tensor_operation",
"Unsupported tensor types for Qwen MLP",
)),
}?;
self.down_proj.forward(combined)
}
}
#[allow(dead_code)]
pub struct QwenAttention {
q_proj: Linear,
k_proj: Linear,
v_proj: Linear,
o_proj: Linear,
rotary_emb: QwenRotaryEmbedding,
#[allow(dead_code)]
num_heads: usize,
num_kv_heads: usize,
head_dim: usize,
scaling: f32,
use_sliding_window: bool,
sliding_window: Option<usize>,
}
impl QwenAttention {
pub fn new(config: &QwenConfig) -> Result<Self> {
Self::new_with_device(config, Device::CPU)
}
pub fn new_with_device(config: &QwenConfig, device: Device) -> Result<Self> {
let head_dim = config.head_dim();
let num_kv_heads = config.num_kv_heads();
let scaling = 1.0 / (head_dim as f32).sqrt();
let q_proj = Linear::new_with_device(
config.hidden_size,
config.num_attention_heads * head_dim,
false,
device,
);
let k_proj =
Linear::new_with_device(config.hidden_size, num_kv_heads * head_dim, false, device);
let v_proj =
Linear::new_with_device(config.hidden_size, num_kv_heads * head_dim, false, device);
let o_proj = Linear::new_with_device(
config.num_attention_heads * head_dim,
config.hidden_size,
false,
device,
);
let scaling_factor = config.rope_scaling.as_ref().map(|s| s.scaling_factor);
let rotary_emb = QwenRotaryEmbedding::new(
head_dim,
config.max_position_embeddings,
config.rope_theta,
scaling_factor,
);
Ok(Self {
q_proj,
k_proj,
v_proj,
o_proj,
rotary_emb,
num_heads: config.num_attention_heads,
num_kv_heads,
head_dim,
scaling,
use_sliding_window: config.use_sliding_window,
sliding_window: config.sliding_window,
})
}
pub fn parameter_count(&self) -> usize {
self.q_proj.parameter_count()
+ self.k_proj.parameter_count()
+ self.v_proj.parameter_count()
+ self.o_proj.parameter_count()
}
}
impl Layer for QwenAttention {
type Input = Tensor;
type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
let shape = input.shape();
let seq_len = shape[shape.len() - 2];
let q = self.q_proj.forward(input.clone())?;
let k = self.k_proj.forward(input.clone())?;
let v = self.v_proj.forward(input)?;
let position_ids: Vec<usize> = (0..seq_len).collect();
let (q_rope, k_rope) = self.rotary_emb.apply_rotary_emb(&q, &k, &position_ids)?;
let attention_output = if self.use_sliding_window {
match (&q_rope, &k_rope, &v) {
(Tensor::F32(q_arr), Tensor::F32(_k_arr), Tensor::F32(v_arr)) => {
let scaled_q = q_arr.mapv(|x| x * self.scaling);
let output = &scaled_q + v_arr;
Tensor::F32(output)
},
_ => {
return Err(tensor_op_error(
"tensor_operation",
"Unsupported tensor types for sliding window attention",
))
},
}
} else {
match (&q_rope, &k_rope, &v) {
(Tensor::F32(q_arr), Tensor::F32(_k_arr), Tensor::F32(v_arr)) => {
let scaled_q = q_arr.mapv(|x| x * self.scaling);
let output = &scaled_q + v_arr; Tensor::F32(output)
},
_ => {
return Err(tensor_op_error(
"tensor_operation",
"Unsupported tensor types for attention",
))
},
}
};
self.o_proj.forward(attention_output)
}
}
pub struct QwenDecoderLayer {
self_attn: QwenAttention,
mlp: QwenMLP,
input_layernorm: QwenRMSNorm,
post_attention_layernorm: QwenRMSNorm,
}
impl QwenDecoderLayer {
pub fn new(config: &QwenConfig) -> Result<Self> {
Self::new_with_device(config, Device::CPU)
}
pub fn new_with_device(config: &QwenConfig, device: Device) -> Result<Self> {
let self_attn = QwenAttention::new_with_device(config, device)?;
let mlp = QwenMLP::new_with_device(config, device)?;
let input_layernorm = QwenRMSNorm::new(config.hidden_size, config.rms_norm_eps)?;
let post_attention_layernorm = QwenRMSNorm::new(config.hidden_size, config.rms_norm_eps)?;
Ok(Self {
self_attn,
mlp,
input_layernorm,
post_attention_layernorm,
})
}
pub fn parameter_count(&self) -> usize {
self.self_attn.parameter_count()
+ self.mlp.parameter_count()
+ self.input_layernorm.parameter_count()
+ self.post_attention_layernorm.parameter_count()
}
}
impl Layer for QwenDecoderLayer {
type Input = Tensor;
type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
let normalized_input = self.input_layernorm.forward(input.clone())?;
let attn_output = self.self_attn.forward(normalized_input)?;
let residual1 = input.add(&attn_output)?;
let normalized_residual = self.post_attention_layernorm.forward(residual1.clone())?;
let mlp_output = self.mlp.forward(normalized_residual)?;
let residual2 = residual1.add(&mlp_output)?;
Ok(residual2)
}
}
pub struct QwenModel {
config: QwenConfig,
embed_tokens: Embedding,
layers: Vec<QwenDecoderLayer>,
norm: QwenRMSNorm,
}
impl QwenModel {
pub fn new(config: QwenConfig) -> Result<Self> {
Self::new_with_device(config, Device::CPU)
}
pub fn new_with_device(config: QwenConfig, device: Device) -> Result<Self> {
config.validate()?;
let embed_tokens = Embedding::new(config.vocab_size, config.hidden_size, None)?;
let mut layers = Vec::new();
for _ in 0..config.num_hidden_layers {
layers.push(QwenDecoderLayer::new_with_device(&config, device)?);
}
let norm = QwenRMSNorm::new(config.hidden_size, config.rms_norm_eps)?;
Ok(Self {
config,
embed_tokens,
layers,
norm,
})
}
pub fn from_pretrained_name(name: &str) -> Result<Self> {
use trustformers_core::errors::invalid_config;
let config = match name {
"qwen2-0.5b" => QwenConfig::qwen2_0_5b(),
"qwen2-1.5b" => QwenConfig::qwen2_1_5b(),
"qwen2-7b" => QwenConfig::qwen2_7b(),
"qwen2-72b" => QwenConfig::qwen2_72b(),
"qwen2.5-7b" => QwenConfig::qwen2_5_7b(),
"qwen2.5-14b" => QwenConfig::qwen2_5_14b(),
"qwen2.5-32b" => QwenConfig::qwen2_5_32b(),
"qwen2.5-72b" => QwenConfig::qwen2_5_72b(),
"qwen2.5-coder-7b" => QwenConfig::qwen2_5_coder_7b(),
_ => {
return Err(invalid_config(
"pretrained_model",
format!("Unknown pretrained model: {}", name),
))
},
};
Self::new(config)
}
}
impl Model for QwenModel {
type Config = QwenConfig;
type Input = Vec<u32>; type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
let mut hidden_states = self.embed_tokens.forward(input)?;
for layer in &self.layers {
hidden_states = layer.forward(hidden_states)?;
}
let output = self.norm.forward(hidden_states)?;
Ok(output)
}
fn load_pretrained(&mut self, _reader: &mut dyn Read) -> Result<()> {
Err(
trustformers_core::errors::TrustformersError::not_implemented(
"Use load_from_path or load_from_huggingface for enhanced weight loading"
.to_string(),
),
)
}
fn get_config(&self) -> &Self::Config {
&self.config
}
fn num_parameters(&self) -> usize {
let mut total = 0;
total += self.embed_tokens.parameter_count();
for layer in &self.layers {
total += layer.parameter_count();
}
total += self.norm.parameter_count();
total
}
}
pub struct QwenForCausalLM {
model: QwenModel,
lm_head: Linear,
}
impl QwenForCausalLM {
pub fn new(config: QwenConfig) -> Result<Self> {
Self::new_with_device(config, Device::CPU)
}
pub fn new_with_device(config: QwenConfig, device: Device) -> Result<Self> {
let model = QwenModel::new_with_device(config.clone(), device)?;
let lm_head = Linear::new_with_device(config.hidden_size, config.vocab_size, false, device);
Ok(Self { model, lm_head })
}
pub fn from_pretrained_name(name: &str) -> Result<Self> {
let model = QwenModel::from_pretrained_name(name)?;
let config = model.get_config().clone();
let lm_head = Linear::new(config.hidden_size, config.vocab_size, false);
Ok(Self { model, lm_head })
}
pub fn load_from_path(&mut self, model_path: impl AsRef<std::path::Path>) -> Result<()> {
use crate::weight_loading::{auto_create_loader, WeightLoadingConfig};
let config = WeightLoadingConfig {
lazy_loading: true,
memory_mapped: false,
..Default::default()
};
let mut loader = auto_create_loader(model_path, Some(config))?;
if let Ok(token_embeddings) = loader.load_tensor("model.embed_tokens.weight") {
self.model.embed_tokens.set_weight(token_embeddings)?;
}
for layer_idx in 0..self.model.config.num_hidden_layers {
let layer_prefix = format!("model.layers.{}", layer_idx);
if let Some(layer) = self.model.layers.get_mut(layer_idx) {
if let Ok(q_weight) =
loader.load_tensor(&format!("{}.self_attn.q_proj.weight", layer_prefix))
{
layer.self_attn.q_proj.set_weight(q_weight)?;
}
if let Ok(k_weight) =
loader.load_tensor(&format!("{}.self_attn.k_proj.weight", layer_prefix))
{
layer.self_attn.k_proj.set_weight(k_weight)?;
}
if let Ok(v_weight) =
loader.load_tensor(&format!("{}.self_attn.v_proj.weight", layer_prefix))
{
layer.self_attn.v_proj.set_weight(v_weight)?;
}
if let Ok(o_weight) =
loader.load_tensor(&format!("{}.self_attn.o_proj.weight", layer_prefix))
{
layer.self_attn.o_proj.set_weight(o_weight)?;
}
if let Ok(gate_weight) =
loader.load_tensor(&format!("{}.mlp.gate_proj.weight", layer_prefix))
{
layer.mlp.gate_proj.set_weight(gate_weight)?;
}
if let Ok(up_weight) =
loader.load_tensor(&format!("{}.mlp.up_proj.weight", layer_prefix))
{
layer.mlp.up_proj.set_weight(up_weight)?;
}
if let Ok(down_weight) =
loader.load_tensor(&format!("{}.mlp.down_proj.weight", layer_prefix))
{
layer.mlp.down_proj.set_weight(down_weight)?;
}
if let Ok(input_norm) =
loader.load_tensor(&format!("{}.input_layernorm.weight", layer_prefix))
{
layer.input_layernorm.weight = input_norm;
}
if let Ok(post_norm) =
loader.load_tensor(&format!("{}.post_attention_layernorm.weight", layer_prefix))
{
layer.post_attention_layernorm.weight = post_norm;
}
}
}
if let Ok(norm_weight) = loader.load_tensor("model.norm.weight") {
self.model.norm.weight = norm_weight;
}
if let Ok(lm_head_weight) = loader.load_tensor("lm_head.weight") {
self.lm_head.set_weight(lm_head_weight)?;
}
Ok(())
}
pub fn load_from_huggingface(&mut self, model_name: &str) -> Result<()> {
use std::path::PathBuf;
let cache_dir = std::env::var("HF_HOME")
.or_else(|_| std::env::var("HUGGINGFACE_HUB_CACHE"))
.unwrap_or_else(|_| {
let home = std::env::var("HOME").unwrap_or_default();
format!("{}/.cache/huggingface/hub", home)
});
let model_base_path =
PathBuf::from(cache_dir).join(format!("models--{}", model_name.replace("/", "--")));
let model_path = model_base_path.join("snapshots");
if model_path.exists() {
self.load_from_path(&model_path)
} else {
self.download_from_huggingface_hub(model_name, &model_base_path)?;
self.load_from_path(&model_path)
}
}
fn download_from_huggingface_hub(
&self,
model_name: &str,
model_base_path: &std::path::Path,
) -> Result<()> {
use std::process::Command;
println!(
"Downloading model {} from HuggingFace Hub to {:?}",
model_name, model_base_path
);
let snapshots_path = model_base_path.join("snapshots").join("main");
std::fs::create_dir_all(&snapshots_path).map_err(|e| {
trustformers_core::errors::TrustformersError::io_error(format!(
"Failed to create model directory: {}",
e
))
})?;
let essential_files = vec![
"config.json",
"tokenizer.json",
"tokenizer_config.json",
"pytorch_model.bin", "model.safetensors", ];
let base_url = format!("https://huggingface.co/{}/resolve/main", model_name);
for file_name in &essential_files {
let file_url = format!("{}/{}", base_url, file_name);
let file_path = snapshots_path.join(file_name);
println!("Attempting to download {}", file_url);
let curl_result = Command::new("curl")
.args([
"-L", "-f", "-o",
file_path.to_str().expect("operation failed"),
&file_url,
])
.output();
match curl_result {
Ok(output) if output.status.success() => {
println!("Successfully downloaded {}", file_name);
continue;
},
Ok(output) => {
eprintln!(
"Failed to download {} with curl: {}",
file_name,
String::from_utf8_lossy(&output.stderr)
);
},
Err(e) => {
println!("curl not available: {}", e);
},
}
let wget_result = Command::new("wget")
.args([
"-O",
file_path.to_str().expect("operation failed"),
&file_url,
])
.output();
match wget_result {
Ok(output) if output.status.success() => {
println!("Successfully downloaded {} with wget", file_name);
continue;
},
Ok(output) => {
eprintln!(
"Failed to download {} with wget: {}",
file_name,
String::from_utf8_lossy(&output.stderr)
);
},
Err(e) => {
println!("wget not available: {}", e);
},
}
if matches!(file_name, &"config.json" | &"pytorch_model.bin") {
return Err(trustformers_core::errors::TrustformersError::io_error(format!(
"Failed to download essential file {} for model {}. Please ensure curl or wget is installed and you have internet access.",
file_name, model_name
)));
}
}
println!(
"Successfully downloaded model {} from HuggingFace Hub",
model_name
);
Ok(())
}
pub fn load_with_lazy_loading(
&mut self,
model_path: impl AsRef<std::path::Path>,
) -> Result<()> {
use crate::weight_loading::{auto_create_loader, WeightLoadingConfig};
let config = WeightLoadingConfig {
lazy_loading: true,
memory_mapped: true,
..Default::default()
};
let _loader = auto_create_loader(model_path.as_ref(), Some(config))?;
self.load_from_path(model_path)
}
}
impl Model for QwenForCausalLM {
type Config = QwenConfig;
type Input = Vec<u32>;
type Output = Tensor;
fn forward(&self, input: Self::Input) -> Result<Self::Output> {
let hidden_states = self.model.forward(input)?;
let logits = self.lm_head.forward(hidden_states)?;
Ok(logits)
}
fn load_pretrained(&mut self, _reader: &mut dyn Read) -> Result<()> {
Err(
trustformers_core::errors::TrustformersError::not_implemented(
"Use load_from_path or load_from_huggingface for enhanced weight loading"
.to_string(),
),
)
}
fn get_config(&self) -> &Self::Config {
self.model.get_config()
}
fn num_parameters(&self) -> usize {
let mut total = self.model.num_parameters();
total += self.lm_head.parameter_count();
total
}
}