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

XythicK
/
Amber-Fable-1.0-GGUF

Text Generation
Transformers
GGUF
English
Persian
French
Generated from Trainer
trl
sft
code
reasoning
2B
Model card Files Files and versions
xet
Community

Instructions to use XythicK/Amber-Fable-1.0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use XythicK/Amber-Fable-1.0-GGUF with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="XythicK/Amber-Fable-1.0-GGUF")
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("XythicK/Amber-Fable-1.0-GGUF", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use XythicK/Amber-Fable-1.0-GGUF 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 XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf XythicK/Amber-Fable-1.0-GGUF: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 XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    # Run inference directly in the terminal:
    ./llama-cli -hf XythicK/Amber-Fable-1.0-GGUF: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 XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    Use Docker
    docker model run hf.co/XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
  • LM Studio
  • Jan
  • vLLM

    How to use XythicK/Amber-Fable-1.0-GGUF with vLLM:

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

    How to use XythicK/Amber-Fable-1.0-GGUF 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 "XythicK/Amber-Fable-1.0-GGUF" \
        --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": "XythicK/Amber-Fable-1.0-GGUF",
    		"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 "XythicK/Amber-Fable-1.0-GGUF" \
            --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": "XythicK/Amber-Fable-1.0-GGUF",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Ollama

    How to use XythicK/Amber-Fable-1.0-GGUF with Ollama:

    ollama run hf.co/XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
  • Unsloth Desktop
  • Docker Model Runner

    How to use XythicK/Amber-Fable-1.0-GGUF with Docker Model Runner:

    docker model run hf.co/XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
  • Lemonade

    How to use XythicK/Amber-Fable-1.0-GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull XythicK/Amber-Fable-1.0-GGUF:Q4_K_M
    Run and chat with the model
    lemonade run user.Amber-Fable-1.0-GGUF-Q4_K_M
    List all available models
    lemonade list
  • Atomic Chat
Amber-Fable-1.0-GGUF
11.8 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 14 commits
XythicK's picture
XythicK
Update README.md
9351679 verified 8 months ago
  • .gitattributes
    2.15 kB
    Upload /amber-fable-1.0-q5_k_s.gguf with huggingface_hub 8 months ago
  • README.md
    3.54 kB
    Update README.md 8 months ago
  • amber-fable-1.0-q2_k.gguf
    778 MB
    xet
    Upload /amber-fable-1.0-q2_k.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q3_k_l.gguf
    1 GB
    xet
    Upload /amber-fable-1.0-q3_k_l.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q3_k_s.gguf
    867 MB
    xet
    Upload /amber-fable-1.0-q3_k_s.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q4_0.gguf
    1.05 GB
    xet
    Upload /amber-fable-1.0-q4_0.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q4_k_m.gguf
    1.11 GB
    xet
    Upload /amber-fable-1.0-q4_k_m.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q5_0.gguf
    1.23 GB
    xet
    Upload /amber-fable-1.0-q5_0.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q5_k_m.gguf
    1.26 GB
    xet
    Upload /amber-fable-1.0-q5_k_m.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q5_k_s.gguf
    1.23 GB
    xet
    Upload /amber-fable-1.0-q5_k_s.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q6_k.gguf
    1.42 GB
    xet
    Upload /amber-fable-1.0-q6_k.gguf with huggingface_hub 8 months ago
  • amber-fable-1.0-q8_0.gguf
    1.83 GB
    xet
    Upload /amber-fable-1.0-q8_0.gguf with huggingface_hub 8 months ago