rikunarita-2 commited on
Commit
52c896d
·
verified ·
1 Parent(s): 4a64929

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +105 -0
README.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: FINAL-Bench/Darwin-4B-Genesis
4
+ tags:
5
+ - merge
6
+ - evolutionary-merge
7
+ - darwin
8
+ - darwin-v6
9
+ - model-mri
10
+ - cross-architecture
11
+ - ffn-crossbreed
12
+ - cma-es
13
+ - hybrid-vigor
14
+ - transformer-mamba
15
+ - reasoning
16
+ - gemma4
17
+ - qwen3.5
18
+ - gated-deltanet
19
+ - korean
20
+ - multilingual
21
+ - gpqa
22
+ - open-source
23
+ - apache-2.0
24
+ - world-first
25
+ - llama-cpp
26
+ - gguf-my-repo
27
+ language:
28
+ - ko
29
+ - en
30
+ - zh
31
+ - ja
32
+ - de
33
+ - fr
34
+ - es
35
+ pipeline_tag: text-generation
36
+ model-index:
37
+ - name: Darwin-4B-Genesis
38
+ results:
39
+ - task:
40
+ type: text-generation
41
+ name: Korean Cultural Understanding
42
+ dataset:
43
+ name: CLIcK
44
+ type: EunsuKim/CLIcK
45
+ metrics:
46
+ - type: accuracy
47
+ value: 92.0
48
+ name: Accuracy
49
+ verified: false
50
+ - task:
51
+ type: text-generation
52
+ name: Multi-Step Reasoning
53
+ dataset:
54
+ name: MuSR
55
+ type: TAUR-Lab/MuSR
56
+ metrics:
57
+ - type: accuracy
58
+ value: 70.0
59
+ name: Accuracy
60
+ verified: false
61
+ ---
62
+
63
+ # rikunarita-2/Darwin-4B-Genesis-Q5_K_M-GGUF
64
+ This model was converted to GGUF format from [`FINAL-Bench/Darwin-4B-Genesis`](https://huggingface.co/FINAL-Bench/Darwin-4B-Genesis) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
65
+ Refer to the [original model card](https://huggingface.co/FINAL-Bench/Darwin-4B-Genesis) for more details on the model.
66
+
67
+ ## Use with llama.cpp
68
+ Install llama.cpp through brew (works on Mac and Linux)
69
+
70
+ ```bash
71
+ brew install llama.cpp
72
+
73
+ ```
74
+ Invoke the llama.cpp server or the CLI.
75
+
76
+ ### CLI:
77
+ ```bash
78
+ llama-cli --hf-repo rikunarita-2/Darwin-4B-Genesis-Q5_K_M-GGUF --hf-file darwin-4b-genesis-q5_k_m-imat.gguf -p "The meaning to life and the universe is"
79
+ ```
80
+
81
+ ### Server:
82
+ ```bash
83
+ llama-server --hf-repo rikunarita-2/Darwin-4B-Genesis-Q5_K_M-GGUF --hf-file darwin-4b-genesis-q5_k_m-imat.gguf -c 2048
84
+ ```
85
+
86
+ 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.
87
+
88
+ Step 1: Clone llama.cpp from GitHub.
89
+ ```
90
+ git clone https://github.com/ggerganov/llama.cpp
91
+ ```
92
+
93
+ 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).
94
+ ```
95
+ cd llama.cpp && LLAMA_CURL=1 make
96
+ ```
97
+
98
+ Step 3: Run inference through the main binary.
99
+ ```
100
+ ./llama-cli --hf-repo rikunarita-2/Darwin-4B-Genesis-Q5_K_M-GGUF --hf-file darwin-4b-genesis-q5_k_m-imat.gguf -p "The meaning to life and the universe is"
101
+ ```
102
+ or
103
+ ```
104
+ ./llama-server --hf-repo rikunarita-2/Darwin-4B-Genesis-Q5_K_M-GGUF --hf-file darwin-4b-genesis-q5_k_m-imat.gguf -c 2048
105
+ ```