AIronMind commited on
Commit
f9f4ebb
1 Parent(s): 7e892be

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - ja
5
+ license: cc-by-nc-4.0
6
+ library_name: transformers
7
+ tags:
8
+ - nsfw
9
+ - Visual novel
10
+ - roleplay
11
+ - mergekit
12
+ - merge
13
+ - llama-cpp
14
+ - gguf-my-repo
15
+ base_model: spow12/ChatWaifu_12B_v2.0
16
+ datasets:
17
+ - roleplay4fun/aesir-v1.1
18
+ - kalomaze/Opus_Instruct_3k
19
+ - Gryphe/Sonnet3.5-SlimOrcaDedupCleaned
20
+ - Aratako/Synthetic-JP-EN-Coding-Dataset-567k
21
+ - Aratako/Synthetic-Japanese-Roleplay-gpt-4o-mini-39.6k-formatted
22
+ - Aratako/Synthetic-Japanese-Roleplay-NSFW-Claude-3.5s-15.3k-formatted
23
+ - Aratako_Rosebleu_1on1_Dialogues_RP
24
+ - SkunkworksAI/reasoning-0.01
25
+ - jondurbin_gutenberg_dpo
26
+ - nbeerbower_gutenberg2_dpo
27
+ - jondurbi_py_dpo
28
+ - jondurbin_truthy_dpo
29
+ - flammenai_character_roleplay_DPO
30
+ - kyujinpy_orca_math_dpo
31
+ - argilla_Capybara_Preferences
32
+ - antiven0m_physical_reasoning_dpo
33
+ - aixsatoshi_Swallow_MX_chatbot_DPO
34
+ pipeline_tag: text-generation
35
+ ---
36
+
37
+ # AIronMind/ChatWaifu_12B_v2.0-Q4_K_M-GGUF
38
+ This model was converted to GGUF format from [`spow12/ChatWaifu_12B_v2.0`](https://huggingface.co/spow12/ChatWaifu_12B_v2.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
39
+ Refer to the [original model card](https://huggingface.co/spow12/ChatWaifu_12B_v2.0) for more details on the model.
40
+
41
+ ## Use with llama.cpp
42
+ Install llama.cpp through brew (works on Mac and Linux)
43
+
44
+ ```bash
45
+ brew install llama.cpp
46
+
47
+ ```
48
+ Invoke the llama.cpp server or the CLI.
49
+
50
+ ### CLI:
51
+ ```bash
52
+ llama-cli --hf-repo AIronMind/ChatWaifu_12B_v2.0-Q4_K_M-GGUF --hf-file chatwaifu_12b_v2.0-q4_k_m.gguf -p "The meaning to life and the universe is"
53
+ ```
54
+
55
+ ### Server:
56
+ ```bash
57
+ llama-server --hf-repo AIronMind/ChatWaifu_12B_v2.0-Q4_K_M-GGUF --hf-file chatwaifu_12b_v2.0-q4_k_m.gguf -c 2048
58
+ ```
59
+
60
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
61
+
62
+ Step 1: Clone llama.cpp from GitHub.
63
+ ```
64
+ git clone https://github.com/ggerganov/llama.cpp
65
+ ```
66
+
67
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
68
+ ```
69
+ cd llama.cpp && LLAMA_CURL=1 make
70
+ ```
71
+
72
+ Step 3: Run inference through the main binary.
73
+ ```
74
+ ./llama-cli --hf-repo AIronMind/ChatWaifu_12B_v2.0-Q4_K_M-GGUF --hf-file chatwaifu_12b_v2.0-q4_k_m.gguf -p "The meaning to life and the universe is"
75
+ ```
76
+ or
77
+ ```
78
+ ./llama-server --hf-repo AIronMind/ChatWaifu_12B_v2.0-Q4_K_M-GGUF --hf-file chatwaifu_12b_v2.0-q4_k_m.gguf -c 2048
79
+ ```