How to use from
llama.cpp
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
Use Docker
docker model run hf.co/AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16:Q4_K_M
Quick Links

Released as part of the NOESIS Professional Multilingual Dubbing Automation Platform (framework: DHCF-FNO — Deterministic Hybrid Control Framework for Frozen Neural Operators).

Founder: Ilia Bolotnikov
Organization: AMAImedia.com
X (Twitter): @AMAImediacom
LinkedIn: Ilia Bolotnikov
Telegram: @djbionicl
NOESIS version: v16.1
Release date: 2026-08

NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16

AMAImedia NOESIS Qwopus3.5 v3.5 coding specialist. This repository contains the BF16 safetensors model, tokenizer/configuration files, chat template, and the corresponding GGUF Q4_K_M artifact under gguf/.

Use for code generation, code transformation, debugging assistance, repository work, and technical instruction following. The BF16 checkpoint is the primary artifact; the GGUF file is provided for local llama.cpp-compatible deployment.

from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")

This is an AMAImedia NOESIS release; the BF16 and GGUF variants are kept together and are not external repacks.

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

Collection including AMAImedia/NOESIS-Qwopus3.5-9B-Coder-v3.5-BF16