Instructions to use EasierAI/Falcon-3-10B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EasierAI/Falcon-3-10B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="EasierAI/Falcon-3-10B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("EasierAI/Falcon-3-10B", dtype="auto") - llama-cpp-python
How to use EasierAI/Falcon-3-10B with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="EasierAI/Falcon-3-10B", filename="Falcon-3-10B-Instruct-Q2_K.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 EasierAI/Falcon-3-10B with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf EasierAI/Falcon-3-10B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf EasierAI/Falcon-3-10B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf EasierAI/Falcon-3-10B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf EasierAI/Falcon-3-10B: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 EasierAI/Falcon-3-10B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf EasierAI/Falcon-3-10B: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 EasierAI/Falcon-3-10B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf EasierAI/Falcon-3-10B:Q4_K_M
Use Docker
docker model run hf.co/EasierAI/Falcon-3-10B:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use EasierAI/Falcon-3-10B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EasierAI/Falcon-3-10B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EasierAI/Falcon-3-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/EasierAI/Falcon-3-10B:Q4_K_M
- SGLang
How to use EasierAI/Falcon-3-10B 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-10B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EasierAI/Falcon-3-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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-10B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EasierAI/Falcon-3-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use EasierAI/Falcon-3-10B with Ollama:
ollama run hf.co/EasierAI/Falcon-3-10B:Q4_K_M
- Unsloth Studio new
How to use EasierAI/Falcon-3-10B 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 EasierAI/Falcon-3-10B 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 EasierAI/Falcon-3-10B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for EasierAI/Falcon-3-10B to start chatting
- Pi new
How to use EasierAI/Falcon-3-10B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf EasierAI/Falcon-3-10B:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "EasierAI/Falcon-3-10B:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use EasierAI/Falcon-3-10B with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf EasierAI/Falcon-3-10B:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default EasierAI/Falcon-3-10B:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use EasierAI/Falcon-3-10B with Docker Model Runner:
docker model run hf.co/EasierAI/Falcon-3-10B:Q4_K_M
- Lemonade
How to use EasierAI/Falcon-3-10B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull EasierAI/Falcon-3-10B:Q4_K_M
Run and chat with the model
lemonade run user.Falcon-3-10B-Q4_K_M
List all available models
lemonade list
Commit ·
496cd37
verified ·
0
Parent(s):
Duplicate from tiiuae/Falcon3-10B-Instruct-GGUF
Browse filesCo-authored-by: Puneesh Khanna <puneeshkhanna@users.noreply.huggingface.co>
- .gitattributes +44 -0
- Falcon3-10B-Instruct-f16.gguf +3 -0
- Falcon3-10B-Instruct-q2_k.gguf +3 -0
- Falcon3-10B-Instruct-q3_k_m.gguf +3 -0
- Falcon3-10B-Instruct-q4_0.gguf +3 -0
- Falcon3-10B-Instruct-q4_k_m.gguf +3 -0
- Falcon3-10B-Instruct-q5_0.gguf +3 -0
- Falcon3-10B-Instruct-q5_k_m.gguf +3 -0
- Falcon3-10B-Instruct-q6_k.gguf +3 -0
- Falcon3-10B-Instruct-q8_0.gguf +3 -0
- README.md +122 -0
.gitattributes
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Falcon3-10B-Instruct-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Falcon3-10B-Instruct-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Falcon3-10B-Instruct-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Falcon3-10B-Instruct-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Falcon3-10B-Instruct-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Falcon3-10B-Instruct-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Falcon3-10B-Instruct-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Falcon3-10B-Instruct-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Falcon3-10B-Instruct-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Falcon3-10B-Instruct-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3a323a079599355036bcf2015af120f3f6e16757154a19edccb7ed568a1f8df
|
| 3 |
+
size 20616558208
|
Falcon3-10B-Instruct-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:136e1245fbc466f8ec4406c867dcf9f7a9f5ee22515cff68aef95b7cab7bea67
|
| 3 |
+
size 3924047488
|
Falcon3-10B-Instruct-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5de0266a816ba8b3e995f558cb864f46ef398c236c7eb8a4a3189c7b9c6362d
|
| 3 |
+
size 5052479104
|
Falcon3-10B-Instruct-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72475675972eaf65b6bc2f9b0cd6ab12a4261bd69bd330448c3fd04441035a26
|
| 3 |
+
size 5906347648
|
Falcon3-10B-Instruct-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0025e285ea335c7eb8abafd85f83105f0023f87aab17b4f593cb3c1703634239
|
| 3 |
+
size 6287521408
|
Falcon3-10B-Instruct-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:588937ddb5ebb78af32f359cead6064b713bb7c9cc1321720d41d510ade52b6b
|
| 3 |
+
size 7144191616
|
Falcon3-10B-Instruct-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a135aea0bdcdb59c516fbf5f4dac6534babbaa2e89f7042bcc635c0f985418d1
|
| 3 |
+
size 7340553856
|
Falcon3-10B-Instruct-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a8fbec8c05af59bf4b3fd7a5e89c9eb234c497d679837bd467d7539c54bc90f
|
| 3 |
+
size 8459400832
|
Falcon3-10B-Instruct-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8eeef4b03593b225f7317946cb592bb43f3c68f875b5422f89bd4232b8dc2a2b
|
| 3 |
+
size 10955241088
|
README.md
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- fr
|
| 6 |
+
- es
|
| 7 |
+
- pt
|
| 8 |
+
base_model:
|
| 9 |
+
- tiiuae/Falcon3-10B-Instruct
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
+
library_name: transformers
|
| 12 |
+
tags:
|
| 13 |
+
- falcon3
|
| 14 |
+
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
<div align="center">
|
| 18 |
+
<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/general/falco3-logo.png" alt="drawing" width="500"/>
|
| 19 |
+
</div>
|
| 20 |
+
|
| 21 |
+
# Falcon3-10B-Instruct-GGUF
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
**Falcon3** family of Open Foundation Models is a set of pretrained and instruct LLMs ranging from 1B to 10B parameters.
|
| 25 |
+
|
| 26 |
+
**Falcon3-10B-Instruct** achieves state-of-the-art results (at release's time) on reasoning, language understanding, instruction following, code and mathematics tasks.
|
| 27 |
+
Falcon3-10B-Instruct supports 4 languages (English, French, Spanish, Portuguese) and a context length of up to 32K.
|
| 28 |
+
|
| 29 |
+
This repository contains the GGUFs instruction-tuned 10B Falcon3 model.
|
| 30 |
+
|
| 31 |
+
## Model Details
|
| 32 |
+
- Architecture
|
| 33 |
+
- Transformer-based causal decoder-only architecture
|
| 34 |
+
- 40 decoder blocks
|
| 35 |
+
- Grouped Query Attention (GQA) for faster inference: 12 query heads and 4 key-value heads
|
| 36 |
+
- Wider head dimension: 256
|
| 37 |
+
- High RoPE value to support long context understanding: 1000042
|
| 38 |
+
- Uses SwiGLu and RMSNorm
|
| 39 |
+
- 32K context length
|
| 40 |
+
- 131K vocab size
|
| 41 |
+
- Depth up-scaled from **Falcon3-7B-Base** with 2 Teratokens of datasets comprising of web, code, STEM, high quality and mutlilingual data using 1024 H100 GPU chips
|
| 42 |
+
- Posttrained on 1.2 million samples of STEM, conversational, code, safety and function call data
|
| 43 |
+
- Supports EN, FR, ES, PT
|
| 44 |
+
- Developed by [Technology Innovation Institute](https://www.tii.ae)
|
| 45 |
+
- License: TII Falcon-LLM License 2.0
|
| 46 |
+
- Model Release Date: December 2024
|
| 47 |
+
- Quantization: q2_K, q3_K_M, q4_0, q4_K_M, q5_0, q5_K_M, q6_K, q8_0
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
## Getting started
|
| 51 |
+
|
| 52 |
+
### 1. Download GGUF models from hugging face
|
| 53 |
+
|
| 54 |
+
First, download the model from Hugging Face. You can use the `huggingface_hub` library or download it manually:
|
| 55 |
+
|
| 56 |
+
```bash
|
| 57 |
+
pip install huggingface_hub
|
| 58 |
+
huggingface-cli download {model_name}
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
This will download the model to your current directory. Make sure to replace {model_name} with the actual username and model name from your Hugging Face repository.
|
| 62 |
+
|
| 63 |
+
## 2. Install llama.cpp
|
| 64 |
+
|
| 65 |
+
You have several options for installing llama.cpp:
|
| 66 |
+
|
| 67 |
+
**1. Build from source:**
|
| 68 |
+
|
| 69 |
+
This gives you the most flexibility and control. Follow the instructions in the llama.cpp repository to build from source:
|
| 70 |
+
|
| 71 |
+
```bash
|
| 72 |
+
|
| 73 |
+
git clone https://github.com/ggerganov/llama.cpp
|
| 74 |
+
cd llama.cpp
|
| 75 |
+
cmake -B build
|
| 76 |
+
cmake --build build --config Release
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
For more information about how to build llama.cpp from source please refere to llama.cpp documentation on how to build from source: **[llama.cpp build from source](https://github.com/ggerganov/llama.cpp/blob/master/docs/build.md)**.
|
| 80 |
+
|
| 81 |
+
**2. Download pre-built binaries:**
|
| 82 |
+
|
| 83 |
+
If you prefer a quicker setup, you can download pre-built binaries for your operating system. Check the llama.cpp repository for available binaries.
|
| 84 |
+
|
| 85 |
+
**3. Use Docker:**
|
| 86 |
+
|
| 87 |
+
For a more contained environment, you can use the official llama.cpp Docker image. Refer to the llama.cpp documentation for instructions on how to use the Docker image.
|
| 88 |
+
|
| 89 |
+
For detailed instructions and more information, please check the llama.cpp documentation on docker: **[llama.cpp docker](https://github.com/ggerganov/llama.cpp/blob/master/docs/docker.mdg)**.
|
| 90 |
+
|
| 91 |
+
### 3. Start playing with your model
|
| 92 |
+
|
| 93 |
+
Run simple text completion
|
| 94 |
+
```bash
|
| 95 |
+
llama-cli -m {path-to-gguf-model} -p "I believe the meaning of life is" -n 128
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
Run in conversation mode
|
| 99 |
+
```bash
|
| 100 |
+
llama-cli -m {path-to-gguf-model} -p "You are a helpful assistant" -cnv -co
|
| 101 |
+
```
|
| 102 |
+
|
| 103 |
+
## Useful links
|
| 104 |
+
- View our [release blogpost](https://huggingface.co/blog/falcon3).
|
| 105 |
+
- Feel free to join [our discord server](https://discord.gg/fwXpMyGc) if you have any questions or to interact with our researchers and developers.
|
| 106 |
+
|
| 107 |
+
## Technical Report
|
| 108 |
+
|
| 109 |
+
Coming soon....
|
| 110 |
+
|
| 111 |
+
## Citation
|
| 112 |
+
If the Falcon3 family of models were helpful to your work, feel free to give us a cite.
|
| 113 |
+
|
| 114 |
+
```
|
| 115 |
+
@misc{Falcon3,
|
| 116 |
+
title = {The Falcon 3 Family of Open Models},
|
| 117 |
+
url = {https://huggingface.co/blog/falcon3},
|
| 118 |
+
author = {Falcon-LLM Team},
|
| 119 |
+
month = {December},
|
| 120 |
+
year = {2024}
|
| 121 |
+
}
|
| 122 |
+
```
|