Text Generation
Transformers
Safetensors
English
Spanish
llama
mergekit
Merge
abliterated
uncensored
llama3.2
Not-For-All-Audiences
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use Novaciano/Sigil-Of-Satan-3.2-1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Novaciano/Sigil-Of-Satan-3.2-1B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Novaciano/Sigil-Of-Satan-3.2-1B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Novaciano/Sigil-Of-Satan-3.2-1B") model = AutoModelForCausalLM.from_pretrained("Novaciano/Sigil-Of-Satan-3.2-1B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Novaciano/Sigil-Of-Satan-3.2-1B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Novaciano/Sigil-Of-Satan-3.2-1B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Novaciano/Sigil-Of-Satan-3.2-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Novaciano/Sigil-Of-Satan-3.2-1B
- SGLang
How to use Novaciano/Sigil-Of-Satan-3.2-1B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Novaciano/Sigil-Of-Satan-3.2-1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Novaciano/Sigil-Of-Satan-3.2-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Novaciano/Sigil-Of-Satan-3.2-1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Novaciano/Sigil-Of-Satan-3.2-1B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Novaciano/Sigil-Of-Satan-3.2-1B with Docker Model Runner:
docker model run hf.co/Novaciano/Sigil-Of-Satan-3.2-1B
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,7 +28,6 @@ This is a merge of pre-trained language models created using [mergekit](https://
|
|
| 28 |
<center> <img src="https://i.ibb.co/jkpYCJLs/pngimg-com-pentagram-PNG23.png" alt="pngimg-com-pentagram-PNG23" border="0"> </center>
|
| 29 |
|
| 30 |
---
|
| 31 |
-
|
| 32 |
# 🇬🇧 English
|
| 33 |
|
| 34 |
**Remixed version of HarmfulProject-3.2-1B model.**
|
|
@@ -41,8 +40,6 @@ The difference with [HarmfulProject-3.2-1B](https://huggingface.co/Novaciano/UNC
|
|
| 41 |
|
| 42 |
I'm not responsible for the content of the model since I only made the mix, I didn't inject any dataset into it... yet.
|
| 43 |
|
| 44 |
-
### Quants
|
| 45 |
-
|
| 46 |
### Others models created with this merge
|
| 47 |
|
| 48 |
- [Cultist-3.2-1B](https://huggingface.co/Novaciano/Cultist-3.2-1B) **- Sigil-of-Satan was used as a base, may contain LEWD data.**
|
|
@@ -59,15 +56,18 @@ La diferencia con [HarmfulProject-3.2-1B](https://huggingface.co/Novaciano/UNCEN
|
|
| 59 |
|
| 60 |
**AVISO:** No me hago cargo del contenido del modelo ya que solo hice la mezcla, no le inyecté dataset alguno... aún.
|
| 61 |
|
| 62 |
-
### Cuantizaciones
|
| 63 |
-
|
| 64 |
### Otros modelos creados con esta mezclas
|
| 65 |
|
| 66 |
- [Cultist-3.2-1B](https://huggingface.co/Novaciano/Cultist-3.2-1B) **- Sigil-of-Satan fue usado como base, puede contener datos LEWD.**
|
| 67 |
- [LEWD-Mental-Cultist-3.2-1B](https://huggingface.co/Novaciano/LEWD-Mental-Cultist-3.2-1B) **- LEWD-Mental-Occult fue usado como base, puede que sea más explicito.**
|
| 68 |
|
| 69 |
---
|
|
|
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
### Merge Method
|
| 72 |
|
| 73 |
This model was merged using the [Model Stock](https://arxiv.org/abs/2403.19522) merge method using [Novaciano/BAPHOMET](https://huggingface.co/Novaciano/BAPHOMET) as a base.
|
|
|
|
| 28 |
<center> <img src="https://i.ibb.co/jkpYCJLs/pngimg-com-pentagram-PNG23.png" alt="pngimg-com-pentagram-PNG23" border="0"> </center>
|
| 29 |
|
| 30 |
---
|
|
|
|
| 31 |
# 🇬🇧 English
|
| 32 |
|
| 33 |
**Remixed version of HarmfulProject-3.2-1B model.**
|
|
|
|
| 40 |
|
| 41 |
I'm not responsible for the content of the model since I only made the mix, I didn't inject any dataset into it... yet.
|
| 42 |
|
|
|
|
|
|
|
| 43 |
### Others models created with this merge
|
| 44 |
|
| 45 |
- [Cultist-3.2-1B](https://huggingface.co/Novaciano/Cultist-3.2-1B) **- Sigil-of-Satan was used as a base, may contain LEWD data.**
|
|
|
|
| 56 |
|
| 57 |
**AVISO:** No me hago cargo del contenido del modelo ya que solo hice la mezcla, no le inyecté dataset alguno... aún.
|
| 58 |
|
|
|
|
|
|
|
| 59 |
### Otros modelos creados con esta mezclas
|
| 60 |
|
| 61 |
- [Cultist-3.2-1B](https://huggingface.co/Novaciano/Cultist-3.2-1B) **- Sigil-of-Satan fue usado como base, puede contener datos LEWD.**
|
| 62 |
- [LEWD-Mental-Cultist-3.2-1B](https://huggingface.co/Novaciano/LEWD-Mental-Cultist-3.2-1B) **- LEWD-Mental-Occult fue usado como base, puede que sea más explicito.**
|
| 63 |
|
| 64 |
---
|
| 65 |
+
## Quants / Cuantizaciones
|
| 66 |
|
| 67 |
+
- **Weighed:** [In process...]()
|
| 68 |
+
- **iMatrix:** [En proceso...]()
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
### Merge Method
|
| 72 |
|
| 73 |
This model was merged using the [Model Stock](https://arxiv.org/abs/2403.19522) merge method using [Novaciano/BAPHOMET](https://huggingface.co/Novaciano/BAPHOMET) as a base.
|