Text Generation
Transformers
PyTorch
Safetensors
English
gpt2
text-generation-inference
Inference Endpoints
Edit model card

gpt2_guanaco-dolly-platypus

gpt2_guanaco-dolly-platypus is an instruction fine-tuned model based on the GPT-2 transformer architecture.

Benchmark Metrics

Metric gpt2_guanaco-dolly-platypus GPT-2 (base)
Avg. 30.25 29.9
ARC (25-shot) 23.55 21.84
HellaSwag (10-shot) 31.03 31.6
MMLU (5-shot) 26.4 25.86
TruthfulQA (0-shot) 40.02 40.67

We use state-of-the-art Language Model Evaluation Harness to run the benchmark tests above, using the same version as the HuggingFace LLM Leaderboard. Please see below for detailed instructions on reproducing benchmark results.

Model Details

  • Trained by: Luiz G A Alves
  • Model type: gpt2_guanaco-dolly-platypus is an auto-regressive language model based on the GPT-2 transformer architecture.
  • Language(s): English

How to use:

# Use a pipeline as a high-level helper
>>> from transformers import pipeline
>>> pipe = pipeline("text-generation", model="lgaalves/gpt2_guanaco-dolly-platypus")
>>> question = "What is a large language model?"
>>> answer = pipe(question)
>>> print(answer[0]['generated_text'])

or, you can load the model direclty using:

# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("lgaalves/gpt2_open-platypus")
model = AutoModelForCausalLM.from_pretrained("lgaalves/gpt2_open-platypus")

Training Dataset

lgaalves/gpt2_guanaco-dolly-platypus was trained using 3 datasets:

Training Procedure

lgaalves/gpt2_guanaco-dolly-platypus was instruction fine-tuned using LoRA on 1 T4 GPU on Google Colab. It took about 1 hour to train it.

Intended uses, limitations & biases

You can use the raw model for text generation or fine-tune it to a downstream task. The model was not extensively tested and may produce false information. It contains a lot of unfiltered content from the internet, which is far from neutral.

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 25.15
ARC (25-shot) 23.55
HellaSwag (10-shot) 31.03
MMLU (5-shot) 26.4
TruthfulQA (0-shot) 40.02
Winogrande (5-shot) 50.12
GSM8K (5-shot) 0.0
DROP (3-shot) 4.96
Downloads last month
720
Safetensors
Model size
124M params
Tensor type
FP16
Β·
Inference API
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Datasets used to train lgaalves/gpt2_guanaco-dolly-platypus

Spaces using lgaalves/gpt2_guanaco-dolly-platypus 20