Novaciano commited on
Commit
73d0180
·
verified ·
1 Parent(s): c523fa0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Novaciano/EMO_SEX_V2-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
+ license: apache-2.0
48
+ pipeline_tag: text-generation
49
+ tags:
50
+ - mergekit
51
+ - merge
52
+ - rp
53
+ - roleplay
54
+ - gguf
55
+ - 1b
56
+ - 4-bit
57
+ - nsfw
58
+ - uncensored
59
+ - sillytavern
60
+ - koboldcpp
61
+ - not-for-all-audiences
62
+ - llama-cpp
63
+ - gguf-my-repo
64
+ ---
65
+
66
+ # Novaciano/EMO_SEX_V2-3.2-1B-Q4_K_M-GGUF
67
+ This model was converted to GGUF format from [`Novaciano/EMO_SEX_V2-3.2-1B`](https://huggingface.co/Novaciano/EMO_SEX_V2-3.2-1B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
68
+ Refer to the [original model card](https://huggingface.co/Novaciano/EMO_SEX_V2-3.2-1B) for more details on the model.
69
+
70
+ ## Use with llama.cpp
71
+ Install llama.cpp through brew (works on Mac and Linux)
72
+
73
+ ```bash
74
+ brew install llama.cpp
75
+
76
+ ```
77
+ Invoke the llama.cpp server or the CLI.
78
+
79
+ ### CLI:
80
+ ```bash
81
+ llama-cli --hf-repo Novaciano/EMO_SEX_V2-3.2-1B-Q4_K_M-GGUF --hf-file emo_sex_v2-3.2-1b-q4_k_m.gguf -p "The meaning to life and the universe is"
82
+ ```
83
+
84
+ ### Server:
85
+ ```bash
86
+ llama-server --hf-repo Novaciano/EMO_SEX_V2-3.2-1B-Q4_K_M-GGUF --hf-file emo_sex_v2-3.2-1b-q4_k_m.gguf -c 2048
87
+ ```
88
+
89
+ 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.
90
+
91
+ Step 1: Clone llama.cpp from GitHub.
92
+ ```
93
+ git clone https://github.com/ggerganov/llama.cpp
94
+ ```
95
+
96
+ 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).
97
+ ```
98
+ cd llama.cpp && LLAMA_CURL=1 make
99
+ ```
100
+
101
+ Step 3: Run inference through the main binary.
102
+ ```
103
+ ./llama-cli --hf-repo Novaciano/EMO_SEX_V2-3.2-1B-Q4_K_M-GGUF --hf-file emo_sex_v2-3.2-1b-q4_k_m.gguf -p "The meaning to life and the universe is"
104
+ ```
105
+ or
106
+ ```
107
+ ./llama-server --hf-repo Novaciano/EMO_SEX_V2-3.2-1B-Q4_K_M-GGUF --hf-file emo_sex_v2-3.2-1b-q4_k_m.gguf -c 2048
108
+ ```