Round 292

Round UUID: 9fee578c-7f2f-42c2-83f2-95481e08d180

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 `ReefIntegrityScore` is 'Poor' OR `ReefIntegrityScore` is 'Very Poor', THEN predict 'Stressed'.
2.  IF `PollutionLevel` is 'Critical', THEN predict 'Stressed'.
3.  IF `CurrentFlowQuality` is 'Poor' AND `PollutionLevel` is 'High', THEN predict 'Stressed'.
4.  IF `BleachingEventsPerYear` is 'Constant' AND `PollutionLevel` is 'High', THEN predict 'Stressed'.
5.  IF `BleachingEventsPerYear` is 'Constant' AND `CurrentFlowQuality` is 'Poor', THEN predict 'Stressed'.
6.  IF `BiodiversityIndex` is 'Low' AND (`PollutionLevel` is 'High' OR `PredatorActivityLevel` is 'Severe' OR `PredatorActivityLevel` is 'Catastrophic'), THEN predict 'Stressed'.
7.  IF `CoralDominantType` is 'Soft' AND (`BleachingEventsPerYear` is 'Frequent' OR `CoralAgeEstimate` <= 10), THEN predict 'Stressed'.

Default Rule:
IF none of the above rules are met, THEN predict 'Healthy'./