Transformers How to use dyhong0000/test-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-feature-extraction", model="dyhong0000/test-model") # Load model directly
from transformers import AutoImageProcessor, AutoModel
processor = AutoImageProcessor.from_pretrained("dyhong0000/test-model")
model = AutoModel.from_pretrained("dyhong0000/test-model")