Supported Formats
ForgeAI works with two primary model formats (GGUF and SafeTensors) and four dataset formats (JSON, JSONL, CSV, Parquet).Model Formats
GGUF
The GGUF (GPT-Generated Unified Format) is the standard format for llama.cpp and its ecosystem. Characteristics:- Single file containing weights, metadata, and tokenizer
- Supports quantized dtypes (Q2_K through Q8_0, plus F16/F32)
- Used by llama.cpp, Ollama, LM Studio, KoboldCpp
SafeTensors
SafeTensors is HuggingFace’s format for storing model weights safely and efficiently. Characteristics:- Typically paired with
config.jsonand tokenizer files in a directory - Large models are sharded across multiple
.safetensorsfiles - Supports F16, BF16, F32 dtypes
- Used by HuggingFace Transformers, vLLM, ExLlamaV2, MLX