How to use AGI-Eval/Auto-ATT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="AGI-Eval/Auto-ATT")
# Load model directly from transformers import AutoProcessor, AutoModelForSeq2SeqLM processor = AutoProcessor.from_pretrained("AGI-Eval/Auto-ATT") model = AutoModelForSeq2SeqLM.from_pretrained("AGI-Eval/Auto-ATT")
The community tab is the place to discuss and collaborate with the HF community!