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

palette-lab
/
songgot-l

Text Generation
Transformers
Safetensors
GGUF
Korean
English
llama
tool-calling
function-calling
korean
on-device
tiny
text-generation-inference
Model card Files Files and versions
xet
Community

Instructions to use palette-lab/songgot-l with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use palette-lab/songgot-l with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="palette-lab/songgot-l")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("palette-lab/songgot-l")
    model = AutoModelForCausalLM.from_pretrained("palette-lab/songgot-l", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use palette-lab/songgot-l with llama.cpp:

    Install (macOS, Linux)
    curl -LsSf https://llama.app/install.sh | sh
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf palette-lab/songgot-l:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf palette-lab/songgot-l:Q4_K_M
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf palette-lab/songgot-l:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf palette-lab/songgot-l:Q4_K_M
    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 palette-lab/songgot-l:Q4_K_M
    # Run inference directly in the terminal:
    ./llama-cli -hf palette-lab/songgot-l:Q4_K_M
    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 palette-lab/songgot-l:Q4_K_M
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf palette-lab/songgot-l:Q4_K_M
    Use Docker
    docker model run hf.co/palette-lab/songgot-l:Q4_K_M
  • LM Studio
  • Jan
  • vLLM

    How to use palette-lab/songgot-l with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "palette-lab/songgot-l"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "palette-lab/songgot-l",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/palette-lab/songgot-l:Q4_K_M
  • SGLang

    How to use palette-lab/songgot-l 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 "palette-lab/songgot-l" \
        --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": "palette-lab/songgot-l",
    		"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 "palette-lab/songgot-l" \
            --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": "palette-lab/songgot-l",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Ollama

    How to use palette-lab/songgot-l with Ollama:

    ollama run hf.co/palette-lab/songgot-l:Q4_K_M
  • Unsloth Desktop
  • Docker Model Runner

    How to use palette-lab/songgot-l with Docker Model Runner:

    docker model run hf.co/palette-lab/songgot-l:Q4_K_M
  • Lemonade

    How to use palette-lab/songgot-l with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull palette-lab/songgot-l:Q4_K_M
    Run and chat with the model
    lemonade run user.songgot-l-Q4_K_M
    List all available models
    lemonade list
  • Atomic Chat
songgot-l
1.73 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 8 commits
Hanish's picture
Hanish
Model card: 12B tokens with instruction bucket, 2 epochs, v8 set
d858278 verified 4 days ago
  • .gitattributes
    1.69 kB
    GGUF exports, 24B tokens, 3 epochs, v8 set 5 days ago
  • README.md
    3.91 kB
    Model card: 12B tokens with instruction bucket, 2 epochs, v8 set 4 days ago
  • config.json
    674 Bytes
    Songgot-nano weights, 24B tokens, 3 epochs, v8 set 5 days ago
  • model.safetensors
    607 MB
    xet
    Songgot-nano weights, 12B tokens with instruction bucket, 2 epochs, v8 set 4 days ago
  • songgot-l-f16.gguf
    608 MB
    xet
    GGUF exports, 12B tokens with instruction bucket, 2 epochs, v8 set 4 days ago
  • songgot-l-q4_k_m.gguf
    190 MB
    xet
    GGUF exports, 12B tokens with instruction bucket, 2 epochs, v8 set 4 days ago
  • songgot-l-q8_0.gguf
    323 MB
    xet
    GGUF exports, 12B tokens with instruction bucket, 2 epochs, v8 set 4 days ago
  • tokenizer.model
    763 kB
    xet
    Songgot-nano weights, 24B tokens, 3 epochs, v8 set 5 days ago
  • tokenizer_config.json
    281 Bytes
    Songgot-nano weights, 24B tokens, 3 epochs, v8 set 5 days ago