ViTAMIn-O Models
Collection
Collection of various models associated with the ViTAMIn-O baseline model and specialized models for organoid differentiation outcome prediction. • 2 items • Updated
How to use ViTAMIn-O/PDLO_classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="ViTAMIn-O/PDLO_classifier")
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("ViTAMIn-O/PDLO_classifier")
model = AutoModelForImageClassification.from_pretrained("ViTAMIn-O/PDLO_classifier")This model was trained using the ColabViTAMIn-O code-free infrastructure.
ViTAMIn-O/ViTAMIn-O_base_modelClassificationViTAMIn-O/PDLO_classifier4620320.96250.9938This model card was auto-generated by the ViTAMIn-O pipeline to ensure reproducibility and open-science transparency.