Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

anemll
/
DeepSeek-V4-Flash-FP4-FP8-SSD

Text Generation
GGUF
llama.cpp
deepseek-v4
deepseek-v4-flash
flash-moe
slot-bank
ssd
fp8
fp4
mxfp4
metal
conversational
Model card Files Files and versions
xet
Community

Instructions to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="anemll/DeepSeek-V4-Flash-FP4-FP8-SSD",
    	filename="dense/model-dense.gguf",
    )
    
    llm.create_chat_completion(
    	messages = [
    		{
    			"role": "user",
    			"content": "What is the capital of France?"
    		}
    	]
    )
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • llama.cpp

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    # Run inference directly in the terminal:
    llama-cli -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    # Run inference directly in the terminal:
    llama-cli -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    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 anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    # Run inference directly in the terminal:
    ./llama-cli -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    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 anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    Use Docker
    docker model run hf.co/anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
  • LM Studio
  • Jan
  • vLLM

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with vLLM:

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

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with Ollama:

    ollama run hf.co/anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
  • Unsloth Studio new

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD 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 anemll/DeepSeek-V4-Flash-FP4-FP8-SSD 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 anemll/DeepSeek-V4-Flash-FP4-FP8-SSD to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for anemll/DeepSeek-V4-Flash-FP4-FP8-SSD to start chatting
  • Docker Model Runner

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with Docker Model Runner:

    docker model run hf.co/anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
  • Lemonade

    How to use anemll/DeepSeek-V4-Flash-FP4-FP8-SSD with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull anemll/DeepSeek-V4-Flash-FP4-FP8-SSD
    Run and chat with the model
    lemonade run user.DeepSeek-V4-Flash-FP4-FP8-SSD-{{QUANT_TAG}}
    List all available models
    lemonade list
DeepSeek-V4-Flash-FP4-FP8-SSD
156 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
anemll's picture
anemll
Add files using upload-large-folder tool
3aa5c60 verified 8 days ago
  • .cache
    Add files using upload-large-folder tool 8 days ago
  • dense
    Add files using upload-large-folder tool 8 days ago
  • sidecar
    Add files using upload-large-folder tool 8 days ago
  • .gitattributes
    1.58 kB
    Add files using upload-large-folder tool 8 days ago
  • README.md
    1.71 kB
    Add files using upload-large-folder tool 8 days ago
  • flashmoe-package.yaml
    1.2 kB
    Add files using upload-large-folder tool 8 days ago