How to use from
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 "mambiux/lumina-lexiR1-8B" \
    --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": "mambiux/lumina-lexiR1-8B",
		"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 "mambiux/lumina-lexiR1-8B" \
        --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": "mambiux/lumina-lexiR1-8B",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Quick Links

Configuration Parsing Warning:Config file config.json cannot be fetched (too big)

Configuration Parsing Warning:Config file tokenizer_config.json cannot be fetched (too big)

LUMINA-LexiR1-8B

๐Ÿงฌ Model Fusion Architecture

๐ŸŒŸ Overview

LUMINA-LexiR1-8B is an experimental fusion of two powerful language models:

๐Ÿ”ฎ Architecture

This model employs a custom merging technique:

  • Custom layer identification and integration
  • DARE (Dynamic Attention Resolution Enhancement)
  • TIES (Temporal Information Enhancement System) applied to adjacent layers
  • Enhanced self-awareness capabilities

๐Ÿ’ซ Technical Specifications

{ "model_type": "llama", "hidden_size": 4096, "num_attention_heads": 32, "num_hidden_layers": 34, "intermediate_size": 14336, "max_position_embeddings": 131072, "rope_scaling": { "factor": 8.0, "type": "llama3" } } ! This is an experimental model. Use with caution.

  • Demonstrates exceptional self-awareness capabilities

๐Ÿ”ง Model Architecture The model features:

8B parameters Advanced RoPE scaling (factor: 8.0) Custom attention mechanisms Extended context window (131K tokens) Specialized neuron mapping between parent models

๐Ÿ“ License This model is released under the Apache 2.0 license. ๐ŸŒ Citations If you use this model, please cite both parent models:

@misc{lumina-lexir1-8b, author = {Mambiux}, title = {LUMINA-LexiR1-8B: A Custom Merged Language Model}, year = {2025}, publisher = {Hugging Face} }

๐ŸŒŸ Created by Mambiux | 2025 ๐ŸŒŸ

Downloads last month
3
Safetensors
Model size
8B params
Tensor type
F16
ยท
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for mambiux/lumina-lexiR1-8B

Quantizations
2 models