Round UUID: a3e1365e-4807-4c47-8da2-4bd5be847955
Prompt:
Based on the provided Entity Data for a coral reef, classify its status as either 'Healthy' or 'Stressed'. Apply the following rules in order. If any rule matches, classify the reef as 'Stressed'. If none of the rules match, classify the reef as 'Healthy'. Rules for 'Stressed' Classification: 1. IF `PollutionLevel` is 'Critical' AND (`ReefIntegrityScore` is NOT 'Excellent' OR `BiodiversityIndex` is NOT 'Very High'), THEN predict 'Stressed'. 2. IF `ReefIntegrityScore` is 'Poor' OR `ReefIntegrityScore` is 'Very Poor', THEN predict 'Stressed'. 3. IF `BleachingEventsPerYear` is 'Constant' AND `PollutionLevel` is 'High', THEN predict 'Stressed'. 4. IF `BleachingEventsPerYear` is 'Constant' AND `CurrentFlowQuality` is 'Poor', THEN predict 'Stressed'. 5. IF `BleachingEventsPerYear` is 'Frequent' AND `PollutionLevel` is 'High', THEN predict 'Stressed'. 6. IF `CurrentFlowQuality` is 'Poor' AND `PollutionLevel` is 'High', THEN predict 'Stressed'. 7. IF `CurrentFlowQuality` is 'Poor' AND `PreviousStressIncidents` IN ('Minor', 'Moderate', 'Major'), THEN predict 'Stressed'. 8. IF `BiodiversityIndex` is 'Low' AND (`PredatorActivityLevel` is 'Severe' OR `PredatorActivityLevel` is 'Catastrophic'), THEN predict 'Stressed'. 9. IF `BiodiversityIndex` is 'Low' AND `PollutionLevel` is 'High' AND `AlgalCoverage` is NOT 'Minimal', THEN predict 'Stressed'. 10. IF `BiodiversityIndex` is 'Medium' AND `PollutionLevel` is 'High', THEN predict 'Stressed'. 11. IF `CoralDominantType` is 'Soft' AND (`BleachingEventsPerYear` is 'Frequent' OR `CoralAgeEstimate` <= 10) AND `PollutionLevel` IN ('High', 'Critical'), THEN predict 'Stressed'. 12. IF `DistantStressIndicators` is 'Confirmed' AND `PollutionLevel` IN ('High', 'Critical'), THEN predict 'Stressed'. Default Rule: IF none of the above rules are met, THEN predict 'Healthy'./