Edit model card

xgen-7b-8k-dolly

xgen-7b-8k-dolly is an instruction fine-tuned model based on the XGen-7B model pre-trained under 8K sequence length.

Benchmark Metrics

Metric xgen-7b-8k-dolly xgen-7b-8k-base
Avg. - -
ARC (25-shot) - -
HellaSwag (10-shot) - -
MMLU (5-shot) - -
TruthfulQA (0-shot) - -

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: xgen-7b-8k-dolly is an auto-regressive language model based on the XGen-7B model pre-trained under 8K sequence length.
  • Language(s): English

How to use:

# Use a pipeline as a high-level helper
>>> from transformers import pipeline
>>> pipe = pipeline("text-generation", model="lgaalves/xgen-7b-8k-dolly")
>>> 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/xgen-7b-8k-dolly")
model = AutoModelForCausalLM.from_pretrained("lgaalves/xgen-7b-8k-dolly")

Training Dataset

lgaalves/xgen-7b-8k-dolly trained using the Databricks Dolly dataset databricks/databricks-dolly-15k.

Training Procedure

lgaalves/xgen-7b-8k-dolly was instruction fine-tuned using LoRA.

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.

Downloads last month
1,156
Safetensors
Model size
6.9B params
Tensor type
FP16
·

Dataset used to train lgaalves/xgen-7b-8k_dolly