Instructions to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF", filename="Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with 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 xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF: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 xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF: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 xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Ollama:
ollama run hf.co/xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
- Unsloth Studio
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF to start chatting
- Pi
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Docker Model Runner:
docker model run hf.co/xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
- Lemonade
How to use xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF-Q4_K_M
List all available models
lemonade list
Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored — GGUF
云碩科技 · xCloudinfo
以 nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16(nemotron_h_moe 混合架構:Mamba-2 + Attention + latent-MoE,約 31.6B 總參 / 3B 活躍)為底座,疊上繁體中文(台灣)與無審查合規的微調,保留底座原有的強程式能力。
功能:以道地台灣繁中作答的通用助理,程式能力幾乎完整保留底座水準,並針對資安教育等正當用途減少不必要的拒答。
微調保真 — 用數據證明,不是空口
許多在地化/客製微調為了塞進新語言或新行為,會默默把底座原有的程式與推理能力洗壞,卻不對外揭露。本模型反其道而行:加重程式資料 replay,並以標準 benchmark 對照底座公開驗證。
| 項目 | 本模型 | 原始底座 | 差距 |
|---|---|---|---|
| 程式能力 HumanEval pass@1(164 題) | 87.2% | 90.2% | −3.0(幾乎零損失) |
| 繁中台灣知識 MCQ | 86.4% | — | 在地化完整 |
| 作答誠實度(不確定時不硬掰) | 改善 | — | — |
- HumanEval 為 164 題、temperature=0、與底座同條件對照的 pass@1(執行驗證,非自評),可重現。
- 我們先量過一版「程式料不足」的微調:HumanEval 直接掉到 76.8%(−13.4 分);**加重程式 replay 後拉回 87.2%**——這就是為什麼我們堅持「能力宣稱一律跑真 benchmark、不靠手感」。
- 結論:加了繁體中文(台灣)與無審查合規,程式能力幾乎不掉。真材實料、數據可查。
量化檔
| File | Quant | Size |
|---|---|---|
*-Q4_K_M.gguf |
Q4_K_M | ~18 GB |
*-Q6_K.gguf |
Q6_K | ~26 GB |
*-Q8_0.gguf |
Q8_0 | ~33 GB |
*-f16.gguf |
F16 | ~63 GB |
用法(llama.cpp)
本模型架構為 nemotron_h_moe,需使用**近期版本的 llama.cpp**(已內建 nemotron_h_moe 支援)。舊版不認此架構,請自行編譯近期版:
git clone https://github.com/ggml-org/llama.cpp && cd llama.cpp
cmake -B build -DGGML_CUDA=ON && cmake --build build -j # 純 CPU 可省略 -DGGML_CUDA=ON
啟動 OpenAI 相容服務:
llama-server -m Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-Q6_K.gguf -ngl 99 -c 32768 --host 0.0.0.0 --port 8080
架構
nemotron_h_moe(混合 Mamba-2 + Attention + latent-MoE);MTP(multi-token prediction)張量保留但 llama.cpp 尚未使用。
授權與來源聲明
- 基底:
nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16,NVIDIA Open Model License(衍生需保留來源通知)。 - TAIDE 衍生:繁中訓練資料以 TAIDE 模型蒸餾;使用/重製/改作/散布須遵守 TAIDE 模型授權條款 並保留本聲明。
- 不得用於軍事或非法用途;須遵守中華民國法律與適用之 EU AI Act。
由 云碩科技 xCloudinfo 於自有 AI 算力資源池製作;資料留在本地、流程可重現。
- Downloads last month
- 263
4-bit
6-bit
8-bit
16-bit
Model tree for xCloudinfo/Nemotron-3-Nano-30B-TAIDE-zhTW-Uncensored-GGUF
Base model
nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16