echos-keeper commited on
Commit
f5d3936
·
verified ·
1 Parent(s): ec579c1

Upload README.md with huggingface_hub

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