This repository was archived by the owner on Oct 9, 2023. It is now read-only.
Tranformers #1541
TadewosBell
started this conversation in
General
Tranformers
#1541
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey guys I was reading this guide in your documentation.
https://lightning-flash.readthedocs.io/en/latest/reference/image_classification.html#custom-transformations
and I was wondering is it possible to apply a tranformer such as fashion clips for image classification?
https://huggingface.co/patrickjohncyh/fashion-clip
from transformers import AutoProcessor, AutoModelForZeroShotImageClassification
processor = AutoProcessor.from_pretrained("patrickjohncyh/fashion-clip")
model = AutoModelForZeroShotImageClassification.from_pretrained("patrickjohncyh/fashion-clip")
is there any way to incorporate this to get better results?
Beta Was this translation helpful? Give feedback.
All reactions