_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
674da183ac5c2b294ca5f50b
Volko76/Llama3.2-3B-Instruct-French-GGUF
Volko76
False
pipeline-not-detected
2024-12-02T12:13:18.000Z
0
0
false
c74c3f6b0eb0d7a15bb8ef02f4a16b0704979f06
0
[ "transformers", "safetensors", "gguf", "llama", "text-generation-inference", "unsloth", "trl", "en", "base_model:unsloth/Llama-3.2-3B-Instruct-bnb-4bit", "base_model:quantized:unsloth/Llama-3.2-3B-Instruct-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:01:07.000Z
Volko76/Llama3.2-3B-Instruct-French-GGUF
[ { "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.Q4_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 {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\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']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\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']|trim %}\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'] | trim + '<|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 {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\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|>"}}
674da27bfcb487528d18196b
mradermacher/retrobust_plusplus_3b_f16-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T12:23:26.000Z
0
0
false
20c5716c4a46d605d9f8cd9c69f2fd4e606af5a8
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "llama", "trl", "sft", "en", "base_model:scoliono/retrobust_plusplus_3b_f16", "base_model:quantized:scoliono/retrobust_plusplus_3b_f16", "license:apache-2.0", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:05:15.000Z
mradermacher/retrobust_plusplus_3b_f16-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "retrobust_plusplus_3b_f16.IQ4_XS.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q2_K.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q3_K_L.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q3_K_M.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q3_K_S.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q4_0_4_4.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q4_K_M.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q4_K_S.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q5_K_M.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q5_K_S.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q6_K.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.Q8_0.gguf" }, { "rfilename": "retrobust_plusplus_3b_f16.f16.gguf" } ]
transformers
null
674da282ac82e9086f44cc71
RamshaKK/llama3.1-Q4_K_M-gguf
RamshaKK
False
library-not-detected
2024-12-02T12:08:28.000Z
0
0
false
13c3c9d379419a37caf73c77010cb2d9065b56b9
0
[ "gguf", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:05:22.000Z
RamshaKK/llama3.1-Q4_K_M-gguf
[ { "rfilename": ".gitattributes" }, { "rfilename": "llama3.1-Q4_K_M.gguf" } ]
null
null
674da2e983a69c6fdb736c4e
mradermacher/code-omni_f3-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T12:07:59.000Z
0
0
false
84490bdd8f1618213bf34a5d9a655421e2674d57
0
[ "transformers", "gguf", "trl", "sft", "en", "base_model:ADHIZ/code-omni_f3", "base_model:quantized:ADHIZ/code-omni_f3", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:07:05.000Z
mradermacher/code-omni_f3-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "code-omni_f3.IQ4_XS.gguf" }, { "rfilename": "code-omni_f3.Q2_K.gguf" }, { "rfilename": "code-omni_f3.Q3_K_L.gguf" }, { "rfilename": "code-omni_f3.Q3_K_M.gguf" }, { "rfilename": "code-omni_f3.Q3_K_S.gguf" }, { "rfilename": "code-omni_f3.Q4_0_4_4.gguf" }, { "rfilename": "code-omni_f3.Q4_K_M.gguf" }, { "rfilename": "code-omni_f3.Q4_K_S.gguf" }, { "rfilename": "code-omni_f3.Q5_K_M.gguf" }, { "rfilename": "code-omni_f3.Q5_K_S.gguf" }, { "rfilename": "code-omni_f3.Q6_K.gguf" }, { "rfilename": "code-omni_f3.Q8_0.gguf" }, { "rfilename": "code-omni_f3.f16.gguf" } ]
transformers
null
674da302b7ca0946323452b4
jaspionjader/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_M-GGUF
jaspionjader
False
pipeline-not-detected
2024-12-02T12:08:02.000Z
0
0
false
314e5e19264f06b31023d112ed90be233952fa8a
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us", "imatrix" ]
null
2024-12-02T12:07:30.000Z
jaspionjader/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q5_k_m-imat.gguf" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674da3da3416d4f1bbf990b2
mradermacher/retrobust_plusplus_f16-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T12:17:25.000Z
0
0
false
ac3f1ccf5e0c3727d8d8884e0f9e29bb17287c56
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "llama", "trl", "sft", "en", "base_model:scoliono/retrobust_plusplus_f16", "base_model:quantized:scoliono/retrobust_plusplus_f16", "license:apache-2.0", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:11:06.000Z
mradermacher/retrobust_plusplus_f16-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "retrobust_plusplus_f16.IQ4_XS.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q2_K.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q3_K_L.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q3_K_M.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q3_K_S.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q4_0_4_4.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q4_K_M.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q4_K_S.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q5_K_M.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q5_K_S.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q6_K.gguf" }, { "rfilename": "retrobust_plusplus_f16.Q8_0.gguf" }, { "rfilename": "retrobust_plusplus_f16.f16.gguf" } ]
transformers
null
674da3ff249700a19b7413f9
mradermacher/retrobust_plusplus_combined_3b_f16-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T12:33:25.000Z
0
0
false
b5859c62ffb0253f5aa07700166888a2a54c91bf
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "llama", "trl", "sft", "en", "base_model:scoliono/retrobust_plusplus_combined_3b_f16", "base_model:quantized:scoliono/retrobust_plusplus_combined_3b_f16", "license:apache-2.0", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:11:43.000Z
mradermacher/retrobust_plusplus_combined_3b_f16-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.IQ4_XS.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q2_K.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q3_K_L.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q3_K_M.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q3_K_S.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q4_0_4_4.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q4_K_M.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q4_K_S.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q5_K_M.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q5_K_S.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q6_K.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.Q8_0.gguf" }, { "rfilename": "retrobust_plusplus_combined_3b_f16.f16.gguf" } ]
transformers
null
674da3ffff22a1e4e28f6927
mav23/selfrag_llama2_7b-GGUF
mav23
False
library-not-detected
2024-12-02T12:55:44.000Z
0
0
false
8aced014bbfdc575872472b010ae39aff004775f
0
[ "gguf", "arxiv:2310.11511", "license:mit", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:11:43.000Z
mav23/selfrag_llama2_7b-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "selfrag_llama2_7b.Q2_K.gguf" }, { "rfilename": "selfrag_llama2_7b.Q3_K.gguf" }, { "rfilename": "selfrag_llama2_7b.Q3_K_L.gguf" }, { "rfilename": "selfrag_llama2_7b.Q3_K_M.gguf" }, { "rfilename": "selfrag_llama2_7b.Q3_K_S.gguf" }, { "rfilename": "selfrag_llama2_7b.Q4_0.gguf" }, { "rfilename": "selfrag_llama2_7b.Q4_1.gguf" }, { "rfilename": "selfrag_llama2_7b.Q4_K.gguf" }, { "rfilename": "selfrag_llama2_7b.Q4_K_M.gguf" }, { "rfilename": "selfrag_llama2_7b.Q4_K_S.gguf" }, { "rfilename": "selfrag_llama2_7b.Q5_0.gguf" }, { "rfilename": "selfrag_llama2_7b.Q5_1.gguf" }, { "rfilename": "selfrag_llama2_7b.Q5_K.gguf" }, { "rfilename": "selfrag_llama2_7b.Q5_K_M.gguf" }, { "rfilename": "selfrag_llama2_7b.Q5_K_S.gguf" }, { "rfilename": "selfrag_llama2_7b.Q6_K.gguf" }, { "rfilename": "selfrag_llama2_7b.Q8_0.gguf" } ]
null
null
674da4a79920f975a4b7d90a
mattritchey/pancho-v1-qw25-3B-UNAMGS-Q4_K_M-GGUF
mattritchey
False
pipeline-not-detected
2024-12-02T12:14:42.000Z
0
0
false
94cb88a9de892b33bfb10e0ae99c58c94a8f24aa
0
[ "peft", "gguf", "generated_from_trainer", "llama-cpp", "gguf-my-repo", "en", "dataset:Magpie-Align/Magpie-Pro-MT-300K-v0.1", "dataset:Magpie-Align/Magpie-Llama-3.1-Pro-MT-300K-Filtered", "base_model:fblgit/pancho-v1-qw25-3B-UNAMGS", "base_model:adapter:fblgit/pancho-v1-qw25-3B-UNAMGS", "license:other", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:14:31.000Z
mattritchey/pancho-v1-qw25-3B-UNAMGS-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "pancho-v1-qw25-3b-unamgs-q4_k_m.gguf" } ]
peft
null
674da4c034b8cc670194618b
mattritchey/83k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit-Q4_K_M-GGUF
mattritchey
False
pipeline-not-detected
2024-12-02T12:15:00.000Z
0
0
false
24f6d585dc816d938a48cac7768b5b24004e9292
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "qwen2", "trl", "sft", "llama-cpp", "gguf-my-repo", "en", "dataset:UncovAI/fineweb_CC-MAIN-2024-18_100k_output_UncovAI_83362", "base_model:FlofloB/83k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit", "base_model:quantized:FlofloB/83k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:14:56.000Z
mattritchey/83k_continued_pretraining_Qwen2.5-0.5B-Instruct_Unsloth_merged_16bit-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "83k_continued_pretraining_qwen2.5-0.5b-instruct_unsloth_merged_16bit-q4_k_m.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674da54cbf0fc31bb0594c91
mradermacher/Lamarck-14B-v0.1-experimental-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T17:11:32.000Z
0
0
false
1c1118e293e56fd6caf1c0d2eef0c19f6a7b79f0
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:sometimesanotion/Lamarck-14B-v0.1-experimental", "base_model:quantized:sometimesanotion/Lamarck-14B-v0.1-experimental", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:17:16.000Z
mradermacher/Lamarck-14B-v0.1-experimental-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Lamarck-14B-v0.1-experimental.IQ4_XS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q2_K.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q3_K_L.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q3_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q3_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q4_0_4_4.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q4_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q4_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q5_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q5_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q6_K.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674da5e4de17846db8196058
Seb-el-famoso/bge-m3-Q8_0-GGUF
Seb-el-famoso
False
not-popular-enough
2024-12-02T12:19:54.000Z
0
0
false
eda2d2c16669ba5a86b31bb273b076996f71464f
0
[ "sentence-transformers", "gguf", "feature-extraction", "sentence-similarity", "llama-cpp", "gguf-my-repo", "base_model:BAAI/bge-m3", "base_model:quantized:BAAI/bge-m3", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
sentence-similarity
2024-12-02T12:19:48.000Z
Seb-el-famoso/bge-m3-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "bge-m3-q8_0.gguf" } ]
sentence-transformers
null
674da8706214e7bbcee55529
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q4_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T12:31:02.000Z
0
0
false
c116a43460bf4d3fecc8e4b0968242b276b950c4
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:30:40.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q4_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q4_k_s.gguf" } ]
transformers
null
674da8a6be9543ea1a1e6be4
mradermacher/Math-IIO-7B-Instruct-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T15:52:19.000Z
0
0
false
dff1b57d3e1284f533d304b3f5e37b8da3aab8d8
0
[ "transformers", "gguf", "safetensors", "qwen2.5", "7B", "Instruct", "Math", "CoT", "one-shot", "en", "dataset:prithivMLmods/Math-IIO-68K-Mini", "base_model:prithivMLmods/Math-IIO-7B-Instruct", "base_model:quantized:prithivMLmods/Math-IIO-7B-Instruct", "license:creativeml-openrail-m", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T12:31:34.000Z
mradermacher/Math-IIO-7B-Instruct-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ1_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ1_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ2_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ2_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ2_XS.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ2_XXS.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ3_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ3_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ3_XS.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ3_XXS.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-IQ4_XS.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q2_K.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q3_K_L.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q3_K_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q3_K_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_0.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_0_4_4.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_0_4_8.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_0_8_8.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_K_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q4_K_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q5_K_M.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q5_K_S.gguf" }, { "rfilename": "Math-IIO-7B-Instruct.i1-Q6_K.gguf" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674da9111228102cc1b4b802
mradermacher/Llama-3.2-3B-COTv2.2-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:29:38.000Z
0
0
false
e5c56daebbaa18c47475c3e5ad7f56b6909b24ea
0
[ "transformers", "gguf", "en", "dataset:ericflo/Llama-3.2-3B-COT", "base_model:ericflo/Llama-3.2-3B-COTv2.2", "base_model:quantized:ericflo/Llama-3.2-3B-COTv2.2", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:33:21.000Z
mradermacher/Llama-3.2-3B-COTv2.2-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Llama-3.2-3B-COTv2.2.IQ4_XS.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q2_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q3_K_L.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q3_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q3_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q4_0_4_4.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q4_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q4_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q5_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q5_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q6_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.Q8_0.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.2.f16.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674da928be9543ea1a1e952a
joaomiranda27/llama-3.1-8B-texto-para-sql
joaomiranda27
False
pipeline-not-detected
2024-12-02T12:35:01.000Z
0
0
false
27a33a3d9c8dbfa854dcef6319dc2c0b554b7e1e
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:33:44.000Z
joaomiranda27/llama-3.1-8B-texto-para-sql
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "llama"}
674da9bb6214e7bbcee5de08
jwiggerthale/Teuken-7B-instruct-commercial-v0.4-Q4_K_M-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T12:36:35.000Z
0
0
false
f9c5487ed633011784e39a67eae7d1b0a3cb56f4
0
[ "transformers", "gguf", "llama-cpp", "gguf-my-repo", "text-generation", "de", "bg", "cs", "da", "el", "en", "es", "et", "fi", "fr", "ga", "hr", "hu", "it", "lt", "lv", "mt", "nl", "pl", "pt", "ro", "sl", "sv", "sk", "base_model:openGPT-X/Teuken-7B-instruct-commercial-v0.4", "base_model:quantized:openGPT-X/Teuken-7B-instruct-commercial-v0.4", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T12:36:11.000Z
jwiggerthale/Teuken-7B-instruct-commercial-v0.4-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "teuken-7b-instruct-commercial-v0.4-q4_k_m.gguf" } ]
transformers
null
674daa4407e8615494934caf
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q4_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T12:38:50.000Z
0
0
false
519270f66ed10c813e61818b22d4386007b42046
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:38:28.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q4_k_m.gguf" } ]
transformers
null
674dab829695f8294c3f09a8
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T12:44:13.000Z
0
0
false
8c153ea95c14b47846b9abd1be7f91c318f682ab
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:43:46.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q5_k_s.gguf" } ]
transformers
null
674dac5db5b28b4805069be9
jwiggerthale/Teuken-7B-instruct-commercial-v0.4-Q2_K-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T12:47:41.000Z
0
0
false
4943d5672e646d0cec2526221ea944da31b923af
0
[ "transformers", "gguf", "llama-cpp", "gguf-my-repo", "text-generation", "de", "bg", "cs", "da", "el", "en", "es", "et", "fi", "fr", "ga", "hr", "hu", "it", "lt", "lv", "mt", "nl", "pl", "pt", "ro", "sl", "sv", "sk", "base_model:openGPT-X/Teuken-7B-instruct-commercial-v0.4", "base_model:quantized:openGPT-X/Teuken-7B-instruct-commercial-v0.4", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T12:47:25.000Z
jwiggerthale/Teuken-7B-instruct-commercial-v0.4-Q2_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "teuken-7b-instruct-commercial-v0.4-q2_k.gguf" } ]
transformers
null
674daccfd3f8b0106ee620ff
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T12:49:44.000Z
0
0
false
99799b4b27363e301c806e667aae8ec17f5db3ba
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:49:19.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q5_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q5_k_m.gguf" } ]
transformers
null
674dada334b8cc67019703b6
tensorblock/fietje-2-instruct-GGUF
tensorblock
False
explicit-opt-out
2024-12-02T14:22:27.000Z
0
0
false
5c3aa4e29bf83c69400fec4a93cd32cf4db00bb0
0
[ "gguf", "trl", "fietje", "alignment-handbook", "sft", "TensorBlock", "GGUF", "text-generation", "nl", "dataset:BramVanroy/ultrachat_200k_dutch", "dataset:BramVanroy/no_robots_dutch", "dataset:BramVanroy/belebele_dutch", "base_model:BramVanroy/fietje-2-instruct", "base_model:quantized:BramVanroy/fietje-2-instruct", "license:mit", "region:us", "conversational" ]
text-generation
2024-12-02T12:52:51.000Z
tensorblock/fietje-2-instruct-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "fietje-2-instruct-Q2_K.gguf" }, { "rfilename": "fietje-2-instruct-Q3_K_L.gguf" }, { "rfilename": "fietje-2-instruct-Q3_K_M.gguf" }, { "rfilename": "fietje-2-instruct-Q3_K_S.gguf" }, { "rfilename": "fietje-2-instruct-Q4_0.gguf" }, { "rfilename": "fietje-2-instruct-Q4_K_M.gguf" }, { "rfilename": "fietje-2-instruct-Q4_K_S.gguf" }, { "rfilename": "fietje-2-instruct-Q5_0.gguf" }, { "rfilename": "fietje-2-instruct-Q5_K_M.gguf" }, { "rfilename": "fietje-2-instruct-Q5_K_S.gguf" }, { "rfilename": "fietje-2-instruct-Q6_K.gguf" }, { "rfilename": "fietje-2-instruct-Q8_0.gguf" } ]
null
null
674dae34c214a65ebbbfece3
mradermacher/Gemma2Slerp3-27B-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T15:45:35.000Z
0
0
false
4cf899ffa0349abecdf8d564e645137823955a84
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:allknowingroger/Gemma2Slerp3-27B", "base_model:quantized:allknowingroger/Gemma2Slerp3-27B", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:55:16.000Z
mradermacher/Gemma2Slerp3-27B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Gemma2Slerp3-27B.IQ4_XS.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q2_K.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q3_K_L.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q3_K_M.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q3_K_S.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q4_K_M.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q4_K_S.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q5_K_M.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q5_K_S.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q6_K.gguf" }, { "rfilename": "Gemma2Slerp3-27B.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674daeafdecd216f112f3090
UKPMAN0/Astrea-RP-v1-4B-Q4_K_M-GGUF
UKPMAN0
False
library-not-detected
2024-12-02T12:57:34.000Z
0
0
false
676def753d390ea14b2fbfe46b537b59df792dbe
0
[ "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:Aryanne/Astrea-RP-v1-4B", "base_model:quantized:Aryanne/Astrea-RP-v1-4B", "license:other", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:57:19.000Z
UKPMAN0/Astrea-RP-v1-4B-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "astrea-rp-v1-4b-q4_k_m.gguf" } ]
null
null
674daf150e1896a01d3adbcf
tensorblock/Nanbeige2-16B-Chat-GGUF
tensorblock
False
library-not-detected
2024-12-02T20:22:39.000Z
0
0
false
1f98b5953c1e4588f654d59cf09e8af06fd21667
0
[ "gguf", "llm", "TensorBlock", "GGUF", "text-generation", "en", "zh", "base_model:duoqi/Nanbeige2-16B-Chat", "base_model:quantized:duoqi/Nanbeige2-16B-Chat", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T12:59:01.000Z
tensorblock/Nanbeige2-16B-Chat-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Nanbeige2-16B-Chat-Q2_K.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q3_K_L.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q3_K_M.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q3_K_S.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q4_0.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q4_K_M.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q4_K_S.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q5_0.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q5_K_M.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q5_K_S.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q6_K.gguf" }, { "rfilename": "Nanbeige2-16B-Chat-Q8_0.gguf" }, { "rfilename": "README.md" } ]
null
null
674daf2695fa24cbf89ce36c
mav23/LLaMA2-13B-Tiefighter-GGUF
mav23
False
library-not-detected
2024-12-02T14:19:53.000Z
0
0
false
5bb17483a644b22d1d1386a3dbc41b8486aa8b1b
0
[ "gguf", "license:llama2", "endpoints_compatible", "region:us" ]
null
2024-12-02T12:59:18.000Z
mav23/LLaMA2-13B-Tiefighter-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama2-13b-tiefighter.Q2_K.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q3_K.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q3_K_L.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q3_K_M.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q3_K_S.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q4_0.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q4_1.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q4_K.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q4_K_M.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q4_K_S.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q5_0.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q5_1.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q5_K.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q5_K_M.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q5_K_S.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q6_K.gguf" }, { "rfilename": "llama2-13b-tiefighter.Q8_0.gguf" } ]
null
null
674daf419a2382bb17afb56c
mradermacher/Gemma2SimPO-27B-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T15:52:19.000Z
0
0
false
a7dc3bb591853a9886459bb83a24946d41bbd244
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:hotmailuser/Gemma2SimPO-27B", "base_model:quantized:hotmailuser/Gemma2SimPO-27B", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T12:59:45.000Z
mradermacher/Gemma2SimPO-27B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Gemma2SimPO-27B.IQ4_XS.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q2_K.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q3_K_L.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q3_K_M.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q3_K_S.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q4_K_M.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q4_K_S.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q5_K_M.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q5_K_S.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q6_K.gguf" }, { "rfilename": "Gemma2SimPO-27B.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674daf5bf1f674e0d5118b23
mradermacher/Eidolon-v3.1-14B-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T15:56:51.000Z
0
0
false
e18d2d25fa7f60fd069d6f40cbb760fc7fee2018
0
[ "transformers", "gguf", "mergekit", "merge", "not-for-all-audiences", "en", "base_model:Lambent/Eidolon-v3.1-14B", "base_model:quantized:Lambent/Eidolon-v3.1-14B", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T13:00:11.000Z
mradermacher/Eidolon-v3.1-14B-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ1_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ1_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ2_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ2_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ2_XS.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ2_XXS.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ3_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ3_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ3_XS.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ3_XXS.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-IQ4_XS.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q2_K.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q3_K_L.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q3_K_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q3_K_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_0.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_0_4_4.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_0_4_8.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_0_8_8.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_K_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q4_K_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q5_K_M.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q5_K_S.gguf" }, { "rfilename": "Eidolon-v3.1-14B.i1-Q6_K.gguf" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674dafa4ce1b7001404a885f
gglabs/Mistral-Nemo-1130-v1.1.6-30-epoch
gglabs
False
pipeline-not-detected
2024-12-02T13:03:44.000Z
0
0
false
b8a3507fb4a922cbe42e06f964a3f75a18b005c8
0
[ "transformers", "gguf", "mistral", "text-generation-inference", "unsloth", "en", "base_model:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "base_model:quantized:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:01:24.000Z
gglabs/Mistral-Nemo-1130-v1.1.6-30-epoch
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "mistral"}
674db0386214e7bbcee7f430
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q6_K-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T13:04:21.000Z
0
0
false
6a50fd4a2ffef2022e69b33e6d2f351923d94376
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T13:03:52.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q6_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q6_k.gguf" } ]
transformers
null
674db0a8249700a19b77e05a
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q8_0-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T13:06:20.000Z
0
0
false
bdf24e6490e6e9f9a3be6b741e7ed199b4f7ed6a
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "base_model:quantized:MrRobotoAI/Frigg-v1.4-8b-HIGH-FANTASY8", "endpoints_compatible", "region:us" ]
null
2024-12-02T13:05:44.000Z
Triangle104/Frigg-v1.4-8b-HIGH-FANTASY8-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.4-8b-high-fantasy8-q8_0.gguf" } ]
transformers
null
674db0f0c7c1804e3fbdc485
hafizizaironi/llama3.2_trained7
hafizizaironi
False
pipeline-not-detected
2024-12-02T13:07:45.000Z
0
0
false
714ebd0993ed0d1aba9e0197eb31b532b90a5535
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:06:56.000Z
hafizizaironi/llama3.2_trained7
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
transformers
{"model_type": "llama"}
674db17d3416d4f1bbfd0564
mradermacher/Llama-3.1-8B-instruct-psycology-8k_data-w-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T13:37:39.000Z
0
0
false
2a7a3f59010005686b1db5a691b55a49eb73b6f3
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "llama", "trl", "en", "base_model:wassimm/Llama-3.1-8B-instruct-psycology-8k_data-w", "base_model:quantized:wassimm/Llama-3.1-8B-instruct-psycology-8k_data-w", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:09:17.000Z
mradermacher/Llama-3.1-8B-instruct-psycology-8k_data-w-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.IQ4_XS.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q2_K.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q3_K_L.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q3_K_M.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q3_K_S.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q4_0_4_4.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q4_K_M.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q4_K_S.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q5_K_M.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q5_K_S.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q6_K.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.Q8_0.gguf" }, { "rfilename": "Llama-3.1-8B-instruct-psycology-8k_data-w.f16.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674db1d0fcb487528d1c6d96
hafizizaironi/llama3.2_trained7q4km_instruct
hafizizaironi
False
pipeline-not-detected
2024-12-02T13:11:13.000Z
0
0
false
8f02e58779af55e5dc152796f0696e06b36cbe2d
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:10:40.000Z
hafizizaironi/llama3.2_trained7q4km_instruct
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "llama"}
674db2e8bccbc9defecdf6f4
mradermacher/Behemoth-v1.2-Magnum-v4-123B-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:43:58.000Z
0
0
false
30802cc9983131ad72d716416be30c6bd5b4a026
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:knifeayumu/Behemoth-v1.2-Magnum-v4-123B", "base_model:quantized:knifeayumu/Behemoth-v1.2-Magnum-v4-123B", "license:other", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T13:15:20.000Z
mradermacher/Behemoth-v1.2-Magnum-v4-123B-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ1_M.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ1_S.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ2_M.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ2_S.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ2_XS.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ2_XXS.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ3_M.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ3_M.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ3_XXS.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ4_XS.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-IQ4_XS.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q2_K.gguf" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_L.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_L.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_M.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_M.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_S.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q3_K_S.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_0.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_0.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_K_M.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_K_M.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_K_S.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q4_K_S.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q5_K_M.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q5_K_M.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q5_K_S.gguf.part1of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q5_K_S.gguf.part2of2" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q6_K.gguf.part1of3" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q6_K.gguf.part2of3" }, { "rfilename": "Behemoth-v1.2-Magnum-v4-123B.i1-Q6_K.gguf.part3of3" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674db383ee93f1e520450113
jackboot/uwu-qwen-32b-Q4_K_M-GGUF
jackboot
False
pipeline-not-detected
2024-12-02T13:23:46.000Z
0
0
false
4882783c1e582cb02f5940243dda718b3116d9e6
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:jackboot/uwu-qwen-32b", "base_model:quantized:jackboot/uwu-qwen-32b", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:17:55.000Z
jackboot/uwu-qwen-32b-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "uwu-qwen-32b-q4_k_m.gguf" } ]
transformers
null
674db415b292a4122df7dba9
SWAH-KTH/lora_model_2
SWAH-KTH
False
pipeline-not-detected
2024-12-02T13:23:25.000Z
0
0
false
defb5084d08f009977ce569e27f044c1ac994dad
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:20:21.000Z
SWAH-KTH/lora_model_2
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.F16.gguf" } ]
transformers
{"model_type": "llama"}
674db55e0e7074a8b3e88277
Triangle104/Rocinante-Prism_V1.0-Q4_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T13:26:19.000Z
0
0
false
242eed11faa03777330c55373df32d797fad2852
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:Triangle104/Rocinante-Prism_V1.0", "base_model:quantized:Triangle104/Rocinante-Prism_V1.0", "endpoints_compatible", "region:us", "imatrix" ]
null
2024-12-02T13:25:50.000Z
Triangle104/Rocinante-Prism_V1.0-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" }, { "rfilename": "rocinante-prism_v1.0-q4_k_m-imat.gguf" } ]
transformers
null
674db63abf4271b9d4fb808b
jwiggerthale/Llama-3.2-3B-Q2_K-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T13:29:39.000Z
0
0
false
3d9d06689b77245f4a755eb11c0edf56c0c925ff
0
[ "transformers", "gguf", "facebook", "meta", "pytorch", "llama", "llama-3", "llama-cpp", "gguf-my-repo", "text-generation", "en", "de", "fr", "it", "pt", "hi", "es", "th", "base_model:meta-llama/Llama-3.2-3B", "base_model:quantized:meta-llama/Llama-3.2-3B", "license:llama3.2", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T13:29:30.000Z
jwiggerthale/Llama-3.2-3B-Q2_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama-3.2-3b-q2_k.gguf" } ]
transformers
null
674db6ad61fc24e1d633a952
mradermacher/QwQ-32B-Coder-Fusion-7030-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T17:07:51.000Z
0
0
false
f6552db10ec91f16426a8ec0e44f17900fa6a07d
0
[ "transformers", "gguf", "chat", "abliterated", "uncensored", "en", "base_model:huihui-ai/QwQ-32B-Coder-Fusion-7030", "base_model:quantized:huihui-ai/QwQ-32B-Coder-Fusion-7030", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:31:25.000Z
mradermacher/QwQ-32B-Coder-Fusion-7030-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.IQ4_XS.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q2_K.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q3_K_L.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q3_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q3_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q4_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q4_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q5_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q5_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q6_K.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-7030.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674db6b54c48b2c004ae19c9
jwiggerthale/Llama-3.2-3B-Q4_0-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T13:31:44.000Z
0
0
false
404d998a7889b1bc97b9eb3ebaf085b4ce88e934
0
[ "transformers", "gguf", "facebook", "meta", "pytorch", "llama", "llama-3", "llama-cpp", "gguf-my-repo", "text-generation", "en", "de", "fr", "it", "pt", "hi", "es", "th", "base_model:meta-llama/Llama-3.2-3B", "base_model:quantized:meta-llama/Llama-3.2-3B", "license:llama3.2", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T13:31:33.000Z
jwiggerthale/Llama-3.2-3B-Q4_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama-3.2-3b-q4_0.gguf" } ]
transformers
null
674db7380e7074a8b3e8e115
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q4_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T13:34:05.000Z
0
0
false
4873caaac1b0a81cf4a2ee8d3f19c455b3ae9992
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T13:33:44.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q4_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q4_k_s.gguf" } ]
transformers
null
674dba30d8d6b6e71656d0bd
mradermacher/EZO-QwQ-32B-Preview-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:28:33.000Z
0
0
false
b39e87a9afefcd3f251ab8a88ae03776b5710d30
0
[ "transformers", "gguf", "mergekit", "merge", "chat", "ja", "base_model:nitky/EZO-QwQ-32B-Preview", "base_model:quantized:nitky/EZO-QwQ-32B-Preview", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:46:24.000Z
mradermacher/EZO-QwQ-32B-Preview-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "EZO-QwQ-32B-Preview.IQ4_XS.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q2_K.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q3_K_L.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q3_K_M.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q3_K_S.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q4_K_M.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q4_K_S.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q5_K_M.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q5_K_S.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q6_K.gguf" }, { "rfilename": "EZO-QwQ-32B-Preview.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dbb304bfca76be8321437
benliinz/shiji
benliinz
False
pipeline-not-detected
2024-12-02T14:58:16.000Z
0
0
false
720e9e6f284485a7ee31d0348ae7bacbdec60e95
0
[ "transformers", "safetensors", "gguf", "llama", "text-generation-inference", "unsloth", "trl", "en", "base_model:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "base_model:quantized:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:50:40.000Z
benliinz/shiji
[ { "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.Q4_K_M.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 Jul 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']|trim %}\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']|trim %}\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'] | trim + '<|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|>"}}
674dbb916214e7bbceebb06a
Group-26/storyteller_v9
Group-26
False
library-not-detected
2024-12-02T14:26:34.000Z
0
0
false
e4696ff91b6b184a2765116f01c25c218c3fa774
0
[ "gguf", "llama", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:52:17.000Z
Group-26/storyteller_v9
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" }, { "rfilename": "unsloth.Q5_K_M.gguf" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
null
{"model_type": "llama"}
674dbbc0150a5710eaf4fd3c
mradermacher/Llama-3.2-3B-COTv2-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T14:14:43.000Z
0
0
false
a377f4c53b5ed1592658c5c02bbbf1c3afd92441
0
[ "transformers", "gguf", "en", "dataset:ericflo/Llama-3.2-3B-COT", "base_model:ericflo/Llama-3.2-3B-COTv2", "base_model:quantized:ericflo/Llama-3.2-3B-COTv2", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:53:04.000Z
mradermacher/Llama-3.2-3B-COTv2-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Llama-3.2-3B-COTv2.IQ4_XS.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q2_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q3_K_L.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q3_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q3_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q4_0_4_4.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q4_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q4_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q5_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q5_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q6_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.Q8_0.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.f16.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dbc7fdcff086e62f8ec99
mradermacher/Gemma2atlas-27B-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T16:40:17.000Z
0
0
false
f09e103a1c3339b36784ad69a7a507d94bf94395
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:hotmailuser/Gemma2atlas-27B", "base_model:quantized:hotmailuser/Gemma2atlas-27B", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:56:15.000Z
mradermacher/Gemma2atlas-27B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Gemma2atlas-27B.IQ4_XS.gguf" }, { "rfilename": "Gemma2atlas-27B.Q2_K.gguf" }, { "rfilename": "Gemma2atlas-27B.Q3_K_L.gguf" }, { "rfilename": "Gemma2atlas-27B.Q3_K_M.gguf" }, { "rfilename": "Gemma2atlas-27B.Q3_K_S.gguf" }, { "rfilename": "Gemma2atlas-27B.Q4_K_M.gguf" }, { "rfilename": "Gemma2atlas-27B.Q4_K_S.gguf" }, { "rfilename": "Gemma2atlas-27B.Q5_K_M.gguf" }, { "rfilename": "Gemma2atlas-27B.Q5_K_S.gguf" }, { "rfilename": "Gemma2atlas-27B.Q6_K.gguf" }, { "rfilename": "Gemma2atlas-27B.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dbd1bde17846db820f20e
mradermacher/Llama-3.2-3B-COTv2.1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T14:14:43.000Z
0
0
false
f488a86360fbed65fe1aed9527917cba6e0e3c22
0
[ "transformers", "gguf", "en", "dataset:ericflo/Llama-3.2-3B-COT", "base_model:ericflo/Llama-3.2-3B-COTv2.1", "base_model:quantized:ericflo/Llama-3.2-3B-COTv2.1", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T13:58:51.000Z
mradermacher/Llama-3.2-3B-COTv2.1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Llama-3.2-3B-COTv2.1.IQ4_XS.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q2_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q3_K_L.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q3_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q3_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q4_0_4_4.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q4_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q4_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q5_K_M.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q5_K_S.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q6_K.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.Q8_0.gguf" }, { "rfilename": "Llama-3.2-3B-COTv2.1.f16.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dbeadd8d6b6e71658435f
BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0-Q8_0-GGUF
BenevolenceMessiah
False
pipeline-not-detected
2024-12-02T14:08:04.000Z
0
0
false
a3da6ef06e3e3e30c66efaf9a1d96200a0ca29a2
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0", "base_model:quantized:BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:05:33.000Z
BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "qwq-32b-coder-fusion-9010-1x-ties-v1.0-q8_0.gguf" } ]
transformers
null
674dbf814e98b5f156879b3d
jwiggerthale/Llama-3.2-3B-Q8_0-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T14:09:21.000Z
0
0
false
b88c199c0ae0a03012140bcda61647b1e351cab9
0
[ "transformers", "gguf", "facebook", "meta", "pytorch", "llama", "llama-3", "llama-cpp", "gguf-my-repo", "text-generation", "en", "de", "fr", "it", "pt", "hi", "es", "th", "base_model:meta-llama/Llama-3.2-3B", "base_model:quantized:meta-llama/Llama-3.2-3B", "license:llama3.2", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T14:09:05.000Z
jwiggerthale/Llama-3.2-3B-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama-3.2-3b-q8_0.gguf" } ]
transformers
null
674dc08f9304bf7ffab04702
jwiggerthale/Llama-3.2-3B-Instruct-Q2_K-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T14:13:44.000Z
0
0
false
29f5a68d806273570fb4e60184602eae605e3837
0
[ "transformers", "gguf", "facebook", "meta", "pytorch", "llama", "llama-3", "llama-cpp", "gguf-my-repo", "text-generation", "en", "de", "fr", "it", "pt", "hi", "es", "th", "base_model:meta-llama/Llama-3.2-3B-Instruct", "base_model:quantized:meta-llama/Llama-3.2-3B-Instruct", "license:llama3.2", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T14:13:35.000Z
jwiggerthale/Llama-3.2-3B-Instruct-Q2_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama-3.2-3b-instruct-q2_k.gguf" } ]
transformers
null
674dc0963416d4f1bb01fe51
mradermacher/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T15:24:32.000Z
0
0
false
eb070f660e51e0651b73c7623cf17ef282cf331e
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0", "base_model:quantized:BenevolenceMessiah/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:13:42.000Z
mradermacher/QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.IQ4_XS.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q2_K.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q3_K_L.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q3_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q3_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q4_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q4_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q5_K_M.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q5_K_S.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q6_K.gguf" }, { "rfilename": "QwQ-32B-Coder-Fusion-9010-1x-TIES-v1.0.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dc0fa83a01b22e612ea1d
pramodkolekar/Marco
pramodkolekar
False
library-not-detected
2024-12-02T14:43:39.000Z
0
0
false
fc8d20abe2960757e113488d341afb660bb5818b
0
[ "gguf", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:15:22.000Z
pramodkolekar/Marco
[ { "rfilename": ".gitattributes" }, { "rfilename": "Marco8BEmail.gguf" } ]
null
null
674dc14fde17846db8225000
mradermacher/Gemma2Slerp4-27B-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T16:33:31.000Z
0
0
false
1a800ec440fb3d1122f94a242c4b5c0e76d5d069
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:allknowingroger/Gemma2Slerp4-27B", "base_model:quantized:allknowingroger/Gemma2Slerp4-27B", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:16:47.000Z
mradermacher/Gemma2Slerp4-27B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Gemma2Slerp4-27B.IQ4_XS.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q2_K.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q3_K_L.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q3_K_M.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q3_K_S.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q4_K_M.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q4_K_S.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q5_K_M.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q5_K_S.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q6_K.gguf" }, { "rfilename": "Gemma2Slerp4-27B.Q8_0.gguf" }, { "rfilename": "README.md" } ]
transformers
null
674dc3b7c214a65ebbc63918
violetxbt/tralala
violetxbt
False
library-not-detected
2024-12-02T14:50:57.000Z
0
0
false
40ce78e4085d1e76141fb089a108e2de7359085c
0
[ "gguf", "mistral", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:27:03.000Z
violetxbt/tralala
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q5_K_M.gguf" } ]
null
{"model_type": "mistral"}
674dc3c8bf68988c99749b27
djuna/G2-Noranum-27B-Q3_K_S-GGUF
djuna
False
pipeline-not-detected
2024-12-02T14:28:13.000Z
0
0
false
77930eef8e7d5e52c49d15c531309ccf0c4d0517
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:djuna/G2-Noranum-27B", "base_model:quantized:djuna/G2-Noranum-27B", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:27:20.000Z
djuna/G2-Noranum-27B-Q3_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "g2-noranum-27b-q3_k_s.gguf" } ]
transformers
null
674dc43cbf68988c9974cb28
waqar-hpe/mamba-2.8b-hf-Q4_K_M-GGUF
waqar-hpe
False
pipeline-not-detected
2024-12-02T14:29:25.000Z
0
0
false
7bed3733bbc599ed1ad191c50263cb65a8882a08
0
[ "transformers", "gguf", "llama-cpp", "gguf-my-repo", "base_model:state-spaces/mamba-2.8b-hf", "base_model:quantized:state-spaces/mamba-2.8b-hf", "endpoints_compatible", "region:us" ]
null
2024-12-02T14:29:16.000Z
waqar-hpe/mamba-2.8b-hf-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "mamba-2.8b-hf-q4_k_m.gguf" } ]
transformers
null
674dc4b538fdd51e92f3b16c
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q4_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T14:31:39.000Z
0
0
false
46dee6834544e771a2ea63059bef76ef1567b659
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T14:31:17.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q4_k_m.gguf" } ]
transformers
null
674dc5ba9920f975a4c4d6ad
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q5_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T14:36:06.000Z
0
0
false
e60ffc3de5a3e88690e6581dded3f9107b56a21b
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T14:35:38.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q5_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q5_k_s.gguf" } ]
transformers
null
674dc73f1228102cc1be2f1a
Noeai/IPAFuzzylamav2
Noeai
False
pipeline-not-detected
2024-12-02T15:37:47.000Z
0
0
false
b7e1df5195336d0109bf6a114ccf72e26a6b9a0f
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:42:07.000Z
Noeai/IPAFuzzylamav2
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
transformers
{"model_type": "llama"}
674dc76d34b8cc67019f0471
jwiggerthale/Llama-3.2-3B-Instruct-Q4_0-GGUF
jwiggerthale
False
not-popular-enough
2024-12-02T14:43:05.000Z
0
0
false
e23a880984c577c48eeeaff2c33c54dd10e98ddf
0
[ "transformers", "gguf", "facebook", "meta", "pytorch", "llama", "llama-3", "llama-cpp", "gguf-my-repo", "text-generation", "en", "de", "fr", "it", "pt", "hi", "es", "th", "base_model:meta-llama/Llama-3.2-3B-Instruct", "base_model:quantized:meta-llama/Llama-3.2-3B-Instruct", "license:llama3.2", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T14:42:53.000Z
jwiggerthale/Llama-3.2-3B-Instruct-Q4_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "llama-3.2-3b-instruct-q4_0.gguf" } ]
transformers
null
674dc8820231f371a6bf8452
mav23/CodeBooga-34B-v0.1-GGUF
mav23
False
library-not-detected
2024-12-02T19:22:48.000Z
0
0
false
576d5ee1efd593c3045070c8f9452897658fc9c2
0
[ "gguf", "license:llama2", "endpoints_compatible", "region:us" ]
null
2024-12-02T14:47:30.000Z
mav23/CodeBooga-34B-v0.1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "codebooga-34b-v0.1.Q2_K.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q3_K.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q3_K_L.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q3_K_M.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q3_K_S.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q4_0.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q4_1.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q4_K.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q4_K_M.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q4_K_S.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q5_0.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q5_1.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q5_K.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q5_K_M.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q5_K_S.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q6_K.gguf" }, { "rfilename": "codebooga-34b-v0.1.Q8_0.gguf" } ]
null
null
674dc984b7ca09463241c137
Chinnu1103/FineLlama-3.2-3B-GGUF
Chinnu1103
False
pipeline-not-detected
2024-12-02T15:41:56.000Z
0
0
false
d2945131cf0aa9bd9c435096d659ce1edf502d71
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "base_model:unsloth/Llama-3.2-3B-bnb-4bit", "base_model:quantized:unsloth/Llama-3.2-3B-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:51:48.000Z
Chinnu1103/FineLlama-3.2-3B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q2_K.gguf" }, { "rfilename": "unsloth.Q3_K_M.gguf" }, { "rfilename": "unsloth.Q4_K_M.gguf" }, { "rfilename": "unsloth.Q5_K_M.gguf" }, { "rfilename": "unsloth.Q6_K.gguf" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
transformers
{"model_type": "llama"}
674dcaefa8036b78b30eeb86
ClaudioItaly/intelligence-cod-rag-7b-v3-Q8_0-GGUF
ClaudioItaly
False
pipeline-not-detected
2024-12-02T14:58:28.000Z
0
0
false
37d539c58546db3cec2548e59e6b8661887842e5
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:ClaudioItaly/intelligence-cod-rag-7b-v3", "base_model:quantized:ClaudioItaly/intelligence-cod-rag-7b-v3", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T14:57:51.000Z
ClaudioItaly/intelligence-cod-rag-7b-v3-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "intelligence-cod-rag-7b-v3-q8_0.gguf" } ]
transformers
null
674dcb77c00749818027f95e
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q5_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:00:32.000Z
0
0
false
fd31f373de29a1de374ae9cd56a37ea81122d967
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:00:07.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q5_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q5_k_m.gguf" } ]
transformers
null
674dcb7ad1702fe27f18a547
gglabs/Mistral-Nemo-1130-v1.1.6-36-epoch
gglabs
False
pipeline-not-detected
2024-12-02T15:02:31.000Z
0
0
false
72c6baf7e3f8310a1df89e24317076d556db97bf
0
[ "transformers", "gguf", "mistral", "text-generation-inference", "unsloth", "en", "base_model:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "base_model:quantized:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T15:00:10.000Z
gglabs/Mistral-Nemo-1130-v1.1.6-36-epoch
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "mistral"}
674dcbd6ff329619b8f3ecca
bartowski/bagel-dpo-8x7b-v0.2-GGUF
bartowski
False
library-not-detected
2024-12-02T17:10:47.000Z
0
0
false
4a2c5c68b08a962b01fc0133f7a5854a2790014d
0
[ "gguf", "text-generation", "dataset:ai2_arc", "dataset:jondurbin/airoboros-3.2", "dataset:codeparrot/apps", "dataset:facebook/belebele", "dataset:boolq", "dataset:jondurbin/cinematika-v0.1", "dataset:drop", "dataset:lmsys/lmsys-chat-1m", "dataset:TIGER-Lab/MathInstruct", "dataset:cais/mmlu", "dataset:Muennighoff/natural-instructions", "dataset:openbookqa", "dataset:piqa", "dataset:Vezora/Tested-22k-Python-Alpaca", "dataset:cakiki/rosetta-code", "dataset:Open-Orca/SlimOrca", "dataset:spider", "dataset:squad_v2", "dataset:migtissera/Synthia-v1.3", "dataset:datasets/winogrande", "dataset:nvidia/HelpSteer", "dataset:Intel/orca_dpo_pairs", "dataset:unalignment/toxic-dpo-v0.1", "dataset:jondurbin/truthy-dpo-v0.1", "dataset:allenai/ultrafeedback_binarized_cleaned", "dataset:Squish42/bluemoon-fandom-1-1-rp-cleaned", "dataset:LDJnr/Capybara", "dataset:JULIELab/EmoBank", "dataset:kingbri/PIPPA-shareGPT", "base_model:jondurbin/bagel-dpo-8x7b-v0.2", "base_model:quantized:jondurbin/bagel-dpo-8x7b-v0.2", "license:apache-2.0", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
text-generation
2024-12-02T15:01:42.000Z
bartowski/bagel-dpo-8x7b-v0.2-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ1_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ2_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ2_XS.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ2_XXS.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ3_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ3_XXS.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ4_NL.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-IQ4_XS.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q2_K.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q2_K_L.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q3_K_L.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q3_K_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q3_K_S.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q3_K_XL.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_0.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_0_4_4.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_0_4_8.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_0_8_8.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_K_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q4_K_S.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q5_K_M.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q5_K_S.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q6_K.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2-Q8_0.gguf" }, { "rfilename": "bagel-dpo-8x7b-v0.2.imatrix" } ]
null
null
674dcc7ed8897d7d36f03bc0
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q6_K-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:04:58.000Z
0
0
false
da3fbe0888ddb8e7c4c7d2a098bea6ec548a069f
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:04:30.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q6_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q6_k.gguf" } ]
transformers
null
674dcd69ee93f1e5204c9ffb
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q8_0-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:09:02.000Z
0
0
false
54223e32d95b574b4bd951611b1617cb81ff498e
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "base_model:quantized:MrRobotoAI/Thor-v1.4-8b-DARK-FICTION", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:08:25.000Z
Triangle104/Thor-v1.4-8b-DARK-FICTION-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "thor-v1.4-8b-dark-fiction-q8_0.gguf" } ]
transformers
null
674dcd7bd8d6b6e7165c6ab0
mradermacher/climategpt-70b-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:29:21.000Z
0
0
false
f741876d7f523bc35df0654c50ace0bb39ae511b
0
[ "transformers", "gguf", "climate", "en", "dataset:OpenAssistant/oasst1", "dataset:databricks/databricks-dolly-15k", "base_model:eci-io/climategpt-70b", "base_model:quantized:eci-io/climategpt-70b", "license:other", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T15:08:43.000Z
mradermacher/climategpt-70b-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "climategpt-70b.IQ4_XS.gguf" }, { "rfilename": "climategpt-70b.Q2_K.gguf" }, { "rfilename": "climategpt-70b.Q3_K_L.gguf" }, { "rfilename": "climategpt-70b.Q3_K_M.gguf" }, { "rfilename": "climategpt-70b.Q3_K_S.gguf" }, { "rfilename": "climategpt-70b.Q4_K_M.gguf" }, { "rfilename": "climategpt-70b.Q4_K_S.gguf" }, { "rfilename": "climategpt-70b.Q5_K_M.gguf" }, { "rfilename": "climategpt-70b.Q5_K_S.gguf" }, { "rfilename": "climategpt-70b.Q6_K.gguf.part1of2" }, { "rfilename": "climategpt-70b.Q6_K.gguf.part2of2" }, { "rfilename": "climategpt-70b.Q8_0.gguf.part1of2" }, { "rfilename": "climategpt-70b.Q8_0.gguf.part2of2" } ]
transformers
null
674dd118aef5b4ffecaa1fcd
wmichael/INTELLECT-1-Q8_0-GGUF
wmichael
False
library-not-detected
2024-12-02T15:24:53.000Z
0
0
false
2d81116d3acca3885514da0270810094f983480b
0
[ "gguf", "llama-cpp", "gguf-my-repo", "text-generation", "en", "dataset:PrimeIntellect/fineweb-edu", "dataset:PrimeIntellect/fineweb", "dataset:PrimeIntellect/StackV1-popular", "dataset:mlfoundations/dclm-baseline-1.0-parquet", "dataset:open-web-math/open-web-math", "base_model:PrimeIntellect/INTELLECT-1", "base_model:quantized:PrimeIntellect/INTELLECT-1", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T15:24:08.000Z
wmichael/INTELLECT-1-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "intellect-1-q8_0.gguf" } ]
null
null
674dd2259c20af647fcfb261
Triangle104/Loki-v2.8-8b-EROTICA-Q4_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:28:59.000Z
0
0
false
66e5149e23671dca8346f693bb730a99025916c9
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:28:37.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q4_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q4_k_s.gguf" } ]
transformers
null
674dd448df73eced57b4c246
dim-eleftheriou/cti_model_GGUF
dim-eleftheriou
False
library-not-detected
2024-12-02T15:43:51.000Z
0
0
false
80542dfc80f657bc1aa58326d8d15e90f0b5aa5c
0
[ "gguf", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T15:37:44.000Z
dim-eleftheriou/cti_model_GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
null
null
674dd463e696e568f8dd9255
avemio/GRAG-PHI-3.5-MINI-4B-SFT-HESSIAN-AI-Q8_0-GGUF
avemio
False
library-not-detected
2024-12-02T15:38:30.000Z
0
0
false
6691daee639bc7e0f13c58e4ea1712be86ec9001
0
[ "gguf", "llama-cpp", "gguf-my-repo", "base_model:avemio/GRAG-PHI-3.5-MINI-4B-SFT-HESSIAN-AI", "base_model:quantized:avemio/GRAG-PHI-3.5-MINI-4B-SFT-HESSIAN-AI", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T15:38:11.000Z
avemio/GRAG-PHI-3.5-MINI-4B-SFT-HESSIAN-AI-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "grag-phi-3.5-mini-4b-sft-hessian-ai-q8_0.gguf" } ]
null
null
674dd4d648854cc4dcd123e7
mradermacher/airoboros-13b-gpt4-1.4-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:25:33.000Z
0
0
false
fcaad783e71ba865d6d1c483d57c90326cf17567
0
[ "transformers", "gguf", "en", "dataset:jondurbin/airoboros-gpt4-1.4", "base_model:jondurbin/airoboros-13b-gpt4-1.4", "base_model:quantized:jondurbin/airoboros-13b-gpt4-1.4", "license:cc-by-nc-4.0", "endpoints_compatible", "region:us", "imatrix" ]
null
2024-12-02T15:40:06.000Z
mradermacher/airoboros-13b-gpt4-1.4-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ1_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ1_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ2_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ2_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ2_XS.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ2_XXS.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ3_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ3_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ3_XS.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ3_XXS.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-IQ4_XS.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q2_K.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q3_K_L.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q3_K_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q3_K_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_0.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_0_4_4.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_0_4_8.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_0_8_8.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_K_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q4_K_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q5_K_M.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q5_K_S.gguf" }, { "rfilename": "airoboros-13b-gpt4-1.4.i1-Q6_K.gguf" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674dd59bdf73eced57b52fe3
wmichael/INTELLECT-1-Q6_K-GGUF
wmichael
False
library-not-detected
2024-12-02T15:44:00.000Z
0
0
false
c5fda3b0215193d2082f9949ee14e59bf93a0300
0
[ "gguf", "llama-cpp", "gguf-my-repo", "text-generation", "en", "dataset:PrimeIntellect/fineweb-edu", "dataset:PrimeIntellect/fineweb", "dataset:PrimeIntellect/StackV1-popular", "dataset:mlfoundations/dclm-baseline-1.0-parquet", "dataset:open-web-math/open-web-math", "base_model:PrimeIntellect/INTELLECT-1", "base_model:quantized:PrimeIntellect/INTELLECT-1", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-generation
2024-12-02T15:43:23.000Z
wmichael/INTELLECT-1-Q6_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "intellect-1-q6_k.gguf" } ]
null
null
674dd6119da4499f4c001777
mradermacher/airoboros-l2-13b-3.0-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:34:15.000Z
0
0
false
3771f4aa9d34d259081436cff169ce82b255cb90
0
[ "transformers", "gguf", "en", "dataset:jondurbin/airoboros-3.0", "base_model:jondurbin/airoboros-l2-13b-3.0", "base_model:quantized:jondurbin/airoboros-l2-13b-3.0", "license:llama2", "endpoints_compatible", "region:us", "imatrix" ]
null
2024-12-02T15:45:21.000Z
mradermacher/airoboros-l2-13b-3.0-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ1_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ1_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ2_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ2_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ2_XS.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ2_XXS.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ3_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ3_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ3_XS.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ3_XXS.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-IQ4_XS.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q2_K.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q3_K_L.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q3_K_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q3_K_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_0.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_0_4_4.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_0_4_8.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_0_8_8.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_K_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q4_K_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q5_K_M.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q5_K_S.gguf" }, { "rfilename": "airoboros-l2-13b-3.0.i1-Q6_K.gguf" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674dd64fee93f1e5204f6a20
Triangle104/Loki-v2.8-8b-EROTICA-Q4_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:46:45.000Z
0
0
false
a9ab7ce33b14fa4a3c7884fa94ecc341e88ac193
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:46:23.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q4_k_m.gguf" } ]
transformers
null
674dd6f9decd216f113c6eb8
Triangle104/Loki-v2.8-8b-EROTICA-Q5_K_S-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:49:38.000Z
0
0
false
4db8e3bb7af02ae181a7a8d8d83bfa9e3ca50d3d
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:49:13.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q5_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q5_k_s.gguf" } ]
transformers
null
674dd7ac211d49ea5d8204be
mradermacher/Lamarck-14B-v0.1-experimental-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T17:15:44.000Z
0
0
false
cf72df9eee80e1c57d38a64ebf457fb0c97c845c
0
[ "transformers", "gguf", "mergekit", "merge", "en", "base_model:sometimesanotion/Lamarck-14B-v0.1-experimental", "base_model:quantized:sometimesanotion/Lamarck-14B-v0.1-experimental", "license:apache-2.0", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T15:52:12.000Z
mradermacher/Lamarck-14B-v0.1-experimental-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ1_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ1_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ2_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ2_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ2_XS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ2_XXS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ3_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ3_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ3_XS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ3_XXS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-IQ4_XS.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q2_K.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q3_K_L.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q3_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q3_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_0.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_0_4_4.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_0_4_8.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_0_8_8.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q4_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q5_K_M.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q5_K_S.gguf" }, { "rfilename": "Lamarck-14B-v0.1-experimental.i1-Q6_K.gguf" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674dd8d02a9bc968fa0bd0de
Triangle104/Loki-v2.8-8b-EROTICA-Q5_K_M-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:57:30.000Z
0
0
false
d447b429001d33ee0a0018dcf240de59e784d63d
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:57:04.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q5_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q5_k_m.gguf" } ]
transformers
null
674dd933db8f67f0caf07662
Triangle104/Loki-v2.8-8b-EROTICA-Q6_K-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T15:59:13.000Z
0
0
false
2efdfbfae506e8d07cd0d00deabb4d3c04d024b0
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T15:58:43.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q6_K-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q6_k.gguf" } ]
transformers
null
674dd9bc2a9bc968fa0c00a1
Triangle104/Loki-v2.8-8b-EROTICA-Q8_0-GGUF
Triangle104
False
pipeline-not-detected
2024-12-02T16:01:36.000Z
0
0
false
039af45b6f466e4d153372f506c365177310eb50
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Loki-v2.8-8b-EROTICA", "base_model:quantized:MrRobotoAI/Loki-v2.8-8b-EROTICA", "endpoints_compatible", "region:us" ]
null
2024-12-02T16:01:00.000Z
Triangle104/Loki-v2.8-8b-EROTICA-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "loki-v2.8-8b-erotica-q8_0.gguf" } ]
transformers
null
674ddb434191482289293f5d
benliinz/shiji2
benliinz
False
pipeline-not-detected
2024-12-02T16:47:15.000Z
0
0
false
6376aa620721d84b84315319b51010a812552c70
0
[ "transformers", "safetensors", "gguf", "llama", "text-generation-inference", "unsloth", "trl", "en", "base_model:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "base_model:quantized:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:07:31.000Z
benliinz/shiji2
[ { "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.Q4_K_M.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 Jul 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']|trim %}\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']|trim %}\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'] | trim + '<|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|>"}}
674ddb6a78ae18ce502c65a1
mradermacher/NearalMistral-2x7B-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:58:06.000Z
0
0
false
2b64cd0a3085526d1af2e748b5c46c03e45d9e45
0
[ "transformers", "gguf", "moe", "frankenmoe", "merge", "mergekit", "lazymergekit", "mistralai/Mistral-7B-Instruct-v0.1", "Corianas/Neural-Mistral-7B", "en", "base_model:Corianas/NearalMistral-2x7B", "base_model:quantized:Corianas/NearalMistral-2x7B", "license:apache-2.0", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T16:08:10.000Z
mradermacher/NearalMistral-2x7B-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "NearalMistral-2x7B.i1-IQ1_M.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-IQ2_M.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-IQ3_M.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-IQ3_XXS.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-IQ4_XS.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q2_K.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q3_K_M.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q3_K_S.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q4_K_M.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q4_K_S.gguf" }, { "rfilename": "NearalMistral-2x7B.i1-Q6_K.gguf" }, { "rfilename": "README.md" }, { "rfilename": "imatrix.dat" } ]
transformers
null
674ddbbfb213b68fc5d7743a
featherless-ai-quants/AIDC-AI-Marco-o1-GGUF
featherless-ai-quants
False
library-not-detected
2024-12-02T16:16:19.000Z
0
0
false
e384e7e8eb108d89e5f55fa84ba7c107574133be
0
[ "gguf", "text-generation", "base_model:AIDC-AI/Marco-o1", "base_model:quantized:AIDC-AI/Marco-o1", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T16:09:35.000Z
featherless-ai-quants/AIDC-AI-Marco-o1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "AIDC-AI-Marco-o1-IQ4_XS.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q2_K.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q3_K_L.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q3_K_M.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q3_K_S.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q4_K_M.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q4_K_S.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q5_K_M.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q5_K_S.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q6_K.gguf" }, { "rfilename": "AIDC-AI-Marco-o1-Q8_0.gguf" }, { "rfilename": "README.md" }, { "rfilename": "featherless-quants.png" } ]
null
null
674ddc0f0d1f4ae79c44fd8a
PuxAI/T-VisStar-7B-v0.1-Q3_K_M-GGUF
PuxAI
False
not-popular-enough
2024-12-02T16:11:10.000Z
0
0
false
0baf28bb74fc3eece8cded5a80c6b985c0332be8
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "mistral", "trl", "mergekit", "llama-cpp", "gguf-my-repo", "text-generation", "en", "vi", "dataset:1TuanPham/Vietnamese-magpie-ultra-v0.1", "dataset:1TuanPham/KTO-mix-14k-vietnamese-groq", "dataset:1TuanPham/T-VisStar-finalphase", "dataset:1TuanPham/T-VisStar-dataset-uncensored", "base_model:1TuanPham/T-VisStar-7B-v0.1", "base_model:quantized:1TuanPham/T-VisStar-7B-v0.1", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T16:10:55.000Z
PuxAI/T-VisStar-7B-v0.1-Q3_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "t-visstar-7b-v0.1-q3_k_m.gguf" } ]
transformers
null
674ddc56786ae4f3f90743f7
featherless-ai-quants/DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-GGUF
featherless-ai-quants
False
library-not-detected
2024-12-02T16:18:58.000Z
0
0
false
073dfe4086e9df3405f6bad86f17d263981b71bf
0
[ "gguf", "text-generation", "base_model:DavidAU/L3.1-RP-Hero-Dirty_Harry-8B", "base_model:quantized:DavidAU/L3.1-RP-Hero-Dirty_Harry-8B", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T16:12:06.000Z
featherless-ai-quants/DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-IQ4_XS.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q2_K.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q3_K_L.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q3_K_M.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q3_K_S.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q4_K_M.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q4_K_S.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q5_K_M.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q5_K_S.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q6_K.gguf" }, { "rfilename": "DavidAU-L3.1-RP-Hero-Dirty_Harry-8B-Q8_0.gguf" }, { "rfilename": "README.md" }, { "rfilename": "featherless-quants.png" } ]
null
null
674dddb4e446944fe6834a11
MrRobotoAI/Frigg-v1.5-8b-FANTASY-Q4_K_M-GGUF
MrRobotoAI
False
pipeline-not-detected
2024-12-02T16:18:18.000Z
0
0
false
3b58609d962527180a6fb191e24e35d3031b38cf
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:MrRobotoAI/Frigg-v1.5-8b-FANTASY", "base_model:quantized:MrRobotoAI/Frigg-v1.5-8b-FANTASY", "endpoints_compatible", "region:us" ]
null
2024-12-02T16:17:56.000Z
MrRobotoAI/Frigg-v1.5-8b-FANTASY-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "frigg-v1.5-8b-fantasy-q4_k_m.gguf" } ]
transformers
null
674ddde57f75d6f9e8f05616
salni84/fine-tuned-fire-model-Q4_K_M-GGUF
salni84
False
pipeline-not-detected
2024-12-02T16:18:52.000Z
0
0
false
62eb954dc52d358c3774bd0f3cca68d23b276628
0
[ "transformers", "gguf", "llama-cpp", "gguf-my-repo", "base_model:salni84/fine-tuned-fire-model", "base_model:quantized:salni84/fine-tuned-fire-model", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:18:45.000Z
salni84/fine-tuned-fire-model-Q4_K_M-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "fine-tuned-fire-model-q4_k_m.gguf" } ]
transformers
null
674dde8d786ae4f3f907f1fa
avemio-digital/GRAG-MISTRAL-7B-SFT-ORPO-SLERP-MERGE-HESSIAN-AI-Q8_0-GGUF
avemio-digital
False
pipeline-not-detected
2024-12-02T16:22:08.000Z
0
0
false
c59d48bb2d0428df303515e2fdfebcd8e2774450
0
[ "transformers", "gguf", "mergekit", "merge", "llama-cpp", "gguf-my-repo", "base_model:avemio-digital/GRAG-MISTRAL-7B-SFT-ORPO-SLERP-MERGE-HESSIAN-AI", "base_model:quantized:avemio-digital/GRAG-MISTRAL-7B-SFT-ORPO-SLERP-MERGE-HESSIAN-AI", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:21:33.000Z
avemio-digital/GRAG-MISTRAL-7B-SFT-ORPO-SLERP-MERGE-HESSIAN-AI-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "grag-mistral-7b-sft-orpo-slerp-merge-hessian-ai-q8_0.gguf" } ]
transformers
null
674ddec23f851f899cbca928
Noeai/IPAFuzzylamav3
Noeai
False
pipeline-not-detected
2024-12-02T16:22:55.000Z
0
0
false
895be13d89ecc8d481ce334e22bd973a3c9e0436
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:22:26.000Z
Noeai/IPAFuzzylamav3
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
transformers
{"model_type": "llama"}
674ddfee7f3d6742575f2b2c
Noeai/IPAFuzzylamav4
Noeai
False
pipeline-not-detected
2024-12-02T16:27:53.000Z
0
0
false
0806d99a80b808971ae4f1bf40e3961f9f0e79fb
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:27:26.000Z
Noeai/IPAFuzzylamav4
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q8_0.gguf" } ]
transformers
{"model_type": "llama"}
674de189b208a57843280067
salni84/fine-tuned-fire-model-Q8_0-GGUF
salni84
False
pipeline-not-detected
2024-12-02T16:34:29.000Z
0
0
false
39d266dce5e2a4cd354088bf8ce915472eefe246
0
[ "transformers", "gguf", "llama-cpp", "gguf-my-repo", "base_model:salni84/fine-tuned-fire-model", "base_model:quantized:salni84/fine-tuned-fire-model", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:34:17.000Z
salni84/fine-tuned-fire-model-Q8_0-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "fine-tuned-fire-model-q8_0.gguf" } ]
transformers
null
674de29ed6638fe6fd66a058
kereh/UNSRIT-Meta-Llama-3.1-8B-Instruct-bnb-4bit
kereh
False
pipeline-not-detected
2024-12-02T17:11:57.000Z
0
0
false
87c3fbec4c4c5935ebdb56bbb44dbbcd01634414
0
[ "transformers", "safetensors", "gguf", "llama", "text-generation-inference", "unsloth", "trl", "en", "base_model:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "base_model:quantized:unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:38:54.000Z
kereh/UNSRIT-Meta-Llama-3.1-8B-Instruct-bnb-4bit
[ { "rfilename": ".gitattributes" }, { "rfilename": "Modelfile" }, { "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.Q4_K_M.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|>"}}
674de2ecc2b8cd492e2a88d0
mradermacher/ECE-TW3-JRGL-V2-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:29:09.000Z
0
0
false
1974fb6e8201b6210009543906024008b20799e0
0
[ "transformers", "gguf", "merge", "mergekit", "lazymergekit", "Qwen/Qwen1.5-72B-Chat", "vilm/Quyen-Pro-Max-v0.1", "en", "base_model:paloalma/ECE-TW3-JRGL-V2", "base_model:quantized:paloalma/ECE-TW3-JRGL-V2", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:40:12.000Z
mradermacher/ECE-TW3-JRGL-V2-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "ECE-TW3-JRGL-V2.IQ4_XS.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q2_K.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q3_K_L.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q3_K_M.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q3_K_S.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q4_K_M.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q4_K_S.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q5_K_M.gguf.part1of2" }, { "rfilename": "ECE-TW3-JRGL-V2.Q5_K_M.gguf.part2of2" }, { "rfilename": "ECE-TW3-JRGL-V2.Q5_K_S.gguf" }, { "rfilename": "ECE-TW3-JRGL-V2.Q6_K.gguf.part1of2" }, { "rfilename": "ECE-TW3-JRGL-V2.Q6_K.gguf.part2of2" }, { "rfilename": "ECE-TW3-JRGL-V2.Q8_0.gguf.part1of2" }, { "rfilename": "ECE-TW3-JRGL-V2.Q8_0.gguf.part2of2" }, { "rfilename": "README.md" } ]
transformers
null
674de366a7116a1c7604bdbc
snxsnz/llama-3-8b-Instruct-bnb-4bit-brainrot
snxsnz
False
pipeline-not-detected
2024-12-02T16:44:42.000Z
0
0
false
9a98dc637883f055b9792c5f30a6c979b3c2b958
0
[ "transformers", "gguf", "llama", "text-generation-inference", "unsloth", "en", "base_model:unsloth/llama-3-8b-Instruct-bnb-4bit", "base_model:quantized:unsloth/llama-3-8b-Instruct-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:42:14.000Z
snxsnz/llama-3-8b-Instruct-bnb-4bit-brainrot
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "llama"}
674de41376ca1526c66f12d3
PuxAI/T-VisStar-7B-v0.1-Q3_K_S-GGUF
PuxAI
False
not-popular-enough
2024-12-02T16:45:21.000Z
0
0
false
1ce7fdb815a5a13e8b8a53c6c0dc13298c87f4de
0
[ "transformers", "gguf", "text-generation-inference", "unsloth", "mistral", "trl", "mergekit", "llama-cpp", "gguf-my-repo", "text-generation", "en", "vi", "dataset:1TuanPham/Vietnamese-magpie-ultra-v0.1", "dataset:1TuanPham/KTO-mix-14k-vietnamese-groq", "dataset:1TuanPham/T-VisStar-finalphase", "dataset:1TuanPham/T-VisStar-dataset-uncensored", "base_model:1TuanPham/T-VisStar-7B-v0.1", "base_model:quantized:1TuanPham/T-VisStar-7B-v0.1", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us", "conversational" ]
text-generation
2024-12-02T16:45:07.000Z
PuxAI/T-VisStar-7B-v0.1-Q3_K_S-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "t-visstar-7b-v0.1-q3_k_s.gguf" } ]
transformers
null
674de74da6ba472d317b6a8d
gglabs/Mistral-Nemo-1130-v1.1.6-42-epoch
gglabs
False
pipeline-not-detected
2024-12-02T17:01:13.000Z
0
0
false
86d2e0fbafd54850ea064c29e8c4a19d2ff85e70
0
[ "transformers", "gguf", "mistral", "text-generation-inference", "unsloth", "en", "base_model:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "base_model:quantized:unsloth/Mistral-Nemo-Instruct-2407-bnb-4bit", "license:apache-2.0", "endpoints_compatible", "region:us", "conversational" ]
null
2024-12-02T16:58:53.000Z
gglabs/Mistral-Nemo-1130-v1.1.6-42-epoch
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "config.json" }, { "rfilename": "unsloth.Q4_K_M.gguf" } ]
transformers
{"model_type": "mistral"}
674de96359837997eeb4fc5a
mradermacher/climategpt-70b-i1-GGUF
mradermacher
False
pipeline-not-detected
2024-12-02T20:40:11.000Z
0
0
false
1078570d0051aa113988a85ae208ce40c3f37a43
0
[ "transformers", "gguf", "climate", "en", "dataset:OpenAssistant/oasst1", "dataset:databricks/databricks-dolly-15k", "base_model:eci-io/climategpt-70b", "base_model:quantized:eci-io/climategpt-70b", "license:other", "endpoints_compatible", "region:us", "imatrix", "conversational" ]
null
2024-12-02T17:07:47.000Z
mradermacher/climategpt-70b-i1-GGUF
[ { "rfilename": ".gitattributes" }, { "rfilename": "README.md" }, { "rfilename": "climategpt-70b.i1-IQ1_M.gguf" }, { "rfilename": "climategpt-70b.i1-IQ2_M.gguf" }, { "rfilename": "climategpt-70b.i1-IQ3_M.gguf" }, { "rfilename": "climategpt-70b.i1-IQ3_XXS.gguf" }, { "rfilename": "climategpt-70b.i1-Q2_K.gguf" }, { "rfilename": "climategpt-70b.i1-Q3_K_M.gguf" }, { "rfilename": "climategpt-70b.i1-Q4_K_M.gguf" }, { "rfilename": "climategpt-70b.i1-Q4_K_S.gguf" }, { "rfilename": "climategpt-70b.i1-Q6_K.gguf.part1of2" }, { "rfilename": "climategpt-70b.i1-Q6_K.gguf.part2of2" }, { "rfilename": "imatrix.dat" } ]
transformers
null