|
--- |
|
license: apache-2.0 |
|
datasets: |
|
- macadeliccc/opus_samantha |
|
--- |
|
|
|
# Opus-Samantha-Llama-3-8B |
|
|
|
Trained on 1xA100 |
|
|
|
**5/11/24: Model has been updated and performs much better** |
|
|
|
|
|
## Process |
|
|
|
- Original Model: [meta-llama/Meta-Llama-3-8B](https://huggingface.co/meta-llama/Meta-Llama-3-8B) |
|
- Datatset: [macadeliccc/opus_samantha](https://huggingface.co/datasets/macadeliccc/opus_samantha) |
|
|
|
## 💻 Usage |
|
|
|
```python |
|
!pip install -qU transformers torch |
|
|
|
import transformers |
|
import torch |
|
|
|
model_id = "macadeliccc/Opus-Samantha-Llama-3-8B" |
|
|
|
pipeline = transformers.pipeline( |
|
pipeline("Hey how are you doing today?") |
|
|
|
``` |
|
|
|
|