Disya commited on
Commit
2444071
·
verified ·
1 Parent(s): 4776870

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
+ base_model: Delta-Vector/Francois-PE-V2-Huali-12B
3
+ datasets:
4
+ - PocketDoc/Dans-Personamaxx-VN
5
+ - NewEden/LIMARP-Complexity
6
+ - NewEden/PIPPA-Mega-Filtered
7
+ - NewEden/OpenCAI-ShareGPT
8
+ - NewEden/Creative_Writing-Complexity
9
+ - NewEden/Light-Novels-Roleplay-Logs-Books-Oh-My-duplicate-turns-removed
10
+ - PocketDoc/Dans-Failuremaxx-Adventure-3
11
+ - NewEden/Books-V2-ShareGPT
12
+ - NewEden/Deepseek-V3-RP-Filtered
13
+ - NewEden/BlueSky-10K-Complexity
14
+ - NewEden/Final-Alpindale-LNs-ShareGPT
15
+ - NewEden/DeepseekRP-Filtered
16
+ - NewEden/RP-logs-V2-Experimental
17
+ - anthracite-org/kalo_opus_misc_240827
18
+ - anthracite-org/kalo_misc_part2
19
+ - NewEden/vanilla-backrooms-claude-sharegpt
20
+ - NewEden/Storium-Prefixed-Clean
21
+ - NewEden/KTO-IF-Dans
22
+ - NewEden/KTO-Instruct-Mix
23
+ - NewEden/Opus-accepted-hermes-rejected-shuffled
24
+ library_name: transformers
25
+ tags:
26
+ - fine-tuning
27
+ - prose
28
+ - KTO
29
+ - axolotl
30
+ - finetune
31
+ - roleplaying
32
+ - creative-writing
33
+ - llama-cpp
34
+ - gguf-my-repo
35
+ ---
36
+
37
+ # Disya/Francois-PE-V2-Huali-12B-Q5_K_S-GGUF
38
+ This model was converted to GGUF format from [`Delta-Vector/Francois-PE-V2-Huali-12B`](https://huggingface.co/Delta-Vector/Francois-PE-V2-Huali-12B) 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/Delta-Vector/Francois-PE-V2-Huali-12B) 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 Disya/Francois-PE-V2-Huali-12B-Q5_K_S-GGUF --hf-file francois-pe-v2-huali-12b-q5_k_s.gguf -p "The meaning to life and the universe is"
53
+ ```
54
+
55
+ ### Server:
56
+ ```bash
57
+ llama-server --hf-repo Disya/Francois-PE-V2-Huali-12B-Q5_K_S-GGUF --hf-file francois-pe-v2-huali-12b-q5_k_s.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 Disya/Francois-PE-V2-Huali-12B-Q5_K_S-GGUF --hf-file francois-pe-v2-huali-12b-q5_k_s.gguf -p "The meaning to life and the universe is"
75
+ ```
76
+ or
77
+ ```
78
+ ./llama-server --hf-repo Disya/Francois-PE-V2-Huali-12B-Q5_K_S-GGUF --hf-file francois-pe-v2-huali-12b-q5_k_s.gguf -c 2048
79
+ ```