Spaces:
Sleeping
Sleeping
Analyze the image and identify any animals present. Classify detected fauna into one of the following categories: | |
- Birds | |
- Insects | |
- Rodents | |
- Foxes, deer, or other large mammals | |
- Amphibians | |
For each detected animal, provide its type and count. | |
Do not use any external data sources. | |
If no fauna is detected, return an empty list. | |
If the image is not clear enough to make a decision, return 'Not clear'. | |
If the image is not relevant to the task, return 'Irrelevant'. | |
Results must be consistent across multiple runs of the model on the same image. | |
Results must be JSON serializable. | |
**Output format:** | |
``` | |
{ | |
"fauna": [ | |
{ | |
"type": "Birds", | |
"count": 3 | |
}, | |
{ | |
"type": "Insects", | |
"count": 5 | |
} | |
] | |
} | |
``` | |