ZeroXClem commited on
Commit
3ac7a46
1 Parent(s): 85e5e0f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - merge
5
+ - model_fusion
6
+ - TIES
7
+ - Llama3.1
8
+ - crypto
9
+ - blockchain
10
+ - coding_assistant
11
+ - creative_writing
12
+ - roleplaying
13
+ - uncensored
14
+ - latent_diffusion
15
+ - long_context
16
+ - agentic_AI
17
+ - multi_domain
18
+ - research
19
+ - instruction-following
20
+ - technical_reasoning
21
+ - task_generalization
22
+ - AI_tools
23
+ - GPT
24
+ - llama-cpp
25
+ - gguf-my-repo
26
+ base_model: ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B
27
+ datasets:
28
+ - CoinMarketCap
29
+ - blockchain_projects
30
+ - agentic_code_DPO
31
+ libraries: transformers
32
+ library_name: transformers
33
+ ---
34
+
35
+ # ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B-Q8_0-GGUF
36
+ This model was converted to GGUF format from [`ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B`](https://huggingface.co/ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
37
+ Refer to the [original model card](https://huggingface.co/ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B) for more details on the model.
38
+
39
+ ## Use with llama.cpp
40
+ Install llama.cpp through brew (works on Mac and Linux)
41
+
42
+ ```bash
43
+ brew install llama.cpp
44
+
45
+ ```
46
+ Invoke the llama.cpp server or the CLI.
47
+
48
+ ### CLI:
49
+ ```bash
50
+ llama-cli --hf-repo ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B-Q8_0-GGUF --hf-file llama3.1-theiafire-darkfusion-8b-q8_0.gguf -p "The meaning to life and the universe is"
51
+ ```
52
+
53
+ ### Server:
54
+ ```bash
55
+ llama-server --hf-repo ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B-Q8_0-GGUF --hf-file llama3.1-theiafire-darkfusion-8b-q8_0.gguf -c 2048
56
+ ```
57
+
58
+ 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.
59
+
60
+ Step 1: Clone llama.cpp from GitHub.
61
+ ```
62
+ git clone https://github.com/ggerganov/llama.cpp
63
+ ```
64
+
65
+ 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).
66
+ ```
67
+ cd llama.cpp && LLAMA_CURL=1 make
68
+ ```
69
+
70
+ Step 3: Run inference through the main binary.
71
+ ```
72
+ ./llama-cli --hf-repo ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B-Q8_0-GGUF --hf-file llama3.1-theiafire-darkfusion-8b-q8_0.gguf -p "The meaning to life and the universe is"
73
+ ```
74
+ or
75
+ ```
76
+ ./llama-server --hf-repo ZeroXClem/Llama3.1-TheiaFire-DarkFusion-8B-Q8_0-GGUF --hf-file llama3.1-theiafire-darkfusion-8b-q8_0.gguf -c 2048
77
+ ```