Nitral-AI commited on
Commit
7d482a1
1 Parent(s): c22ba60

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -36
README.md CHANGED
@@ -10,47 +10,35 @@ tags:
10
  - gguf-my-repo
11
  base_model: Nitral-AI/Poppy_Porpoise-1.4-L3-8B
12
  ---
 
13
 
14
- # Nitral-AI/Poppy_Porpoise-1.4-L3-8B-Q5_K_M-GGUF
15
- This model was converted to GGUF format from [`Nitral-AI/Poppy_Porpoise-1.4-L3-8B`](https://huggingface.co/Nitral-AI/Poppy_Porpoise-1.4-L3-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
16
- Refer to the [original model card](https://huggingface.co/Nitral-AI/Poppy_Porpoise-1.4-L3-8B) for more details on the model.
17
 
18
- ## Use with llama.cpp
19
- Install llama.cpp through brew (works on Mac and Linux)
20
 
21
- ```bash
22
- brew install llama.cpp
23
 
24
- ```
25
- Invoke the llama.cpp server or the CLI.
26
-
27
- ### CLI:
28
- ```bash
29
- llama --hf-repo Nitral-AI/Poppy_Porpoise-1.4-L3-8B-Q5_K_M-GGUF --hf-file poppy_porpoise-1.4-l3-8b-q5_k_m.gguf -p "The meaning to life and the universe is"
30
- ```
31
 
32
- ### Server:
33
- ```bash
34
- llama-server --hf-repo Nitral-AI/Poppy_Porpoise-1.4-L3-8B-Q5_K_M-GGUF --hf-file poppy_porpoise-1.4-l3-8b-q5_k_m.gguf -c 2048
35
- ```
36
 
37
- 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.
38
-
39
- Step 1: Clone llama.cpp from GitHub.
40
- ```
41
- git clone https://github.com/ggerganov/llama.cpp
42
- ```
43
 
44
- 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).
45
- ```
46
- cd llama.cpp && LLAMA_CURL=1 make
47
- ```
48
-
49
- Step 3: Run inference through the main binary.
50
- ```
51
- ./main --hf-repo Nitral-AI/Poppy_Porpoise-1.4-L3-8B-Q5_K_M-GGUF --hf-file poppy_porpoise-1.4-l3-8b-q5_k_m.gguf -p "The meaning to life and the universe is"
52
- ```
53
- or
54
- ```
55
- ./server --hf-repo Nitral-AI/Poppy_Porpoise-1.4-L3-8B-Q5_K_M-GGUF --hf-file poppy_porpoise-1.4-l3-8b-q5_k_m.gguf -c 2048
 
 
 
 
 
56
  ```
 
10
  - gguf-my-repo
11
  base_model: Nitral-AI/Poppy_Porpoise-1.4-L3-8B
12
  ---
13
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/642265bc01c62c1e4102dc36/Boje781GkTdYgORTYGI6r.png)
14
 
15
+ # "Poppy Porpoise" is a cutting-edge AI roleplay assistant based on the Llama 3 8B model, specializing in crafting unforgettable narrative experiences. With its advanced language capabilities, Poppy expertly immerses users in an interactive and engaging adventure, tailoring each adventure to their individual preferences.
 
 
16
 
17
+ # Note: This variant is an attempt to get something closer to 0.72 while maintaining the improvements of 1.30.
 
18
 
19
+ # : [Presets in repo folder](https://huggingface.co/Nitral-AI/Poppy_Porpoise-1.0-L3-8B/tree/main/Porpoise_1.0-Presets).
 
20
 
21
+ # If you want to use vision functionality: You must use the latest versions of [Koboldcpp](https://github.com/LostRuins/koboldcpp). And need to load the specified **mmproj** file: [Llava MMProj](https://huggingface.co/Nitral-AI/Llama-3-Update-2.0-mmproj-model-f16).
 
 
 
 
 
 
22
 
23
+ ### Configuration
 
 
 
24
 
25
+ The following YAML configuration was used to produce this model:
 
 
 
 
 
26
 
27
+ ```yaml
28
+ slices:
29
+ - sources:
30
+ - model: Nitral-AI/Pp-72xra1
31
+ layer_range: [0, 32]
32
+ - model: Nitral-AI/Poppy-1.35-Phase1
33
+ layer_range: [0, 32]
34
+ merge_method: slerp
35
+ base_model: Nitral-AI/Pp-72xra1
36
+ parameters:
37
+ t:
38
+ - filter: self_attn
39
+ value: [0, 0.5, 0.3, 0.7, 1]
40
+ - filter: mlp
41
+ value: [1, 0.5, 0.7, 0.3, 0]
42
+ - value: 0.5
43
+ dtype: bfloat16
44
  ```