Carnyzzle commited on
Commit
31b0eaa
·
verified ·
1 Parent(s): e74a045

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - Delta-Vector/Hydrus-Instruct-SmolTalk-V2
4
+ - Delta-Vector/Hydrus-SonnetOrca-V2
5
+ - Delta-Vector/Hydrus-FeedSum-ShareGPT
6
+ - Delta-Vector/Hydrus-Tulu-Personas-Filtered-Sharegpt
7
+ - Delta-Vector/Hydrus-No_Robots-R1-Filtered
8
+ - Delta-Vector/Hydrus-Chat_error-Pure-Dove-sharegpt
9
+ - Delta-Vector/Hydrus-HelpSteer2
10
+ - Delta-Vector/Hydrus-R1-Thinking-Sharegpt
11
+ - Delta-Vector/Hydrus-Science-QA-sharegpt
12
+ - Delta-Vector/Hydrus-Claude-Instruct-2.7K
13
+ - Delta-Vector/Hydrus-Claude-Instruct-5K
14
+ - PocketDoc/Dans-Assistantmaxx-UnnaturalInstructions-GPT4
15
+ - PocketDoc/Dans-Toolmaxx-ShellCommands
16
+ - PocketDoc/Dans-MemoryCore-CoreCurriculum-Small
17
+ - PocketDoc/Dans-Logicmaxx-SAT-AP
18
+ - PocketDoc/Dans-Benchmaxx
19
+ - Nitral-AI/ARES-ShareGPT
20
+ - PocketDoc/Dans-Taskmaxx-TableGPT
21
+ - Delta-Vector/Ursa-Erebus-16K
22
+ - Delta-Vector/Ursa-Books-Light-Novels-V1
23
+ - NewEden/Orion-LIT
24
+ - Delta-Vector/Ursa-Asstr-V2-18k
25
+ - Delta-Vector/Ursa-Books-V2
26
+ - Delta-Vector/Ursa-Scribblehub-7k
27
+ - Delta-Vector/Ursa-Orion-EA-Comp-Filtered
28
+ - Delta-Vector/Ursa-HoneyFeed
29
+ - Delta-Vector/Ursa-Falling-through-the-world
30
+ base_model: Delta-Vector/Sol-Reaver-15B-Instruct
31
+ tags:
32
+ - roleplay
33
+ - instruct
34
+ - creative_writing
35
+ - story-writing
36
+ - mistral
37
+ - llama-cpp
38
+ - gguf-my-repo
39
+ ---
40
+
41
+ # Carnyzzle/Sol-Reaver-15B-Instruct-Q6_K-GGUF
42
+ This model was converted to GGUF format from [`Delta-Vector/Sol-Reaver-15B-Instruct`](https://huggingface.co/Delta-Vector/Sol-Reaver-15B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
43
+ Refer to the [original model card](https://huggingface.co/Delta-Vector/Sol-Reaver-15B-Instruct) for more details on the model.
44
+
45
+ ## Use with llama.cpp
46
+ Install llama.cpp through brew (works on Mac and Linux)
47
+
48
+ ```bash
49
+ brew install llama.cpp
50
+
51
+ ```
52
+ Invoke the llama.cpp server or the CLI.
53
+
54
+ ### CLI:
55
+ ```bash
56
+ llama-cli --hf-repo Carnyzzle/Sol-Reaver-15B-Instruct-Q6_K-GGUF --hf-file sol-reaver-15b-instruct-q6_k.gguf -p "The meaning to life and the universe is"
57
+ ```
58
+
59
+ ### Server:
60
+ ```bash
61
+ llama-server --hf-repo Carnyzzle/Sol-Reaver-15B-Instruct-Q6_K-GGUF --hf-file sol-reaver-15b-instruct-q6_k.gguf -c 2048
62
+ ```
63
+
64
+ 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.
65
+
66
+ Step 1: Clone llama.cpp from GitHub.
67
+ ```
68
+ git clone https://github.com/ggerganov/llama.cpp
69
+ ```
70
+
71
+ 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).
72
+ ```
73
+ cd llama.cpp && LLAMA_CURL=1 make
74
+ ```
75
+
76
+ Step 3: Run inference through the main binary.
77
+ ```
78
+ ./llama-cli --hf-repo Carnyzzle/Sol-Reaver-15B-Instruct-Q6_K-GGUF --hf-file sol-reaver-15b-instruct-q6_k.gguf -p "The meaning to life and the universe is"
79
+ ```
80
+ or
81
+ ```
82
+ ./llama-server --hf-repo Carnyzzle/Sol-Reaver-15B-Instruct-Q6_K-GGUF --hf-file sol-reaver-15b-instruct-q6_k.gguf -c 2048
83
+ ```