_id
stringlengths 24
24
| id
stringlengths 7
118
| author
stringlengths 2
33
| gated
stringclasses 3
values | inference
stringclasses 9
values | lastModified
stringlengths 24
24
| likes
int64 0
3.07k
| trendingScore
float64 0
70
| private
bool 1
class | sha
stringlengths 40
40
| downloads
int64 0
10.6M
| tags
sequencelengths 2
433
| pipeline_tag
stringclasses 18
values | createdAt
stringlengths 24
24
| modelId
stringlengths 7
118
| siblings
listlengths 2
1.78k
| library_name
stringclasses 31
values | config
stringclasses 838
values |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
66d9e06b400b43252cc49564 | DiTy/gemma-2-9b-it-russian-function-calling-GGUF | DiTy | False | not-popular-enough | 2024-09-24T07:59:52.000Z | 12 | 2 | false | 2ca165392eab6eb0d1c062293abf5532acf4e784 | 1,594 | [
"transformers",
"safetensors",
"gguf",
"gemma2",
"text-generation",
"conversational",
"function-calling",
"trl",
"ru",
"dataset:DiTy/function-calling",
"base_model:google/gemma-2-9b-it",
"base_model:quantized:google/gemma-2-9b-it",
"license:apache-2.0",
"autotrain_compatible",
"text-generation-inference",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-09-05T16:46:35.000Z | DiTy/gemma-2-9b-it-russian-function-calling-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "config.json"
},
{
"rfilename": "gemma-2-9B-it-russian-function-calling-F16.gguf"
},
{
"rfilename": "gemma-2-9B-it-russian-function-calling-Q5_K_M.gguf"
},
{
"rfilename": "gemma-2-9B-it-russian-function-calling-Q5_K_S.gguf"
},
{
"rfilename": "gemma-2-9B-it-russian-function-calling-Q6_k.gguf"
},
{
"rfilename": "gemma-2-9B-it-russian-function-calling-Q8_0.gguf"
},
{
"rfilename": "generation_config.json"
},
{
"rfilename": "model-00001-of-00004.safetensors"
},
{
"rfilename": "model-00002-of-00004.safetensors"
},
{
"rfilename": "model-00003-of-00004.safetensors"
},
{
"rfilename": "model-00004-of-00004.safetensors"
},
{
"rfilename": "model.safetensors.index.json"
},
{
"rfilename": "special_tokens_map.json"
},
{
"rfilename": "tokenizer.json"
},
{
"rfilename": "tokenizer.model"
},
{
"rfilename": "tokenizer_config.json"
}
] | transformers | {"architectures": ["Gemma2ForCausalLM"], "model_type": "gemma2", "tokenizer_config": {"bos_token": "<bos>", "chat_template": "\n{%- macro render_json(d, indent=4) -%}\n{%- if d is string %}\n{{ '\"' + d + '\"' }}\n{%- elif d is mapping %}\n{%- for key, value in d.items() %}\n{%- if value is string %}\n{{ \" \" * indent + '\"' + key + '\": \"' + value + '\"' }}\n{%- elif value is mapping %}\n{{ \" \" * indent + '\"' + key + '\": {' }}\n{{ render_json(value, indent + 4) }}\n{{ \" \" * indent + \"}\" }}\n{%- elif value is sequence %}\n{{ \" \" * indent + '\"' + key + '\": [\n' }}\n{%- for item in value %}\n{{- \" \" * (indent + 4) + render_json(item, indent + 4) }}\n{%- if not loop.last %},\n{% endif %}\n{%- endfor %}\n{{ '\n' + \" \" * indent + \"]\" }}\n{%- else %}\n{{ \" \" * indent + '\"' + key + '\": ' + value|string }}\n{%- endif %}\n{%- if not loop.last %},\n{% endif %}\n{%- endfor %}\n{%- elif d is sequence %}\n{%- for item in d %}\n{{ \" \" * indent + render_json(item, indent + 4) }}\n{%- if not loop.last %},\n{% endif %}\n{%- endfor %}\n{%- else %}\n{{ \" \" * indent + d|string }}\n{%- endif %}\n{%- endmacro %}\n\n\n{#- This block checks system prompt and list of tools #}\n{%- if not add_generation_prompt is defined %}\n {%- set add_generation_prompt = false %}\n{%- endif %}\n{%- if messages[0][\"role\"] == \"system\" %}\n {%- set system_message = messages[0][\"content\"] %}\n {%- set loop_messages = messages[1:] %}\n{%- else %}\n {%- set loop_messages = messages %}\n {%- set system_message = \"\" %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n{%- set user_messages = loop_messages | selectattr(\"role\", \"equalto\", \"user\") | list %}\n\n\n{#- This block checks for alternating user/model messages, skipping tool calling messages #}\n{%- set ns = namespace() %}\n{%- set ns.index = 0 %}\n{%- for message in loop_messages %}\n {%- if (message[\"role\"] == \"user\" or message[\"role\"] == \"function-response\") != (ns.index % 2 == 0) %}\n {{- raise_exception(\"After the optional system message, conversation roles must alternate user/model/user/model/... NB: 'function-call' is same as the 'model' and 'function-response' is same as the 'user'!\") }}\n {%- endif %}\n {%- set ns.index = ns.index + 1 %}\n{%- endfor %}\n\n\n{#- This block format full dialogue messages #}\n{{- bos_token }}\n{{- \"<start_of_turn>user\" + '\n' }}\n{%- if system_message != \"\" %}\n {{- system_message }}\n{%- endif %}\n{%- if tools is not none %}\n {%- for tool in tools %}\n {%- set tool = tool.function %}\n {{- '{\n' }}\n {{- render_json(tool, 4) }}\n {%- if not loop.last %}\n {{- \"\n},\n\" }}\n {%- else %}\n {{- \"\n}\n\" }}\n {% endif %}\n {%- endfor %}\n {%- elif system_message != \"\" %}\n {{- '\n\n' }}\n{%- endif %}\n{{ loop_messages[0]['content'] + '<end_of_turn>\n' }}\n{%- for message in loop_messages[1:] %}\n {%- if message[\"role\"] == \"user\" %}\n {{- \"<start_of_turn>user\" + '\n' + message['content'] + '<end_of_turn>\n' }}\n {%- elif message[\"role\"] == \"model\" %}\n {{- \"<start_of_turn>model\" + '\n' + message['content'] + '<end_of_turn>\n' }}\n {%- elif message[\"role\"] == \"function-call\" %}\n {{- \"<start_of_turn>model\" + '\n' + \"\u0412\u044b\u0437\u043e\u0432 \u0444\u0443\u043d\u043a\u0446\u0438\u0438: \" + message['content'] + '<end_of_turn>\n' }}\n {%- elif message[\"role\"] == \"function-response\" %}\n {{- \"<start_of_turn>user\" + '\n' + \"\u041e\u0442\u0432\u0435\u0442 \u043e\u0442 \u0444\u0443\u043d\u043a\u0446\u0438\u0438: \" + message['content'] + '<end_of_turn>\n' }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {%- if loop_messages[-1]['role'] == \"user\" or loop_messages[-1]['role'] == \"function-response\" %}\n{{ '<start_of_turn>model\n' }}\n {%- else %}\n {{- raise_exception(\"For add_generation_prompt=True, the last message role must be 'user' or 'function-response'.\") }}\n {%- endif %}\n{%- endif %}\n\n", "eos_token": "<eos>", "pad_token": "<pad>", "unk_token": "<unk>", "use_default_system_prompt": false}} |
66dad3b75665c8cbf0fe20ef | prithivMLmods/Minitron-8B-Instruct-200K-GGUF | prithivMLmods | False | library-not-detected | 2024-11-08T15:17:01.000Z | 3 | 2 | false | c5fa44c9d78068cc04a65af2e25df9909c46f576 | 81 | [
"gguf",
"mistral",
"Minitron",
"Llama",
"Ultrachat",
"text-generation",
"en",
"dataset:HuggingFaceH4/ultrachat_200k",
"base_model:nvidia/Mistral-NeMo-Minitron-8B-Instruct",
"base_model:quantized:nvidia/Mistral-NeMo-Minitron-8B-Instruct",
"license:creativeml-openrail-m",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-09-06T10:04:39.000Z | prithivMLmods/Minitron-8B-Instruct-200K-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Minitron-8B-Instruct-200K-GGUF.F16.gguf"
},
{
"rfilename": "Minitron-8B-Instruct-200K-GGUF.Q4_K_M.gguf"
},
{
"rfilename": "Minitron-8B-Instruct-200K-GGUF.Q5_K_M.gguf"
},
{
"rfilename": "Minitron-8B-Instruct-200K-GGUF.Q8_0.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "config.json"
}
] | null | {"model_type": "mistral"} |
66e79518975df8fffc3dbe33 | inflatebot/MN-12B-Mag-Mell-R1-GGUF | inflatebot | False | library-not-detected | 2024-09-16T12:56:33.000Z | 4 | 2 | false | 50d27760f55933901cf8e20cafaa3b2486a04cd0 | 2,766 | [
"gguf",
"base_model:inflatebot/MN-12B-Mag-Mell-R1",
"base_model:quantized:inflatebot/MN-12B-Mag-Mell-R1",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-09-16T02:16:56.000Z | inflatebot/MN-12B-Mag-Mell-R1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MN-12B-Mag-Mell-Q4_K_M.gguf"
},
{
"rfilename": "MN-12B-Mag-Mell-Q6_K.gguf"
},
{
"rfilename": "MN-12B-Mag-Mell-Q8_0.gguf"
},
{
"rfilename": "MN-12B-Mag-Mell-f16.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
66e83d0da3681387ffca8633 | bartowski/Qwen2.5-7B-Instruct-GGUF | bartowski | False | library-not-detected | 2024-09-19T12:54:25.000Z | 17 | 2 | false | 8911e8a47f92bac19d6f5c64a2e2095bd2f7d031 | 16,878 | [
"gguf",
"chat",
"text-generation",
"en",
"base_model:Qwen/Qwen2.5-7B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-7B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | text-generation | 2024-09-16T14:13:33.000Z | bartowski/Qwen2.5-7B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwen2.5-7B-Instruct-IQ2_M.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-IQ3_M.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-IQ3_XS.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-IQ4_XS.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q2_K.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q2_K_L.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q3_K_L.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q3_K_M.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q3_K_S.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q3_K_XL.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_0.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_0_4_4.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_0_4_8.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_0_8_8.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_K_L.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q4_K_S.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q5_K_L.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q5_K_M.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q5_K_S.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q6_K.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q6_K_L.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-Q8_0.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct-f16.gguf"
},
{
"rfilename": "Qwen2.5-7B-Instruct.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
66e98b19d4219fc3f1da7de4 | Qwen/Qwen2.5-32B-Instruct-GGUF | Qwen | False | library-not-detected | 2024-09-20T06:52:34.000Z | 23 | 2 | false | a15e3cc10f8bbb2c0af6f8f1f34a32e3b060c09d | 7,382 | [
"gguf",
"chat",
"text-generation",
"en",
"arxiv:2407.10671",
"base_model:Qwen/Qwen2.5-32B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-32B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-09-17T13:58:49.000Z | Qwen/Qwen2.5-32B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE"
},
{
"rfilename": "README.md"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00001-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00002-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00003-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00004-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00005-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00006-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00007-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00008-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00009-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00010-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00011-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00012-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00013-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00014-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00015-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00016-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-fp16-00017-of-00017.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q2_k-00001-of-00004.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q2_k-00002-of-00004.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q2_k-00003-of-00004.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q2_k-00004-of-00004.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q3_k_m-00001-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q3_k_m-00002-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q3_k_m-00003-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q3_k_m-00004-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q3_k_m-00005-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_0-00001-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_0-00002-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_0-00003-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_0-00004-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_0-00005-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_k_m-00001-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_k_m-00002-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_k_m-00003-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_k_m-00004-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q4_k_m-00005-of-00005.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00001-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00002-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00003-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00004-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00005-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_0-00006-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00001-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00002-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00003-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00004-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00005-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q5_k_m-00006-of-00006.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00001-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00002-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00003-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00004-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00005-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00006-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q6_k-00007-of-00007.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00001-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00002-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00003-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00004-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00005-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00006-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00007-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00008-of-00009.gguf"
},
{
"rfilename": "qwen2.5-32b-instruct-q8_0-00009-of-00009.gguf"
}
] | null | null |
66e98b230dda120b8690530a | Qwen/Qwen2.5-72B-Instruct-GGUF | Qwen | False | library-not-detected | 2024-09-20T07:12:41.000Z | 31 | 2 | false | 7ca3bc388f97b264c4283bc9bf1055e2abc38441 | 8,980 | [
"gguf",
"chat",
"text-generation",
"en",
"arxiv:2407.10671",
"base_model:Qwen/Qwen2.5-72B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-72B-Instruct",
"license:other",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-09-17T13:58:59.000Z | Qwen/Qwen2.5-72B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE"
},
{
"rfilename": "LICENSE.txt"
},
{
"rfilename": "README.md"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00001-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00002-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00003-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00004-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00005-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00006-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00007-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00008-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00009-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00010-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00011-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00012-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00013-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00014-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00015-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00016-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00017-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00018-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00019-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00020-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00021-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00022-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00023-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00024-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00025-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00026-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00027-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00028-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00029-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00030-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00031-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00032-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00033-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00034-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00035-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00036-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00037-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00038-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00039-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00040-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00041-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-fp16-00042-of-00042.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00001-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00002-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00003-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00004-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00005-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00006-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q2_k-00007-of-00007.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00001-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00002-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00003-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00004-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00005-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00006-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00007-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00008-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q3_k_m-00009-of-00009.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00001-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00002-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00003-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00004-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00005-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00006-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00007-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00008-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00009-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00010-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_0-00011-of-00011.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00001-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00002-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00003-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00004-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00005-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00006-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00007-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00008-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00009-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00010-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00011-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q4_k_m-00012-of-00012.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00001-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00002-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00003-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00004-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00005-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00006-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00007-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00008-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00009-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00010-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00011-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00012-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_0-00013-of-00013.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00001-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00002-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00003-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00004-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00005-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00006-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00007-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00008-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00009-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00010-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00011-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00012-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00013-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q5_k_m-00014-of-00014.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00001-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00002-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00003-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00004-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00005-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00006-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00007-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00008-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00009-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00010-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00011-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00012-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00013-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00014-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00015-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q6_k-00016-of-00016.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00001-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00002-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00003-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00004-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00005-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00006-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00007-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00008-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00009-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00010-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00011-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00012-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00013-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00014-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00015-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00016-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00017-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00018-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00019-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00020-of-00021.gguf"
},
{
"rfilename": "qwen2.5-72b-instruct-q8_0-00021-of-00021.gguf"
}
] | null | null |
66eabc37bcfa5271dcd6824a | Qwen/Qwen2.5-Coder-7B-Instruct-GGUF | Qwen | False | loading | 2024-11-12T07:59:32.000Z | 65 | 2 | false | 13fb94bfda8c8cf22497dc57b78f391a9acb426a | 53,641 | [
"transformers",
"gguf",
"code",
"codeqwen",
"chat",
"qwen",
"qwen-coder",
"text-generation",
"en",
"arxiv:2409.12186",
"arxiv:2407.10671",
"base_model:Qwen/Qwen2.5-Coder-7B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-Coder-7B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-09-18T11:40:39.000Z | Qwen/Qwen2.5-Coder-7B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": ".msc"
},
{
"rfilename": "LICENSE"
},
{
"rfilename": "README.md"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-fp16-00001-of-00004.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-fp16-00002-of-00004.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-fp16-00003-of-00004.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-fp16-00004-of-00004.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-fp16.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q2_k.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q3_k_m.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_0-00001-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_0-00002-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_0.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_k_m-00001-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_k_m-00002-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q4_k_m.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q5_0-00001-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q5_0-00002-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q5_k_m-00001-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q5_k_m-00002-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q5_k_m.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q6_k-00001-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q6_k-00002-of-00002.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q6_k.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q8_0-00001-of-00003.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q8_0-00002-of-00003.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q8_0-00003-of-00003.gguf"
},
{
"rfilename": "qwen2.5-coder-7b-instruct-q8_0.gguf"
}
] | transformers | null |
66f457edc51768d9d430bd1d | lmstudio-community/Llama-3.2-1B-Instruct-GGUF | lmstudio-community | False | not-popular-enough | 2024-09-25T20:09:46.000Z | 32 | 2 | false | 199151125cf15a129ab3b548b26afeed976df066 | 10,046 | [
"transformers",
"gguf",
"facebook",
"meta",
"pytorch",
"llama",
"llama-3",
"text-generation",
"en",
"de",
"fr",
"it",
"pt",
"hi",
"es",
"th",
"base_model:meta-llama/Llama-3.2-1B-Instruct",
"base_model:quantized:meta-llama/Llama-3.2-1B-Instruct",
"license:llama3.2",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-09-25T18:35:25.000Z | lmstudio-community/Llama-3.2-1B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-3.2-1B-Instruct-Q3_K_L.gguf"
},
{
"rfilename": "Llama-3.2-1B-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Llama-3.2-1B-Instruct-Q6_K.gguf"
},
{
"rfilename": "Llama-3.2-1B-Instruct-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
66f7f9bda077cfd1f073700b | Lewdiculous/Violet_Twilight-v0.2-GGUF-IQ-Imatrix | Lewdiculous | False | explicit-opt-out | 2024-11-13T23:17:57.000Z | 12 | 2 | false | d3b383c35f87db2560c037c555e9f1861572985d | 2,283 | [
"nemo",
"gguf",
"mistral",
"roleplay",
"sillytavern",
"base_model:Epiculous/Violet_Twilight-v0.2",
"base_model:quantized:Epiculous/Violet_Twilight-v0.2",
"license:apache-2.0",
"region:us",
"imatrix",
"conversational"
] | null | 2024-09-28T12:42:37.000Z | Lewdiculous/Violet_Twilight-v0.2-GGUF-IQ-Imatrix | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "ARM-Violet_Twilight-v0.2-Q4_0_4_4-imat.gguf"
},
{
"rfilename": "ARM-Violet_Twilight-v0.2-Q4_0_4_8-imat.gguf"
},
{
"rfilename": "ARM-Violet_Twilight-v0.2-Q4_0_8_8-imat.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Violet_Twilight-v0.2-BF16.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-F16.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-IQ3_M-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-IQ3_S-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-IQ3_XS-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-IQ3_XXS-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-IQ4_XS-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q3_K_L-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q3_K_M-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q4_K_M-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q4_K_S-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q5_K_M-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q5_K_S-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q6_K-imat.gguf"
},
{
"rfilename": "Violet_Twilight-v0.2-Q8_0-imat.gguf"
},
{
"rfilename": "imatrix-with-rp-v3.txt"
},
{
"rfilename": "imatrix.dat"
},
{
"rfilename": "waifu.png"
}
] | nemo | null |
66f8441cb720048bbc4c5785 | KBlueLeaf/TIPO-500M | KBlueLeaf | False | not-popular-enough | 2024-11-29T03:13:52.000Z | 41 | 2 | false | fc01db831acbc88b869058c7581cfe2d6734472c | 5,455 | [
"transformers",
"safetensors",
"gguf",
"llama",
"text-generation",
"en",
"dataset:laion/conceptual-captions-12m-webdataset",
"dataset:CaptionEmporium/coyo-hd-11m-llavanext",
"dataset:KBlueLeaf/danbooru2023-metadata-database",
"dataset:graph-based-captions/GBC10M",
"arxiv:2411.08127",
"license:other",
"autotrain_compatible",
"text-generation-inference",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-09-28T17:59:56.000Z | KBlueLeaf/TIPO-500M | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE.md"
},
{
"rfilename": "README.md"
},
{
"rfilename": "TIPO-500M_epoch5-F16.gguf"
},
{
"rfilename": "added_tokens.json"
},
{
"rfilename": "config.json"
},
{
"rfilename": "generation_config.json"
},
{
"rfilename": "model.safetensors"
},
{
"rfilename": "special_tokens_map.json"
},
{
"rfilename": "tokenizer.model"
},
{
"rfilename": "tokenizer_config.json"
}
] | transformers | {"architectures": ["LlamaForCausalLM"], "model_type": "llama", "tokenizer_config": {"bos_token": "<s>", "eos_token": "</s>", "pad_token": "</s>", "unk_token": "<unk>", "use_default_system_prompt": false}} |
66faa85d1c69086d31d89dba | openthaigpt/openthaigpt1.5-7b-instruct | openthaigpt | False | not-popular-enough | 2024-11-15T04:55:13.000Z | 9 | 2 | false | 6f23bab38b25cedd6a1c31bf5bbcd67dbefdb275 | 2,875 | [
"transformers",
"safetensors",
"gguf",
"qwen2",
"text-generation",
"openthaigpt",
"qwen",
"conversational",
"th",
"en",
"arxiv:2309.00071",
"arxiv:2411.07238",
"doi:10.57967/hf/3168",
"license:other",
"model-index",
"autotrain_compatible",
"text-generation-inference",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-09-30T13:32:13.000Z | openthaigpt/openthaigpt1.5-7b-instruct | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE"
},
{
"rfilename": "README.md"
},
{
"rfilename": "config.json"
},
{
"rfilename": "generation_config.json"
},
{
"rfilename": "merges.txt"
},
{
"rfilename": "model-00001-of-00004.safetensors"
},
{
"rfilename": "model-00002-of-00004.safetensors"
},
{
"rfilename": "model-00003-of-00004.safetensors"
},
{
"rfilename": "model-00004-of-00004.safetensors"
},
{
"rfilename": "model.safetensors.index.json"
},
{
"rfilename": "openthaigpt1.5-7B-F16.gguf"
},
{
"rfilename": "openthaigpt1.5-7B-instruct-Q3KM.gguf"
},
{
"rfilename": "openthaigpt1.5-7B-instruct-Q4KM.gguf"
},
{
"rfilename": "tokenizer.json"
},
{
"rfilename": "tokenizer_config.json"
},
{
"rfilename": "vocab.json"
}
] | transformers | {"architectures": ["Qwen2ForCausalLM"], "model_type": "qwen2", "tokenizer_config": {"bos_token": null, "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n", "eos_token": "<|im_end|>", "pad_token": "<|endoftext|>", "unk_token": null}} |
6700311b917aa8af973769da | TheDrummer/Tiger-Gemma-9B-v3-GGUF | TheDrummer | False | library-not-detected | 2024-10-04T19:06:22.000Z | 30 | 2 | false | 2f38a70d02347c23da828619c69333c3283c1155 | 24,613 | [
"gguf",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-10-04T18:16:59.000Z | TheDrummer/Tiger-Gemma-9B-v3-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q2_K.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q3_K_M.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q4_K_M.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q5_K_M.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q6_K.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-Q8_0.gguf"
},
{
"rfilename": "Tiger-Gemma-9B-v3-f16.gguf"
}
] | null | null |
6716618f4c50752ceab2d356 | QuantFactory/granite-3.0-8b-instruct-GGUF | QuantFactory | False | explicit-opt-out | 2024-10-21T20:28:10.000Z | 2 | 2 | false | 2154063845cb934e297608161105d7e976ed4af4 | 971 | [
"transformers",
"gguf",
"language",
"granite-3.0",
"text-generation",
"arxiv:0000.00000",
"license:apache-2.0",
"model-index",
"region:us",
"conversational"
] | text-generation | 2024-10-21T14:13:35.000Z | QuantFactory/granite-3.0-8b-instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "granite-3.0-8b-instruct.Q2_K.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q3_K_L.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q3_K_M.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q3_K_S.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q4_0.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q4_1.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q4_K_M.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q4_K_S.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q5_0.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q5_1.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q5_K_M.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q5_K_S.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q6_K.gguf"
},
{
"rfilename": "granite-3.0-8b-instruct.Q8_0.gguf"
}
] | transformers | null |
67166a3f603ad516efe8c1ed | QuantFactory/granite-3.0-2b-base-GGUF | QuantFactory | False | explicit-opt-out | 2024-10-21T15:03:22.000Z | 2 | 2 | false | 05d5093dd38833b2f2c49fd2994f93cb8e6a110c | 724 | [
"transformers",
"gguf",
"language",
"granite-3.0",
"text-generation",
"arxiv:0000.00000",
"license:apache-2.0",
"model-index",
"region:us"
] | text-generation | 2024-10-21T14:50:39.000Z | QuantFactory/granite-3.0-2b-base-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "granite-3.0-2b-base.Q2_K.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q3_K_L.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q3_K_M.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q3_K_S.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q4_0.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q4_1.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q4_K_M.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q4_K_S.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q5_0.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q5_1.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q5_K_M.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q5_K_S.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q6_K.gguf"
},
{
"rfilename": "granite-3.0-2b-base.Q8_0.gguf"
}
] | transformers | null |
671680e9eec876d49dce0784 | bartowski/Ministral-8B-Instruct-2410-GGUF | bartowski | False | explicit-opt-out | 2024-10-21T17:27:47.000Z | 24 | 2 | false | b4e2ea74eb4eecb178aa88d482c3126b34ad0157 | 22,388 | [
"gguf",
"text-generation",
"en",
"fr",
"de",
"es",
"it",
"pt",
"zh",
"ja",
"ru",
"ko",
"base_model:mistralai/Ministral-8B-Instruct-2410",
"base_model:quantized:mistralai/Ministral-8B-Instruct-2410",
"license:other",
"region:us",
"imatrix",
"conversational"
] | text-generation | 2024-10-21T16:27:21.000Z | bartowski/Ministral-8B-Instruct-2410-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Ministral-8B-Instruct-2410-IQ2_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-IQ3_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-IQ3_XS.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-IQ4_XS.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q2_K.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q2_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q3_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q3_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q3_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q3_K_XL.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_0.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_0_4_4.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_0_4_8.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_0_8_8.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q4_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q5_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q5_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q5_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q6_K.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q6_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-Q8_0.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410-f16.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
6716a79e76247f68b3052d65 | QuantFactory/granite-3.0-3b-a800m-base-GGUF | QuantFactory | False | explicit-opt-out | 2024-10-21T19:29:36.000Z | 2 | 2 | false | 2d82e45c8d8c3f98c83462f4f2bc70f91f75fab5 | 383 | [
"transformers",
"gguf",
"language",
"granite-3.0",
"text-generation",
"arxiv:0000.00000",
"license:apache-2.0",
"model-index",
"region:us"
] | text-generation | 2024-10-21T19:12:30.000Z | QuantFactory/granite-3.0-3b-a800m-base-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q2_K.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q3_K_L.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q3_K_M.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q3_K_S.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q4_0.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q4_1.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q4_K_M.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q4_K_S.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q5_0.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q5_1.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q5_K_M.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q5_K_S.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q6_K.gguf"
},
{
"rfilename": "granite-3.0-3b-a800m-base.Q8_0.gguf"
}
] | transformers | null |
6717377bed1a1c6d3d539409 | QuantFactory/Ministral-8B-Instruct-2410-GGUF | QuantFactory | False | explicit-opt-out | 2024-10-22T06:06:20.000Z | 2 | 2 | false | a5eca075adcfed1b0cae85d4c34618c0272bce26 | 960 | [
"vllm",
"gguf",
"en",
"fr",
"de",
"es",
"it",
"pt",
"zh",
"ja",
"ru",
"ko",
"license:other",
"region:us",
"conversational"
] | null | 2024-10-22T05:26:19.000Z | QuantFactory/Ministral-8B-Instruct-2410-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q2_K.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q3_K_L.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q3_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q3_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q4_0.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q4_1.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q4_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q4_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q5_0.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q5_1.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q5_K_M.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q5_K_S.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q6_K.gguf"
},
{
"rfilename": "Ministral-8B-Instruct-2410.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | vllm | null |
671a738b63ab73e574473961 | bartowski/aya-expanse-8b-GGUF | bartowski | False | explicit-opt-out | 2024-10-24T16:45:16.000Z | 22 | 2 | false | f9d62ed0c58e6f2ae17975df990b1b8a4013b596 | 10,098 | [
"gguf",
"text-generation",
"en",
"fr",
"de",
"es",
"it",
"pt",
"ja",
"ko",
"zh",
"ar",
"el",
"fa",
"pl",
"id",
"cs",
"he",
"hi",
"nl",
"ro",
"ru",
"tr",
"uk",
"vi",
"base_model:CohereForAI/aya-expanse-8b",
"base_model:quantized:CohereForAI/aya-expanse-8b",
"license:cc-by-nc-4.0",
"region:us",
"imatrix",
"conversational"
] | text-generation | 2024-10-24T16:19:23.000Z | bartowski/aya-expanse-8b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "aya-expanse-8b-IQ2_M.gguf"
},
{
"rfilename": "aya-expanse-8b-IQ3_M.gguf"
},
{
"rfilename": "aya-expanse-8b-IQ3_XS.gguf"
},
{
"rfilename": "aya-expanse-8b-IQ4_XS.gguf"
},
{
"rfilename": "aya-expanse-8b-Q2_K.gguf"
},
{
"rfilename": "aya-expanse-8b-Q2_K_L.gguf"
},
{
"rfilename": "aya-expanse-8b-Q3_K_L.gguf"
},
{
"rfilename": "aya-expanse-8b-Q3_K_M.gguf"
},
{
"rfilename": "aya-expanse-8b-Q3_K_S.gguf"
},
{
"rfilename": "aya-expanse-8b-Q3_K_XL.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_0.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_0_4_4.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_0_4_8.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_0_8_8.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_K_L.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_K_M.gguf"
},
{
"rfilename": "aya-expanse-8b-Q4_K_S.gguf"
},
{
"rfilename": "aya-expanse-8b-Q5_K_L.gguf"
},
{
"rfilename": "aya-expanse-8b-Q5_K_M.gguf"
},
{
"rfilename": "aya-expanse-8b-Q5_K_S.gguf"
},
{
"rfilename": "aya-expanse-8b-Q6_K.gguf"
},
{
"rfilename": "aya-expanse-8b-Q6_K_L.gguf"
},
{
"rfilename": "aya-expanse-8b-Q8_0.gguf"
},
{
"rfilename": "aya-expanse-8b-f16.gguf"
},
{
"rfilename": "aya-expanse-8b.imatrix"
}
] | null | null |
671ae40b79c11d25d3a7dbbb | DavidAU/Gemma-The-Writer-N-Restless-Quill-10B-Uncensored-GGUF | DavidAU | False | library-not-detected | 2024-11-22T03:20:31.000Z | 39 | 2 | false | 8d7eea4e17b9042bc4b3632e2d1e7e9f4947f61d | 34,068 | [
"gguf",
"creative",
"creative writing",
"fiction writing",
"plot generation",
"sub-plot generation",
"story generation",
"scene continue",
"storytelling",
"fiction story",
"science fiction",
"romance",
"all genres",
"uncensored",
"story",
"writing",
"vivid prosing",
"vivid writing",
"fiction",
"roleplaying",
"bfloat16",
"swearing",
"rp",
"horror",
"gemma",
"mergekit",
"text-generation",
"en",
"arxiv:2401.02415",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-10-25T00:19:23.000Z | DavidAU/Gemma-The-Writer-N-Restless-Quill-10B-Uncensored-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-IQ4_XS.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q2_k.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q3_k_l.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q3_k_m.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q3_k_s.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q4_0_4_4.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q4_0_4_8.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q4_0_8_8.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q4_k_m.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q4_k_s.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q5_k_s.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q6_k.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-Q8_0.gguf"
},
{
"rfilename": "Gemma-The-Writer-N-Restless-Quill-10B-D_AU-q5_k_m.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "restless-quill.jpg"
}
] | null | null |
671b406467d2d57841735659 | Orion-zhen/Meissa-Qwen2.5-14B-Instruct-Q6_K-GGUF | Orion-zhen | False | library-not-detected | 2024-10-25T06:54:16.000Z | 2 | 2 | false | 196c496f2989a2952d8847ecdaaa23e6475eca5f | 281 | [
"gguf",
"llama-cpp",
"gguf-my-repo",
"dataset:MinervaAI/Aesir-Preview",
"dataset:Gryphe/Sonnet3.5-Charcard-Roleplay",
"base_model:Orion-zhen/Meissa-Qwen2.5-14B-Instruct",
"base_model:quantized:Orion-zhen/Meissa-Qwen2.5-14B-Instruct",
"license:gpl-3.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-10-25T06:53:24.000Z | Orion-zhen/Meissa-Qwen2.5-14B-Instruct-Q6_K-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "meissa-qwen2.5-14b-instruct-q6_k.gguf"
}
] | null | null |
671b5aa871fab6c16fea6e78 | mikeyandfriends/PixelWave_FLUX.1-dev_03 | mikeyandfriends | False | cold | 2024-11-05T22:27:03.000Z | 139 | 2 | false | 0da454d0c56e707e0b30b0581f1ff8596afef08c | 72,903 | [
"diffusers",
"safetensors",
"gguf",
"license:other",
"endpoints_compatible",
"diffusers:FluxPipeline",
"region:us"
] | text-to-image | 2024-10-25T08:45:28.000Z | mikeyandfriends/PixelWave_FLUX.1-dev_03 | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "images/photo-collage.png"
},
{
"rfilename": "model_index.json"
},
{
"rfilename": "pixelwave_flux1_dev_Q4_K_M_03.gguf"
},
{
"rfilename": "pixelwave_flux1_dev_Q6_K_03.gguf"
},
{
"rfilename": "pixelwave_flux1_dev_Q8_0_03.gguf"
},
{
"rfilename": "pixelwave_flux1_dev_bf16_03.safetensors"
},
{
"rfilename": "pixelwave_flux1_dev_fp8_03.safetensors"
},
{
"rfilename": "pixelwave_flux1_dev_nf4_03.safetensors"
},
{
"rfilename": "scheduler/scheduler_config.json"
},
{
"rfilename": "text_encoder/config.json"
},
{
"rfilename": "text_encoder/model.safetensors"
},
{
"rfilename": "text_encoder_2/config.json"
},
{
"rfilename": "text_encoder_2/model-00001-of-00002.safetensors"
},
{
"rfilename": "text_encoder_2/model-00002-of-00002.safetensors"
},
{
"rfilename": "text_encoder_2/model.safetensors.index.json"
},
{
"rfilename": "tokenizer/merges.txt"
},
{
"rfilename": "tokenizer/special_tokens_map.json"
},
{
"rfilename": "tokenizer/tokenizer_config.json"
},
{
"rfilename": "tokenizer/vocab.json"
},
{
"rfilename": "tokenizer_2/special_tokens_map.json"
},
{
"rfilename": "tokenizer_2/spiece.model"
},
{
"rfilename": "tokenizer_2/tokenizer.json"
},
{
"rfilename": "tokenizer_2/tokenizer_config.json"
},
{
"rfilename": "transformer/config.json"
},
{
"rfilename": "transformer/diffusion_pytorch_model-00001-of-00003.safetensors"
},
{
"rfilename": "transformer/diffusion_pytorch_model-00002-of-00003.safetensors"
},
{
"rfilename": "transformer/diffusion_pytorch_model-00003-of-00003.safetensors"
},
{
"rfilename": "transformer/diffusion_pytorch_model.safetensors.index.json"
},
{
"rfilename": "vae/config.json"
},
{
"rfilename": "vae/diffusion_pytorch_model.safetensors"
}
] | diffusers | {"diffusers": {"_class_name": "FluxPipeline"}} |
671c366b02737c628d578d44 | bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF | bartowski | False | library-not-detected | 2024-10-26T00:35:56.000Z | 27 | 2 | false | db993eb152fc89f32e061f3575d1b8111648900f | 89,513 | [
"gguf",
"text-generation",
"base_model:chuanli11/Llama-3.2-3B-Instruct-uncensored",
"base_model:quantized:chuanli11/Llama-3.2-3B-Instruct-uncensored",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-10-26T00:23:07.000Z | bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-IQ3_M.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-IQ3_XS.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-IQ4_XS.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q2_K.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q2_K_L.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q3_K_L.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q3_K_M.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q3_K_S.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q3_K_XL.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_0.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_0_4_4.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_0_4_8.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_0_8_8.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_K_L.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_K_M.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q4_K_S.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q5_K_L.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q5_K_M.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q5_K_S.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q6_K.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q6_K_L.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-Q8_0.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored-f16.gguf"
},
{
"rfilename": "Llama-3.2-3B-Instruct-uncensored.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
6721871c8ec93aa80bac629e | city96/stable-diffusion-3.5-medium-gguf | city96 | False | pipeline-library-pair-not-supported | 2024-10-30T01:45:56.000Z | 38 | 2 | false | 5aeb282c48bfe54f6557062640f65684811536c8 | 10,376 | [
"gguf",
"text-to-image",
"image-generation",
"stable-diffusion",
"en",
"base_model:stabilityai/stable-diffusion-3.5-medium",
"base_model:quantized:stabilityai/stable-diffusion-3.5-medium",
"license:other",
"region:us"
] | text-to-image | 2024-10-30T01:08:44.000Z | city96/stable-diffusion-3.5-medium-gguf | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE.md"
},
{
"rfilename": "README.md"
},
{
"rfilename": "sd3.5_medium-F16.gguf"
},
{
"rfilename": "sd3.5_medium-Q3_K_M.gguf"
},
{
"rfilename": "sd3.5_medium-Q3_K_S.gguf"
},
{
"rfilename": "sd3.5_medium-Q4_0.gguf"
},
{
"rfilename": "sd3.5_medium-Q4_1.gguf"
},
{
"rfilename": "sd3.5_medium-Q4_K_M.gguf"
},
{
"rfilename": "sd3.5_medium-Q4_K_S.gguf"
},
{
"rfilename": "sd3.5_medium-Q5_0.gguf"
},
{
"rfilename": "sd3.5_medium-Q5_1.gguf"
},
{
"rfilename": "sd3.5_medium-Q5_K_M.gguf"
},
{
"rfilename": "sd3.5_medium-Q5_K_S.gguf"
},
{
"rfilename": "sd3.5_medium-Q6_K.gguf"
},
{
"rfilename": "sd3.5_medium-Q8_0.gguf"
}
] | gguf | null |
67232071af677c8b40651575 | DavidAU/MN-DARKEST-UNIVERSE-29B-GGUF | DavidAU | False | library-not-detected | 2024-11-22T03:18:32.000Z | 18 | 2 | false | aec9c6dc5d2f3a23fd3f469612ee3f0525b9236d | 10,083 | [
"gguf",
"creative",
"creative writing",
"fiction writing",
"plot generation",
"sub-plot generation",
"story generation",
"scene continue",
"storytelling",
"fiction story",
"science fiction",
"romance",
"all genres",
"story",
"writing",
"vivid prosing",
"vivid writing",
"fiction",
"roleplaying",
"bfloat16",
"brainstorm 40x",
"swearing",
"mistral nemo",
"128k context",
"rp",
"horror",
"mergekit",
"text-generation",
"en",
"arxiv:2401.02415",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-10-31T06:15:13.000Z | DavidAU/MN-DARKEST-UNIVERSE-29B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-IQ4_XS.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q2_k.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q3_k_l.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q3_k_m.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q3_k_s.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q4_0_4_4.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q4_0_4_8.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q4_0_8_8.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q4_k_m.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q4_k_s.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q5_k_s.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q6_k.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-Q8_0.gguf"
},
{
"rfilename": "MN-DARKEST-UNIVERSE-29B-D_AU-q5_k_m.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "du.gif"
}
] | null | null |
672477db33f4d5451e910b47 | prithivMLmods/SmolLM2-1.7B-GGUF | prithivMLmods | False | library-not-detected | 2024-11-08T15:35:43.000Z | 5 | 2 | false | b9ca47a847b1b0a7506732138368d8110df60a54 | 380 | [
"gguf",
"llama",
"SmolLM2-1.7B",
"text-generation",
"en",
"base_model:HuggingFaceTB/SmolLM2-1.7B",
"base_model:quantized:HuggingFaceTB/SmolLM2-1.7B",
"license:creativeml-openrail-m",
"endpoints_compatible",
"region:us"
] | text-generation | 2024-11-01T06:40:27.000Z | prithivMLmods/SmolLM2-1.7B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "SmolLM2-1.7B.F16.gguf"
},
{
"rfilename": "SmolLM2-1.7B.Q4_K_M.gguf"
},
{
"rfilename": "SmolLM2-1.7B.Q5_K_M.gguf"
},
{
"rfilename": "SmolLM2-1.7B.Q8_0.gguf"
},
{
"rfilename": "config.json"
}
] | null | {"model_type": "llama"} |
6724c43184b36676c7aa617b | QuantFactory/SmolLM2-360M-GGUF | QuantFactory | False | pipeline-not-detected | 2024-11-01T12:09:00.000Z | 2 | 2 | false | 38cd16bc62ab1b1f0d320be8b518ac2fd80faa88 | 227 | [
"transformers",
"gguf",
"en",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | null | 2024-11-01T12:06:09.000Z | QuantFactory/SmolLM2-360M-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "SmolLM2-360M.Q2_K.gguf"
},
{
"rfilename": "SmolLM2-360M.Q3_K_L.gguf"
},
{
"rfilename": "SmolLM2-360M.Q3_K_M.gguf"
},
{
"rfilename": "SmolLM2-360M.Q3_K_S.gguf"
},
{
"rfilename": "SmolLM2-360M.Q4_0.gguf"
},
{
"rfilename": "SmolLM2-360M.Q4_1.gguf"
},
{
"rfilename": "SmolLM2-360M.Q4_K_M.gguf"
},
{
"rfilename": "SmolLM2-360M.Q4_K_S.gguf"
},
{
"rfilename": "SmolLM2-360M.Q5_0.gguf"
},
{
"rfilename": "SmolLM2-360M.Q5_1.gguf"
},
{
"rfilename": "SmolLM2-360M.Q5_K_M.gguf"
},
{
"rfilename": "SmolLM2-360M.Q5_K_S.gguf"
},
{
"rfilename": "SmolLM2-360M.Q6_K.gguf"
},
{
"rfilename": "SmolLM2-360M.Q8_0.gguf"
}
] | transformers | null |
6727b9579cdadd6a5ba61f1d | OuteAI/OuteTTS-0.1-350M-GGUF | OuteAI | False | library-not-detected | 2024-11-27T13:23:36.000Z | 34 | 2 | false | 33040c72859f4e0c84563f4f13b8271051cf36b7 | 2,918 | [
"gguf",
"text-to-speech",
"en",
"dataset:facebook/multilingual_librispeech",
"dataset:parler-tts/libritts_r_filtered",
"license:cc-by-4.0",
"endpoints_compatible",
"region:us"
] | text-to-speech | 2024-11-03T17:56:39.000Z | OuteAI/OuteTTS-0.1-350M-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "OuteTTS-0.1-350M-FP16.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q2_K.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q3_K_L.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q3_K_M.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q3_K_S.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q4_0.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q4_1.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q4_K_M.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q4_K_S.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q5_0.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q5_1.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q5_K_M.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q5_K_S.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q6_K.gguf"
},
{
"rfilename": "OuteTTS-0.1-350M-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
672da07f3c1ba7cbd2edbac0 | DavidAU/L3.1-Dark-Planet-SpinFire-Uncensored-8B-GGUF | DavidAU | False | library-not-detected | 2024-11-14T06:38:25.000Z | 14 | 2 | false | 85cc959fe87cef4109ceac1cbbdd0f7d6327094c | 12,136 | [
"gguf",
"creative",
"creative writing",
"fiction writing",
"plot generation",
"sub-plot generation",
"story generation",
"scene continue",
"storytelling",
"fiction story",
"science fiction",
"romance",
"all genres",
"story",
"writing",
"vivid prosing",
"vivid writing",
"fiction",
"roleplaying",
"bfloat16",
"swearing",
"rp",
"horror",
"llama 3.1",
"context 128k",
"mergekit",
"text-generation",
"en",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-08T05:24:15.000Z | DavidAU/L3.1-Dark-Planet-SpinFire-Uncensored-8B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-IQ4_XS.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q2_k.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q3_k_l.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q3_k_m.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q3_k_s.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q4_0_4_4.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q4_0_4_8.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q4_0_8_8.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q4_k_m.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q4_k_s.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q5_k_s.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q6_k.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-Q8_0.gguf"
},
{
"rfilename": "L3.1-Dark-Planet-SpinFire-Uncensored-8B-D_AU-q5_k_m.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "dark-spin.jpg"
}
] | null | null |
6731bca04c56f4fc1f751ca2 | QuantFactory/sabia-7b-GGUF | QuantFactory | False | library-not-detected | 2024-11-11T08:46:51.000Z | 2 | 2 | false | c7bce6ae3b7002e55b8cc0009297b763263127d7 | 292 | [
"gguf",
"pt",
"arxiv:2304.07880",
"model-index",
"endpoints_compatible",
"region:us"
] | null | 2024-11-11T08:13:20.000Z | QuantFactory/sabia-7b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "sabia-7b.Q2_K.gguf"
},
{
"rfilename": "sabia-7b.Q3_K_L.gguf"
},
{
"rfilename": "sabia-7b.Q3_K_M.gguf"
},
{
"rfilename": "sabia-7b.Q3_K_S.gguf"
},
{
"rfilename": "sabia-7b.Q4_0.gguf"
},
{
"rfilename": "sabia-7b.Q4_1.gguf"
},
{
"rfilename": "sabia-7b.Q4_K_M.gguf"
},
{
"rfilename": "sabia-7b.Q4_K_S.gguf"
},
{
"rfilename": "sabia-7b.Q5_0.gguf"
},
{
"rfilename": "sabia-7b.Q5_1.gguf"
},
{
"rfilename": "sabia-7b.Q5_K_M.gguf"
},
{
"rfilename": "sabia-7b.Q5_K_S.gguf"
},
{
"rfilename": "sabia-7b.Q6_K.gguf"
},
{
"rfilename": "sabia-7b.Q8_0.gguf"
}
] | null | null |
6731c7e956dee228f32d8863 | QuantFactory/LLaMA-Pro-8B-Instruct-GGUF | QuantFactory | False | library-not-detected | 2024-11-11T09:44:36.000Z | 2 | 2 | false | b3564bfa9e0c37887fbba5f9df8a28824cbb9ad5 | 402 | [
"gguf",
"license:llama2",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-11T09:01:29.000Z | QuantFactory/LLaMA-Pro-8B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q2_K.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q3_K_L.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q3_K_M.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q3_K_S.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q4_0.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q4_1.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q4_K_M.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q4_K_S.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q5_0.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q5_1.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q5_K_M.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q5_K_S.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q6_K.gguf"
},
{
"rfilename": "LLaMA-Pro-8B-Instruct.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
6731d6711f9a74fcb0d9bce1 | concedo/Beepo-22B-GGUF | concedo | False | library-not-detected | 2024-11-17T13:41:36.000Z | 23 | 2 | false | 4a6d548edc5138f39ec4cea35392317316154c01 | 5,198 | [
"gguf",
"en",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-11T10:03:29.000Z | concedo/Beepo-22B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Beepo-22B-BF16.gguf"
},
{
"rfilename": "Beepo-22B-Q2_K.gguf"
},
{
"rfilename": "Beepo-22B-Q3_K.gguf"
},
{
"rfilename": "Beepo-22B-Q4_K_M.gguf"
},
{
"rfilename": "Beepo-22B-Q4_K_S.gguf"
},
{
"rfilename": "Beepo-22B-Q6_K.gguf"
},
{
"rfilename": "Beepo-22B-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
6731d9c7041f924245c4fe73 | QuantFactory/Kaiju-11B-GGUF | QuantFactory | False | library-not-detected | 2024-11-11T11:29:42.000Z | 2 | 2 | false | ba5584480eec34ea8605612d4268696cb8081411 | 293 | [
"gguf",
"en",
"license:cc-by-nc-4.0",
"endpoints_compatible",
"region:us"
] | null | 2024-11-11T10:17:43.000Z | QuantFactory/Kaiju-11B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Kaiju-11B.Q2_K.gguf"
},
{
"rfilename": "Kaiju-11B.Q3_K_L.gguf"
},
{
"rfilename": "Kaiju-11B.Q3_K_M.gguf"
},
{
"rfilename": "Kaiju-11B.Q3_K_S.gguf"
},
{
"rfilename": "Kaiju-11B.Q4_0.gguf"
},
{
"rfilename": "Kaiju-11B.Q4_1.gguf"
},
{
"rfilename": "Kaiju-11B.Q4_K_M.gguf"
},
{
"rfilename": "Kaiju-11B.Q4_K_S.gguf"
},
{
"rfilename": "Kaiju-11B.Q5_0.gguf"
},
{
"rfilename": "Kaiju-11B.Q5_1.gguf"
},
{
"rfilename": "Kaiju-11B.Q5_K_M.gguf"
},
{
"rfilename": "Kaiju-11B.Q5_K_S.gguf"
},
{
"rfilename": "Kaiju-11B.Q6_K.gguf"
},
{
"rfilename": "Kaiju-11B.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
6731f721ccdb4a73da538787 | QuantFactory/Ichigo-llama3.1-s-instruct-v0.4-GGUF | QuantFactory | False | library-not-detected | 2024-11-11T13:02:51.000Z | 2 | 2 | false | d1623850ed6cc918223bd6b18baa1810274f8245 | 552 | [
"gguf",
"sound language model",
"en",
"dataset:homebrewltd/instruction-speech-whispervq-v2",
"arxiv:2406.16020",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-11T12:22:57.000Z | QuantFactory/Ichigo-llama3.1-s-instruct-v0.4-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q2_K.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q3_K_L.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q3_K_M.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q3_K_S.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q4_0.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q4_1.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q4_K_M.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q4_K_S.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q5_0.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q5_1.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q5_K_M.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q5_K_S.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q6_K.gguf"
},
{
"rfilename": "Ichigo-llama3.1-s-instruct-v0.4.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
67321a816c671fb8497cc979 | QuantFactory/pip-sql-1.3b-GGUF | QuantFactory | False | not-popular-enough | 2024-11-11T15:00:50.000Z | 2 | 2 | false | 1bcfce41370c14ba65dc342fc834740f9a552ff5 | 471 | [
"transformers",
"gguf",
"sql",
"code",
"text2sql",
"instruction_tuned",
"basemodel",
"jax",
"pytorch",
"text-generation-inference",
"text-generation",
"en",
"dataset:PipableAI/pip-txt-to-sql-spider-bird-dataset",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-11T14:53:53.000Z | QuantFactory/pip-sql-1.3b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "pip-sql-1.3b.Q2_K.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q3_K_L.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q3_K_M.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q3_K_S.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q4_0.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q4_1.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q4_K_M.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q4_K_S.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q5_0.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q5_1.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q5_K_M.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q5_K_S.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q6_K.gguf"
},
{
"rfilename": "pip-sql-1.3b.Q8_0.gguf"
}
] | transformers | null |
67322b9d276512085bf96043 | gpustack/stable-diffusion-v3-5-large-GGUF | gpustack | False | not-popular-enough | 2024-11-23T01:55:31.000Z | 3 | 2 | false | 937e5a94fa7679e9a58916217549d07be49b968b | 638 | [
"diffusers",
"gguf",
"text-to-image",
"stable-diffusion",
"en",
"arxiv:2403.03206",
"license:other",
"region:us"
] | text-to-image | 2024-11-11T16:06:53.000Z | gpustack/stable-diffusion-v3-5-large-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LICENSE.md"
},
{
"rfilename": "README.md"
},
{
"rfilename": "mmdit.png"
},
{
"rfilename": "sd3.5_large_demo.png"
},
{
"rfilename": "stable-diffusion-v3-5-large-FP16.gguf"
},
{
"rfilename": "stable-diffusion-v3-5-large-Q4_0.gguf"
},
{
"rfilename": "stable-diffusion-v3-5-large-Q4_1.gguf"
},
{
"rfilename": "stable-diffusion-v3-5-large-Q8_0.gguf"
},
{
"rfilename": "stable-diffusion-v3-5-large-pure-Q4_0.gguf"
},
{
"rfilename": "stable-diffusion-v3-5-large-pure-Q8_0.gguf"
}
] | diffusers | null |
6732e207f014ee49556b07e6 | QuantFactory/Qwen2.5-Coder-14B-Instruct-GGUF | QuantFactory | False | not-popular-enough | 2024-11-12T06:58:36.000Z | 2 | 2 | false | 7e5a7e3af0ac2bdd447c3720a5b646d8bcca45ad | 1,178 | [
"transformers",
"gguf",
"code",
"codeqwen",
"chat",
"qwen",
"qwen-coder",
"text-generation",
"en",
"arxiv:2409.12186",
"arxiv:2309.00071",
"arxiv:2407.10671",
"base_model:Qwen/Qwen2.5-Coder-14B",
"base_model:quantized:Qwen/Qwen2.5-Coder-14B",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-12T05:05:11.000Z | QuantFactory/Qwen2.5-Coder-14B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q2_K.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q3_K_L.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q3_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q3_K_S.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q4_0.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q4_1.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q4_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q4_K_S.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q5_0.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q5_1.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q5_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q5_K_S.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q6_K.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
673314b0c7b41d8609c9d12d | wikeeyang/Flux.1-Dedistilled-Mix-Tuned-fp8 | wikeeyang | False | not-popular-enough | 2024-11-29T08:14:23.000Z | 13 | 2 | false | aa921713d364c8e460fbb356601d5e011fea7979 | 12,870 | [
"diffusers",
"gguf",
"flux",
"flux.1",
"flux.1-schnell",
"flux.1-dev",
"flux-merge",
"merge",
"blocks",
"finetune",
"block patcher",
"text-to-image",
"en",
"license:other",
"region:us"
] | text-to-image | 2024-11-12T08:41:20.000Z | wikeeyang/Flux.1-Dedistilled-Mix-Tuned-fp8 | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Flux1-Dev-DedistilledMixTuned-V1-Q4_1.gguf"
},
{
"rfilename": "Flux1-Dev-DedistilledMixTuned-V1-Q5_1.gguf"
},
{
"rfilename": "Flux1-Dev-DedistilledMixTuned-V1-Q8_0.gguf"
},
{
"rfilename": "Flux1-Dev-DedistilledMixTuned-V1-fp8.safetensors"
},
{
"rfilename": "Flux1-Schnell-DedistilledMixTuned-V1-Q4_1.gguf"
},
{
"rfilename": "Flux1-Schnell-DedistilledMixTuned-V1-Q5_1.gguf"
},
{
"rfilename": "Flux1-Schnell-DedistilledMixTuned-V1-Q8_0.gguf"
},
{
"rfilename": "Flux1-Schnell-DedistilledMixTuned-V1-fp8.safetensors"
},
{
"rfilename": "LICENSE.md"
},
{
"rfilename": "Q8_0&Q4_1.jpg"
},
{
"rfilename": "README.md"
},
{
"rfilename": "compare-schnell.jpg"
},
{
"rfilename": "compare-schnell.png"
},
{
"rfilename": "compare.jpg"
},
{
"rfilename": "compare.png"
},
{
"rfilename": "gguf-sample.jpg"
},
{
"rfilename": "gguf-sample.png"
},
{
"rfilename": "sample-001.png"
},
{
"rfilename": "sample-002.png"
},
{
"rfilename": "sample-003.png"
},
{
"rfilename": "sample-004.png"
},
{
"rfilename": "sample-005.png"
},
{
"rfilename": "sample-006.png"
},
{
"rfilename": "sample-007.png"
},
{
"rfilename": "sample-008.png"
},
{
"rfilename": "sample-009.png"
},
{
"rfilename": "sample-010.png"
},
{
"rfilename": "workflow.png"
}
] | diffusers | null |
673338c7fcd2ce360eb4d1d8 | unsloth/Qwen2.5-Coder-14B-Instruct-128K-GGUF | unsloth | False | pipeline-not-detected | 2024-11-14T01:21:25.000Z | 12 | 2 | false | 18cb83fc9c977bb57120e89d36b82c8fcfe21029 | 9,312 | [
"transformers",
"gguf",
"qwen2",
"unsloth",
"code",
"qwen",
"qwen-coder",
"codeqwen",
"en",
"arxiv:2409.12186",
"arxiv:2407.10671",
"base_model:Qwen/Qwen2.5-Coder-14B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-Coder-14B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-12T11:15:19.000Z | unsloth/Qwen2.5-Coder-14B-Instruct-128K-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-F16.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q2_K.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q3_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q5_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q6_K.gguf"
},
{
"rfilename": "Qwen2.5-Coder-14B-Instruct-Q8_0.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "config.json"
}
] | transformers | {"model_type": "qwen2"} |
67344b358f847a34210e16b7 | prithivMLmods/Qwen2.5-Coder-1.5B-Instruct-GGUF | prithivMLmods | False | not-popular-enough | 2024-11-18T19:11:01.000Z | 8 | 2 | false | fa022cbc1359b9395a507fe43696b3450d17d729 | 682 | [
"transformers",
"gguf",
"Qwen2.5",
"Coder",
"F16",
"16-bit",
"Q4",
"Q5",
"Q8",
"Llama-cpp",
"Ollama",
"8-bit",
"text-generation",
"en",
"base_model:Qwen/Qwen2.5-Coder-1.5B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-Coder-1.5B-Instruct",
"license:creativeml-openrail-m",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-13T06:46:13.000Z | prithivMLmods/Qwen2.5-Coder-1.5B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwen2.5-Coder-1.5B-Instruct.F16.gguf"
},
{
"rfilename": "Qwen2.5-Coder-1.5B-Instruct.Q4_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-1.5B-Instruct.Q5_K_M.gguf"
},
{
"rfilename": "Qwen2.5-Coder-1.5B-Instruct.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6734c46a7e5caf2c610818f5 | msu-rcc-lair/RuadaptQwen2.5-32B-instruct-GGUF | msu-rcc-lair | False | library-not-detected | 2024-11-13T17:06:04.000Z | 10 | 2 | false | 93e31e7d6cfdad4a3edcc2d45c6918572ec1de28 | 7,741 | [
"gguf",
"text-generation",
"ru",
"dataset:IlyaGusev/saiga_scored",
"dataset:IlyaGusev/saiga_preferences",
"dataset:dichspace/darulm",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-13T15:23:22.000Z | msu-rcc-lair/RuadaptQwen2.5-32B-instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Q2_K.gguf"
},
{
"rfilename": "Q3_K_M.gguf"
},
{
"rfilename": "Q4_0.gguf"
},
{
"rfilename": "Q4_K_M.gguf"
},
{
"rfilename": "Q5_0.gguf"
},
{
"rfilename": "Q5_K_M.gguf"
},
{
"rfilename": "Q6_K.gguf"
},
{
"rfilename": "Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
673584725e821f6c5e5455e9 | Sweaterdog/MindCraft-LLM-tuning | Sweaterdog | False | pipeline-not-detected | 2024-12-02T06:20:53.000Z | 2 | 2 | false | 86febfba1fd418551dbdc2e6779ed59608673b58 | 1,620 | [
"transformers",
"safetensors",
"gguf",
"qwen2",
"text-generation-inference",
"unsloth",
"llama3",
"trl",
"en",
"dataset:Sweaterdog/MindCraft-LLM-tuning",
"base_model:unsloth/Llama-3.2-3B-Instruct",
"base_model:quantized:unsloth/Llama-3.2-3B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-14T05:02:42.000Z | Sweaterdog/MindCraft-LLM-tuning | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Andy-v2-qwen.F16.gguf"
},
{
"rfilename": "Andy-v2-qwen.Q2_K.gguf"
},
{
"rfilename": "Andy-v2-qwen.Q4_K_M.gguf"
},
{
"rfilename": "Andy-v2-qwen.Q5_K_M.gguf"
},
{
"rfilename": "Andy-v2-qwen.Q8_0.gguf"
},
{
"rfilename": "Andy-v3-llama.F16.gguf"
},
{
"rfilename": "Andy-v3-llama.Q2_K.gguf"
},
{
"rfilename": "Andy-v3-llama.Q4_K_M.gguf"
},
{
"rfilename": "Andy-v3-llama.Q5_K_M.gguf"
},
{
"rfilename": "Andy-v3-llama.Q8_0.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "config.json"
},
{
"rfilename": "deprecated-models/Andy-v2-llama.F16.gguf"
},
{
"rfilename": "deprecated-models/Andy-v2-llama.Q2_K.gguf"
},
{
"rfilename": "deprecated-models/Andy-v2-llama.Q4_K_M.gguf"
},
{
"rfilename": "deprecated-models/Andy-v2-llama.Q5_K_M.gguf"
},
{
"rfilename": "deprecated-models/Andy-v2-llama.Q8_0.gguf"
},
{
"rfilename": "deprecated-models/Andy-v3-qwen.F16.gguf"
},
{
"rfilename": "deprecated-models/Andy-v3-qwen.Q2_K.gguf"
},
{
"rfilename": "deprecated-models/Andy-v3-qwen.Q4_K_M.gguf"
},
{
"rfilename": "deprecated-models/Andy-v3-qwen.Q5_K_M.gguf"
},
{
"rfilename": "deprecated-models/Andy-v3-qwen.Q8_0.gguf"
},
{
"rfilename": "deprecated-models/Hermes-v1(qwen)-(deprecated).F16.gguf"
},
{
"rfilename": "deprecated-models/Hermes-v1(qwen)-(deprecated).Q8_0.gguf"
},
{
"rfilename": "extras/Modelfile"
},
{
"rfilename": "extras/Modelfile [EXPERIMENTAL]"
},
{
"rfilename": "extras/adapter_config.json"
},
{
"rfilename": "extras/adapter_model.safetensors"
},
{
"rfilename": "extras/added_tokens.json"
},
{
"rfilename": "extras/config.json"
},
{
"rfilename": "extras/merges.txt"
},
{
"rfilename": "extras/special_tokens_map.json"
},
{
"rfilename": "extras/tokenizer.json"
},
{
"rfilename": "extras/tokenizer_config.json"
},
{
"rfilename": "extras/vocab.json"
}
] | transformers | {"model_type": "qwen2"} |
6737c92f6d937573442ca58a | INSAIT-Institute/BgGPT-Gemma-2-9B-IT-v1.0-GGUF | INSAIT-Institute | False | library-not-detected | 2024-11-19T08:22:44.000Z | 4 | 2 | false | 5c29c227362d915f39f3750ee1c2e087f682b461 | 1,138 | [
"gguf",
"license:gemma",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-15T22:20:31.000Z | INSAIT-Institute/BgGPT-Gemma-2-9B-IT-v1.0-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.F16.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q4_K_M.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q4_K_S.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q5_K_M.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q5_K_S.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q6_K.gguf"
},
{
"rfilename": "BgGPT-Gemma-2-9B-IT-v1.0.Q8_0.gguf"
},
{
"rfilename": "LICENSE"
},
{
"rfilename": "README.md"
}
] | null | null |
6738c1b5ca81a755c129ae1b | bartowski/Qwen2.5-72B-0.6x-Instruct-GGUF | bartowski | False | library-not-detected | 2024-11-16T20:21:07.000Z | 4 | 2 | false | e87bfc3389ae09d34b491261956d4ea21c212c8b | 986 | [
"gguf",
"chat",
"text-generation",
"en",
"base_model:ddh0/Qwen2.5-72B-0.6x-Instruct",
"base_model:quantized:ddh0/Qwen2.5-72B-0.6x-Instruct",
"license:other",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | text-generation | 2024-11-16T16:00:53.000Z | bartowski/Qwen2.5-72B-0.6x-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ1_M.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ2_M.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ2_XS.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ2_XXS.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ3_M.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ3_XXS.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-IQ4_XS.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q2_K.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q2_K_L.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q3_K_L.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q3_K_M.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q3_K_S.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q3_K_XL.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q4_0.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q4_0_8_8.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q4_K_S.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q5_K_M/Qwen2.5-72B-0.6x-Instruct-Q5_K_M-00001-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q5_K_M/Qwen2.5-72B-0.6x-Instruct-Q5_K_M-00002-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q5_K_S/Qwen2.5-72B-0.6x-Instruct-Q5_K_S-00001-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q5_K_S/Qwen2.5-72B-0.6x-Instruct-Q5_K_S-00002-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q6_K/Qwen2.5-72B-0.6x-Instruct-Q6_K-00001-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q6_K/Qwen2.5-72B-0.6x-Instruct-Q6_K-00002-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q8_0/Qwen2.5-72B-0.6x-Instruct-Q8_0-00001-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct-Q8_0/Qwen2.5-72B-0.6x-Instruct-Q8_0-00002-of-00002.gguf"
},
{
"rfilename": "Qwen2.5-72B-0.6x-Instruct.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
6739ff7811b9a7acba79af22 | bartowski/Beepo-22B-GGUF | bartowski | False | library-not-detected | 2024-11-27T15:00:00.000Z | 7 | 2 | false | 77a462d118d426b78ecd01e75e455fa8bef2b3c5 | 2,735 | [
"gguf",
"text-generation",
"en",
"base_model:concedo/Beepo-22B",
"base_model:quantized:concedo/Beepo-22B",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-17T14:36:40.000Z | bartowski/Beepo-22B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Beepo-22B-IQ2_M.gguf"
},
{
"rfilename": "Beepo-22B-IQ2_S.gguf"
},
{
"rfilename": "Beepo-22B-IQ2_XS.gguf"
},
{
"rfilename": "Beepo-22B-IQ3_M.gguf"
},
{
"rfilename": "Beepo-22B-IQ3_XS.gguf"
},
{
"rfilename": "Beepo-22B-IQ4_XS.gguf"
},
{
"rfilename": "Beepo-22B-Q2_K.gguf"
},
{
"rfilename": "Beepo-22B-Q2_K_L.gguf"
},
{
"rfilename": "Beepo-22B-Q3_K_L.gguf"
},
{
"rfilename": "Beepo-22B-Q3_K_M.gguf"
},
{
"rfilename": "Beepo-22B-Q3_K_S.gguf"
},
{
"rfilename": "Beepo-22B-Q3_K_XL.gguf"
},
{
"rfilename": "Beepo-22B-Q4_0.gguf"
},
{
"rfilename": "Beepo-22B-Q4_0_4_4.gguf"
},
{
"rfilename": "Beepo-22B-Q4_0_4_8.gguf"
},
{
"rfilename": "Beepo-22B-Q4_0_8_8.gguf"
},
{
"rfilename": "Beepo-22B-Q4_K_L.gguf"
},
{
"rfilename": "Beepo-22B-Q4_K_M.gguf"
},
{
"rfilename": "Beepo-22B-Q4_K_S.gguf"
},
{
"rfilename": "Beepo-22B-Q5_K_L.gguf"
},
{
"rfilename": "Beepo-22B-Q5_K_M.gguf"
},
{
"rfilename": "Beepo-22B-Q5_K_S.gguf"
},
{
"rfilename": "Beepo-22B-Q6_K.gguf"
},
{
"rfilename": "Beepo-22B-Q6_K_L.gguf"
},
{
"rfilename": "Beepo-22B-Q8_0.gguf"
},
{
"rfilename": "Beepo-22B-f16.gguf"
},
{
"rfilename": "Beepo-22B.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
673a98d88f51fde3c54d8428 | mradermacher/OrcaAgent-llama3.2-1b-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-18T01:47:10.000Z | 4 | 2 | false | defde302c7c7713bdf7607fe67476b83cdd12271 | 809 | [
"transformers",
"gguf",
"text-generation-inference",
"llama",
"trl",
"en",
"dataset:microsoft/orca-agentinstruct-1M-v1",
"dataset:Isotonic/agentinstruct-1Mv1-combined",
"base_model:Isotonic/OrcaAgent-llama3.2-1b",
"base_model:quantized:Isotonic/OrcaAgent-llama3.2-1b",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-18T01:31:04.000Z | mradermacher/OrcaAgent-llama3.2-1b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.IQ4_XS.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q2_K.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q3_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q3_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q3_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q4_0_4_4.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q4_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q4_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q5_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q5_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q6_K.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.Q8_0.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-1b.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
673b87290d8a679806bf029f | lmstudio-community/Mistral-Large-Instruct-2411-GGUF | lmstudio-community | False | explicit-opt-out | 2024-11-18T19:33:23.000Z | 12 | 2 | false | cd165d3f726c22ec148ec99736e025d59b81ed6f | 1,887 | [
"gguf",
"text-generation",
"en",
"fr",
"de",
"es",
"it",
"pt",
"zh",
"ja",
"ru",
"ko",
"base_model:mistralai/Mistral-Large-Instruct-2411",
"base_model:quantized:mistralai/Mistral-Large-Instruct-2411",
"license:other",
"region:us",
"conversational"
] | text-generation | 2024-11-18T18:27:53.000Z | lmstudio-community/Mistral-Large-Instruct-2411-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q3_K_L-00001-of-00002.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q3_K_L-00002-of-00002.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q4_K_M-00001-of-00002.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q4_K_M-00002-of-00002.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q6_K-00001-of-00003.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q6_K-00002-of-00003.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q6_K-00003-of-00003.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q8_0-00001-of-00004.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q8_0-00002-of-00004.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q8_0-00003-of-00004.gguf"
},
{
"rfilename": "Mistral-Large-Instruct-2411-Q8_0-00004-of-00004.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
673c219a79b5a48d3753e0c4 | thomas-yanxin/Qwen2-VL-7B-GGUF | thomas-yanxin | False | library-not-detected | 2024-11-22T17:54:24.000Z | 4 | 2 | false | 06b4a385e057f0de1ff445b595716bc951c2c9c4 | 5,997 | [
"gguf",
"base_model:Qwen/Qwen2-VL-7B-Instruct",
"base_model:quantized:Qwen/Qwen2-VL-7B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-19T05:26:50.000Z | thomas-yanxin/Qwen2-VL-7B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": ".mdl"
},
{
"rfilename": ".msc"
},
{
"rfilename": ".mv"
},
{
"rfilename": "Qwen2-VL-7B-Instruct-F16.gguf"
},
{
"rfilename": "Qwen2-VL-7B-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "configuration.json"
},
{
"rfilename": "qwen2vl-vision.gguf"
}
] | null | null |
673c970ac498c2b67e0da3fc | CronoBJS/LLaMA-Mesh-Q6_K-GGUF | CronoBJS | False | not-popular-enough | 2024-11-19T13:48:24.000Z | 2 | 2 | false | 8ba6dfd77d0a41469b267c2b1302a20b7a6e9208 | 165 | [
"transformers",
"gguf",
"mesh-generation",
"llama-cpp",
"gguf-my-repo",
"text-generation",
"base_model:Zhengyi/LLaMA-Mesh",
"base_model:quantized:Zhengyi/LLaMA-Mesh",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-19T13:47:54.000Z | CronoBJS/LLaMA-Mesh-Q6_K-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "llama-mesh-q6_k.gguf"
}
] | transformers | null |
673efd02f34d4e0bcc112316 | knifeayumu/Cydonia-v1.3-Magnum-v4-22B-GGUF | knifeayumu | False | pipeline-not-detected | 2024-11-21T16:07:23.000Z | 5 | 2 | false | b2e40987e72d08125babab38b8a8b0b921b87a62 | 4,231 | [
"transformers",
"gguf",
"en",
"base_model:knifeayumu/Cydonia-v1.3-Magnum-v4-22B",
"base_model:quantized:knifeayumu/Cydonia-v1.3-Magnum-v4-22B",
"license:other",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-21T09:27:30.000Z | knifeayumu/Cydonia-v1.3-Magnum-v4-22B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-F16.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q2_K.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q3_K_L.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q3_K_M.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q3_K_S.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q4_K_M.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q4_K_S.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q5_K_M.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q5_K_S.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q6_K.gguf"
},
{
"rfilename": "Cydonia-v1.3-Magnum-v4-22B-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
673f6eaea31ce1fff27526fc | lmstudio-community/Llama-3.1-Tulu-3-8B-GGUF | lmstudio-community | False | library-not-detected | 2024-11-21T18:26:40.000Z | 3 | 2 | false | 7033c16b4f79f8708a27d80bf2ae0c6537253d1b | 661 | [
"gguf",
"text-generation",
"en",
"dataset:allenai/RLVR-GSM-MATH-IF-Mixed-Constraints",
"base_model:allenai/Llama-3.1-Tulu-3-8B",
"base_model:quantized:allenai/Llama-3.1-Tulu-3-8B",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-21T17:32:30.000Z | lmstudio-community/Llama-3.1-Tulu-3-8B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-3.1-Tulu-3-8B-Q3_K_L.gguf"
},
{
"rfilename": "Llama-3.1-Tulu-3-8B-Q4_K_M.gguf"
},
{
"rfilename": "Llama-3.1-Tulu-3-8B-Q6_K.gguf"
},
{
"rfilename": "Llama-3.1-Tulu-3-8B-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
67400688433c7a64b6592bee | N8Programs/TheWrongRoom | N8Programs | False | library-not-detected | 2024-12-01T20:25:07.000Z | 2 | 2 | false | c13444f181d5113463522e55838872cdf8653c3f | 32 | [
"onnx",
"gguf",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-22T04:20:24.000Z | N8Programs/TheWrongRoom | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-3.2-Sussy-3B-Instruct-IQ4_XS.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "The Wrong Room-1.0.0-arm64-mac.zip"
},
{
"rfilename": "The Wrong Room-1.0.0-arm64-win.zip"
},
{
"rfilename": "The Wrong Room-1.0.0-arm64.AppImage"
},
{
"rfilename": "The Wrong Room-1.0.0-x86-win.zip"
},
{
"rfilename": "The Wrong Room-1.0.0-x86.AppImage"
},
{
"rfilename": "decoder_model_merged.onnx"
},
{
"rfilename": "encoder_model.onnx"
},
{
"rfilename": "tts.onnx"
}
] | null | null |
6740338be7489179c50a0b91 | QuantFactory/LLaMA-Mesh-GGUF | QuantFactory | False | not-popular-enough | 2024-11-24T11:28:58.000Z | 2 | 2 | false | 321e3724607fb52fe7aea13a60d47a6950a4706a | 641 | [
"transformers",
"gguf",
"mesh-generation",
"text-generation",
"arxiv:2411.09595",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-22T07:32:27.000Z | QuantFactory/LLaMA-Mesh-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LLaMA-Mesh.Q2_K.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q3_K_L.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q3_K_M.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q3_K_S.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q4_0.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q4_1.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q4_K_M.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q4_K_S.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q5_0.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q5_1.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q5_K_M.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q5_K_S.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q6_K.gguf"
},
{
"rfilename": "LLaMA-Mesh.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6740c3c07847777599e63912 | bartowski/Llama-3.1_OpenScholar-8B-GGUF | bartowski | False | library-not-detected | 2024-11-22T18:17:49.000Z | 4 | 2 | false | b2f6c23c36212144e5b045d1d1a8441f0703da3f | 3,844 | [
"gguf",
"text-generation",
"en",
"base_model:OpenScholar/Llama-3.1_OpenScholar-8B",
"base_model:quantized:OpenScholar/Llama-3.1_OpenScholar-8B",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-22T17:47:44.000Z | bartowski/Llama-3.1_OpenScholar-8B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-IQ2_M.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-IQ3_M.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-IQ3_XS.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-IQ4_XS.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q2_K.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q2_K_L.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q3_K_L.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q3_K_M.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q3_K_S.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q3_K_XL.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_0.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_0_4_4.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_0_4_8.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_0_8_8.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_K_L.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_K_M.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q4_K_S.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q5_K_L.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q5_K_M.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q5_K_S.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q6_K.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q6_K_L.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-Q8_0.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B-f16.gguf"
},
{
"rfilename": "Llama-3.1_OpenScholar-8B.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
674142c613624397251bb6aa | mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.2-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:17:58.000Z | 2 | 2 | false | 668ef95ad2052d699da15394cdb5932f730df05a | 1,310 | [
"transformers",
"gguf",
"en",
"base_model:ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2",
"base_model:quantized:ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-23T02:49:42.000Z | mradermacher/Mistral-Nemo-12B-ArliAI-RPMax-v1.2-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ1_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ1_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ2_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ2_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ2_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ3_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ3_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ3_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-IQ4_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q2_K.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q3_K_L.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q3_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q3_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_0.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q4_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q5_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q5_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-12B-ArliAI-RPMax-v1.2.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6741592bf7ff3d28ec437dd2 | mradermacher/WestKunai-Hermes-10.7b-test-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:17:52.000Z | 2 | 2 | false | e908445f7844911cc4114ca499f347ea40bd5e1e | 273 | [
"transformers",
"gguf",
"merge",
"mergekit",
"en",
"base_model:seyf1elislam/WestKunai-Hermes-10.7b-test",
"base_model:quantized:seyf1elislam/WestKunai-Hermes-10.7b-test",
"license:cc-by-nc-4.0",
"endpoints_compatible",
"region:us"
] | null | 2024-11-23T04:25:15.000Z | mradermacher/WestKunai-Hermes-10.7b-test-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.IQ4_XS.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q2_K.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q3_K_L.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q3_K_M.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q3_K_S.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q4_0_4_4.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q4_K_M.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q4_K_S.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q5_K_M.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q5_K_S.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q6_K.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.Q8_0.gguf"
},
{
"rfilename": "WestKunai-Hermes-10.7b-test.f16.gguf"
}
] | transformers | null |
67415f459be44d083e35b228 | mradermacher/Tulu-3.1-8B-SuperNova-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:17:42.000Z | 2 | 2 | false | c6062a28f9a41e66ea15bfe4faba3da4438cede4 | 826 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:bunnycore/Tulu-3.1-8B-SuperNova",
"base_model:quantized:bunnycore/Tulu-3.1-8B-SuperNova",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-23T04:51:17.000Z | mradermacher/Tulu-3.1-8B-SuperNova-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ1_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ1_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ2_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ2_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ2_XS.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ3_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ3_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ3_XS.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-IQ4_XS.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q2_K.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q3_K_L.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q3_K_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q3_K_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_0.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_K_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q4_K_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q5_K_M.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q5_K_S.gguf"
},
{
"rfilename": "Tulu-3.1-8B-SuperNova.i1-Q6_K.gguf"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
67419e92f8883755e0a775ea | mradermacher/Ice0.41-22.11-RP-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:18:22.000Z | 3 | 2 | false | 81f97512898ea89d4c27139049cb22a1cf05381e | 475 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:icefog72/Ice0.41-22.11-RP",
"base_model:quantized:icefog72/Ice0.41-22.11-RP",
"license:cc-by-nc-4.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-23T09:21:22.000Z | mradermacher/Ice0.41-22.11-RP-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ1_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ1_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ2_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ2_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ2_XS.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ3_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ3_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ3_XS.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-IQ4_XS.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q2_K.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q3_K_L.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q3_K_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q3_K_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_0.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_K_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q4_K_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q5_K_M.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q5_K_S.gguf"
},
{
"rfilename": "Ice0.41-22.11-RP.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6741a54206f2e52e3568a511 | mradermacher/Q2.5-MS-Mistoria-72b-v2-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:17:29.000Z | 2 | 2 | false | 63d312aea8a476730944bd617e3c5ad25b86aeef | 169 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:Steelskull/Q2.5-MS-Mistoria-72b-v2",
"base_model:quantized:Steelskull/Q2.5-MS-Mistoria-72b-v2",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-23T09:49:54.000Z | mradermacher/Q2.5-MS-Mistoria-72b-v2-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.IQ4_XS.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q2_K.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q3_K_L.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q3_K_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q3_K_S.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q4_K_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q4_K_S.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q5_K_M.gguf.part1of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q5_K_M.gguf.part2of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q5_K_S.gguf.part1of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q5_K_S.gguf.part2of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q6_K.gguf.part1of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q6_K.gguf.part2of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q8_0.gguf.part1of2"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.Q8_0.gguf.part2of2"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6741d3ec6d0146a7998ba7b2 | FGOTYT/TG_FGOT_Qwen2.5_7B | FGOTYT | False | library-not-detected | 2024-11-28T06:46:56.000Z | 2 | 2 | false | cfff9752d67fd732377dd71a3fca9f831d658056 | 241 | [
"safetensors",
"gguf",
"ru",
"dataset:FGOTYT/Telegram_FGOT_ru",
"base_model:Qwen/Qwen2.5-7B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-7B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-23T13:09:00.000Z | FGOTYT/TG_FGOT_Qwen2.5_7B | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Fgot_Official_7B.Q2_K.gguf"
},
{
"rfilename": "Fgot_Official_7B.Q4_K_M.gguf"
},
{
"rfilename": "Fgot_Official_7B.Q5_K.gguf"
},
{
"rfilename": "Fgot_Official_7B.Q6_K.gguf"
},
{
"rfilename": "Fgot_Official_7B.Q8_0.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "adapter_config.json"
},
{
"rfilename": "adapter_model.safetensors"
},
{
"rfilename": "added_tokens.json"
},
{
"rfilename": "merges.txt"
},
{
"rfilename": "special_tokens_map.json"
},
{
"rfilename": "tokenizer.json"
},
{
"rfilename": "tokenizer_config.json"
},
{
"rfilename": "vocab.json"
}
] | null | {"tokenizer_config": {"bos_token": null, "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %} {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n", "eos_token": "<|im_end|>", "pad_token": "<|PAD_TOKEN|>", "unk_token": null}} |
6741e48f3e568c70a7b3260f | FGOTYT/TG_FGOT_Qwen2.5_3B | FGOTYT | False | library-not-detected | 2024-11-28T02:17:25.000Z | 2 | 2 | false | db4e56b2c425eec77cd85c5499b501dbbb2dcb1b | 133 | [
"safetensors",
"gguf",
"ru",
"dataset:FGOTYT/Telegram_FGOT_ru",
"base_model:Qwen/Qwen2.5-3B-Instruct",
"base_model:quantized:Qwen/Qwen2.5-3B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-23T14:19:59.000Z | FGOTYT/TG_FGOT_Qwen2.5_3B | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Fgot_Official_3B.Q2_K.gguf"
},
{
"rfilename": "Fgot_Official_3B.Q4_K_M.gguf"
},
{
"rfilename": "Fgot_Official_3B.Q5_K.gguf"
},
{
"rfilename": "Fgot_Official_3B.Q6_K.gguf"
},
{
"rfilename": "Fgot_Official_3B.Q8_0.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "adapter_config.json"
},
{
"rfilename": "adapter_model.safetensors"
},
{
"rfilename": "added_tokens.json"
},
{
"rfilename": "merges.txt"
},
{
"rfilename": "special_tokens_map.json"
},
{
"rfilename": "tokenizer.json"
},
{
"rfilename": "tokenizer_config.json"
},
{
"rfilename": "vocab.json"
}
] | null | {"tokenizer_config": {"bos_token": null, "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n", "eos_token": "<|im_end|>", "pad_token": "<|PAD_TOKEN|>", "unk_token": null}} |
67421ccc8e47bd72030c1186 | mradermacher/NeuralDaredevil-12b-32k-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T09:17:19.000Z | 2 | 2 | false | 3533246937c545b27b3d7223709fbee5ca1270e2 | 307 | [
"transformers",
"gguf",
"merge",
"mergekit",
"lazymergekit",
"mlabonne/NeuralDaredevil-7B",
"en",
"base_model:mvpmaster/NeuralDaredevil-12b-32k",
"base_model:quantized:mvpmaster/NeuralDaredevil-12b-32k",
"endpoints_compatible",
"region:us"
] | null | 2024-11-23T18:19:56.000Z | mradermacher/NeuralDaredevil-12b-32k-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "NeuralDaredevil-12b-32k.IQ4_XS.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q2_K.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q3_K_L.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q3_K_M.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q3_K_S.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q4_0_4_4.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q4_K_M.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q4_K_S.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q5_K_M.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q5_K_S.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q6_K.gguf"
},
{
"rfilename": "NeuralDaredevil-12b-32k.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
674238e151cd6fb05baba231 | bartowski/Q2.5-MS-Mistoria-72b-v2-GGUF | bartowski | False | library-not-detected | 2024-11-23T23:03:19.000Z | 2 | 2 | false | e67a1c81233b323dd9663d91ff5a148b7ffb75d3 | 1,797 | [
"gguf",
"mergekit",
"merge",
"text-generation",
"base_model:Steelskull/Q2.5-MS-Mistoria-72b-v2",
"base_model:quantized:Steelskull/Q2.5-MS-Mistoria-72b-v2",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | text-generation | 2024-11-23T20:19:45.000Z | bartowski/Q2.5-MS-Mistoria-72b-v2-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ1_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ2_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ2_XS.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ2_XXS.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ3_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ3_XXS.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-IQ4_XS.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q2_K.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q2_K_L.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q3_K_L.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q3_K_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q3_K_S.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q3_K_XL.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q4_0.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q4_0_8_8.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q4_K_M.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q4_K_S.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q5_K_M/Q2.5-MS-Mistoria-72b-v2-Q5_K_M-00001-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q5_K_M/Q2.5-MS-Mistoria-72b-v2-Q5_K_M-00002-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q5_K_S/Q2.5-MS-Mistoria-72b-v2-Q5_K_S-00001-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q5_K_S/Q2.5-MS-Mistoria-72b-v2-Q5_K_S-00002-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q6_K/Q2.5-MS-Mistoria-72b-v2-Q6_K-00001-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q6_K/Q2.5-MS-Mistoria-72b-v2-Q6_K-00002-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q8_0/Q2.5-MS-Mistoria-72b-v2-Q8_0-00001-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2-Q8_0/Q2.5-MS-Mistoria-72b-v2-Q8_0-00002-of-00002.gguf"
},
{
"rfilename": "Q2.5-MS-Mistoria-72b-v2.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
674289b6304b8ff058d46613 | GraydientPlatformAPI/flux-inpainting-faster | GraydientPlatformAPI | False | library-not-detected | 2024-11-25T00:12:05.000Z | 2 | 2 | false | 194a1ef3d8dbec610d9ae7e30ff2aa3dc3d08251 | 58 | [
"safetensors",
"gguf",
"region:us"
] | null | 2024-11-24T02:04:38.000Z | GraydientPlatformAPI/flux-inpainting-faster | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "flux-dev.safetensors"
},
{
"rfilename": "flux-fill-inpainting-fp8-yogotatara.safetensors"
},
{
"rfilename": "flux1-canny-dev-lora.safetensors"
},
{
"rfilename": "flux1-depth-dev-lora.safetensors"
},
{
"rfilename": "flux1-dev-Q6_K.gguf"
},
{
"rfilename": "flux1-dev-Q8.gguf"
},
{
"rfilename": "flux1-fill-dev.safetensors"
},
{
"rfilename": "flux1-redux-dev.safetensors"
},
{
"rfilename": "flux_dev_fp8_scaled_diffusion_model.safetensors"
},
{
"rfilename": "sigclip_vision_patch14_384.safetensors"
},
{
"rfilename": "t5encoder-Q8.gguf"
}
] | null | null |
67429fd506f2e52e35ba2d6b | t8star/FLUX.1-Fill-dev-GGUF-Aix | t8star | False | library-not-detected | 2024-11-26T12:43:51.000Z | 5 | 2 | false | 011036fae5718977d9e9cb63a05c77f4902d6948 | 418 | [
"gguf",
"region:us"
] | null | 2024-11-24T03:39:01.000Z | t8star/FLUX.1-Fill-dev-GGUF-Aix | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Flux Tool Fill量化模型测评工作流.json"
},
{
"rfilename": "README.md"
},
{
"rfilename": "flux1-fill-dev-BF16.gguf"
},
{
"rfilename": "ggml-model-Q4_K_M.gguf"
},
{
"rfilename": "ggml-model-Q6_K.gguf"
},
{
"rfilename": "ggml-model-Q8_0.gguf"
},
{
"rfilename": "imagecreatemask.py"
}
] | null | null |
674357cdd3ad4510c1535e38 | bartowski/OrcaAgent-llama3.2-8b-GGUF | bartowski | False | not-popular-enough | 2024-11-24T19:31:13.000Z | 3 | 2 | false | e8aeb01053c3b15ac4a16adb7450cd05ff309e20 | 1,252 | [
"transformers",
"gguf",
"text-generation-inference",
"llama",
"trl",
"text-generation",
"en",
"dataset:microsoft/orca-agentinstruct-1M-v1",
"dataset:Isotonic/agentinstruct-1Mv1-combined",
"base_model:Isotonic/OrcaAgent-llama3.2-8b",
"base_model:quantized:Isotonic/OrcaAgent-llama3.2-8b",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-24T16:43:57.000Z | bartowski/OrcaAgent-llama3.2-8b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-IQ2_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-IQ3_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-IQ3_XS.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-IQ4_XS.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q2_K.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q2_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q3_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q3_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q3_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q3_K_XL.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_0.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_0_4_4.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_0_4_8.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_0_8_8.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q4_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q5_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q5_K_M.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q5_K_S.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q6_K.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q6_K_L.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-Q8_0.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b-f16.gguf"
},
{
"rfilename": "OrcaAgent-llama3.2-8b.imatrix"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6743a195aea8fc38accebd87 | ddh0/Cydonia-22B-v1.3-GGUF | ddh0 | False | library-not-detected | 2024-11-24T22:21:50.000Z | 2 | 2 | false | a40eb6b7462e6e9d539ae135edae2224f32dd817 | 150 | [
"gguf",
"base_model:TheDrummer/Cydonia-22B-v1.3",
"base_model:quantized:TheDrummer/Cydonia-22B-v1.3",
"license:other",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-24T21:58:45.000Z | ddh0/Cydonia-22B-v1.3-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Cydonia-22B-v1.3-q8_0-q4_K_S.gguf"
},
{
"rfilename": "Cydonia-22B-v1.3-q8_0-q6_K.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
674439d69d702ea38e7382b4 | mradermacher/Cakrawala-8B-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-29T01:45:48.000Z | 4 | 2 | false | 57aadfcd212453e8437116c84c51fcca9e4a9ab7 | 756 | [
"transformers",
"gguf",
"axolotl",
"en",
"dataset:NarrativAI/CakrawalaRP",
"base_model:NarrativAI/Cakrawala-Llama-3.1-8B",
"base_model:quantized:NarrativAI/Cakrawala-Llama-3.1-8B",
"license:mit",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-25T08:48:22.000Z | mradermacher/Cakrawala-8B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Cakrawala-8B.IQ4_XS.gguf"
},
{
"rfilename": "Cakrawala-8B.Q2_K.gguf"
},
{
"rfilename": "Cakrawala-8B.Q3_K_L.gguf"
},
{
"rfilename": "Cakrawala-8B.Q3_K_M.gguf"
},
{
"rfilename": "Cakrawala-8B.Q3_K_S.gguf"
},
{
"rfilename": "Cakrawala-8B.Q4_0_4_4.gguf"
},
{
"rfilename": "Cakrawala-8B.Q4_K_M.gguf"
},
{
"rfilename": "Cakrawala-8B.Q4_K_S.gguf"
},
{
"rfilename": "Cakrawala-8B.Q5_K_M.gguf"
},
{
"rfilename": "Cakrawala-8B.Q5_K_S.gguf"
},
{
"rfilename": "Cakrawala-8B.Q6_K.gguf"
},
{
"rfilename": "Cakrawala-8B.Q8_0.gguf"
},
{
"rfilename": "Cakrawala-8B.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6744406e18f0b9f39c43d188 | mradermacher/Thor-v1.1e-8b-1024k-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T10:45:29.000Z | 2 | 2 | false | 7f116d0d2f4d63cd1333aa5d4482e61faceee243 | 658 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Thor-v1.1e-8b-1024k",
"base_model:quantized:MrRobotoAI/Thor-v1.1e-8b-1024k",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-25T09:16:30.000Z | mradermacher/Thor-v1.1e-8b-1024k-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ1_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ1_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ2_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ2_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ2_XS.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ3_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ3_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ3_XS.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-IQ4_XS.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q2_K.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q3_K_L.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q3_K_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q3_K_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_0.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_K_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q4_K_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q5_K_M.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q5_K_S.gguf"
},
{
"rfilename": "Thor-v1.1e-8b-1024k.i1-Q6_K.gguf"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6744474b18f0b9f39c4657da | mradermacher/Thor-v1.2-8b-1024k-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T11:46:35.000Z | 2 | 2 | false | f9b24dc29dc01f7a2e31dff9a063a5ef06a20ee1 | 739 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Thor-v1.2-8b-1024k",
"base_model:quantized:MrRobotoAI/Thor-v1.2-8b-1024k",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-25T09:45:47.000Z | mradermacher/Thor-v1.2-8b-1024k-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ1_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ1_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ2_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ2_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ2_XS.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ3_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ3_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ3_XS.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-IQ4_XS.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q2_K.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q3_K_L.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q3_K_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q3_K_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_0.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_K_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q4_K_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q5_K_M.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q5_K_S.gguf"
},
{
"rfilename": "Thor-v1.2-8b-1024k.i1-Q6_K.gguf"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
674449752749138c01f33439 | mradermacher/Marco-01-slerp5-7B-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T18:00:11.000Z | 3 | 2 | false | 014a47175b21d3efaf9ed5c04322bbeecf1b183d | 415 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:allknowingroger/Marco-01-slerp5-7B",
"base_model:quantized:allknowingroger/Marco-01-slerp5-7B",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-25T09:55:01.000Z | mradermacher/Marco-01-slerp5-7B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Marco-01-slerp5-7B.IQ4_XS.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q2_K.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q3_K_L.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q3_K_M.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q3_K_S.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q4_0_4_4.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q4_K_M.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q4_K_S.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q5_K_M.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q5_K_S.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q6_K.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.Q8_0.gguf"
},
{
"rfilename": "Marco-01-slerp5-7B.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
67444eeb2749138c01f5cbb6 | QuantFactory/OneLLM-Doey-ChatQA-V1-Llama-3.2-1B-GGUF | QuantFactory | False | not-popular-enough | 2024-11-25T10:27:03.000Z | 5 | 2 | false | 5e2bf1e947b1ffde50b06467ff913a1078ad674f | 618 | [
"transformers",
"gguf",
"text-generation",
"en",
"dataset:nvidia/ChatQA-Training-Data",
"base_model:meta-llama/Llama-3.2-1B-Instruct",
"base_model:quantized:meta-llama/Llama-3.2-1B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-25T10:18:19.000Z | QuantFactory/OneLLM-Doey-ChatQA-V1-Llama-3.2-1B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q2_K.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q3_K_L.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q3_K_M.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q3_K_S.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q4_0.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q4_1.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q4_K_M.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q4_K_S.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q5_0.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q5_1.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q5_K_M.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q5_K_S.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q6_K.gguf"
},
{
"rfilename": "OneLLM-Doey-ChatQA-V1-Llama-3.2-1B.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
674452e99d702ea38e7bc06e | mradermacher/RP-Naughty-v1.0d-8b-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T11:28:45.000Z | 2 | 2 | false | da4267ea4ab22ab07f0da2e68c1c9c6d2bd8dcfe | 337 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/RP-Naughty-v1.0d-8b",
"base_model:quantized:MrRobotoAI/RP-Naughty-v1.0d-8b",
"endpoints_compatible",
"region:us"
] | null | 2024-11-25T10:35:21.000Z | mradermacher/RP-Naughty-v1.0d-8b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.IQ4_XS.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q2_K.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q3_K_L.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q3_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q3_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q4_0_4_4.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q4_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q4_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q5_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q5_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q6_K.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.Q8_0.gguf"
},
{
"rfilename": "RP-Naughty-v1.0d-8b.f16.gguf"
}
] | transformers | null |
67449b73db3726cf008c4d3e | mradermacher/RQwen-v0.1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-25T17:00:09.000Z | 2 | 2 | false | 7c120e21cf05051c1d4aeb9482b60bade45402d2 | 336 | [
"transformers",
"gguf",
"text-generation-inference",
"rqwen",
"qwen2",
"qwen2.5",
"instruct",
"chat",
"ehristoforu",
"trl",
"sft",
"en",
"ru",
"base_model:ehristoforu/RQwen-v0.1",
"base_model:quantized:ehristoforu/RQwen-v0.1",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-25T15:44:51.000Z | mradermacher/RQwen-v0.1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "RQwen-v0.1.IQ4_XS.gguf"
},
{
"rfilename": "RQwen-v0.1.Q2_K.gguf"
},
{
"rfilename": "RQwen-v0.1.Q3_K_L.gguf"
},
{
"rfilename": "RQwen-v0.1.Q3_K_M.gguf"
},
{
"rfilename": "RQwen-v0.1.Q3_K_S.gguf"
},
{
"rfilename": "RQwen-v0.1.Q4_0_4_4.gguf"
},
{
"rfilename": "RQwen-v0.1.Q4_K_M.gguf"
},
{
"rfilename": "RQwen-v0.1.Q4_K_S.gguf"
},
{
"rfilename": "RQwen-v0.1.Q5_K_M.gguf"
},
{
"rfilename": "RQwen-v0.1.Q5_K_S.gguf"
},
{
"rfilename": "RQwen-v0.1.Q6_K.gguf"
},
{
"rfilename": "RQwen-v0.1.Q8_0.gguf"
}
] | transformers | null |
67452e59dfd8f5eb67459cb8 | QuantFactory/llama-3.1-Asian-Bllossom-8B-Translator-GGUF | QuantFactory | False | pipeline-not-detected | 2024-11-26T02:58:55.000Z | 2 | 2 | false | 889194344d194bdda40962db365bbb83f2bcb7bb | 782 | [
"transformers",
"gguf",
"ko",
"vi",
"id",
"km",
"th",
"base_model:meta-llama/Llama-3.1-8B-Instruct",
"base_model:quantized:meta-llama/Llama-3.1-8B-Instruct",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T02:11:37.000Z | QuantFactory/llama-3.1-Asian-Bllossom-8B-Translator-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q2_K.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q3_K_L.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q3_K_M.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q3_K_S.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_0.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_0_4_4.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_0_4_8.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_0_8_8.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_1.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_K_M.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q4_K_S.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q5_0.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q5_1.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q5_K_M.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q5_K_S.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q6_K.gguf"
},
{
"rfilename": "llama-3.1-Asian-Bllossom-8B-Translator.Q8_0.gguf"
}
] | transformers | null |
67453a5a8eebd2eaf7e4c697 | second-state/FLUX.1-Fill-dev-GGUF | second-state | False | library-not-detected | 2024-11-27T13:45:48.000Z | 2 | 2 | false | f4370bf5aedfa33a5776cdf1b92cc492b48cdcff | 715 | [
"gguf",
"text-to-image",
"image-generation",
"flux",
"en",
"base_model:black-forest-labs/FLUX.1-Fill-dev",
"base_model:quantized:black-forest-labs/FLUX.1-Fill-dev",
"license:other",
"region:us"
] | text-to-image | 2024-11-26T03:02:50.000Z | second-state/FLUX.1-Fill-dev-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "ae.safetensors"
},
{
"rfilename": "flux1-fill-dev-Q2_K.gguf"
},
{
"rfilename": "flux1-fill-dev-Q3_K.gguf"
},
{
"rfilename": "flux1-fill-dev-Q4_0.gguf"
},
{
"rfilename": "flux1-fill-dev-Q4_1.gguf"
},
{
"rfilename": "flux1-fill-dev-Q4_K.gguf"
},
{
"rfilename": "flux1-fill-dev-Q5_0.gguf"
},
{
"rfilename": "flux1-fill-dev-Q5_1.gguf"
},
{
"rfilename": "flux1-fill-dev-Q8_0.gguf"
},
{
"rfilename": "flux1-fill-dev.safetensors"
}
] | null | null |
674564848eebd2eaf7f2cc4f | QuantFactory/Teleut-7b-GGUF | QuantFactory | False | pipeline-not-detected | 2024-11-26T06:39:48.000Z | 2 | 2 | false | 92fcb5fafc4cc4c2c8647b0f72fe7056da32f436 | 559 | [
"transformers",
"gguf",
"dataset:allenai/tulu-3-sft-mixture",
"base_model:Qwen/Qwen2.5-7B",
"base_model:quantized:Qwen/Qwen2.5-7B",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T06:02:44.000Z | QuantFactory/Teleut-7b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Teleut-7b.Q2_K.gguf"
},
{
"rfilename": "Teleut-7b.Q3_K_L.gguf"
},
{
"rfilename": "Teleut-7b.Q3_K_M.gguf"
},
{
"rfilename": "Teleut-7b.Q3_K_S.gguf"
},
{
"rfilename": "Teleut-7b.Q4_0.gguf"
},
{
"rfilename": "Teleut-7b.Q4_1.gguf"
},
{
"rfilename": "Teleut-7b.Q4_K_M.gguf"
},
{
"rfilename": "Teleut-7b.Q4_K_S.gguf"
},
{
"rfilename": "Teleut-7b.Q5_0.gguf"
},
{
"rfilename": "Teleut-7b.Q5_1.gguf"
},
{
"rfilename": "Teleut-7b.Q5_K_M.gguf"
},
{
"rfilename": "Teleut-7b.Q5_K_S.gguf"
},
{
"rfilename": "Teleut-7b.Q6_K.gguf"
},
{
"rfilename": "Teleut-7b.Q8_0.gguf"
}
] | transformers | null |
67456d2685003a36892702b8 | allenai/OLMo-2-1124-13B-GGUF | allenai | False | library-not-detected | 2024-11-26T22:48:18.000Z | 2 | 2 | false | 2ac13832b20ee9960068cc67eb881a270eea3628 | 958 | [
"gguf",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | null | 2024-11-26T06:39:34.000Z | allenai/OLMo-2-1124-13B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "OLMo-2-1124-13B-F16.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q2_K.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q3_K_L.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q3_K_M.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q3_K_S.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q4_0.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q4_K_M.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q4_K_S.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q5_0.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q5_K_M.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q5_K_S.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q6_K.gguf"
},
{
"rfilename": "OLMo-2-1124-13B-Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | null | null |
674594584bbfa218e32b919b | mradermacher/Frigg-v1.35-8b-HIGH-FANTASY-1024k-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T16:04:52.000Z | 2 | 2 | false | 58f3c051a7df254e81a50201ddc4d731a1300f23 | 324 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Frigg-v1.35-8b-HIGH-FANTASY-1024k",
"base_model:quantized:MrRobotoAI/Frigg-v1.35-8b-HIGH-FANTASY-1024k",
"endpoints_compatible",
"region:us"
] | null | 2024-11-26T09:26:48.000Z | mradermacher/Frigg-v1.35-8b-HIGH-FANTASY-1024k-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.IQ4_XS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q2_K.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q3_K_L.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q3_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q3_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q4_0_4_4.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q4_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q4_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q5_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q5_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q6_K.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.Q8_0.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745a259e08fe3da3f228a1f | QuantFactory/medius-erebus-magnum-14b-GGUF | QuantFactory | False | pipeline-not-detected | 2024-11-26T12:09:37.000Z | 2 | 2 | false | aedaea59359f23651d726aeaadd996d9fd9c4926 | 638 | [
"transformers",
"gguf",
"axolotl",
"generated_from_trainer",
"base_model:Qwen/Qwen2.5-14B",
"base_model:quantized:Qwen/Qwen2.5-14B",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T10:26:33.000Z | QuantFactory/medius-erebus-magnum-14b-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "medius-erebus-magnum-14b.Q2_K.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q3_K_L.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q3_K_M.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q3_K_S.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_0.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_0_4_4.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_0_4_8.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_0_8_8.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_1.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_K_M.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q4_K_S.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q5_0.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q5_1.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q5_K_M.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q5_K_S.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q6_K.gguf"
},
{
"rfilename": "medius-erebus-magnum-14b.Q8_0.gguf"
}
] | transformers | null |
6745a6a91934982716ee2c63 | codelion/MathCoT | codelion | False | pipeline-not-detected | 2024-11-26T12:08:10.000Z | 2 | 2 | false | 2a9c9d85e001c09f444b7a799fe1b4feece67522 | 113 | [
"transformers",
"safetensors",
"gguf",
"llama",
"text-generation-inference",
"unsloth",
"trl",
"en",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T10:44:57.000Z | codelion/MathCoT | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "adapter_config.json"
},
{
"rfilename": "adapter_model.safetensors"
},
{
"rfilename": "config.json"
},
{
"rfilename": "special_tokens_map.json"
},
{
"rfilename": "tokenizer.json"
},
{
"rfilename": "tokenizer_config.json"
},
{
"rfilename": "unsloth.F16.gguf"
},
{
"rfilename": "unsloth.Q4_K_M.gguf"
},
{
"rfilename": "unsloth.Q5_K_M.gguf"
},
{
"rfilename": "unsloth.Q8_0.gguf"
}
] | transformers | {"model_type": "llama", "tokenizer_config": {"bos_token": "<|begin_of_text|>", "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- set date_string = \"26 July 2024\" %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content'] %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message + builtin tools #}\n{{- \"<|start_header_id|>system<|end_header_id|>\n\n\" }}\n{%- if builtin_tools is defined or tools is not none %}\n {{- \"Environment: ipython\n\" }}\n{%- endif %}\n{%- if builtin_tools is defined %}\n {{- \"Tools: \" + builtin_tools | reject('equalto', 'code_interpreter') | join(\", \") + \"\n\n\"}}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\n\" }}\n{{- \"Today Date: \" + date_string + \"\n\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\n\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\n\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content'] %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\n\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\n\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\n\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {%- if builtin_tools is defined and tool_call.name in builtin_tools %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}\n {{- \"<|python_tag|>\" + tool_call.name + \".call(\" }}\n {%- for arg_name, arg_val in tool_call.arguments | items %}\n {{- arg_name + '=\"' + arg_val + '\"' }}\n {%- if not loop.last %}\n {{- \", \" }}\n {%- endif %}\n {%- endfor %}\n {{- \")\" }}\n {%- else %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {%- endif %}\n {%- if builtin_tools is defined %}\n {#- This means we're in ipython mode #}\n {{- \"<|eom_id|>\" }}\n {%- else %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\n\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}\n{%- endif %}\n", "eos_token": "<|eot_id|>", "pad_token": "<|finetune_right_pad_id|>"}} |
6745c44d5ded870bec7f26f0 | mradermacher/RP-Naughty-v1.2-8b-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T15:00:04.000Z | 2 | 2 | false | 5a29855dc3408801a1332edb2c45990c7f62549e | 721 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/RP-Naughty-v1.2-8b",
"base_model:quantized:MrRobotoAI/RP-Naughty-v1.2-8b",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-26T12:51:25.000Z | mradermacher/RP-Naughty-v1.2-8b-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ1_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ1_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ2_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ2_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ2_XS.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ2_XXS.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ3_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ3_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ3_XS.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ3_XXS.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-IQ4_XS.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q2_K.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q3_K_L.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q3_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q3_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_0.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q4_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q5_K_M.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q5_K_S.gguf"
},
{
"rfilename": "RP-Naughty-v1.2-8b.i1-Q6_K.gguf"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745c44fac9e5d54d4f76785 | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-V5-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T20:29:24.000Z | 2 | 2 | false | e6eb7476f621addc6795baab55d06dbadd6a9f8d | 373 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:netcat420/MFANN-Llama3.1-Abliterated-SLERP-V5",
"base_model:quantized:netcat420/MFANN-Llama3.1-Abliterated-SLERP-V5",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T12:51:27.000Z | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-V5-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.IQ4_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q2_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q3_K_L.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q3_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q3_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q4_0_4_4.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q4_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q4_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q5_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q5_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q6_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.Q8_0.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745c84dd77c37cc0aa4fbdc | mradermacher/marco-o1-uncensored-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T15:58:25.000Z | 2 | 2 | false | 4f989b87686aab0d8494c068b7f3a2a8fd813009 | 849 | [
"transformers",
"gguf",
"en",
"base_model:thirdeyeai/marco-o1-uncensored",
"base_model:quantized:thirdeyeai/marco-o1-uncensored",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T13:08:29.000Z | mradermacher/marco-o1-uncensored-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "marco-o1-uncensored.IQ4_XS.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q2_K.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q3_K_L.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q3_K_M.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q3_K_S.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q4_0_4_4.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q4_K_M.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q4_K_S.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q5_K_M.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q5_K_S.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q6_K.gguf"
},
{
"rfilename": "marco-o1-uncensored.Q8_0.gguf"
},
{
"rfilename": "marco-o1-uncensored.f16.gguf"
}
] | transformers | null |
6745cba3d77c37cc0aa64964 | mradermacher/LemonP_ALT-8B-Model_Stock-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T21:05:17.000Z | 2 | 2 | false | 798e06f36e8c61bcfa7e1f80c40193d36779b878 | 606 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:DreadPoor/LemonP_ALT-8B-Model_Stock",
"base_model:quantized:DreadPoor/LemonP_ALT-8B-Model_Stock",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T13:22:43.000Z | mradermacher/LemonP_ALT-8B-Model_Stock-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ1_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ1_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ2_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ2_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ2_XS.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ2_XXS.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ3_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ3_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ3_XS.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ3_XXS.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-IQ4_XS.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q2_K.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q3_K_L.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q3_K_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q3_K_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_0.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_K_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q4_K_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q5_K_M.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q5_K_S.gguf"
},
{
"rfilename": "LemonP_ALT-8B-Model_Stock.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745d181fa3bd57b738042d0 | mradermacher/Loki-v2.75-8b-EROTICA-1024k-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T14:54:46.000Z | 2 | 2 | false | 073969646c116a2c64756eeda29b6f9ee4dc3933 | 1,707 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Loki-v2.75-8b-EROTICA-1024k",
"base_model:quantized:MrRobotoAI/Loki-v2.75-8b-EROTICA-1024k",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-26T13:47:45.000Z | mradermacher/Loki-v2.75-8b-EROTICA-1024k-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ1_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ1_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ2_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ2_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ2_XS.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ3_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ3_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ3_XS.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-IQ4_XS.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q2_K.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q3_K_L.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q3_K_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q3_K_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_0.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_K_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q4_K_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q5_K_M.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q5_K_S.gguf"
},
{
"rfilename": "Loki-v2.75-8b-EROTICA-1024k.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745d8b0dc1e17262220ab93 | mradermacher/Alita99-8B-LINEAR-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T01:00:10.000Z | 2 | 2 | false | 98e20062c3892486b7f4a34efa02372d04b15834 | 737 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:DreadPoor/Alita99-8B-LINEAR",
"base_model:quantized:DreadPoor/Alita99-8B-LINEAR",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T14:18:24.000Z | mradermacher/Alita99-8B-LINEAR-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ1_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ1_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ2_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ2_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ2_XS.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ3_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ3_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ3_XS.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-IQ4_XS.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q2_K.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q3_K_L.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q3_K_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q3_K_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_0.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_K_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q4_K_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q5_K_M.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q5_K_S.gguf"
},
{
"rfilename": "Alita99-8B-LINEAR.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745d9e3c05112592794d6b5 | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T00:23:42.000Z | 2 | 2 | false | 3363b5673967519fd4b0ce99f65ace3e6aebcaef | 579 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:netcat420/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3",
"base_model:quantized:netcat420/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T14:23:31.000Z | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.IQ4_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q2_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q3_K_L.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q3_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q3_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q4_0_4_4.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q4_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q4_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q5_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q5_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q6_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.Q8_0.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745dceb5b7702e4089fdece | mradermacher/L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T17:16:40.000Z | 2 | 2 | false | 2027a52716f22282be978f78373c34baaa90087d | 384 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:DavidAU/L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B",
"base_model:quantized:DavidAU/L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T14:36:27.000Z | mradermacher/L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.IQ4_XS.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q2_K.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q3_K_L.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q3_K_M.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q3_K_S.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q4_K_M.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q4_K_S.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q5_K_M.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q5_K_S.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q6_K.gguf"
},
{
"rfilename": "L3-Dark_Mistress-The_Guilty_Pen-Uncensored-17.4B.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745e6e71b346685b8345b9f | mradermacher/Mistral-Nemo-Moderne-12B-FFT-experimental-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T21:00:09.000Z | 2 | 2 | false | 317c1458fddffb0f82ee16f44fbafe39fd87ca27 | 644 | [
"transformers",
"gguf",
"trl",
"orpo",
"en",
"dataset:nbeerbower/gutenberg2-dpo",
"dataset:nbeerbower/gutenberg-moderne-dpo",
"base_model:nbeerbower/Mistral-Nemo-Moderne-12B-FFT-experimental",
"base_model:quantized:nbeerbower/Mistral-Nemo-Moderne-12B-FFT-experimental",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T15:19:03.000Z | mradermacher/Mistral-Nemo-Moderne-12B-FFT-experimental-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ1_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ1_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ2_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ2_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ2_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ3_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ3_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ3_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-IQ4_XS.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q2_K.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q3_K_L.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q3_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q3_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_0.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q4_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q5_K_M.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q5_K_S.gguf"
},
{
"rfilename": "Mistral-Nemo-Moderne-12B-FFT-experimental.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745ec39de97757accda0737 | mradermacher/Frigg-v1.35-8b-HIGH-FANTASY-1024k-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T20:43:17.000Z | 2 | 2 | false | 9e49bf3f7f07136c73f2404e96a5f234aa28a76f | 567 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Frigg-v1.35-8b-HIGH-FANTASY-1024k",
"base_model:quantized:MrRobotoAI/Frigg-v1.35-8b-HIGH-FANTASY-1024k",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-26T15:41:45.000Z | mradermacher/Frigg-v1.35-8b-HIGH-FANTASY-1024k-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ1_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ1_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ2_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ2_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ2_XS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ3_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ3_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ3_XS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-IQ4_XS.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q2_K.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q3_K_L.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q3_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q3_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_0.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q4_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q5_K_M.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q5_K_S.gguf"
},
{
"rfilename": "Frigg-v1.35-8b-HIGH-FANTASY-1024k.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
6745f20f3024fc84ed188a6f | mradermacher/MFANNv0.25-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T00:06:59.000Z | 2 | 2 | false | 2383973fc9a1a52429433492750d7da499a26407 | 454 | [
"transformers",
"gguf",
"en",
"dataset:netcat420/MFANN",
"base_model:netcat420/MFANNv0.25",
"base_model:quantized:netcat420/MFANNv0.25",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T16:06:39.000Z | mradermacher/MFANNv0.25-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANNv0.25.IQ4_XS.gguf"
},
{
"rfilename": "MFANNv0.25.Q2_K.gguf"
},
{
"rfilename": "MFANNv0.25.Q3_K_L.gguf"
},
{
"rfilename": "MFANNv0.25.Q3_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.Q3_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.Q4_0_4_4.gguf"
},
{
"rfilename": "MFANNv0.25.Q4_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.Q4_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.Q5_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.Q5_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.Q6_K.gguf"
},
{
"rfilename": "MFANNv0.25.Q8_0.gguf"
},
{
"rfilename": "MFANNv0.25.f16.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745f5aa63ea9c3871df4ee6 | mradermacher/SeQwence-14B-EvolMergev1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T22:55:48.000Z | 2 | 2 | false | ade66336d7abe9e16e4cc98410e3b5e5350096f5 | 280 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:CultriX/SeQwence-14B-EvolMergev1",
"base_model:quantized:CultriX/SeQwence-14B-EvolMergev1",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T16:22:02.000Z | mradermacher/SeQwence-14B-EvolMergev1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.IQ4_XS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q2_K.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q3_K_L.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q3_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q3_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q4_0_4_4.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q4_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q4_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q5_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q5_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q6_K.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.Q8_0.gguf"
}
] | transformers | null |
6745f90ab5aa31e13189a95d | mradermacher/Qwestion-14B-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T18:21:45.000Z | 2 | 2 | false | c85074313b7d355d4c817d85db429bbd0de6badf | 486 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:CultriX/Qwestion-14B",
"base_model:quantized:CultriX/Qwestion-14B",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"conversational"
] | null | 2024-11-26T16:36:26.000Z | mradermacher/Qwestion-14B-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Qwestion-14B.IQ4_XS.gguf"
},
{
"rfilename": "Qwestion-14B.Q2_K.gguf"
},
{
"rfilename": "Qwestion-14B.Q3_K_L.gguf"
},
{
"rfilename": "Qwestion-14B.Q3_K_M.gguf"
},
{
"rfilename": "Qwestion-14B.Q3_K_S.gguf"
},
{
"rfilename": "Qwestion-14B.Q4_0_4_4.gguf"
},
{
"rfilename": "Qwestion-14B.Q4_K_M.gguf"
},
{
"rfilename": "Qwestion-14B.Q4_K_S.gguf"
},
{
"rfilename": "Qwestion-14B.Q5_K_M.gguf"
},
{
"rfilename": "Qwestion-14B.Q5_K_S.gguf"
},
{
"rfilename": "Qwestion-14B.Q6_K.gguf"
},
{
"rfilename": "Qwestion-14B.Q8_0.gguf"
},
{
"rfilename": "README.md"
}
] | transformers | null |
6745ff9734f3ffc66ad82f9e | Vikhrmodels/Vikhr-Qwen-2.5-1.5B-Instruct-GGUF | Vikhrmodels | False | pipeline-not-detected | 2024-11-26T19:21:19.000Z | 2 | 2 | false | f3d0a36f09a910b9f50ae1bf388d147aca0b75d4 | 986 | [
"llama.cpp",
"gguf",
"ru",
"en",
"dataset:Vikhrmodels/GrandMaster-PRO-MAX",
"base_model:Vikhrmodels/Vikhr-Qwen-2.5-1.5B-Instruct",
"base_model:quantized:Vikhrmodels/Vikhr-Qwen-2.5-1.5B-Instruct",
"license:apache-2.0",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T17:04:23.000Z | Vikhrmodels/Vikhr-Qwen-2.5-1.5B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ1_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ1_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ2_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ2_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ2_XS.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ2_XXS.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ3_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ3_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ3_XS.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ3_XXS.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ4_NL.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-IQ4_XS.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q2_K.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q2_K_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q3_K.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q3_K_L.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q3_K_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q3_K_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q4_0.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q4_1.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q4_K.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q4_K_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q5_0.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q5_1.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q5_K.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q5_K_M.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q5_K_S.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q6_K.gguf"
},
{
"rfilename": "Vikhr-Qwen-2.5-1.5b-Instruct-Q8_0.gguf"
}
] | llama.cpp | null |
6746022f3689873eba913c10 | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-V5-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T20:29:27.000Z | 2 | 2 | false | d3a46875d2be0f4ada91318d6769d567ac4a522a | 676 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:netcat420/MFANN-Llama3.1-Abliterated-SLERP-V5",
"base_model:quantized:netcat420/MFANN-Llama3.1-Abliterated-SLERP-V5",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T17:15:27.000Z | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-V5-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ1_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ1_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ2_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ2_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ2_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ2_XXS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ3_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ3_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ3_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ3_XXS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-IQ4_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q2_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q3_K_L.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q3_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q3_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_0.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q4_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q5_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q5_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-V5.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
674608df6592dda0a65bbcb6 | mradermacher/SeQwence-14B-EvolMergev1-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-26T23:00:09.000Z | 2 | 2 | false | 8f87f844c707e746a41422aceed0c380d9ea9a8b | 611 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:CultriX/SeQwence-14B-EvolMergev1",
"base_model:quantized:CultriX/SeQwence-14B-EvolMergev1",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T17:43:59.000Z | mradermacher/SeQwence-14B-EvolMergev1-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "README.md"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ1_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ1_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ2_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ2_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ2_XS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ2_XXS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ3_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ3_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ3_XS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ3_XXS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-IQ4_XS.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q2_K.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q3_K_L.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q3_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q3_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_0.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q4_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q5_K_M.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q5_K_S.gguf"
},
{
"rfilename": "SeQwence-14B-EvolMergev1.i1-Q6_K.gguf"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
67460d84f57940df86a721ed | mradermacher/Odin-v1.0-8b-FICTION-1024k-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-28T00:21:14.000Z | 2 | 2 | false | d0d31716d933a9e752c2ceeb4f33993062ac3f63 | 779 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:MrRobotoAI/Odin-v1.0-8b-FICTION-1024k",
"base_model:quantized:MrRobotoAI/Odin-v1.0-8b-FICTION-1024k",
"endpoints_compatible",
"region:us",
"imatrix"
] | null | 2024-11-26T18:03:48.000Z | mradermacher/Odin-v1.0-8b-FICTION-1024k-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ1_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ1_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ2_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ2_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ2_XS.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ2_XXS.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ3_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ3_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ3_XS.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ3_XXS.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-IQ4_XS.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q2_K.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q3_K_L.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q3_K_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q3_K_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_0.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_K_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q4_K_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q5_K_M.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q5_K_S.gguf"
},
{
"rfilename": "Odin-v1.0-8b-FICTION-1024k.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
674618641ee180c247987b3f | bartowski/Llama-Sentient-3.2-3B-Instruct-GGUF | bartowski | False | library-not-detected | 2024-11-26T19:18:51.000Z | 2 | 2 | false | bfb4a6c23bbb544154329911ba0b5bcd87005e74 | 1,071 | [
"gguf",
"Llama",
"Llama-Cpp",
"Llama3.2",
"Instruct",
"3B",
"bin",
"Sentient",
"text-generation",
"en",
"dataset:mlabonne/lmsys-arena-human-preference-55k-sharegpt",
"base_model:prithivMLmods/Llama-Sentient-3.2-3B-Instruct",
"base_model:quantized:prithivMLmods/Llama-Sentient-3.2-3B-Instruct",
"license:creativeml-openrail-m",
"endpoints_compatible",
"region:us",
"conversational"
] | text-generation | 2024-11-26T18:50:12.000Z | bartowski/Llama-Sentient-3.2-3B-Instruct-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-IQ2_M.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-IQ3_M.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-IQ3_XS.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-IQ4_XS.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q2_K.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q2_K_L.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q3_K_L.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q3_K_M.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q3_K_S.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q3_K_XL.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_0.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_0_4_4.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_0_4_8.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_0_8_8.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_K_L.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_K_M.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q4_K_S.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q5_K_L.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q5_K_M.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q5_K_S.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q6_K.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q6_K_L.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-Q8_0.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct-f16.gguf"
},
{
"rfilename": "Llama-Sentient-3.2-3B-Instruct.imatrix"
},
{
"rfilename": "README.md"
}
] | null | null |
674630c392249573dea874b9 | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T00:33:29.000Z | 2 | 2 | false | fba0e811f06e7c9c22c5e4f7fb8735f9a5ef3adc | 1,229 | [
"transformers",
"gguf",
"mergekit",
"merge",
"en",
"base_model:netcat420/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3",
"base_model:quantized:netcat420/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T20:34:11.000Z | mradermacher/MFANN-Llama3.1-Abliterated-SLERP-TIES-V3-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ1_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ1_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ2_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ2_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ2_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ2_XXS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ3_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ3_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ3_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ3_XXS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-IQ4_XS.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q2_K.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q3_K_L.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q3_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q3_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_0.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q4_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q5_K_M.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q5_K_S.gguf"
},
{
"rfilename": "MFANN-Llama3.1-Abliterated-SLERP-TIES-V3.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |
674638f9e676d0df39b0294e | mradermacher/MFANNv0.25-i1-GGUF | mradermacher | False | pipeline-not-detected | 2024-11-27T00:06:59.000Z | 2 | 2 | false | 798043be208c115128114e9f1f573870717aa9d2 | 792 | [
"transformers",
"gguf",
"en",
"dataset:netcat420/MFANN",
"base_model:netcat420/MFANNv0.25",
"base_model:quantized:netcat420/MFANNv0.25",
"license:llama3.1",
"endpoints_compatible",
"region:us",
"imatrix",
"conversational"
] | null | 2024-11-26T21:09:13.000Z | mradermacher/MFANNv0.25-i1-GGUF | [
{
"rfilename": ".gitattributes"
},
{
"rfilename": "MFANNv0.25.i1-IQ1_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ1_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ2_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ2_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ2_XS.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ2_XXS.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ3_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ3_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ3_XS.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ3_XXS.gguf"
},
{
"rfilename": "MFANNv0.25.i1-IQ4_XS.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q2_K.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q3_K_L.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q3_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q3_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_0.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_0_4_4.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_0_4_8.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_0_8_8.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q4_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q5_K_M.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q5_K_S.gguf"
},
{
"rfilename": "MFANNv0.25.i1-Q6_K.gguf"
},
{
"rfilename": "README.md"
},
{
"rfilename": "imatrix.dat"
}
] | transformers | null |