Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
tags:
|
| 9 |
+
- character
|
| 10 |
+
---
|
| 11 |
+
# SydneyBot - LLaMA 8B Model (v1)
|
| 12 |
+
|
| 13 |
+
## Model Description
|
| 14 |
+
This is a fine-tuned version of the LLaMA 8B model, trained to emulate the personality of a fictional character named Sydney. The model is trained for conversational AI and supports text generation tasks.
|
| 15 |
+
|
| 16 |
+
- **Architecture**: LLaMA 8B
|
| 17 |
+
- **Fine-tuned On**: Custom dataset representing the personality of Sydney
|
| 18 |
+
- **Size**: 8B parameters
|
| 19 |
+
- **Task**: Text generation (Causal Language Modeling)
|
| 20 |
+
|
| 21 |
+
## Intended Use
|
| 22 |
+
- **Primary Use**: This model is intended for text generation, including role-playing chat, dialogue systems, and storytelling.
|
| 23 |
+
- **How to Use**: The model can be used via the Hugging Face Inference API or integrated into custom applications using transformers.
|
| 24 |
+
|
| 25 |
+
## Example Usage:
|
| 26 |
+
```python
|
| 27 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 28 |
+
|
| 29 |
+
model = AutoModelForCausalLM.from_pretrained("Eschatol/SydneyBot")
|
| 30 |
+
tokenizer = AutoTokenizer.from_pretrained("Eschatol/SydneyBot")
|
| 31 |
+
|
| 32 |
+
inputs = tokenizer("Hello, Sydney!", return_tensors="pt")
|
| 33 |
+
outputs = model.generate(inputs["input_ids"], max_length=50)
|
| 34 |
+
print(tokenizer.decode(outputs[0]))
|