matrixportal commited on
Commit
de84e95
·
verified ·
1 Parent(s): 8a5ed8f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ thumbnail: https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/jg2NWmCUfPyzizm2USjMt.jpeg
3
+ datasets:
4
+ - NewEden/Orion-LIT
5
+ - NewEden/Orion-Asstr-Stories-16K
6
+ - Mielikki/Erebus-87k
7
+ - PocketDoc/Dans-MemoryCore-CoreCurriculum-Small
8
+ - Nitral-AI/ARES-ShareGPT
9
+ - Gryphe/Sonnet3.5-SlimOrcaDedupCleaned-20k
10
+ - NewEden/Claude-Instruct-2.7K
11
+ - NewEden/Claude-Instruct-5K
12
+ - PocketDoc/Dans-Personamaxx-VN
13
+ - NewEden/vanilla-backrooms-claude-sharegpt
14
+ - PocketDoc/Dans-Prosemaxx-Cowriter-3-S
15
+ - NewEden/Misc-Mang-Sharegpt
16
+ - PocketDoc/Dans-Prosemaxx-Adventure
17
+ - PocketDoc/Dans-Failuremaxx-Adventure-3
18
+ - PocketDoc/Dans-Prosemaxx-InstructWriter-ZeroShot
19
+ - PocketDoc/Dans-Prosemaxx-InstructWriter-Continue
20
+ base_model: Delta-Vector/Hamanasu-15B-Adventure
21
+ tags:
22
+ - phi
23
+ - roleplay
24
+ - finetune
25
+ - storywriting
26
+ - llama-cpp
27
+ - gguf-my-repo
28
+ ---
29
+
30
+ # matrixportal/Hamanasu-15B-Adventure-Q4_0-GGUF
31
+ This model was converted to GGUF format from [`Delta-Vector/Hamanasu-15B-Adventure`](https://huggingface.co/Delta-Vector/Hamanasu-15B-Adventure) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
32
+ Refer to the [original model card](https://huggingface.co/Delta-Vector/Hamanasu-15B-Adventure) for more details on the model.
33
+
34
+ ## Use with llama.cpp
35
+ Install llama.cpp through brew (works on Mac and Linux)
36
+
37
+ ```bash
38
+ brew install llama.cpp
39
+
40
+ ```
41
+ Invoke the llama.cpp server or the CLI.
42
+
43
+ ### CLI:
44
+ ```bash
45
+ llama-cli --hf-repo matrixportal/Hamanasu-15B-Adventure-Q4_0-GGUF --hf-file hamanasu-15b-adventure-q4_0.gguf -p "The meaning to life and the universe is"
46
+ ```
47
+
48
+ ### Server:
49
+ ```bash
50
+ llama-server --hf-repo matrixportal/Hamanasu-15B-Adventure-Q4_0-GGUF --hf-file hamanasu-15b-adventure-q4_0.gguf -c 2048
51
+ ```
52
+
53
+ 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.
54
+
55
+ Step 1: Clone llama.cpp from GitHub.
56
+ ```
57
+ git clone https://github.com/ggerganov/llama.cpp
58
+ ```
59
+
60
+ 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).
61
+ ```
62
+ cd llama.cpp && LLAMA_CURL=1 make
63
+ ```
64
+
65
+ Step 3: Run inference through the main binary.
66
+ ```
67
+ ./llama-cli --hf-repo matrixportal/Hamanasu-15B-Adventure-Q4_0-GGUF --hf-file hamanasu-15b-adventure-q4_0.gguf -p "The meaning to life and the universe is"
68
+ ```
69
+ or
70
+ ```
71
+ ./llama-server --hf-repo matrixportal/Hamanasu-15B-Adventure-Q4_0-GGUF --hf-file hamanasu-15b-adventure-q4_0.gguf -c 2048
72
+ ```