Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

FINAL-Bench
/
Ourbox-35B-JGOS

Text Generation
Transformers
Safetensors
qwen3_5_moe
image-text-to-text
jgos
ourbox
darwin
darwin-platform
evolutionary-merge
ffn-merge
model-breeding
korean
korean-specialized
reasoning
advanced-reasoning
chain-of-thought
thinking
qwen3.6
qwen
Mixture of Experts
mixture-of-experts
multi-token-prediction
gpqa
benchmark
open-source
apache-2.0
vidraft
Eval Results
conversational
Eval Results (legacy)
Model card Files Files and versions
xet
Community

Instructions to use FINAL-Bench/Ourbox-35B-JGOS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use FINAL-Bench/Ourbox-35B-JGOS with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="FINAL-Bench/Ourbox-35B-JGOS")
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
                {"type": "text", "text": "What animal is on the candy?"}
            ]
        },
    ]
    pipe(text=messages)
    # Load model directly
    from transformers import AutoProcessor, AutoModelForMultimodalLM
    
    processor = AutoProcessor.from_pretrained("FINAL-Bench/Ourbox-35B-JGOS")
    model = AutoModelForMultimodalLM.from_pretrained("FINAL-Bench/Ourbox-35B-JGOS", device_map="auto")
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
                {"type": "text", "text": "What animal is on the candy?"}
            ]
        },
    ]
    inputs = processor.apply_chat_template(
    	messages,
    	add_generation_prompt=True,
    	tokenize=True,
    	return_dict=True,
    	return_tensors="pt",
    ).to(model.device)
    
    outputs = model.generate(**inputs, max_new_tokens=40)
    print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use FINAL-Bench/Ourbox-35B-JGOS with vLLM:

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

    How to use FINAL-Bench/Ourbox-35B-JGOS 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 "FINAL-Bench/Ourbox-35B-JGOS" \
        --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": "FINAL-Bench/Ourbox-35B-JGOS",
    		"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 "FINAL-Bench/Ourbox-35B-JGOS" \
            --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": "FINAL-Bench/Ourbox-35B-JGOS",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use FINAL-Bench/Ourbox-35B-JGOS with Docker Model Runner:

    docker model run hf.co/FINAL-Bench/Ourbox-35B-JGOS
Ourbox-35B-JGOS
69.3 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 10 commits
SeaWolf-AI's picture
SeaWolf-AI
card: add insights cross-links (on-device / quantization)
11f3a15 verified 14 days ago
  • .eval_results
    Add .eval_results/gpqa_diamond.yaml - GPQA Diamond 86.36% (maj@8+) 28 days ago
  • .gitattributes
    1.57 kB
    Add files using upload-large-folder tool 29 days ago
  • README.md
    16.1 kB
    card: add insights cross-links (on-device / quantization) 14 days ago
  • chat_template.jinja
    7.76 kB
    Add files using upload-large-folder tool 29 days ago
  • config.json
    2.69 kB
    Add files using upload-large-folder tool 29 days ago
  • generation_config.json
    167 Bytes
    Add files using upload-large-folder tool 29 days ago
  • model-00001-of-00002.safetensors
    49.7 GB
    xet
    Add files using upload-large-folder tool 29 days ago
  • model-00002-of-00002.safetensors
    19.6 GB
    xet
    Add files using upload-large-folder tool 29 days ago
  • model.safetensors.index.json
    69.7 kB
    Add files using upload-large-folder tool 29 days ago
  • tokenizer.json
    20 MB
    xet
    Add files using upload-large-folder tool 29 days ago
  • tokenizer_config.json
    1.17 kB
    Add files using upload-large-folder tool 29 days ago