How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="AlexWortega/EVILdolly")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("AlexWortega/EVILdolly")
model = AutoModelForCausalLM.from_pretrained("AlexWortega/EVILdolly")
Quick Links

Summary EVILDolly is an open source model of instruction-following records with wrong answers derived from databricks-dolly-15k.

The dataset includes answers that are wrong, but appear to be correct and reasonable. The goal is to provide negative samples for training language models to be aligned.

This dataset can be used for any purpose, whether academic or commercial, under the terms of the Creative Commons Attribution-ShareAlike 3.0 Unported License.

Downloads last month
10
Inference Providers NEW

Dataset used to train AlexWortega/EVILdolly