Views
No views yet
google/gemma-4-e4b-it, trained
on real 3D-printer outcomes to predict where a print will fail and propose
settings before the nozzle moves.ollama.com/kylebrodeur — public Ollama registry, one-command pullshuggingface.co/kylebrodeur/microfactory-node-gguf (this repo) — canonical GGUFs + template/system/params config| File | Quant | Size | ollama run … (registry tag) | Source adapter |
|---|---|---|---|---|
microfactory-node-v3-qat.gguf | q4_k_m | 5.1 GB | kylebrodeur/microfactory-node-v3-qat (recommended) | microfactory-node-lora-v3-qat |
microfactory-node-v3-qat-q4_0.gguf | q4_0 | 4.9 GB | kylebrodeur/microfactory-node-v3-qat:q4_0 | microfactory-node-lora-v3-qat |
microfactory-node-v2.gguf | q4_k_m | 5.1 GB | kylebrodeur/microfactory-node-v2 | microfactory-node-lora-v2 |
microfactory-node.gguf | q4_k_m | 5.1 GB | kylebrodeur/microfactory-node | microfactory-node-lora |
The QAT model was trained with simulated 4-bit quantization, so it retains more quality after quantization than the standard v2. Useq4_k_mfor balanced quality/size, orq4_0(the quant Google's QAT was trained for) for the highest fidelity reconstruction of the QAT model.
1# recommended
2ollama run kylebrodeur/microfactory-node-v3-qat
3
4# QAT-native quant
5ollama run kylebrodeur/microfactory-node-v3-qat:q4_0
6
7# other variants
8ollama run kylebrodeur/microfactory-node-v2
9ollama run kylebrodeur/microfactory-nodetemplate, system, and params
files in this repo configure the Gemma 4 chat template, the Chief Engineer
system prompt, and tuned sampling automatically:1ollama run hf.co/kylebrodeur/microfactory-node-gguf:microfactory-node-v3-qat.gguf
2ollama run hf.co/kylebrodeur/microfactory-node-gguf:microfactory-node-v3-qat-q4_0.gguf
3ollama run hf.co/kylebrodeur/microfactory-node-gguf:microfactory-node-v2.gguf
4ollama run hf.co/kylebrodeur/microfactory-node-gguf:microfactory-node.ggufhf.co/... URI form and how Ollama discovers the auxiliary config files.1hf download kylebrodeur/microfactory-node-gguf microfactory-node-v3-qat.gguf --local-dir .
2llama-cli -m microfactory-node-v3-qat.gguf -p "PLA overhang at 22C, 45% humidity"build-small-hackathon/microfactory-lab
runs the full Chief Engineer UI against these adapters (ZeroGPU + a Modal-hosted
OpenAI-compatible endpoint as fallback). Source repo:
kylebrodeur/microfactory-lab.learn/finetune/OLLAMA_PUBLISHING.md.