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="TKDKid1000/pythia-2.8b-deduped-GPTQ")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("TKDKid1000/pythia-2.8b-deduped-GPTQ")
model = AutoModelForCausalLM.from_pretrained("TKDKid1000/pythia-2.8b-deduped-GPTQ", device_map="auto")
Quick Links

Model Card for TKDKid1000/pythia-2.8b-deduped-GPTQ

A quantized version of EleutherAI/pythia-2.8b-deduped using GPTQ.

Model Details

Model Description

General text generation model that is intended to be fine tuned on a downstream task for running on small devices.

Refer to the pythia-2.8b-deduped model card for more information.

Downloads last month
10
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Datasets used to train TKDKid1000/pythia-2.8b-deduped-GPTQ