picroc commited on
Commit
e4642c9
·
verified ·
1 Parent(s): 96b09b9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - TeichAI/claude-4.5-opus-high-reasoning-250x
5
+ base_model: DavidAU/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning
6
+ language:
7
+ - en
8
+ - fr
9
+ - de
10
+ - es
11
+ - it
12
+ - pt
13
+ - zh
14
+ - ja
15
+ - ru
16
+ - ko
17
+ tags:
18
+ - thinking
19
+ - reasoning
20
+ - instruct
21
+ - Claude4.5-Opus
22
+ - creative
23
+ - creative writing
24
+ - fiction writing
25
+ - plot generation
26
+ - sub-plot generation
27
+ - story generation
28
+ - scene continue
29
+ - storytelling
30
+ - fiction story
31
+ - science fiction
32
+ - romance
33
+ - all genres
34
+ - story
35
+ - writing
36
+ - vivid prosing
37
+ - vivid writing
38
+ - fiction
39
+ - roleplaying
40
+ - bfloat16
41
+ - role play
42
+ - 128k context
43
+ - llama3.3
44
+ - llama-3
45
+ - llama-3.3
46
+ - unsloth
47
+ - finetune
48
+ - llama-cpp
49
+ - gguf-my-repo
50
+ pipeline_tag: text-generation
51
+ library_name: transformers
52
+ ---
53
+
54
+ # picroc/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning-Q6_K-GGUF
55
+ This model was converted to GGUF format from [`DavidAU/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning`](https://huggingface.co/DavidAU/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
56
+ Refer to the [original model card](https://huggingface.co/DavidAU/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning) for more details on the model.
57
+
58
+ ## Use with llama.cpp
59
+ Install llama.cpp through brew (works on Mac and Linux)
60
+
61
+ ```bash
62
+ brew install llama.cpp
63
+
64
+ ```
65
+ Invoke the llama.cpp server or the CLI.
66
+
67
+ ### CLI:
68
+ ```bash
69
+ llama-cli --hf-repo picroc/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning-Q6_K-GGUF --hf-file llama3.3-8b-instruct-thinking-claude-4.5-opus-high-reasoning-q6_k.gguf -p "The meaning to life and the universe is"
70
+ ```
71
+
72
+ ### Server:
73
+ ```bash
74
+ llama-server --hf-repo picroc/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning-Q6_K-GGUF --hf-file llama3.3-8b-instruct-thinking-claude-4.5-opus-high-reasoning-q6_k.gguf -c 2048
75
+ ```
76
+
77
+ 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.
78
+
79
+ Step 1: Clone llama.cpp from GitHub.
80
+ ```
81
+ git clone https://github.com/ggerganov/llama.cpp
82
+ ```
83
+
84
+ 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).
85
+ ```
86
+ cd llama.cpp && LLAMA_CURL=1 make
87
+ ```
88
+
89
+ Step 3: Run inference through the main binary.
90
+ ```
91
+ ./llama-cli --hf-repo picroc/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning-Q6_K-GGUF --hf-file llama3.3-8b-instruct-thinking-claude-4.5-opus-high-reasoning-q6_k.gguf -p "The meaning to life and the universe is"
92
+ ```
93
+ or
94
+ ```
95
+ ./llama-server --hf-repo picroc/Llama3.3-8B-Instruct-Thinking-Claude-4.5-Opus-High-Reasoning-Q6_K-GGUF --hf-file llama3.3-8b-instruct-thinking-claude-4.5-opus-high-reasoning-q6_k.gguf -c 2048
96
+ ```