File size: 1,573 Bytes
2daf6d6 23b9013 2daf6d6 23b9013 2daf6d6 23b9013 2daf6d6 23b9013 2daf6d6 628c5bc 2daf6d6 23b9013 2daf6d6 23b9013 2daf6d6 dd9c896 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ---
license: apache-2.0
tags:
- text-generation
- instruction-tuned
- llama
- gguf
- chatbot
- code
library_name: llama.cpp
language:
- en
- rm
datasets:
- custom
model-index:
- name: Corelyn NeoH
results: []
base_model:
- bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF
---

# Corelyn NeoH GGUF Model
## Specifications :
- Model Name: Corelyn NeoH
- Base Name: NeoH-3.2
- Type: Instruct / Fine-tuned
- Architecture: LLaMA
- Size: 3B parameters
- Organization: Corelyn
## Model Overview
Corelyn NeoH is a 3-billion parameter LLaMA-based instruction-tuned model, designed for general-purpose assistant tasks and knowledge extraction. It is a fine-tuned variant optimized for instruction-following use cases.
- Fine-tuning type: Instruct
- Base architecture: LLaMA
- Parameter count: 3B
- Context length: 131,072 tokens
### This model is suitable for applications such as:
- Chatbots and conversational AI
- Knowledge retrieval and Q&A
- Code and text generation
- Instruction-following tasks
## Usage
Download from : [NeoH3.2](https://huggingface.co/CorelynAI/NeoH/resolve/main/NeoH3.2.gguf?download=true)
```python
# pip install pip install llama-cpp-python
from llama_cpp import Llama
# Load the model (update the path to where your .gguf file is)
llm = Llama(model_path="path/to/the/file/NeoH3.2.gguf")
# Create chat completion
response = llm.create_chat_completion(
messages=[{"role": "user", "content": "Create a Haiku about AI"}]
)
# Print the generated text
print(response.choices[0].message["content"])
``` |