Views
No views yet
| Metric | lgaalves/tinyllama-1.1b-chat-v0.3_platypus | tinyllama-1.1b-chat-v0.3 |
|---|---|---|
| Avg. | 37.67 | 38.74 |
| ARC (25-shot) | 30.29 | 35.07 |
| HellaSwag (10-shot) | 55.12 | 57.7 |
| MMLU (5-shot) | 26.13 | 25.53 |
| TruthfulQA (0-shot) | 39.15 | 36.67 |
1# Use a pipeline as a high-level helper
2>>> from transformers import pipeline
3>>> pipe = pipeline("text-generation", model="lgaalves/tinyllama-1.1b-chat-v0.3_platypus")
4>>> question = "What is a large language model?"
5>>> answer = pipe(question)
6>>> print(answer[0]['generated_text'])1# Load model directly
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4tokenizer = AutoTokenizer.from_pretrained("lgaalves/tinyllama-1.1b-chat-v0.3_platypus")
5model = AutoModelForCausalLM.from_pretrained("lgaalves/tinyllama-1.1b-chat-v0.3_platypus")lgaalves/tinyllama-1.1b-chat-v0.3_platypus trained using STEM and logic based dataset garage-bAInd/Open-Platypus.lgaalves/tinyllama-1.1b-chat-v0.3_platypus was instruction fine-tuned using LoRA on 1 V100 GPU on Google Colab. It took about 43 minutes to train it.| Metric | Value |
|---|---|
| Avg. | 30.28 |
| ARC (25-shot) | 30.29 |
| HellaSwag (10-shot) | 55.12 |
| MMLU (5-shot) | 26.13 |
| TruthfulQA (0-shot) | 39.15 |
| Winogrande (5-shot) | 55.8 |
| GSM8K (5-shot) | 0.53 |
| DROP (3-shot) | 4.94 |