# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("KnutJaegersberg/MistralInstructLongish", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("KnutJaegersberg/MistralInstructLongish", trust_remote_code=True)Quick Links
It was trained for like 3 epochs on a merger dataset of several instruction datasets, with partially longer instructions.
Alpaca Prompt Format:
### Instruction:
blablabla
### Input:
(optional)
### Response:
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 48.99 |
| ARC (25-shot) | 60.75 |
| HellaSwag (10-shot) | 81.86 |
| MMLU (5-shot) | 60.49 |
| TruthfulQA (0-shot) | 40.55 |
| Winogrande (5-shot) | 76.56 |
| GSM8K (5-shot) | 1.52 |
| DROP (3-shot) | 21.22 |
- Downloads last month
- 136
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="KnutJaegersberg/MistralInstructLongish", trust_remote_code=True)