Views
No views yet

1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_id = "berkelium-ai/BerkeliumGPT-Coder-3B"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 device_map="auto",
9 torch_dtype="auto"
10)1mlx_lm.generate \
2 --model berkelium-ai/BerkeliumGPT-Coder-3B \
3 --prompt "Build a FastAPI backend."docker model pull hf.co/berkelium-ai/BerkeliumGPT-Coder-3Bdocker model run hf.co/berkelium-ai/BerkeliumGPT-Coder-3Bollama run berkeliumgpt-coder| Property | Value |
|---|---|
| Model Name | BerkeliumGPT-Coder-3B |
| Base Model | Qwen2.5-3B-Instruct |
| Parameters | 3 Billion |
| Architecture | Transformer Decoder |
| Domain | Software Engineering |
| Context Length | Base Model Configuration |
| License | Apache-2.0 |
Build a FastAPI application with JWT authentication and PostgreSQL.