fengpeisheng1/gemma-2-9b-chinese-chat-uncensored-iq4_nl-gguf - Free GGUF Download is indexed on GraySoft with repository links, GGUF quant files, and Hugging Face metadata. This page helps you pick a local model for guIDE or other runtimes. See related models in the same shard below.
Model Intelligence Sheet
fengpeisheng1/gemma-2-9b-chinese-chat-uncensored-iq4_nl-gguf overview
This model was converted to GGUF format from themex1380/Gemma-2-9B-Chinese-Chat-Uncensored using llama.cpp via the ggml.ai's GGUF-my-repo space. Refer to the original model card for more details on the model.
Downloads
180
Likes
0
Pipeline
text-generation
Library
—
Visibility
Public
Access
Open
Repository Files & Downloads
1 files detected
Direct downloads for all repository files
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| gemma-2-9b-chinese-chat-uncensored-iq4_nl-imat.gguf | GGUF | IQ4_NL | 5.07 GB | Download |
Model Details Live
Metadata Inspector
Normalized metadata (stored in metadata_json)
{
"metadata": {},
"card_data": {
"base_model": "themex1380/Gemma-2-9B-Chinese-Chat-Uncensored",
"datasets": [
"V3N0M/Jenna-50K-Alpaca-Uncensored"
],
"language": [
"zh",
"en"
],
"license": "mit",
"pipeline_tag": "text-generation",
"tags": [
"text-generation-inference",
"code",
"unsloth",
"uncensored",
"finetune",
"llama-cpp",
"gguf-my-repo"
],
"task_categories": [
"conversational"
],
"widget": [
{
"text": "Is this review positive or negative? Review: Best cast iron skillet you will ever buy.",
"example_title": "Sentiment analysis"
},
{
"text": "Barack Obama nominated Hilary Clinton as his secretary of state on Monday. He chose her because she had ...",
"example_title": "Coreference resolution"
},
{
"text": "On a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book ...",
"example_title": "Logic puzzles"
},
{
"text": "The two men running to become New York City's next mayor will face off in their first debate Wednesday night ...",
"example_title": "Reading comprehension"
}
],
"frontmatter": {
"base_model": "themex1380/Gemma-2-9B-Chinese-Chat-Uncensored",
"datasets": [
"V3N0M/Jenna-50K-Alpaca-Uncensored"
],
"language": [
"zh",
"en"
],
"license": "mit",
"pipeline_tag": "text-generation",
"tags": [
"text-generation-inference",
"code",
"unsloth",
"uncensored",
"finetune",
"llama-cpp",
"gguf-my-repo"
],
"task_categories": [
"conversational"
],
"widget": [
"text: 'Is this review positive or negative? Review: Best cast iron skillet you will",
"text: Barack Obama nominated Hilary Clinton as his secretary of state on Monday.",
"text: 'On a shelf, there are five books: a gray book, a red book, a purple book,",
"text: The two men running to become New York City's next mayor will face off in"
]
},
"hero_image_url": "",
"summary": "This model was converted to GGUF format from themex1380/Gemma-2-9B-Chinese-Chat-Uncensored using llama.cpp via the ggml.ai's GGUF-my-repo space. Refer to the original model card for more details on the model.",
"quick_links": [],
"benchmark_table_html": "",
"readme_markdown": "---\nbase_model: themex1380/Gemma-2-9B-Chinese-Chat-Uncensored\ndatasets:\n- V3N0M/Jenna-50K-Alpaca-Uncensored\nlanguage:\n- zh\n- en\nlicense: mit\npipeline_tag: text-generation\ntags:\n- text-generation-inference\n- code\n- unsloth\n- uncensored\n- finetune\n- llama-cpp\n- gguf-my-repo\ntask_categories:\n- conversational\nwidget:\n- text: 'Is this review positive or negative? Review: Best cast iron skillet you will\n ever buy.'\n example_title: Sentiment analysis\n- text: Barack Obama nominated Hilary Clinton as his secretary of state on Monday.\n He chose her because she had ...\n example_title: Coreference resolution\n- text: 'On a shelf, there are five books: a gray book, a red book, a purple book,\n a blue book, and a black book ...'\n example_title: Logic puzzles\n- text: The two men running to become New York City's next mayor will face off in\n their first debate Wednesday night ...\n example_title: Reading comprehension\n---\n\n# fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF\nThis model was converted to GGUF format from [`themex1380/Gemma-2-9B-Chinese-Chat-Uncensored`](https://huggingface.co/themex1380/Gemma-2-9B-Chinese-Chat-Uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.\nRefer to the [original model card](https://huggingface.co/themex1380/Gemma-2-9B-Chinese-Chat-Uncensored) for more details on the model.\n\n## Use with llama.cpp\nInstall llama.cpp through brew (works on Mac and Linux)\n\n```bash\nbrew install llama.cpp\n\n```\nInvoke the llama.cpp server or the CLI.\n\n### CLI:\n```bash\nllama-cli --hf-repo fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF --hf-file gemma-2-9b-chinese-chat-uncensored-iq4_nl-imat.gguf -p \"The meaning to life and the universe is\"\n```\n\n### Server:\n```bash\nllama-server --hf-repo fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF --hf-file gemma-2-9b-chinese-chat-uncensored-iq4_nl-imat.gguf -c 2048\n```\n\nNote: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.\n\nStep 1: Clone llama.cpp from GitHub.\n```\ngit clone https://github.com/ggerganov/llama.cpp\n```\n\nStep 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).\n```\ncd llama.cpp && LLAMA_CURL=1 make\n```\n\nStep 3: Run inference through the main binary.\n```\n./llama-cli --hf-repo fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF --hf-file gemma-2-9b-chinese-chat-uncensored-iq4_nl-imat.gguf -p \"The meaning to life and the universe is\"\n```\nor \n```\n./llama-server --hf-repo fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF --hf-file gemma-2-9b-chinese-chat-uncensored-iq4_nl-imat.gguf -c 2048\n```\n",
"related_quantizations": []
},
"tags": [
"gguf",
"text-generation-inference",
"code",
"unsloth",
"uncensored",
"finetune",
"llama-cpp",
"gguf-my-repo",
"text-generation",
"zh",
"en",
"dataset:V3N0M/Jenna-50K-Alpaca-Uncensored",
"base_model:themex1380/Gemma-2-9B-Chinese-Chat-Uncensored",
"base_model:quantized:themex1380/Gemma-2-9B-Chinese-Chat-Uncensored",
"license:mit",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
],
"likes": 0,
"downloads": 180,
"gated": false,
"private": false,
"last_modified": "2026-01-04T04:33:02.000Z",
"created_at": "2026-01-04T04:32:34.000Z",
"pipeline_tag": "text-generation",
"library_name": ""
}
Source payload excerpt (from Hugging Face API)
{
"_id": "6959ed629b1914738401c58f",
"id": "fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF",
"modelId": "fengpeisheng1/Gemma-2-9B-Chinese-Chat-Uncensored-IQ4_NL-GGUF",
"sha": "118e30f047b6e3084d3bb9974fd8775100401818",
"createdAt": "2026-01-04T04:32:34.000Z",
"lastModified": "2026-01-04T04:33:02.000Z",
"author": "fengpeisheng1",
"downloads": 180,
"likes": 0,
"gated": false,
"private": false,
"pipeline_tag": "text-generation",
"library_name": "",
"siblings_count": 4
}