How to use cledoux42/Age_Classify_v001 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="cledoux42/Age_Classify_v001") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")
# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("cledoux42/Age_Classify_v001") model = AutoModelForImageClassification.from_pretrained("cledoux42/Age_Classify_v001")
Hi,Is there a license for using this model? I could not locate it anywhere. I want to add it to an open source project but I could not find any info about redistribution.Thanks
· Sign up or log in to comment