Novaciano commited on
Commit
feec333
·
verified ·
1 Parent(s): ae5ff7a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Novaciano/BAHAMUTH-PURGED-3.2-1B
3
+ datasets:
4
+ - HuggingFaceTB/smoltalk
5
+ - Guilherme34/uncensor
6
+ - teknium/OpenHermes-2.5
7
+ - passing2961/multifaceted-skill-of-mind
8
+ - PawanKrd/math-gpt-4o-200k
9
+ - V3N0M/Jenna-50K-Alpaca-Uncensored
10
+ - cognitivecomputations/dolphin-coder
11
+ - mlabonne/FineTome-100k
12
+ - microsoft/orca-math-word-problems-200k
13
+ - CarrotAI/ko-instruction-dataset
14
+ - Salesforce/xlam-function-calling-60k
15
+ - anthracite-org/kalo-opus-instruct-22k-no-refusal
16
+ - anthracite-org/stheno-filtered-v1.1
17
+ - anthracite-org/nopm_claude_writing_fixed
18
+ - AiAF/SCPWiki-Archive-02-March-2025-Datasets
19
+ - huihui-ai/QWQ-LONGCOT-500K
20
+ - huihui-ai/LONGCOT-Refine-500K
21
+ - Epiculous/Synthstruct-Gens-v1.1-Filtered-n-Cleaned
22
+ - Epiculous/SynthRP-Gens-v1.1-Filtered-n-Cleaned
23
+ - alexandreteles/AlpacaToxicQA_ShareGPT
24
+ - Nitral-AI/Active_RP-ShareGPT
25
+ - PJMixers/hieunguyenminh_roleplay-deduped-ShareGPT
26
+ - Nitral-AI/RP_Alignment-ShareGPT
27
+ - Chaser-cz/sonnet35-charcard-roleplay-sharegpt
28
+ - AiCloser/sharegpt_cot_dataset
29
+ - PJMixers/Gryphe_Opus-WritingPrompts-Story2Prompt-ShareGPT
30
+ - priveeai/pippa_sharegpt
31
+ - Locutusque/sharegpt_gpt4_uncensored_cleaned
32
+ - OpenCoder-LLM/opc-sft-stage1
33
+ - OpenCoder-LLM/opc-sft-stage2
34
+ - microsoft/orca-agentinstruct-1M-v1
35
+ - NousResearch/hermes-function-calling-v1
36
+ - AI-MO/NuminaMath-CoT
37
+ - AI-MO/NuminaMath-TIR
38
+ - allenai/tulu-3-sft-mixture
39
+ - cognitivecomputations/samantha-data
40
+ - m-a-p/CodeFeedback-Filtered-Instruction
41
+ - m-a-p/Code-Feedback
42
+ - FreedomIntelligence/medical-o1-reasoning-SFT
43
+ language:
44
+ - es
45
+ - en
46
+ library_name: transformers
47
+ tags:
48
+ - mergekit
49
+ - merge
50
+ - llama
51
+ - llama3.2
52
+ - rp
53
+ - roleplay
54
+ - nsfw
55
+ - 1b
56
+ - not-for-all-audiences
57
+ - llama-cpp
58
+ - gguf-my-repo
59
+ ---
60
+
61
+ # Novaciano/BAHAMUTH-PURGED-3.2-1B-Q6_K-GGUF
62
+ This model was converted to GGUF format from [`Novaciano/BAHAMUTH-PURGED-3.2-1B`](https://huggingface.co/Novaciano/BAHAMUTH-PURGED-3.2-1B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
63
+ Refer to the [original model card](https://huggingface.co/Novaciano/BAHAMUTH-PURGED-3.2-1B) for more details on the model.
64
+
65
+ ## Use with llama.cpp
66
+ Install llama.cpp through brew (works on Mac and Linux)
67
+
68
+ ```bash
69
+ brew install llama.cpp
70
+
71
+ ```
72
+ Invoke the llama.cpp server or the CLI.
73
+
74
+ ### CLI:
75
+ ```bash
76
+ llama-cli --hf-repo Novaciano/BAHAMUTH-PURGED-3.2-1B-Q6_K-GGUF --hf-file bahamuth-purged-3.2-1b-q6_k.gguf -p "The meaning to life and the universe is"
77
+ ```
78
+
79
+ ### Server:
80
+ ```bash
81
+ llama-server --hf-repo Novaciano/BAHAMUTH-PURGED-3.2-1B-Q6_K-GGUF --hf-file bahamuth-purged-3.2-1b-q6_k.gguf -c 2048
82
+ ```
83
+
84
+ 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.
85
+
86
+ Step 1: Clone llama.cpp from GitHub.
87
+ ```
88
+ git clone https://github.com/ggerganov/llama.cpp
89
+ ```
90
+
91
+ 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).
92
+ ```
93
+ cd llama.cpp && LLAMA_CURL=1 make
94
+ ```
95
+
96
+ Step 3: Run inference through the main binary.
97
+ ```
98
+ ./llama-cli --hf-repo Novaciano/BAHAMUTH-PURGED-3.2-1B-Q6_K-GGUF --hf-file bahamuth-purged-3.2-1b-q6_k.gguf -p "The meaning to life and the universe is"
99
+ ```
100
+ or
101
+ ```
102
+ ./llama-server --hf-repo Novaciano/BAHAMUTH-PURGED-3.2-1B-Q6_K-GGUF --hf-file bahamuth-purged-3.2-1b-q6_k.gguf -c 2048
103
+ ```