ZeroXClem/Llama-3.1-8B-SuperNova-EtherealHermes is a cutting-edge fusion of top-tier Llama 3.1 models, meticulously crafted to balance powerful instruction-following, immersive storytelling, and logical reasoning. This merge integrates the strengths of SuperNova, EtherealHermes, and additional high-performance models, resulting in an adaptable and dynamic AI.
This model is governed by the Meta Llama 3.1 Community License Agreement and is optimized for long-form generation, multi-step reasoning, and roleplay applications.
🚀 Key Features
Advanced Instruction Following – Leverages high-context retention for accurate and logical responses.
This curated selection ensures the model is equipped with both technical precision and artistic creativity.
🔧 Merge Configuration
The model was merged using Model Stock methodology with bfloat16 precision to ensure a seamless blend of capabilities. The YAML configuration is as follows:
yaml
1# Merge configuration for ZeroXClem-Llama-3.1-8B-SuperNova-EtherealHermes using MODEL STOCK23name: ZeroXClem-Llama-3.1-8B-SuperNova-EtherealHermes
4base_model: invisietch/L3.1-EtherealRainbow-v1.0-rc1-8B
5dtype: bfloat16
6merge_method: model_stock
7models:8-model: ZeroXClem/L3SAO-Mix-SuperHermes-NovaPurosani-8B
9-model: ZeroXClem/Llama3.1-Hermes3-SuperNova-8B-L3.1-Purosani-2-8B
10-model: djuna/L3.1-Purosani-2-8B
11-model: ZeroXClem/Llama-3.1-8B-SuperTulu-LexiNova
12tokenizer_source: invisietch/L3.1-EtherealRainbow-v1.0-rc1-8B
13
This ensures logical coherence, creative diversity, and robust performance across various AI tasks.
🛠 How to Use
🔥 Ollama (Quick Inference)
You can run the model using Ollama for direct testing:
ollama run hf.co/ZeroXClem/Llama-3.1-8B-SuperNova-EtherealHermes-Q4_K_M-GGUF
🤗 Hugging Face Transformers (Python)
python
1from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
2import torch
34model_name ="ZeroXClem/Llama-3.1-8B-SuperNova-EtherealHermes"56# Load tokenizer & model7tokenizer = AutoTokenizer.from_pretrained(model_name)8model = AutoModelForCausalLM.from_pretrained(9 model_name,10 torch_dtype=torch.bfloat16,11 device_map="auto"12)1314# Initialize text generation pipeline15text_generator = pipeline(16"text-generation",17 model=model,18 tokenizer=tokenizer,19 torch_dtype=torch.bfloat16,20 device_map="auto"21)2223# Example prompt24prompt ="Describe the significance of AI ethics in modern technology."2526# Generate output27outputs = text_generator(28 prompt,29 max_new_tokens=200,30 do_sample=True,31 temperature=0.7,32 top_k=50,33 top_p=0.9534)3536print(outputs[0]["generated_text"])
📌 Best Practices
Use System Prompts:
For best performance, add a system instruction before inference: "Think step by step with logical reasoning before providing any response."
Uncensored Mode:
For more unrestricted output, set the system message to "." or customize it accordingly.
Quantization Considerations:
Q4 may lead to refusal issues due to loss of fine-tuning alignment.
F16 or Q8 is recommended for optimal inference quality.
📜 License
This model is released under the Meta Llama 3.1 Community License Agreement.
⚠ Disclaimer: This model is highly compliant and uncensored. It is the user's responsibility to ensure ethical and appropriate usage, especially in public-facing applications.
💡 Future Improvements
Enhanced ethical alignment while preserving model capabilities.
Further fine-tuning for domain-specific reasoning tasks.
Expanded dataset integration for better real-world knowledge representation.
❤️ Special Thanks
A heartfelt thank you to:
djuna for L3.1-Purosani-2-8B.
invisietch for L3.1-EtherealRainbow.
MergeKit Community for advancing open-source merging techniques.
The 🤗 Hugging Face & Open-Source AI ecosystem for continued AI innovation.
Your contributions fuel the progress of next-gen AI models! 🚀💜
📢 Feedback & Contributions
If you encounter any issues, have suggestions, or wish to contribute, feel free to open a discussion or submit a pull request.