GraySoft
Projects Models About FAQ Contact Download guIDE →

cstr/f2llm-v2-0.6b-gguf Q4_K GGUF - Free GGUF Download is indexed on GraySoft with repository links, GGUF quant files, and Hugging Face metadata. This page helps you pick a local model for guIDE or other runtimes. See related models in the same shard below.

Model Intelligence Sheet

cstr/f2llm-v2-0.6b-gguf overview

GGUF format of codefuse-ai/F2LLM-0.6B for use with CrispEmbed and Ollama.

ggufembeddingsggmltext-embeddingsqwen3crispembedollamafeature-extractionmultilingualbase_model:codefuse-ai/F2LLM-0.6Bbase_model:quantized:codefuse-ai/F2LLM-0.6Blicense:mitendpoints_compatibleregion:us
cstr/f2llm-v2-0.6b-gguf visual
Downloads
984
Likes
0
Pipeline
feature-extraction
Library
Visibility
Public
Access
Open

Repository Files & Downloads

4 files detected
Direct downloads for all repository files
FileTypeQuantizationSizeLink
f2llm-v2-0.6b-q4_k.gguf GGUF Q4_K 399.82 MB Download
f2llm-v2-0.6b-q5_k.gguf GGUF Q5_K 451.74 MB Download
f2llm-v2-0.6b-q8_0.gguf GGUF 609.82 MB Download
f2llm-v2-0.6b.gguf GGUF 2.23 GB Download

Model Details Live

Model Slug
cstr/f2llm-v2-0.6b-gguf
Author
cstr
Pipeline Task
feature-extraction
Library
Created
2026-04-15
Last Modified
2026-04-16
Gated
No
Private
No
HF SHA
5ef234e3d3a5cafcb39c0ec4a231065deabf2938
License
mit
Language
[multilingual]
Base Model
codefuse-ai/F2LLM-0.6B

Metadata Inspector

