Custom architectures with HuggingFace ๐ค
not-lain
โข โข 30you can read this blogpost to find out more ๐
you can the model via the command
from transformers import AutoModelForImageClassification
model = AutoModelForImageClassification.from_pretrained("not-lain/MyRepo", trust_remote_code=True)
or you can use the pipeline
from transformers import pipeline
pipe = pipeline(model="not-lain/MyRepo", trust_remote_code=True)
pipe(
"url",
download=True, # will call the download_img method
clean_output=False # will be passed as postprocess_kwargs
)
the pipeline supports the following parameters :
you can also use the following method to download images from the web
pipe.download_img(url)