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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

FPHam
/
Clever_Sydney-4_12b_GGUF

GGUF
llm
gemma-3
sydney
Model card Files Files and versions
xet
Community

Instructions to use FPHam/Clever_Sydney-4_12b_GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use FPHam/Clever_Sydney-4_12b_GGUF with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="FPHam/Clever_Sydney-4_12b_GGUF",
    	filename="Clever_Sydney-4_12b_Q4_K_M_o.gguf",
    )
    
    output = llm(
    	"Once upon a time,",
    	max_tokens=512,
    	echo=True
    )
    print(output)
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use FPHam/Clever_Sydney-4_12b_GGUF with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    # Run inference directly in the terminal:
    llama-cli -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    # Run inference directly in the terminal:
    llama-cli -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    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 FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    # Run inference directly in the terminal:
    ./llama-cli -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    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 FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    Use Docker
    docker model run hf.co/FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
  • LM Studio
  • Jan
  • Ollama

    How to use FPHam/Clever_Sydney-4_12b_GGUF with Ollama:

    ollama run hf.co/FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
  • Unsloth Studio

    How to use FPHam/Clever_Sydney-4_12b_GGUF 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 FPHam/Clever_Sydney-4_12b_GGUF 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 FPHam/Clever_Sydney-4_12b_GGUF to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for FPHam/Clever_Sydney-4_12b_GGUF to start chatting
  • Atomic Chat new
  • Docker Model Runner

    How to use FPHam/Clever_Sydney-4_12b_GGUF with Docker Model Runner:

    docker model run hf.co/FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
  • Lemonade

    How to use FPHam/Clever_Sydney-4_12b_GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull FPHam/Clever_Sydney-4_12b_GGUF:Q4_K_M_O
    Run and chat with the model
    lemonade run user.Clever_Sydney-4_12b_GGUF-Q4_K_M_O
    List all available models
    lemonade list
Clever_Sydney-4_12b_GGUF
29.5 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 64 commits
FPHam's picture
FPHam
Update README.md
dd989a9 verified 10 months ago
  • .gitattributes
    2.02 kB
    Upload sydney.mp4 12 months ago
  • Clever_Sydney-4_12b_Q4_K_M_o.gguf
    7.3 GB
    xet
    Upload Clever_Sydney-4_12b_Q4_K_M_o.gguf 12 months ago
  • Clever_Sydney-4_12b_Q6_K_o.gguf
    9.66 GB
    xet
    Upload Clever_Sydney-4_12b_Q6_K_o.gguf 12 months ago
  • Clever_Sydney-4_12b_Q8_0_o.gguf
    12.5 GB
    xet
    Upload Clever_Sydney-4_12b_Q8_0_o.gguf 12 months ago
  • README.md
    7.69 kB
    Update README.md 10 months ago
  • Sydney4_2.png
    323 kB
    xet
    Upload Sydney4_2.png 12 months ago
  • Sydney4_3.png
    319 kB
    xet
    Upload Sydney4_3.png 12 months ago
  • sydney.mp4
    384 kB
    xet
    Upload sydney.mp4 12 months ago
  • sydney4_3.gif
    2.09 MB
    xet
    Upload sydney4_3.gif 12 months ago
  • sydney4_3.webp
    318 kB
    xet
    Upload sydney4_3.webp 12 months ago