jtjones commited on
Commit
79f83b8
·
verified ·
1 Parent(s): db5ec8a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ license: apache-2.0
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - creative
10
+ - creative writing
11
+ - fiction writing
12
+ - plot generation
13
+ - sub-plot generation
14
+ - story generation
15
+ - scene continue
16
+ - storytelling
17
+ - fiction story
18
+ - science fiction
19
+ - romance
20
+ - all genres
21
+ - story
22
+ - writing
23
+ - vivid prosing
24
+ - vivid writing
25
+ - fiction
26
+ - roleplaying
27
+ - bfloat16
28
+ - swearing
29
+ - role play
30
+ - sillytavern
31
+ - backyard
32
+ - horror
33
+ - llama 3.1
34
+ - context 128k
35
+ - mergekit
36
+ - merge
37
+ - not-for-all-audiences
38
+ - llama-cpp
39
+ - gguf-my-repo
40
+ ---
41
+
42
+ # jtjones/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B-Q8_0-GGUF
43
+ This model was converted to GGUF format from [`DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B`](https://huggingface.co/DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
44
+ Refer to the [original model card](https://huggingface.co/DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B) for more details on the model.
45
+
46
+ ## Use with llama.cpp
47
+ Install llama.cpp through brew (works on Mac and Linux)
48
+
49
+ ```bash
50
+ brew install llama.cpp
51
+
52
+ ```
53
+ Invoke the llama.cpp server or the CLI.
54
+
55
+ ### CLI:
56
+ ```bash
57
+ llama-cli --hf-repo jtjones/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B-Q8_0-GGUF --hf-file l3.1-dark-reasoning-lewdplay-evo-hermes-r1-uncensored-8b-q8_0.gguf -p "The meaning to life and the universe is"
58
+ ```
59
+
60
+ ### Server:
61
+ ```bash
62
+ llama-server --hf-repo jtjones/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B-Q8_0-GGUF --hf-file l3.1-dark-reasoning-lewdplay-evo-hermes-r1-uncensored-8b-q8_0.gguf -c 2048
63
+ ```
64
+
65
+ 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.
66
+
67
+ Step 1: Clone llama.cpp from GitHub.
68
+ ```
69
+ git clone https://github.com/ggerganov/llama.cpp
70
+ ```
71
+
72
+ 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).
73
+ ```
74
+ cd llama.cpp && LLAMA_CURL=1 make
75
+ ```
76
+
77
+ Step 3: Run inference through the main binary.
78
+ ```
79
+ ./llama-cli --hf-repo jtjones/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B-Q8_0-GGUF --hf-file l3.1-dark-reasoning-lewdplay-evo-hermes-r1-uncensored-8b-q8_0.gguf -p "The meaning to life and the universe is"
80
+ ```
81
+ or
82
+ ```
83
+ ./llama-server --hf-repo jtjones/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B-Q8_0-GGUF --hf-file l3.1-dark-reasoning-lewdplay-evo-hermes-r1-uncensored-8b-q8_0.gguf -c 2048
84
+ ```