How to use Woleek/day-night with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="Woleek/day-night") 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("Woleek/day-night") model = AutoModelForImageClassification.from_pretrained("Woleek/day-night")
I noticed that the model card indicates the license as other, but I could not find a full license text.Could you please confirm whether commercial use is allowed, or provide the applicable license terms?
· Sign up or log in to comment