ngxson HF staff commited on
Commit
b0dab75
·
verified ·
1 Parent(s): 2e32587

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ language:
4
+ - en
5
+ base_model: prithivMLmods/Deepthink-Reasoning-Adapter
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - text-generation-inference
9
+ - code-solve
10
+ - algorithm
11
+ - codepy
12
+ - qwen_base
13
+ - 7b
14
+ - LoRA
15
+ - CoT
16
+ - llama-cpp
17
+ - gguf-my-lora
18
+ library_name: peft
19
+ ---
20
+
21
+ # ngxson/Deepthink-Reasoning-Adapter-Q8_0-GGUF
22
+ This LoRA adapter was converted to GGUF format from [`prithivMLmods/Deepthink-Reasoning-Adapter`](https://huggingface.co/prithivMLmods/Deepthink-Reasoning-Adapter) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
23
+ Refer to the [original adapter repository](https://huggingface.co/prithivMLmods/Deepthink-Reasoning-Adapter) for more details.
24
+
25
+ ## Use with llama.cpp
26
+
27
+ ```bash
28
+ # with cli
29
+ llama-cli -m base_model.gguf --lora Deepthink-Reasoning-Adapter-q8_0.gguf (...other args)
30
+
31
+ # with server
32
+ llama-server -m base_model.gguf --lora Deepthink-Reasoning-Adapter-q8_0.gguf (...other args)
33
+ ```
34
+
35
+ To know more about LoRA usage with llama.cpp server, refer to the [llama.cpp server documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md).