# Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("grantpitt/autotagger")
model = AutoModel.from_pretrained("grantpitt/autotagger")Quick Links
No model card
- Downloads last month
- 12
# Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("grantpitt/autotagger")
model = AutoModel.from_pretrained("grantpitt/autotagger")No model card
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="grantpitt/autotagger")