e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
438 lines
16 KiB
Python
438 lines
16 KiB
Python
# Copyright 2023-present Daniel Han-Chen & the Unsloth team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from .llama import *
|
|
import os
|
|
from ._utils import __version__
|
|
from unsloth_zoo.utils import Version, _get_dtype
|
|
from ..utils.packing import get_packed_info_from_kwargs
|
|
from ..utils.attention_dispatch import (
|
|
AttentionConfig,
|
|
AttentionContext,
|
|
run_attention,
|
|
SDPA,
|
|
select_attention_backend,
|
|
resolve_prefix_seg_info,
|
|
)
|
|
from .llama import (
|
|
LlamaRotaryEmbedding,
|
|
LlamaLinearScalingRotaryEmbedding,
|
|
_LlamaModel_fast_forward_inference,
|
|
)
|
|
|
|
try:
|
|
from transformers.models.qwen3.modeling_qwen3 import (
|
|
Qwen3Attention,
|
|
Qwen3DecoderLayer,
|
|
Qwen3Model,
|
|
Qwen3ForCausalLM,
|
|
)
|
|
except:
|
|
transformers_version = Version(transformers_version)
|
|
if not transformers_version >= Version("4.50.3"): # TODO: Update when transformers is updated
|
|
raise ImportError(
|
|
f"Unsloth: Your transformers version of {transformers_version} does not support Qwen3 and Qwen3Moe.\n"
|
|
f"The minimum required version is 4.50.3.\n"
|
|
f'Try `pip install --upgrade "transformers>=4.50.3"`\n'
|
|
f"to obtain the latest transformers build, then restart this session."
|
|
)
|
|
from transformers.modeling_attn_mask_utils import (
|
|
_prepare_4d_causal_attention_mask_for_sdpa,
|
|
)
|
|
|
|
# For Pytorch 2.1.1
|
|
try:
|
|
from transformers.models.qwen3.modeling_qwen3 import (
|
|
Qwen3SdpaAttention,
|
|
Qwen3FlashAttention2,
|
|
)
|
|
except:
|
|
Qwen3SdpaAttention = Qwen3Attention
|
|
Qwen3FlashAttention2 = Qwen3Attention
|
|
|
|
|
|
def Qwen3Attention_fast_forward(
|
|
self,
|
|
hidden_states: torch.Tensor,
|
|
causal_mask: Optional[BlockDiagonalCausalMask] = None,
|
|
attention_mask: Optional[torch.Tensor] = None,
|
|
position_ids: Optional[torch.LongTensor] = None,
|
|
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
|
output_attentions: bool = False,
|
|
use_cache: bool = False,
|
|
padding_mask: Optional[torch.LongTensor] = None,
|
|
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None,
|
|
*args,
|
|
**kwargs,
|
|
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
|
# Clear inference
|
|
if hasattr(self, "paged_attention"):
|
|
del self.paged_attention_K
|
|
del self.paged_attention_V
|
|
del self.paged_attention
|
|
del self.temp_QA
|
|
del self.temp_KV
|
|
del self.RH_Q
|
|
del self.attention
|
|
|
|
bsz, q_len, _ = hidden_states.size()
|
|
|
|
n_heads = self.config.num_attention_heads
|
|
n_groups = self.num_key_value_groups
|
|
n_kv_heads = self.config.num_key_value_heads
|
|
head_dim = self.head_dim
|
|
assert n_kv_heads * n_groups == n_heads
|
|
|
|
Q, K, V = self.apply_qkv(self, hidden_states)
|
|
Q = Q.view(
|
|
bsz, q_len, n_heads, head_dim
|
|
) # .transpose(1, 2) # we will transpose after normalisation
|
|
K = K.view(
|
|
bsz, q_len, n_kv_heads, head_dim
|
|
) # .transpose(1, 2) # we will transpose after normalisation
|
|
V = V.view(bsz, q_len, n_kv_heads, head_dim).transpose(1, 2)
|
|
seq_info = get_packed_info_from_kwargs(kwargs, hidden_states.device)
|
|
|
|
# Qwen3 adds QKNorm (the only difference from Qwen2). A compiled norm
|
|
# mismatches Transformers' numbers, so use fast_rms_layernorm. TODO: investigate.
|
|
Q = fast_rms_layernorm(self.q_norm, Q)
|
|
K = fast_rms_layernorm(self.k_norm, K)
|
|
|
|
Q = Q.transpose(1, 2)
|
|
K = K.transpose(1, 2)
|
|
|
|
kv_seq_len = K.shape[-2]
|
|
if past_key_value is not None:
|
|
kv_seq_len += past_key_value[0].shape[-2]
|
|
|
|
# Extend RoPE dynamically to fit in VRAM
|
|
if position_embeddings and kv_seq_len <= position_embeddings[0].shape[0]:
|
|
cos, sin = position_embeddings
|
|
else:
|
|
rotary_emb = self.rotary_emb
|
|
rotary_emb.extend_rope_embedding(V, seq_len = kv_seq_len)
|
|
cos, sin = rotary_emb.get_cached(kv_seq_len, Q.device.index)
|
|
|
|
rope_position_ids = position_ids if position_ids is not None else kwargs.get("position_ids")
|
|
# Useful for LongRoPE
|
|
Q, K = fast_rope_embedding(Q, K, cos, sin, rope_position_ids)
|
|
|
|
if past_key_value is not None:
|
|
K = torch.cat([past_key_value[0], K], dim = 2)
|
|
V = torch.cat([past_key_value[1], V], dim = 2)
|
|
past_key_value = (K, V) if use_cache else None
|
|
|
|
# Attention module
|
|
use_varlen = seq_info is not None and past_key_value is None
|
|
backend = SDPA if attention_mask is not None else select_attention_backend(use_varlen)
|
|
attention_config = AttentionConfig(
|
|
backend = backend,
|
|
n_kv_heads = n_kv_heads,
|
|
n_groups = n_groups,
|
|
flash_dense_kwargs = {"causal": True},
|
|
flash_varlen_kwargs = {
|
|
"dropout_p": 0.0,
|
|
"causal": True,
|
|
"softmax_scale": getattr(self, "softmax_scale", None),
|
|
},
|
|
)
|
|
# PrefixGrouper seg table rides in **kwargs from the GRPO logprob forward; misuse
|
|
# (KV cache / padding mask) raises. None => byte-identical default.
|
|
_pg_seg = resolve_prefix_seg_info(kwargs, past_key_value, attention_mask)
|
|
context = AttentionContext(
|
|
bsz = bsz,
|
|
q_len = q_len,
|
|
kv_seq_len = kv_seq_len,
|
|
n_heads = n_heads,
|
|
head_dim = head_dim,
|
|
requires_grad = hidden_states.requires_grad,
|
|
seq_info = seq_info,
|
|
attention_mask = attention_mask,
|
|
causal_mask = causal_mask,
|
|
prefix_seg_info = _pg_seg,
|
|
)
|
|
|
|
A = run_attention(config = attention_config, context = context, Q = Q, K = K, V = V)
|
|
|
|
attn_output = A.reshape(bsz, q_len, n_heads * head_dim)
|
|
attn_output = self.apply_o(self, attn_output)
|
|
attn_weights = None
|
|
return attn_output, attn_weights, past_key_value
|
|
|
|
|
|
torch_matmul = torch.matmul
|
|
|
|
|
|
def Qwen3Attention_fast_forward_inference(
|
|
self,
|
|
hidden_states: torch.Tensor,
|
|
past_key_value: Optional[Tuple[torch.Tensor]],
|
|
position_ids,
|
|
do_prefill = False,
|
|
attention_mask = None,
|
|
**kwargs,
|
|
):
|
|
"""Fast inference using the KV cache.
|
|
|
|
QK^T splits into 4 chunks; the mask zeroes Qk^T and softmax is row-wise, so
|
|
softmax(QK^T)V is just the prior step's attention. We therefore only compute
|
|
the final row: pass one row of Q while remembering K and V (the KV cache).
|
|
Ref: https://github.com/huggingface/transformers/blob/main/src/transformers/models/llama/modeling_llama.py#L406
|
|
"""
|
|
Xn = hidden_states
|
|
bsz, _, hd = hidden_states.size()
|
|
K1, V1 = past_key_value
|
|
dtype = Xn.dtype
|
|
|
|
n_heads = self.config.num_attention_heads
|
|
n_groups = self.num_key_value_groups
|
|
n_kv_heads = self.config.num_key_value_heads
|
|
head_dim = self.head_dim
|
|
# assert(n_kv_heads * n_groups == n_heads)
|
|
|
|
hidden_size = self.config.hidden_size
|
|
attention_size = n_heads * head_dim
|
|
seq_len = K1.shape[-2]
|
|
kv_seq_len = seq_len + 1
|
|
|
|
# Prefill phase
|
|
# if not hasattr(self, "paged_attention"):
|
|
device = hidden_states.device
|
|
if do_prefill:
|
|
self.paged_attention = torch.empty(
|
|
(KV_CACHE_INCREMENT + seq_len + 1, 2, bsz, n_kv_heads, head_dim),
|
|
dtype = dtype,
|
|
device = device,
|
|
)
|
|
self.paged_attention_K = self.paged_attention[:, 0]
|
|
self.paged_attention_V = self.paged_attention[:, 1]
|
|
self.paged_attention_K[:seq_len] = K1.permute(2, 0, 1, 3)
|
|
self.paged_attention_V[:seq_len] = V1.permute(2, 0, 1, 3)
|
|
self.temp_QA = torch.empty((2, bsz, 1, attention_size), dtype = dtype, device = device)
|
|
self.temp_KV = torch.empty((2, bsz, 1, n_kv_heads * head_dim), dtype = dtype, device = device)
|
|
self.RH_Q = torch.empty((bsz, n_heads, 1, head_dim), dtype = dtype, device = device)
|
|
|
|
# Mistral Nemo 12b has weird dimensions
|
|
if attention_size != hidden_size:
|
|
self.temp_O = torch.empty((bsz, 1, hidden_size), dtype = dtype, device = device)
|
|
else:
|
|
self.temp_O = self.temp_QA[1][:, :, :hidden_size]
|
|
|
|
self.attention = torch.empty(
|
|
(bsz, n_heads, 1, KV_CACHE_INCREMENT + seq_len), dtype = dtype, device = device
|
|
)
|
|
self.scalar = 1.0 / math_sqrt(self.head_dim)
|
|
self.half_head_dim = head_dim // 2
|
|
elif kv_seq_len >= self.paged_attention.shape[0]:
|
|
self.paged_attention.resize_(
|
|
(
|
|
self.paged_attention.shape[0] + KV_CACHE_INCREMENT,
|
|
2,
|
|
bsz,
|
|
n_kv_heads,
|
|
head_dim,
|
|
)
|
|
)
|
|
self.paged_attention_K = self.paged_attention[:, 0]
|
|
self.paged_attention_V = self.paged_attention[:, 1]
|
|
self.attention.resize_((bsz, n_heads, 1, self.attention.shape[-1] + KV_CACHE_INCREMENT))
|
|
|
|
Qn = fast_linear_forward(self.q_proj, Xn, out = self.temp_QA[0])
|
|
Kn = fast_linear_forward(self.k_proj, Xn, out = self.temp_KV[0])
|
|
Vn = fast_linear_forward(self.v_proj, Xn, out = self.temp_KV[1])
|
|
Qn = Qn.view(
|
|
bsz, 1, n_heads, head_dim
|
|
) # .transpose(1, 2) # we will transpose after normalisation
|
|
Kn = Kn.view(
|
|
bsz, 1, n_kv_heads, head_dim
|
|
) # .transpose(1, 2) # we will transpose after normalisation
|
|
Vn = Vn.view(bsz, 1, n_kv_heads, head_dim).transpose(1, 2)
|
|
|
|
Qn = fast_rms_layernorm_inference(self.q_norm, Qn)
|
|
Kn = fast_rms_layernorm_inference(self.k_norm, Kn)
|
|
|
|
Qn = Qn.transpose(1, 2)
|
|
Kn = Kn.transpose(1, 2)
|
|
|
|
# cos, sin = self.rotary_emb(Vn, seq_len = kv_seq_len)
|
|
# Qn, Kn = inplace_rope_embedding(Qn, Kn, cos, sin, position_ids)
|
|
|
|
# Need to do it prior 2 steps before hitting full on short KV cache
|
|
# or else error
|
|
self.rotary_emb.extend_rope_embedding(Vn, seq_len + 2)
|
|
cos, sin = self.rotary_emb.get_cached(kv_seq_len, Qn.device.index)
|
|
# Transformers 5.x: position_ids may be [batch, full_seq_len]; slice to last
|
|
if position_ids.dim() >= 2 and position_ids.shape[-1] > 1:
|
|
position_ids = position_ids[:, -1:]
|
|
cos = cos[position_ids].unsqueeze(1)
|
|
sin = sin[position_ids].unsqueeze(1)
|
|
h = self.half_head_dim
|
|
|
|
RH_Q = self.RH_Q
|
|
RH_Q[:, :, :, :h] = Qn[:, :, :, h:]
|
|
RH_Q[:, :, :, h:] = Qn[:, :, :, :h]
|
|
RH_Q[:, :, :, :h].neg_() # torch.neg(RH_Q[:,:,:,:h], out = RH_Q[:,:,:,:h])
|
|
Qn *= cos
|
|
Qn.addcmul_(RH_Q, sin)
|
|
|
|
RH_K = RH_Q[
|
|
:, :n_kv_heads, :, :
|
|
] # torch.empty((n_kv_heads, 1, head_dim), dtype = dtype, device = "cuda:0")
|
|
RH_K[:, :, :, :h] = Kn[:, :, :, h:]
|
|
RH_K[:, :, :, h:] = Kn[:, :, :, :h]
|
|
RH_K[:, :, :, :h].neg_() # torch.neg(RH_K[:,:,:,:h], out = RH_K[:,:,:,:h])
|
|
Kn *= cos
|
|
Kn.addcmul_(RH_K, sin)
|
|
|
|
# New KV cache
|
|
# Kn = torch.cat([K1, Kn], dim = 2)
|
|
# Vn = torch.cat([V1, Vn], dim = 2)
|
|
self.paged_attention_K[seq_len] = Kn.permute(2, 0, 1, 3)
|
|
self.paged_attention_V[seq_len] = Vn.permute(2, 0, 1, 3)
|
|
Kn = self.paged_attention_K[:kv_seq_len].permute(1, 2, 0, 3)
|
|
Vn = self.paged_attention_V[:kv_seq_len].permute(1, 2, 0, 3)
|
|
|
|
# Handle sliding windows
|
|
sliding_window = getattr(self.config, "sliding_window", None)
|
|
if sliding_window is not None and kv_seq_len > sliding_window:
|
|
start = kv_seq_len - sliding_window
|
|
Knn = Kn[:, :, start:, :] # .contiguous()
|
|
Vnn = Vn[:, :, start:, :] # .contiguous()
|
|
if attention_mask is not None:
|
|
attention_mask = attention_mask[..., start:]
|
|
else:
|
|
Knn, Vnn = Kn, Vn
|
|
|
|
# when qlen==vlen and attn_mask is None, we should use causal attention
|
|
Q_len = Qn.shape[-2]
|
|
K_len = Knn.shape[-2]
|
|
if attention_mask is not None and attention_mask.dim() == 2:
|
|
attention_mask = attention_mask[:, None, None, :].to(torch.bool)
|
|
elif (
|
|
attention_mask is not None
|
|
and attention_mask.dim() == 4
|
|
and attention_mask.dtype != torch.bool
|
|
):
|
|
attention_mask = attention_mask.eq(0)
|
|
if attention_mask is None and Q_len == K_len:
|
|
is_causal = True
|
|
else:
|
|
is_causal = False
|
|
use_sdpa_gqa = SDPA_HAS_GQA
|
|
if (
|
|
use_sdpa_gqa
|
|
and isinstance(attention_mask, torch.Tensor)
|
|
and attention_mask.dim() >= 3
|
|
and attention_mask.shape[0] > 1
|
|
):
|
|
# Avoid SDPA GQA drift for batched masked decode.
|
|
use_sdpa_gqa = False
|
|
|
|
# Grouped query attention
|
|
_, _, cached_len, _ = Knn.shape
|
|
if bsz == 1 or ((not use_sdpa_gqa) and n_groups != 1):
|
|
Knn = Knn[:, :, None, :, :].expand(bsz, n_kv_heads, n_groups, cached_len, head_dim)
|
|
Vnn = Vnn[:, :, None, :, :].expand(bsz, n_kv_heads, n_groups, cached_len, head_dim)
|
|
Knn = Knn.reshape(bsz, n_heads, cached_len, head_dim)
|
|
Vnn = Vnn.reshape(bsz, n_heads, cached_len, head_dim)
|
|
|
|
# Attention
|
|
if bsz == 1:
|
|
Qn *= (
|
|
self.scalar
|
|
) # See https://github.com/ggerganov/llama.cpp/issues/7805#issuecomment-2153349963
|
|
# It seems like doing (Q * scalar) @ K is better than (Q @ K) * scalar to stop overflows
|
|
A = torch_matmul(Qn, Knn.transpose(2, 3), out = self.attention[:, :, :, :cached_len])
|
|
A[:] = torch_nn_functional_softmax(A, dim = -1, dtype = torch.float32) # .to(A.dtype)
|
|
A = torch_matmul(A, Vnn, out = Qn)
|
|
else:
|
|
if use_sdpa_gqa:
|
|
A = scaled_dot_product_attention(
|
|
Qn,
|
|
Knn,
|
|
Vnn,
|
|
attn_mask = attention_mask,
|
|
is_causal = is_causal,
|
|
enable_gqa = True,
|
|
)
|
|
else:
|
|
A = scaled_dot_product_attention(
|
|
Qn, Knn, Vnn, attn_mask = attention_mask, is_causal = is_causal
|
|
)
|
|
A = A.transpose(1, 2)
|
|
A = A.reshape(bsz, 1, attention_size)
|
|
A = fast_linear_forward(self.o_proj, A, out = self.temp_O)
|
|
return A, (Kn, Vn)
|
|
|
|
|
|
class FastQwen3Model(FastLlamaModel):
|
|
@staticmethod
|
|
def pre_patch():
|
|
init_name, function = patch_linear_scaling(
|
|
model_name = "Qwen3",
|
|
rope_module = LlamaRotaryEmbedding,
|
|
scaled_rope_module = LlamaLinearScalingRotaryEmbedding,
|
|
attention_module = Qwen3Attention,
|
|
)
|
|
if init_name is not None:
|
|
exec(function, globals())
|
|
Qwen3Attention.__init__ = eval(init_name)
|
|
Qwen3Attention.forward = Qwen3Attention_fast_forward
|
|
Qwen3SdpaAttention.forward = Qwen3Attention_fast_forward
|
|
Qwen3FlashAttention2.forward = Qwen3Attention_fast_forward
|
|
Qwen3DecoderLayer.forward = LlamaDecoderLayer_fast_forward
|
|
Qwen3Model.forward = LlamaModel_fast_forward
|
|
Qwen3ForCausalLM.forward = CausalLM_fast_forward(
|
|
_LlamaModel_fast_forward_inference(Qwen3Attention_fast_forward_inference)
|
|
)
|
|
PeftModelForCausalLM.forward = PeftModel_fast_forward
|
|
fix_prepare_inputs_for_generation(Qwen3ForCausalLM)
|
|
|
|
# Retain old rotary embeddings; static KV cache (transformers 4.38.0)
|
|
# slowed training. See unslothai/unsloth#168 and transformers#27931.
|
|
import transformers.models.qwen3.modeling_qwen3
|
|
|
|
transformers.models.qwen3.modeling_qwen3.Qwen3RotaryEmbedding = LlamaRotaryEmbedding
|
|
return
|
|
|
|
@staticmethod
|
|
def from_pretrained( # TODO: Change after release
|
|
model_name = "Qwen/Qwen3-7B",
|
|
max_seq_length = 4096,
|
|
dtype = None,
|
|
load_in_4bit = True,
|
|
token = None,
|
|
device_map = "sequential",
|
|
rope_scaling = None,
|
|
fix_tokenizer = True,
|
|
model_patcher = None,
|
|
tokenizer_name = None,
|
|
trust_remote_code = False,
|
|
**kwargs,
|
|
):
|
|
return FastLlamaModel.from_pretrained(
|
|
model_name = model_name,
|
|
max_seq_length = max_seq_length,
|
|
dtype = dtype,
|
|
load_in_4bit = load_in_4bit,
|
|
token = token,
|
|
device_map = device_map,
|
|
rope_scaling = rope_scaling,
|
|
fix_tokenizer = fix_tokenizer,
|
|
model_patcher = FastQwen3Model,
|
|
tokenizer_name = tokenizer_name,
|
|
trust_remote_code = trust_remote_code,
|
|
**kwargs,
|
|
)
|