Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

DJLougen
/
Ornstein3.6-35B-A3B-RYS-SABER

Text Generation
GGUF
English
qwen3_5_moe_text
qwen3_5_moe
mixture-of-experts
qwen3.6
rys
saber
refusal-ablation
uncensored
conversational
Model card Files Files and versions
xet
Community
1

Instructions to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="DJLougen/Ornstein3.6-35B-A3B-RYS-SABER",
    	filename="Ornstein3.6-35B-A3B-RYS-SABER-BF16.gguf",
    )
    
    llm.create_chat_completion(
    	messages = [
    		{
    			"role": "user",
    			"content": "What is the capital of France?"
    		}
    	]
    )
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • llama.cpp

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    # Run inference directly in the terminal:
    llama-cli -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    # Run inference directly in the terminal:
    llama-cli -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Use pre-built binary
    # Download pre-built binary from:
    # https://github.com/ggerganov/llama.cpp/releases
    # Start a local OpenAI-compatible server with a web UI:
    ./llama-server -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    # Run inference directly in the terminal:
    ./llama-cli -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Build from source code
    git clone https://github.com/ggerganov/llama.cpp.git
    cd llama.cpp
    cmake -B build
    cmake --build build -j --target llama-server llama-cli
    # Start a local OpenAI-compatible server with a web UI:
    ./build/bin/llama-server -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Use Docker
    docker model run hf.co/DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
  • LM Studio
  • Jan
  • vLLM

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "DJLougen/Ornstein3.6-35B-A3B-RYS-SABER"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "DJLougen/Ornstein3.6-35B-A3B-RYS-SABER",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
  • Ollama

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with Ollama:

    ollama run hf.co/DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
  • Unsloth Studio new

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with Unsloth Studio:

    Install Unsloth Studio (macOS, Linux, WSL)
    curl -fsSL https://unsloth.ai/install.sh | sh
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for DJLougen/Ornstein3.6-35B-A3B-RYS-SABER to start chatting
    Install Unsloth Studio (Windows)
    irm https://unsloth.ai/install.ps1 | iex
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for DJLougen/Ornstein3.6-35B-A3B-RYS-SABER to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for DJLougen/Ornstein3.6-35B-A3B-RYS-SABER to start chatting
  • Pi new

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with Pi:

    Start the llama.cpp server
    # Install llama.cpp:
    brew install llama.cpp
    # Start a local OpenAI-compatible server:
    llama-server -hf DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Configure the model in Pi
    # Install Pi:
    npm install -g @mariozechner/pi-coding-agent
    # Add to ~/.pi/agent/models.json:
    {
      "providers": {
        "llama-cpp": {
          "baseUrl": "http://localhost:8080/v1",
          "api": "openai-completions",
          "apiKey": "none",
          "models": [
            {
              "id": "Ornstein3.6-35B-A3B-RYS-SABER"
            }
          ]
        }
      }
    }
    Run Pi
    # Start Pi in your project directory:
    pi
  • Docker Model Runner

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with Docker Model Runner:

    docker model run hf.co/DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
  • Lemonade

    How to use DJLougen/Ornstein3.6-35B-A3B-RYS-SABER with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull DJLougen/Ornstein3.6-35B-A3B-RYS-SABER:BF16
    Run and chat with the model
    lemonade run user.Ornstein3.6-35B-A3B-RYS-SABER-BF16
    List all available models
    lemonade list
Ornstein3.6-35B-A3B-RYS-SABER
71.1 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 16 commits
DJLougen's picture
DJLougen
chat_template: robust to any client (Claude Code, OpenCode, Pi, etc.). Merges multi/mid-conversation system messages, drops no-user-query hard-fail, tolerates unknown content shapes, unknown roles, missing tool args, system+vision combos.
827f4c3 verified 21 days ago
  • .gitattributes
    1.71 kB
    Upload BF16 GGUF (re-converted with RYS-aware layer_types) 21 days ago
  • Ornstein3.6-35B-A3B-RYS-SABER-BF16.gguf
    71.1 GB
    xet
    Upload BF16 GGUF (re-converted with RYS-aware layer_types) 21 days ago
  • README.md
    7.7 kB
    README: --reasoning-format deepseek is default in recent llama.cpp; --jinja + --chat-template-file is enough 21 days ago
  • chat_template.jinja
    8.64 kB
    chat_template: robust to any client (Claude Code, OpenCode, Pi, etc.). Merges multi/mid-conversation system messages, drops no-user-query hard-fail, tolerates unknown content shapes, unknown roles, missing tool args, system+vision combos. 21 days ago
  • config.json
    2.34 kB
    Upload folder using huggingface_hub 23 days ago
  • generation_config.json
    213 Bytes
    Upload folder using huggingface_hub 23 days ago
  • ornstein3.6RYS-SABER.jpeg
    260 kB
    xet
    Upload ornstein3.6RYS-SABER.jpeg 23 days ago
  • tokenizer.json
    20 MB
    xet
    Upload folder using huggingface_hub 23 days ago
  • tokenizer_config.json
    1.1 kB
    Upload folder using huggingface_hub 23 days ago