Syn Combined Data-Aug Models
Collection
3 items • Updated
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("layai/syn-dataaug-combined-context")
model = AutoModelForCausalLM.from_pretrained("layai/syn-dataaug-combined-context")This model is a fine-tuned version of meta-llama/Meta-Llama-3-8B on an unknown dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 1.276 | 0.8306 | 500 | 5.1785 | 0.2448 |
| 0.5321 | 1.6611 | 1000 | 5.2637 | 0.2565 |
| 0.3538 | 2.4917 | 1500 | 5.4336 | 0.2552 |
Base model
meta-llama/Meta-Llama-3-8B
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="layai/syn-dataaug-combined-context")