Views
No views yet

arun11karthik/cellsense-fim-0.5b, a fill-in-the-middle (FIM) code-completion model.| File | Type | Notes |
|---|---|---|
cellsense-fim-0.5b-BF16.gguf | BF16 | Full bfloat16 precision — highest quality |
cellsense-fim-0.5b-Q8_0.gguf | Q8_0 | Near-lossless 8-bit quantisation |
cellsense-fim-0.5b-Q5_K_M.gguf | Q5_K_M | Good quality / size trade-off |
arun11karthik/cellsense-fim-0.5b-GGUF.
Ollama can pull and run these directly from the Hugging Face Hub — no manual download or Modelfile
required. This is the recommended path for running CellSense entirely on your own machine: with Ollama,
no code or context ever leaves your computer.| Quantization | Size (approx.) | Notes | Pull with |
|---|---|---|---|
Q5_K_M | ~420 MB | Good quality / size trade-off | ollama run hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q5_K_M |
Q8_0 | ~531 MB | Near-lossless 8-bit quantization | ollama run hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q8_0 |
BF16 | ~994 MB | Full bfloat16 precision — highest quality (recommended) | ollama run hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:BF16 |
ollama pull hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q5_K_Mhttp://localhost:11434. The model name as it appears in
ollama list — hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q5_K_M — is what you'll enter into
CellSense below.1pip install jupyterlab-cellsense
2jupyter lab| Setting | Value |
|---|---|
| Provider | Ollama |
| Base URL | http://localhost:11434 |
| Model Family | cellsense |
| Model | hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q5_K_M (must match the tag in ollama list) |
✅ Set Model Family tocellsense. CellSense now ships first-class support for the CellSense-FIM models, so the plugin builds prompts in exactly the repository-, import-, and task-aware FIM format these models were trained on — no extra configuration needed.
1curl http://localhost:11434/api/generate -d '{
2 "model": "hf.co/arun11karthik/cellsense-fim-0.5b-GGUF:Q5_K_M",
3 "prompt": "<|fim_prefix|>import pandas as pd\ndf = pd.read_csv(\"data.csv\")\n<|fim_suffix|>\ndf.head()\n<|fim_middle|>",
4 "stream": false,
5 "options": { "temperature": 0.0, "num_predict": 128 }
6}'