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

MaziyarPanahi
/
patricide-12B-Unslop-Mell-GGUF

Text Generation
GGUF
mistral
quantized
2-bit
3-bit
4-bit precision
5-bit
6-bit
8-bit precision
GGUF
Model card Files Files and versions
xet
Community
2

Instructions to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF",
    	filename="patricide-12B-Unslop-Mell.Q5_K_M.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 MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    # Run inference directly in the terminal:
    llama-cli -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    # Run inference directly in the terminal:
    llama-cli -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_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 MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    # Run inference directly in the terminal:
    ./llama-cli -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_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 MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    Use Docker
    docker model run hf.co/MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
  • LM Studio
  • Jan
  • vLLM

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with vLLM:

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

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with Ollama:

    ollama run hf.co/MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
  • Unsloth Studio

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-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 MaziyarPanahi/patricide-12B-Unslop-Mell-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 MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF to start chatting
  • Atomic Chat new
  • Docker Model Runner

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with Docker Model Runner:

    docker model run hf.co/MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
  • Lemonade

    How to use MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull MaziyarPanahi/patricide-12B-Unslop-Mell-GGUF:Q5_K_M
    Run and chat with the model
    lemonade run user.patricide-12B-Unslop-Mell-GGUF-Q5_K_M
    List all available models
    lemonade list
patricide-12B-Unslop-Mell-GGUF
64.8 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 7 commits
MaziyarPanahi's picture
MaziyarPanahi
82b4d6754199fd151557a3942c0bc40b27aa39d1e67e2d95a4e40d07fb1913ea
79aa174 verified over 1 year ago
  • .gitattributes
    1.96 kB
    82b4d6754199fd151557a3942c0bc40b27aa39d1e67e2d95a4e40d07fb1913ea over 1 year ago
  • README.md
    3 kB
    82b4d6754199fd151557a3942c0bc40b27aa39d1e67e2d95a4e40d07fb1913ea over 1 year ago
  • patricide-12B-Unslop-Mell-GGUF_imatrix.dat
    7.05 MB
    xet
    82b4d6754199fd151557a3942c0bc40b27aa39d1e67e2d95a4e40d07fb1913ea over 1 year ago
  • patricide-12B-Unslop-Mell.Q5_K_M.gguf
    8.73 GB
    xet
    5ce79283ced52e26381d145769178218824a72743046ab0f227c97f79234175e over 1 year ago
  • patricide-12B-Unslop-Mell.Q5_K_S.gguf
    8.52 GB
    xet
    a9ab785ae3a1b6ee4bf21c1d60a88653b878377615be7a3ac5622512a722896c over 1 year ago
  • patricide-12B-Unslop-Mell.Q6_K.gguf
    10.1 GB
    xet
    71b40e3f2c4a8d26afef2f5bb12bfd502de15144ecc70df9690548b903ebb74a over 1 year ago
  • patricide-12B-Unslop-Mell.Q8_0.gguf
    13 GB
    xet
    9084e24da5023bf13e1ab364bee9f9cc2315396eeba99a1acc33ede8fc19d686 over 1 year ago
  • patricide-12B-Unslop-Mell.fp16.gguf
    24.5 GB
    xet
    4f60f24f587bb183386c6680321185ae516b6fe664627a85c582fd52452594c5 over 1 year ago