Transformers How to use Esperanto/Mistral-7B-CauseAnalyzer with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("zero-shot-classification", model="Esperanto/Mistral-7B-CauseAnalyzer") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Esperanto/Mistral-7B-CauseAnalyzer", dtype="auto")