CoolFace
Modelpublic

arun11karthik/cellsense-fim-3b-GGUF

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes83downloads
Model Card

<p align="center"> <img src="icon.png" alt="CellSense" width="180" height="180" /> </p>

arun11karthik/cellsense-fim-3b-GGUF

GGUF quantisations of `arun11karthik/cellsense-fim-3b`, a fill-in-the-middle (FIM) code-completion model.

Available files

FileTypeNotes
cellsense-fim-3b-BF16.ggufBF16Full bfloat16 precision — highest quality
cellsense-fim-3b-Q8_0.ggufQ8_0Near-lossless 8-bit quantisation
cellsense-fim-3b-Q5_K_M.ggufQ5KMGood quality / size trade-off

Usage

For fully local, no-GPU-required inference, GGUF builds are published at **`arun11karthik/cellsense-fim-3b-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.

Available quantizations

QuantizationSize (approx.)NotesPull with
Q5_K_M2.2 GBGood quality / size trade-offollama run hf.co/arun11karthik/cellsense-fim-3b-GGUF:Q5_K_M
Q8_03.3 GBNear-lossless 8-bit quantizationollama run hf.co/arun11karthik/cellsense-fim-3b-GGUF:Q8_0
BF166.2 GBFull bfloat16 precision — highest quality (recommended)ollama run hf.co/arun11karthik/cellsense-fim-3b-GGUF:BF16

1. Install Ollama and pull the model

Install Ollama, then pull a quantization (this also registers the model so CellSense can use it):

bash
ollama pull hf.co/arun11karthik/cellsense-fim-3b-GGUF:Q5_K_M

By default Ollama serves its API at http://localhost:11434. The model name as it appears in ollama list — hf.co/arun11karthik/cellsense-fim-3b-GGUF:Q5_K_M — is what you'll enter into CellSense below.

2. Install the CellSense JupyterLab plugin

bash
pip install jupyterlab-cellsense
jupyter lab

See the CellSense repository for full installation options.

3. Point CellSense at your local Ollama model

Open the CellSense panel from the left sidebar in JupyterLab, go to Basic Settings, and configure the Ollama provider:

SettingValue
ProviderOllama
Base URLhttp://localhost:11434
Model Familycellsense
Modelhf.co/arun11karthik/cellsense-fim-3b-GGUF:Q5_K_M (must match the tag in ollama list)
✅ Set Model Family to `cellsense`. 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.

Click Save & Apply, then start typing in a notebook cell — ghost-text completions from your local model appear inline. Press Tab to accept.

Raw API check (optional)

To confirm Ollama is serving the model with the correct FIM format before wiring up CellSense, query it directly:

bash
curl http://localhost:11434/api/generate -d '{
  "model": "hf.co/arun11karthik/cellsense-fim-3b-GGUF:Q5_K_M",
  "prompt": "<|fim_prefix|>import pandas as pd\ndf = pd.read_csv(\"data.csv\")\n<|fim_suffix|>\ndf.head()\n<|fim_middle|>",
  "stream": false,
  "options": { "temperature": 0.0, "num_predict": 128 }
}'