bx-code-nogah (safetensors)

Repository id: BrainboxAI/code-il-E4B-safetensors

The full 16-bit weights of the coding assistant code-il-E4B. This is a companion repository, not a separate product.

Main repository License

bx-code-nogah is the model's name under the BrainboxAI naming convention. The repository id has not changed and will not change. Every existing link and script keeps working.


What is in here

One file: model.safetensors, 16.0 GB, alongside the tokenizer and the chat template.

These are the same weights as in the main repository, in a different format. The main repository holds a compressed build that runs on an ordinary development machine. This is the full-precision build, meant for working on the model rather than just running it.

When to take this build

  • Loading the model with transformers in Python.
  • Continuing training on your company's private codebase.
  • Converting to ONNX or another deployment format.
  • A framework that cannot read GGUF.

When not to take it

If you only want to run the model and write code with it, take the main repository, BrainboxAI/code-il-E4B. It is far smaller, works directly with Ollama or LM Studio, and will not give you worse answers.

How to load it

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("BrainboxAI/code-il-E4B-safetensors")
model = AutoModelForCausalLM.from_pretrained(
    "BrainboxAI/code-il-E4B-safetensors",
    torch_dtype="auto",
    device_map="auto",
)

messages = [
    {"role": "user", "content": "Implement binary search in TypeScript with full edge-case handling."},
]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
outputs = model.generate(inputs, max_new_tokens=1024, temperature=0.2, top_p=0.95)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

The model also answers in Hebrew when addressed in Hebrew. The code itself always stays in English:

messages = [
    # "Write me a Python function that parses ISO-8601 dates with timezones."
    {"role": "user", "content": "תכתוב לי פונקציה בפייתון שמפרסרת תאריכים בפורמט ISO-8601 עם אזורי זמן."},
]

Continued training

This is the right build to start from if you want to train further on internal code. Start here rather than from the original Gemma model, so that the training already inside the model is preserved.

The full card lives elsewhere

What the model was trained on, what it knows, and above all what it does not know, is all on the main repository's card:

BrainboxAI/code-il-E4B

The repositories for this model

Repository What is inside
BrainboxAI/code-il-E4B The compressed file for running, and the full card
BrainboxAI/code-il-E4B-safetensors The full 16-bit weights. You are here

License

Apache 2.0.

This is a fine-tune of unsloth/gemma-4-E4B-it, so the terms of that model apply here as well. The base model is published under Apache 2.0 and also points to the Gemma 4 licence terms.

Author

Built by Netanel Elyasi, founder of BrainboxAI, an Israeli applied-AI studio building small, private, domain-specialised models.

Questions, corrections, or a use case this model does not cover: netanele@brainboxai.io.

Part of the BrainboxAI family of on-device models. See also law-il-E2B (law) and cyber-analyst-4B (security).

Downloads last month
280
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for BrainboxAI/code-il-E4B-safetensors

Finetuned
(118)
this model

Datasets used to train BrainboxAI/code-il-E4B-safetensors

Collections including BrainboxAI/code-il-E4B-safetensors