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

  • Log In
  • Sign Up

Duplicated from  tiiuae/Falcon3-1B-Instruct-GGUF

EasierAI
/
Falcon-3-1B

Text Generation
Transformers
GGUF
falcon3
Model card Files Files and versions
xet
Community

Instructions to use EasierAI/Falcon-3-1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use EasierAI/Falcon-3-1B with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="EasierAI/Falcon-3-1B")
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("EasierAI/Falcon-3-1B", dtype="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use EasierAI/Falcon-3-1B with vLLM:

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

    How to use EasierAI/Falcon-3-1B 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 "EasierAI/Falcon-3-1B" \
        --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": "EasierAI/Falcon-3-1B",
    		"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 "EasierAI/Falcon-3-1B" \
            --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": "EasierAI/Falcon-3-1B",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use EasierAI/Falcon-3-1B with Docker Model Runner:

    docker model run hf.co/EasierAI/Falcon-3-1B
Falcon-3-1B
8.73 GB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 10 commits
drkameleon's picture
drkameleon
Rename Falcon3-1B-Instruct-q8_0.gguf to Falcon-3-1B-Instruct-Q8_0.gguf
aaeb6db verified about 1 year ago
  • .gitattributes
    2.66 kB
    Rename Falcon3-1B-Instruct-q8_0.gguf to Falcon-3-1B-Instruct-Q8_0.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q2_K.gguf
    225 MB
    xet
    Rename Falcon3-1B-Instruct-q2_k.gguf to Falcon-3-1B-Instruct-Q2_K.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q3_K_M.gguf
    885 MB
    xet
    Rename Falcon3-1B-Instruct-q3_k_m.gguf to Falcon-3-1B-Instruct-Q3_K_M.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q4_0.gguf
    1.01 GB
    xet
    Rename Falcon3-1B-Instruct-q4_0.gguf to Falcon-3-1B-Instruct-Q4_0.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q4_K_M.gguf
    1.06 GB
    xet
    Rename Falcon3-1B-Instruct-q4_k_m.gguf to Falcon-3-1B-Instruct-Q4_K_M.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q5_0.gguf
    1.19 GB
    xet
    Rename Falcon3-1B-Instruct-q5_0.gguf to Falcon-3-1B-Instruct-Q5_0.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q5_K_M.gguf
    1.21 GB
    xet
    Rename Falcon3-1B-Instruct-q5_k_m.gguf to Falcon-3-1B-Instruct-Q5_K_M.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q6_K.gguf
    1.37 GB
    xet
    Rename Falcon3-1B-Instruct-q6_k.gguf to Falcon-3-1B-Instruct-Q6_K.gguf about 1 year ago
  • Falcon-3-1B-Instruct-Q8_0.gguf
    1.78 GB
    xet
    Rename Falcon3-1B-Instruct-q8_0.gguf to Falcon-3-1B-Instruct-Q8_0.gguf about 1 year ago
  • README.md
    4.15 kB
    Duplicate from tiiuae/Falcon3-1B-Instruct-GGUF about 1 year ago