jimmylam6666
commited on
Commit
•
78f187b
1
Parent(s):
16f886d
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- de
|
5 |
+
- fr
|
6 |
+
- it
|
7 |
+
- pt
|
8 |
+
- hi
|
9 |
+
- es
|
10 |
+
- th
|
11 |
+
- zh
|
12 |
+
- ko
|
13 |
+
- ja
|
14 |
+
license: llama3.1
|
15 |
+
pipeline_tag: text-generation
|
16 |
+
tags:
|
17 |
+
- roleplay
|
18 |
+
- llama3
|
19 |
+
- sillytavern
|
20 |
+
- idol
|
21 |
+
- facebook
|
22 |
+
- meta
|
23 |
+
- pytorch
|
24 |
+
- llama
|
25 |
+
- llama-3
|
26 |
+
- llama-cpp
|
27 |
+
- gguf-my-repo
|
28 |
+
extra_gated_fields:
|
29 |
+
First Name: text
|
30 |
+
Last Name: text
|
31 |
+
Date of birth: date_picker
|
32 |
+
Country: country
|
33 |
+
Affiliation: text
|
34 |
+
Job title:
|
35 |
+
type: select
|
36 |
+
options:
|
37 |
+
- Student
|
38 |
+
- Research Graduate
|
39 |
+
- AI researcher
|
40 |
+
- AI developer/engineer
|
41 |
+
- Reporter
|
42 |
+
- Other
|
43 |
+
base_model: aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored
|
44 |
+
---
|
45 |
+
|
46 |
+
# jimmylam6666/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored-Q8_0-GGUF
|
47 |
+
This model was converted to GGUF format from [`aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored`](https://huggingface.co/aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
48 |
+
Refer to the [original model card](https://huggingface.co/aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored) for more details on the model.
|
49 |
+
|
50 |
+
## Use with llama.cpp
|
51 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
52 |
+
|
53 |
+
```bash
|
54 |
+
brew install llama.cpp
|
55 |
+
|
56 |
+
```
|
57 |
+
Invoke the llama.cpp server or the CLI.
|
58 |
+
|
59 |
+
### CLI:
|
60 |
+
```bash
|
61 |
+
llama-cli --hf-repo jimmylam6666/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored-Q8_0-GGUF --hf-file darkidol-llama-3.1-8b-instruct-1.2-uncensored-q8_0.gguf -p "The meaning to life and the universe is"
|
62 |
+
```
|
63 |
+
|
64 |
+
### Server:
|
65 |
+
```bash
|
66 |
+
llama-server --hf-repo jimmylam6666/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored-Q8_0-GGUF --hf-file darkidol-llama-3.1-8b-instruct-1.2-uncensored-q8_0.gguf -c 2048
|
67 |
+
```
|
68 |
+
|
69 |
+
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.
|
70 |
+
|
71 |
+
Step 1: Clone llama.cpp from GitHub.
|
72 |
+
```
|
73 |
+
git clone https://github.com/ggerganov/llama.cpp
|
74 |
+
```
|
75 |
+
|
76 |
+
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).
|
77 |
+
```
|
78 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
79 |
+
```
|
80 |
+
|
81 |
+
Step 3: Run inference through the main binary.
|
82 |
+
```
|
83 |
+
./llama-cli --hf-repo jimmylam6666/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored-Q8_0-GGUF --hf-file darkidol-llama-3.1-8b-instruct-1.2-uncensored-q8_0.gguf -p "The meaning to life and the universe is"
|
84 |
+
```
|
85 |
+
or
|
86 |
+
```
|
87 |
+
./llama-server --hf-repo jimmylam6666/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored-Q8_0-GGUF --hf-file darkidol-llama-3.1-8b-instruct-1.2-uncensored-q8_0.gguf -c 2048
|
88 |
+
```
|