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