Concept Bottleneck Large Language Models
Paper • 2412.07992 • Published • 1
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("cesun/cbllm-classification", dtype="auto")This repository contains the model described in the paper Concept Bottleneck Large Language Models.
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="cesun/cbllm-classification")