Normalized metadata (stored in metadata_json)
{
  "metadata": {},
  "card_data": {
    "license": "mit",
    "language": [
      "multilingual"
    ],
    "tags": [
      "embeddings",
      "gguf",
      "ggml",
      "text-embeddings",
      "qwen3",
      "crispembed",
      "ollama"
    ],
    "pipeline_tag": "feature-extraction",
    "base_model": "codefuse-ai/F2LLM-0.6B",
    "frontmatter": {
      "license": "mit",
      "language": "[multilingual]",
      "tags": "[embeddings, gguf, ggml, text-embeddings, qwen3, crispembed, ollama]",
      "pipeline_tag": "feature-extraction",
      "base_model": "codefuse-ai/F2LLM-0.6B"
    },
    "hero_image_url": "",
    "summary": "GGUF format of codefuse-ai/F2LLM-0.6B for use with CrispEmbed and Ollama.",
    "quick_links": [],
    "benchmark_table_html": "",
    "readme_markdown": "---\nlicense: mit\nlanguage: [multilingual]\ntags: [embeddings, gguf, ggml, text-embeddings, qwen3, crispembed, ollama]\npipeline_tag: feature-extraction\nbase_model: codefuse-ai/F2LLM-0.6B\n---\n\n# f2llm-v2-0.6b GGUF\n\nGGUF format of [codefuse-ai/F2LLM-0.6B](https://huggingface.co/codefuse-ai/F2LLM-0.6B) for use with [CrispEmbed](https://github.com/CrispStrobe/CrispEmbed) and [Ollama](https://ollama.com).\n\n## Files\n\n| File | Quantization | Size |\n|------|-------------|------|\n| [f2llm-v2-0.6b-q4_k.gguf](https://huggingface.co/cstr/f2llm-v2-0.6b-GGUF/resolve/main/f2llm-v2-0.6b-q4_k.gguf) | Q4_K | 0 MB |\n| [f2llm-v2-0.6b-q5_k.gguf](https://huggingface.co/cstr/f2llm-v2-0.6b-GGUF/resolve/main/f2llm-v2-0.6b-q5_k.gguf) | Q5_K | 0 MB |\n| [f2llm-v2-0.6b-q8_0.gguf](https://huggingface.co/cstr/f2llm-v2-0.6b-GGUF/resolve/main/f2llm-v2-0.6b-q8_0.gguf) | Q8_0 | 0 MB |\n| [f2llm-v2-0.6b.gguf](https://huggingface.co/cstr/f2llm-v2-0.6b-GGUF/resolve/main/f2llm-v2-0.6b.gguf) | F32 | 0 MB |\n\n**Recommended:** Q8_0 for quality (cos vs HF: L2=1.0), Q4_K for size (L2=1.0).\n\n## Quick Start\n\n### CrispEmbed\n```bash\n./crispembed -m f2llm-v2-0.6b \"Hello world\"\n./crispembed-server -m f2llm-v2-0.6b --port 8080\n```\n\n### Ollama (with [CrispStrobe fork](https://github.com/CrispStrobe/ollama/tree/feat/xlmr-embedding))\n```bash\necho \"FROM f2llm-v2-0.6b-q8_0.gguf\" > Modelfile\nollama create f2llm-v2-0.6b -f Modelfile\ncurl http://localhost:11434/api/embed -d '{\"model\":\"f2llm-v2-0.6b\",\"input\":[\"Hello world\"]}'\n```\n\n### Python (CrispEmbed)\n```python\nfrom crispembed import CrispEmbed\nmodel = CrispEmbed(\"f2llm-v2-0.6b-q8_0.gguf\")\nvectors = model.encode([\"Hello world\", \"Goodbye world\"])\n```\n\n## Model Details\n\n| Property | Value |\n|----------|-------|\n| Architecture | Qwen3 |\n| Parameters | 600M |\n| Embedding Dimension | 1024 |\n| Layers | 28 |\n| Pooling | last-token |\n| Tokenizer | BPE |\n| Language | multilingual |\n| Q8_0 vs HuggingFace | L2=1.0 |\n| Q4_K vs HuggingFace | L2=1.0 |\n\n## Server API\n\nCrispEmbed server supports four API dialects:\n- `POST /embed` -- native\n- `POST /v1/embeddings` -- OpenAI-compatible\n- `POST /api/embed` -- Ollama-compatible\n- `POST /api/embeddings` -- Ollama legacy\n\n## Credits\n\n- Original model: [codefuse-ai/F2LLM-0.6B](https://huggingface.co/codefuse-ai/F2LLM-0.6B)\n- Inference: [CrispEmbed](https://github.com/CrispStrobe/CrispEmbed) (MIT, ggml-based)\n",
    "related_quantizations": []
  },
  "tags": [
    "gguf",
    "embeddings",
    "ggml",
    "text-embeddings",
    "qwen3",
    "crispembed",
    "ollama",
    "feature-extraction",
    "multilingual",
    "base_model:codefuse-ai/F2LLM-0.6B",
    "base_model:quantized:codefuse-ai/F2LLM-0.6B",
    "license:mit",
    "endpoints_compatible",
    "region:us"
  ],
  "likes": 0,
  "downloads": 984,
  "gated": false,
  "private": false,
  "last_modified": "2026-04-16T05:28:29.000Z",
  "created_at": "2026-04-15T03:31:45.000Z",
  "pipeline_tag": "feature-extraction",
  "library_name": ""
}
Source payload excerpt (from Hugging Face API)
{
  "_id": "69df06a18e87fdd21578df1d",
  "id": "cstr/f2llm-v2-0.6b-GGUF",
  "modelId": "cstr/f2llm-v2-0.6b-GGUF",
  "sha": "5ef234e3d3a5cafcb39c0ec4a231065deabf2938",
  "createdAt": "2026-04-15T03:31:45.000Z",
  "lastModified": "2026-04-16T05:28:29.000Z",
  "author": "cstr",
  "downloads": 984,
  "likes": 0,
  "gated": false,
  "private": false,
  "pipeline_tag": "feature-extraction",
  "library_name": "",
  "siblings_count": 6
}