Text Generation
Transformers
Safetensors
English
Arabic
quasar_long
silx-ai
quasar-preview
quasar
foundation-model
Mixture of Experts
18b
2b-active
long-context
bittensor
sn24
decentralized-training
distillation
hybrid-transformer
loop-transformer
safe-nope
drope
conversational
custom_code
Instructions to use mainline777/base_IIXIV with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mainline777/base_IIXIV with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mainline777/base_IIXIV", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("mainline777/base_IIXIV", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mainline777/base_IIXIV with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mainline777/base_IIXIV" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mainline777/base_IIXIV
- SGLang
How to use mainline777/base_IIXIV with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mainline777/base_IIXIV" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mainline777/base_IIXIV" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mainline777/base_IIXIV", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use mainline777/base_IIXIV with Docker Model Runner:
docker model run hf.co/mainline777/base_IIXIV
| # Copyright (c) 2023-2025, Songlin Yang, Yu Zhang | |
| from __future__ import annotations | |
| from typing import TYPE_CHECKING | |
| import torch | |
| import torch.nn as nn | |
| import torch.nn.functional as F | |
| from einops import rearrange, repeat | |
| from fla.layers.utils import get_layer_cache, get_unpad_data, index_first_axis, pad_input, update_layer_cache | |
| from fla.modules import FusedRMSNormGated, RMSNorm, ShortConvolution | |
| from fla.modules.activations import ACT2FN | |
| from fla.ops.gla import chunk_gla, fused_chunk_gla, fused_recurrent_gla | |
| if TYPE_CHECKING: | |
| from transformers.processing_utils import Unpack | |
| from fla.models.utils import Cache | |
| class GatedLinearAttention(nn.Module): | |
| r""" | |
| The layer implementaion for [Gated Linear Attention Transformers with Hardware-Efficient Training](https://arxiv.org/abs/2312.06635). # noqa | |
| Args: | |
| mode (str, Optional): | |
| Which GLA kernel to use. | |
| Currently available: `chunk`, `fused_recurrent`, and `fused_chunk`. | |
| Default: `chunk`. | |
| hidden_size (int, Optional): | |
| The hidden size of the input. Default: 1024. | |
| expand_k (float, Optional): | |
| The expansion ratio for the key dim. Default: 0.5. | |
| expand_v (float, Optional): | |
| The expansion ratio for the value dim. Default: 1.0. | |
| num_heads (int, Optional): | |
| The number of heads. Default: 4. | |
| num_kv_heads (int, Optional): | |
| The number of key/value heads, used for MQA. Default: None. | |
| feature_map (str, Optional): | |
| Feature map function applied to queries/keys. Default: None. | |
| use_short_conv (bool, Optional): | |
| Whether to use short convolutions. Default: `False`. | |
| conv_size (int, Optional): | |
| The kernel size of the short convolution, only used when `use_short_conv` is `True`. Default: 4. | |
| conv_bias (bool, Optional): | |
| Whether to use bias in the short convolution, only used when `use_short_conv` is `True`. Default: `False`. | |
| use_output_gate (bool, Optional): | |
| Whether to use output gate. Default: `True`. | |
| gate_fn (str, Optional): | |
| The activation function for the output gate. Default: `swish`. | |
| elementwise_affine (bool, Optional): | |
| If `True`, applies elementwise affine to LayerNorm with learnable parameters. Default: `True`. | |
| norm_eps (float, Optional): | |
| The epsilon value for the layernorm/rmsnorm layer. Default: 1e-5. | |
| gate_logit_normalizer (int, Optional): | |
| The normalizer for the gate logits, appied after `logsigmoid`. Default: 16. | |
| gate_low_rank_dim (int, Optional): | |
| The low rank dim for the gate projection. Default: 16. | |
| clamp_min (float, Optional): | |
| The minimum value for the gate logits. Default: None. | |
| fuse_norm (bool, Optional): | |
| Whether to fuse the norm and the output gate for better memory footprint. Default: `True`. | |
| layer_idx (int, Optional): | |
| The index of the layer. Default: None. | |
| """ | |
| def __init__( | |
| self, | |
| mode: str = 'chunk', | |
| hidden_size: int = 1024, | |
| expand_k: float = 0.5, | |
| expand_v: float = 1.0, | |
| num_heads: int = 4, | |
| num_kv_heads: int | None = None, | |
| feature_map: str | None = None, | |
| use_short_conv: bool = False, | |
| conv_size: int = 4, | |
| conv_bias: bool = False, | |
| use_output_gate: bool = True, | |
| gate_fn: str = 'swish', | |
| elementwise_affine: bool | None = True, | |
| norm_eps: float = 1e-5, | |
| gate_logit_normalizer: int = 16, | |
| gate_low_rank_dim: int = 16, | |
| clamp_min: float | None = None, | |
| fuse_norm: bool = True, | |
| layer_idx: int = None, | |
| ) -> GatedLinearAttention: | |
| super().__init__() | |
| self.mode = mode | |
| self.hidden_size = hidden_size | |
| self.expand_k = expand_k | |
| self.expand_v = expand_v | |
| self.num_heads = num_heads | |
| self.num_kv_heads = num_kv_heads if num_kv_heads is not None else num_heads | |
| self.num_kv_groups = self.num_heads // self.num_kv_heads | |
| self.feature_map_fn = ACT2FN[feature_map] if feature_map is not None else None | |
| self.use_short_conv = use_short_conv | |
| self.conv_size = conv_size | |
| self.conv_bias = conv_bias | |
| self.use_output_gate = use_output_gate | |
| self.key_dim = int(hidden_size * expand_k) | |
| self.value_dim = int(hidden_size * expand_v) | |
| self.key_dim_per_group = self.key_dim // self.num_kv_groups | |
| self.value_dim_per_group = self.value_dim // self.num_kv_groups | |
| self.clamp_min = clamp_min | |
| self.layer_idx = layer_idx | |
| assert mode in ['chunk', 'fused_recurrent', 'fused_chunk'], f"Not supported mode `{mode}`." | |
| assert self.key_dim % num_heads == 0, f"key dim must be divisible by num_heads of {num_heads}" | |
| assert self.value_dim % num_heads == 0, f"value dim must be divisible by num_heads of {num_heads}" | |
| self.head_k_dim = self.key_dim // num_heads | |
| self.head_v_dim = self.value_dim // num_heads | |
| self.q_proj = nn.Linear(hidden_size, self.key_dim, bias=False) | |
| self.k_proj = nn.Linear(hidden_size, self.key_dim_per_group, bias=False) | |
| self.v_proj = nn.Linear(hidden_size, self.value_dim_per_group, bias=False) | |
| if self.use_output_gate: | |
| self.g_proj = nn.Linear(hidden_size, self.value_dim, bias=False) | |
| if use_short_conv: | |
| self.conv_size = conv_size | |
| self.q_conv1d = ShortConvolution( | |
| hidden_size=self.key_dim, | |
| kernel_size=conv_size, | |
| bias=conv_bias, | |
| activation='silu', | |
| ) | |
| self.k_conv1d = ShortConvolution( | |
| hidden_size=self.key_dim_per_group, | |
| kernel_size=conv_size, | |
| bias=conv_bias, | |
| activation='silu', | |
| ) | |
| self.v_conv1d = ShortConvolution( | |
| hidden_size=self.value_dim_per_group, | |
| kernel_size=conv_size, | |
| bias=conv_bias, | |
| activation='silu', | |
| ) | |
| self.gk_proj = nn.Sequential(nn.Linear(hidden_size, gate_low_rank_dim, bias=False), | |
| nn.Linear(gate_low_rank_dim, self.key_dim_per_group, bias=True)) | |
| self.o_proj = nn.Linear(self.value_dim, hidden_size, bias=False) | |
| if gate_fn == 'swish' and fuse_norm and use_output_gate: | |
| self.g_norm_swish_gate = FusedRMSNormGated( | |
| hidden_size=self.head_v_dim, | |
| elementwise_affine=elementwise_affine, | |
| eps=norm_eps, | |
| ) | |
| self.fuse_norm_and_gate = True | |
| else: | |
| self.fuse_norm_and_gate = False | |
| self.g_norm = RMSNorm( | |
| hidden_size=self.head_v_dim, | |
| elementwise_affine=elementwise_affine, | |
| eps=norm_eps, | |
| dtype=torch.float32 | |
| ) | |
| self.gate_fn = ACT2FN[gate_fn] | |
| self.gate_logit_normalizer = gate_logit_normalizer | |
| def reset_parameters(self) -> None: | |
| for module in self.children(): | |
| reset = getattr(module, "reset_parameters", None) | |
| if callable(reset): | |
| reset() | |
| def forward( | |
| self, | |
| hidden_states: torch.Tensor, | |
| attention_mask: torch.Tensor | None = None, | |
| past_key_values: Cache | None = None, | |
| use_cache: bool | None = False, | |
| output_attentions: bool | None = False, | |
| **kwargs: Unpack[dict], | |
| ) -> tuple[torch.Tensor, torch.Tensor | None, Cache | None]: | |
| if attention_mask is not None: | |
| assert len(attention_mask.shape) == 2, ( | |
| "Expected attention_mask as a 0-1 matrix with shape [batch_size, seq_len] " | |
| "for padding purposes (0 indicating padding). " | |
| "Arbitrary attention masks of shape [batch_size, seq_len, seq_len] are not allowed." | |
| ) | |
| batch_size, q_len, _ = hidden_states.shape | |
| mode = 'fused_recurrent' if hidden_states.shape[1] <= 64 else self.mode | |
| last_state = get_layer_cache(self, past_key_values) | |
| cu_seqlens = kwargs.get('cu_seqlens') | |
| if attention_mask is not None: | |
| indices, cu_seqlens, _ = get_unpad_data(attention_mask[:, -q_len:]) | |
| hidden_states = index_first_axis(rearrange(hidden_states, "b s ... -> (b s) ..."), indices).unsqueeze(0) | |
| if self.use_short_conv: | |
| conv_state_q, conv_state_k, conv_state_v = None, None, None | |
| if last_state is not None: | |
| conv_state_q, conv_state_k, conv_state_v = last_state['conv_state'] | |
| q, conv_state_q = self.q_conv1d( | |
| x=self.q_proj(hidden_states), | |
| cache=conv_state_q, | |
| output_final_state=use_cache, | |
| cu_seqlens=cu_seqlens, | |
| ) | |
| k, conv_state_k = self.k_conv1d( | |
| x=self.k_proj(hidden_states), | |
| cache=conv_state_k, | |
| output_final_state=use_cache, | |
| cu_seqlens=cu_seqlens, | |
| ) | |
| v, conv_state_v = self.v_conv1d( | |
| x=self.v_proj(hidden_states), | |
| cache=conv_state_v, | |
| output_final_state=use_cache, | |
| cu_seqlens=cu_seqlens, | |
| ) | |
| else: | |
| q = self.q_proj(hidden_states) | |
| k = self.k_proj(hidden_states) | |
| v = self.v_proj(hidden_states) | |
| gk = self.gk_proj(hidden_states) | |
| q = rearrange(q, '... (h d) -> ... h d', d=self.head_k_dim) | |
| if self.num_kv_groups > 1: | |
| k, gk = (repeat(x, '... (h d) -> ... (h g) d', g=self.num_kv_groups, d=self.head_k_dim) for x in (k, gk)) | |
| v = repeat(v, '... (h d) -> ... (h g) d', g=self.num_kv_groups, d=self.head_v_dim) | |
| else: | |
| k, gk = (rearrange(x, '... (h d) -> ... h d', d=self.head_k_dim) for x in (k, gk)) | |
| v = rearrange(v, '... (h d) -> ... h d', d=self.head_v_dim) | |
| gk = F.logsigmoid(gk) / self.gate_logit_normalizer | |
| if self.clamp_min is not None: | |
| gk = torch.clamp_min(gk, self.clamp_min) | |
| if self.feature_map_fn is not None: | |
| q, k = map(self.feature_map_fn, (q, k)) | |
| recurrent_state = last_state['recurrent_state'] if last_state is not None else None | |
| if mode == 'fused_recurrent': | |
| o, recurrent_state = fused_recurrent_gla( | |
| q=q, | |
| k=k, | |
| v=v, | |
| gk=gk, | |
| initial_state=recurrent_state, | |
| output_final_state=use_cache, | |
| cu_seqlens=cu_seqlens, | |
| ) | |
| elif mode == 'fused_chunk': | |
| o, recurrent_state = fused_chunk_gla( | |
| q=q, | |
| k=k, | |
| v=v, | |
| g=gk, | |
| initial_state=recurrent_state, | |
| output_final_state=use_cache, | |
| ) | |
| elif mode == 'chunk': | |
| o, recurrent_state = chunk_gla( | |
| q=q, | |
| k=k, | |
| v=v, | |
| g=gk, | |
| initial_state=recurrent_state, | |
| output_final_state=use_cache, | |
| cu_seqlens=cu_seqlens, | |
| ) | |
| else: | |
| raise NotImplementedError(f"Not supported mode `{mode}`.") | |
| update_layer_cache( | |
| self, | |
| past_key_values, | |
| recurrent_state=recurrent_state, | |
| conv_state=(conv_state_q, conv_state_k, conv_state_v) if self.use_short_conv else None, | |
| offset=q_len, | |
| ) | |
| if self.use_output_gate: | |
| g = self.g_proj(hidden_states) | |
| if self.fuse_norm_and_gate: | |
| g = rearrange(g, '... (h d) -> ... h d', d=self.head_v_dim) | |
| o = self.g_norm_swish_gate(o, g) | |
| o = rearrange(o, '... h d -> ... (h d)') | |
| else: | |
| o = rearrange(self.g_norm(o), '... h d -> ... (h d)') | |
| o = o * self.gate_fn(g) | |
| else: | |
| o = rearrange(self.g_norm(o), '... h d -> ... (h d)') | |
| o = self.o_proj(o) | |
| if attention_mask is not None: | |
| o = pad_input(o.squeeze(0), indices, batch_size, q_len) | |
| return o, None, past_key_values | |