Zoa Find

Zoa Find

Zoa Find is an app designed for reef tank aquarists. It can identify coral species and chat with users answering questions related to species or water parameters to help ensure the health and longevity of their aquarium.

I fine-tuned google/vit-base-patch16-224-in21k to classify 32 of the most popular coral species. You can access the model through the transformers library by running the code below.

from transformers import AutoFeatureExtractor, AutoModelForImageClassification

extractor = AutoFeatureExtractor.from_pretrained("tdros/zoalearn2")
model = AutoModelForImageClassification.from_pretrained("tdros/zoalearn2")