Abhaykoul commited on
Commit
1697ae4
·
verified ·
1 Parent(s): 50428e0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - hi
5
+ - zh
6
+ - es
7
+ - fr
8
+ - de
9
+ - ja
10
+ - ko
11
+ - ar
12
+ - pt
13
+ - ru
14
+ - it
15
+ - nl
16
+ - tr
17
+ - pl
18
+ - sv
19
+ - da
20
+ - 'no'
21
+ - fi
22
+ - he
23
+ - th
24
+ - vi
25
+ - id
26
+ - ms
27
+ - tl
28
+ - sw
29
+ - yo
30
+ - zu
31
+ - am
32
+ - bn
33
+ - gu
34
+ - kn
35
+ - ml
36
+ - mr
37
+ - ne
38
+ - or
39
+ - pa
40
+ - ta
41
+ - te
42
+ - ur
43
+ - multilingual
44
+ license: apache-2.0
45
+ base_model: HelpingAI/Dhanishtha-2.0-preview
46
+ tags:
47
+ - reasoning
48
+ - intermediate-thinking
49
+ - transformers
50
+ - conversational
51
+ - bilingual
52
+ - llama-cpp
53
+ - gguf-my-repo
54
+ datasets:
55
+ - Abhaykoul/Dhanishtha-R1
56
+ - open-thoughts/OpenThoughts-114k
57
+ - Abhaykoul/Dhanishtha-2.0-SUPERTHINKER
58
+ - Abhaykoul/Dhanishtha-2.0
59
+ library_name: transformers
60
+ pipeline_tag: text-generation
61
+ widget:
62
+ - text: 'Solve this riddle step by step: I am taken from a mine, and shut up in a
63
+ wooden case, from which I am never released, and yet I am used by almost everybody.
64
+ What am I?'
65
+ example_title: Complex Riddle Solving
66
+ - text: Explain the philosophical implications of artificial consciousness and think
67
+ through different perspectives.
68
+ example_title: Philosophical Reasoning
69
+ - text: Help me understand quantum mechanics, but take your time to think through
70
+ the explanation.
71
+ example_title: Educational Explanation
72
+ ---
73
+
74
+ # Abhaykoul/Dhanishtha-2.0-preview-Q4_0-GGUF
75
+ This model was converted to GGUF format from [`HelpingAI/Dhanishtha-2.0-preview`](https://huggingface.co/HelpingAI/Dhanishtha-2.0-preview) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
76
+ Refer to the [original model card](https://huggingface.co/HelpingAI/Dhanishtha-2.0-preview) for more details on the model.
77
+
78
+ ## Use with llama.cpp
79
+ Install llama.cpp through brew (works on Mac and Linux)
80
+
81
+ ```bash
82
+ brew install llama.cpp
83
+
84
+ ```
85
+ Invoke the llama.cpp server or the CLI.
86
+
87
+ ### CLI:
88
+ ```bash
89
+ llama-cli --hf-repo Abhaykoul/Dhanishtha-2.0-preview-Q4_0-GGUF --hf-file dhanishtha-2.0-preview-q4_0.gguf -p "The meaning to life and the universe is"
90
+ ```
91
+
92
+ ### Server:
93
+ ```bash
94
+ llama-server --hf-repo Abhaykoul/Dhanishtha-2.0-preview-Q4_0-GGUF --hf-file dhanishtha-2.0-preview-q4_0.gguf -c 2048
95
+ ```
96
+
97
+ 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.
98
+
99
+ Step 1: Clone llama.cpp from GitHub.
100
+ ```
101
+ git clone https://github.com/ggerganov/llama.cpp
102
+ ```
103
+
104
+ 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).
105
+ ```
106
+ cd llama.cpp && LLAMA_CURL=1 make
107
+ ```
108
+
109
+ Step 3: Run inference through the main binary.
110
+ ```
111
+ ./llama-cli --hf-repo Abhaykoul/Dhanishtha-2.0-preview-Q4_0-GGUF --hf-file dhanishtha-2.0-preview-q4_0.gguf -p "The meaning to life and the universe is"
112
+ ```
113
+ or
114
+ ```
115
+ ./llama-server --hf-repo Abhaykoul/Dhanishtha-2.0-preview-Q4_0-GGUF --hf-file dhanishtha-2.0-preview-q4_0.gguf -c 2048
116
+ ```