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

willgrobots
/
checkpointsaved

Image-Text-to-Text
Transformers
Safetensors
GGUF
moondream1
text-generation
custom_code
Model card Files Files and versions
xet
Community

Instructions to use willgrobots/checkpointsaved with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use willgrobots/checkpointsaved with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("image-text-to-text", model="willgrobots/checkpointsaved", trust_remote_code=True)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("willgrobots/checkpointsaved", trust_remote_code=True, device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

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

    How to use willgrobots/checkpointsaved with vLLM:

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

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

    How to use willgrobots/checkpointsaved with Ollama:

    ollama run hf.co/willgrobots/checkpointsaved:F16
  • Unsloth Studio

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

    How to use willgrobots/checkpointsaved with Docker Model Runner:

    docker model run hf.co/willgrobots/checkpointsaved:F16
  • Lemonade

    How to use willgrobots/checkpointsaved with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull willgrobots/checkpointsaved:F16
    Run and chat with the model
    lemonade run user.checkpointsaved-F16
    List all available models
    lemonade list
checkpointsaved
7.49 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
willgrobots's picture
willgrobots
Upload 18 files
225e0ce verified about 2 years ago
  • .gitattributes
    1.65 kB
    Upload 18 files about 2 years ago
  • README.md
    1.41 kB
    Upload 18 files about 2 years ago
  • added_tokens.json
    1.08 kB
    Upload 18 files about 2 years ago
  • config.json
    403 Bytes
    Upload 18 files about 2 years ago
  • configuration_moondream.py
    3.41 kB
    Upload 18 files about 2 years ago
  • generation_config.json
    111 Bytes
    Upload 18 files about 2 years ago
  • handler.py
    2.1 kB
    Upload 18 files about 2 years ago
  • merges.txt
    456 kB
    Upload 18 files about 2 years ago
  • model.safetensors
    3.73 GB
    xet
    Upload 18 files about 2 years ago
  • modeling_phi.py
    48.1 kB
    Upload 18 files about 2 years ago
  • moondream.py
    5.29 kB
    Upload 18 files about 2 years ago
  • moondream2-mmproj-f16.gguf
    910 MB
    xet
    Upload 18 files about 2 years ago
  • moondream2-text-model-f16.gguf
    2.84 GB
    xet
    Upload 18 files about 2 years ago
  • special_tokens_map.json
    99 Bytes
    Upload 18 files about 2 years ago
  • tokenizer.json
    2.11 MB
    Upload 18 files about 2 years ago
  • tokenizer_config.json
    7.34 kB
    Upload 18 files about 2 years ago
  • versions.txt
    66 Bytes
    Upload 18 files about 2 years ago
  • vision_encoder.py
    10.2 kB
    Upload 18 files about 2 years ago
  • vocab.json
    798 kB
    Upload 18 files about 2 years ago