Text Generation
Transformers
Safetensors
English
jugnu_vr
jugnu
tiny-lm
value-residual
muon
pretrained-from-scratch
custom_code
Instructions to use altslate/JugnuLM-110M-R2plus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use altslate/JugnuLM-110M-R2plus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="altslate/JugnuLM-110M-R2plus", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("altslate/JugnuLM-110M-R2plus", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use altslate/JugnuLM-110M-R2plus with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "altslate/JugnuLM-110M-R2plus" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "altslate/JugnuLM-110M-R2plus", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/altslate/JugnuLM-110M-R2plus
- SGLang
How to use altslate/JugnuLM-110M-R2plus 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 "altslate/JugnuLM-110M-R2plus" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "altslate/JugnuLM-110M-R2plus", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "altslate/JugnuLM-110M-R2plus" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "altslate/JugnuLM-110M-R2plus", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use altslate/JugnuLM-110M-R2plus with Docker Model Runner:
docker model run hf.co/altslate/JugnuLM-110M-R2plus
| """JugnuLM value-residual model. Qwen3ForCausalLM with each layer v_proj replaced | |
| by a value-residual linear: v_i = v_proj_i(x) + lambda_i * v0 (v0 = layer-0 value). | |
| Loads correctly via AutoModelForCausalLM.from_pretrained(..., trust_remote_code=True); | |
| stock Qwen3 loading would silently drop the value-residual pathway.""" | |
| import torch | |
| import torch.nn as nn | |
| from transformers import Qwen3ForCausalLM | |
| try: | |
| from .configuration_jugnu_vr import JugnuVRConfig # HF dynamic-module (trust_remote_code) load | |
| except ImportError: # direct/script import (e.g. packaging) — importlib avoids check_imports flagging | |
| import importlib | |
| JugnuVRConfig = importlib.import_module("configuration_jugnu_vr").JugnuVRConfig | |
| class VResidualLinear(nn.Linear): | |
| def __init__(self, in_f, out_f, ctx, is_first, bias=False): | |
| super().__init__(in_f, out_f, bias=bias) | |
| self.vr_ctx = ctx | |
| self.vr_is_first = is_first | |
| if not is_first: | |
| self.vr_lambda = nn.Parameter(torch.zeros(1)) | |
| def forward(self, x): | |
| v = super().forward(x) | |
| if self.vr_is_first: | |
| self.vr_ctx["v0"] = v | |
| else: | |
| v0 = self.vr_ctx.get("v0") | |
| if v0 is not None: | |
| v = v + self.vr_lambda * v0 | |
| return v | |
| class JugnuVRForCausalLM(Qwen3ForCausalLM): | |
| config_class = JugnuVRConfig | |
| def __init__(self, config): | |
| super().__init__(config) | |
| ctx = {} | |
| for i, layer in enumerate(self.model.layers): | |
| old = layer.self_attn.v_proj | |
| new = VResidualLinear(old.in_features, old.out_features, ctx, | |
| is_first=(i == 0), bias=(old.bias is not None)) | |
| layer.self_attn.v_proj = new | |
| self.post_init() | |