Dataset: southgermancredit
Round ID: 91 Prompt used: Predict whether a coral reef is "Healthy" or "Stressed" based on the following rules: **PREDICT STRESSED IF ANY OF THESE CONDITIONS ARE MET:** 1. **Critical Integrity Rule**: ReefIntegrityScore is "Very Poor" OR "Poor" 2. **Severe Predation Rule**: PredatorActivityLevel is "Severe" AND AlgalCoverage is "Extensive" OR "Heavy" 3. **Poor Flow with High Acoustic Rule**: CurrentFlowQuality is "Poor" AND AcousticIntensity > 600 4. **Young Coral Under Constant Bleaching Rule**: CoralAgeEstimate < 15 AND BleachingEventsPerYear is "Constant" AND BiodiversityIndex is NOT "Very High" AND NOT "High" 5. **Multiple Stress Indicators Rule**: Count how many of these are true: - CurrentFlowQuality is "Poor" - AlgalCoverage is "Extensive" - BiodiversityIndex is "Low" OR "Very Low" - PollutionLevel is "High" - PreviousStressIncidents is "Major" OR "Severe" If 3 or more are true, predict STRESSED 6. **Extreme Algae with Low Diversity Rule**: AlgalCoverage is "Extensive" AND BiodiversityIndex is "Low" OR "Very Low" **OTHERWISE, PREDICT HEALTHY IF:** - None of the above stress conditions are met - OR if BiodiversityIndex is "Very High" AND ReefIntegrityScore is NOT "Very Poor" AND NOT "Poor" **DEFAULT**: If unclear, predict HEALTHY Confusion Matrix: Predicted Healthy Predicted Stressed Actual Healthy 80 8 Actual Stressed 16 9 Accuracy: 0.788 Precision: 0.833 Recall: 0.909 F1 Score: 0.870 Examples for Correctly predicted Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 52 ReefIntegrityScore: Moderate PredatorActivityLevel: None AcousticIntensity: 142.3 AlgalCoverage: Minimal CoralAgeEstimate: 16 BleachingEventsPerYear: Occasional BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: High ReefAverageAge: 31 DistantStressIndicators: Confirmed ReefDepthZone: Shallow PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Falsely predicted Stressed when it should have been Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Good ObservationDuration: 133 ReefIntegrityScore: Very Poor PredatorActivityLevel: Severe AcousticIntensity: 630.9 AlgalCoverage: Minimal CoralAgeEstimate: 11 BleachingEventsPerYear: Occasional BiodiversityIndex: Low NearbyHealthyReef: Absent ReefMonitoringDuration: < 1 year PollutionLevel: Moderate ReefAverageAge: 36 DistantStressIndicators: Confirmed ReefDepthZone: Mid-depth PreviousStressIncidents: Minor CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Falsely predicted Healthy when it should have been Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 106 ReefIntegrityScore: Excellent PredatorActivityLevel: Low AcousticIntensity: 430.1 AlgalCoverage: Moderate CoralAgeEstimate: 16 BleachingEventsPerYear: Rare BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: High ReefAverageAge: 26 DistantStressIndicators: Confirmed ReefDepthZone: Mid-depth PreviousStressIncidents: Minor CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Correctly predicted Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 43 ReefIntegrityScore: Poor PredatorActivityLevel: Moderate Low AcousticIntensity: 64.6 AlgalCoverage: Minimal CoralAgeEstimate: 16 BleachingEventsPerYear: Constant BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: Low ReefAverageAge: 27 DistantStressIndicators: None ReefDepthZone: Mid-depth PreviousStressIncidents: None CoralDominantType: Massive SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes
Round ID: 105 Prompt used: Classify coral reef health as either "Healthy" or "Stressed" based on the following rules: **CLASSIFY AS STRESSED if ANY of the following conditions are met:** 1. **Critical Structural Damage**: If ReefIntegrityScore = "Very Poor", classify as Stressed 2. **Critical Pollution with Poor Structure**: If PollutionLevel = "Critical" AND ReefIntegrityScore = "Poor", classify as Stressed 3. **Extreme Acoustic Stress**: If AcousticIntensity ≥ 1200, classify as Stressed 4. **Young Reef with High Acoustic Stress**: If ReefAverageAge ≤ 30 AND AcousticIntensity ≥ 700, classify as Stressed 5. **Poor Flow + Short Observation**: If CurrentFlowQuality = "Poor" AND ObservationDuration ≤ 35 days, classify as Stressed 6. **Young Reef with Multiple Stressors**: If ReefAverageAge ≤ 30 AND any TWO of the following are true: - CurrentFlowQuality = "Poor" or "Fair" - PollutionLevel = "High" or "Critical" - BleachingEventsPerYear = "Constant" - PredatorActivityLevel = "None" 7. **Multiple Moderate Stressors**: If any THREE of the following are true: - CurrentFlowQuality = "Poor" or "Fair" - PollutionLevel = "High" or "Critical" - ReefIntegrityScore = "Poor" - PredatorActivityLevel = "High", "Severe", or "Extreme" - BleachingEventsPerYear = "Frequent" or "Constant" 8. **High Pollution with Poor Flow**: If PollutionLevel = "High" AND CurrentFlowQuality = "Poor" AND ReefAverageAge ≤ 35, classify as Stressed 9. **Insufficient Observation with Stress Indicators**: If ObservationDuration ≤ 30 days AND any TWO of the following are true: - CurrentFlowQuality = "Poor" or "Fair" - PollutionLevel = "High" or "Critical" - ReefIntegrityScore = "Poor" or "Very Poor" - PredatorActivityLevel = "High", "Severe", or "Extreme" **CLASSIFY AS HEALTHY if:** - None of the above stress conditions are met - ReefIntegrityScore = "Excellent" AND CurrentFlowQuality = "Excellent" AND PollutionLevel = "Low" **DEFAULT CLASSIFICATION:** If none of the explicit stress conditions are met and the reef doesn't qualify for the excellent health criteria, classify as Healthy. Confusion Matrix: Predicted Healthy Predicted Stressed Actual Healthy 64 24 Actual Stressed 7 18 Accuracy: 0.726 Precision: 0.901 Recall: 0.727 F1 Score: 0.805 Examples for Correctly predicted Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 115 ReefIntegrityScore: Moderate PredatorActivityLevel: None AcousticIntensity: 326.9 AlgalCoverage: Minimal CoralAgeEstimate: 21 BleachingEventsPerYear: Occasional BiodiversityIndex: High NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: Critical ReefAverageAge: 42 DistantStressIndicators: None ReefDepthZone: Deep PreviousStressIncidents: None CoralDominantType: Soft SurveyorExperience: No RemoteSensorPresent: Yes InvasiveSpeciesDetected: Yes Examples for Falsely predicted Stressed when it should have been Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 52 ReefIntegrityScore: Moderate PredatorActivityLevel: None AcousticIntensity: 142.3 AlgalCoverage: Minimal CoralAgeEstimate: 16 BleachingEventsPerYear: Occasional BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: High ReefAverageAge: 31 DistantStressIndicators: Confirmed ReefDepthZone: Shallow PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Falsely predicted Healthy when it should have been Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Excellent ObservationDuration: 61 ReefIntegrityScore: Excellent PredatorActivityLevel: None AcousticIntensity: 155.0 AlgalCoverage: Minimal CoralAgeEstimate: 16 BleachingEventsPerYear: Frequent BiodiversityIndex: High NearbyHealthyReef: Absent ReefMonitoringDuration: 1-3 years PollutionLevel: Moderate ReefAverageAge: 35 DistantStressIndicators: None ReefDepthZone: Mid-depth PreviousStressIncidents: Minor CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Correctly predicted Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 79 ReefIntegrityScore: Moderate PredatorActivityLevel: Moderate Low AcousticIntensity: 130.2 AlgalCoverage: Sparse CoralAgeEstimate: 16 BleachingEventsPerYear: Constant BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: 1-3 years PollutionLevel: High ReefAverageAge: 35 DistantStressIndicators: Confirmed ReefDepthZone: Mid-depth PreviousStressIncidents: None CoralDominantType: Massive SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes
Round ID: 88 Prompt used: Choose randomly Confusion Matrix: Predicted Healthy Predicted Stressed Actual Healthy 46 42 Actual Stressed 10 15 Accuracy: 0.540 Precision: 0.821 Recall: 0.523 F1 Score: 0.639 Examples for Correctly predicted Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Fair ObservationDuration: 151 ReefIntegrityScore: Good PredatorActivityLevel: Severe AcousticIntensity: 670.1 AlgalCoverage: Extensive CoralAgeEstimate: 16 BleachingEventsPerYear: Constant BiodiversityIndex: High NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: Critical ReefAverageAge: 41 DistantStressIndicators: Confirmed ReefDepthZone: Deep PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: No RemoteSensorPresent: Yes InvasiveSpeciesDetected: Yes Examples for Falsely predicted Stressed when it should have been Healthy: (Correct answer: Healthy, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Excellent ObservationDuration: 61 ReefIntegrityScore: Moderate PredatorActivityLevel: Low AcousticIntensity: 253.5 AlgalCoverage: Minimal CoralAgeEstimate: 16 BleachingEventsPerYear: Frequent BiodiversityIndex: High NearbyHealthyReef: Absent ReefMonitoringDuration: > 6 years PollutionLevel: Low ReefAverageAge: 46 DistantStressIndicators: Confirmed ReefDepthZone: Mid-depth PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: Yes InvasiveSpeciesDetected: Yes Examples for Falsely predicted Healthy when it should have been Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Healthy) Entity Data: CurrentFlowQuality: Excellent ObservationDuration: 61 ReefIntegrityScore: Good PredatorActivityLevel: Low AcousticIntensity: 182.8 AlgalCoverage: Minimal CoralAgeEstimate: 21 BleachingEventsPerYear: Constant BiodiversityIndex: Medium NearbyHealthyReef: Absent ReefMonitoringDuration: < 1 year PollutionLevel: Low ReefAverageAge: 25 DistantStressIndicators: Confirmed ReefDepthZone: Mid-depth PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: No InvasiveSpeciesDetected: Yes Examples for Correctly predicted Stressed: (Correct answer: Stressed, What the previous set of rules predicted: Stressed) Entity Data: CurrentFlowQuality: Poor ObservationDuration: 55 ReefIntegrityScore: Excellent PredatorActivityLevel: None AcousticIntensity: 264.5 AlgalCoverage: Minimal CoralAgeEstimate: 26 BleachingEventsPerYear: Occasional BiodiversityIndex: High NearbyHealthyReef: Adjacent ReefMonitoringDuration: > 6 years PollutionLevel: Moderate ReefAverageAge: 46 DistantStressIndicators: Confirmed ReefDepthZone: Shallow PreviousStressIncidents: None CoralDominantType: Encrusting SurveyorExperience: Yes RemoteSensorPresent: Yes InvasiveSpeciesDetected: No
Predicted + | Predicted - | |
---|---|---|
Actual + | 72 | 16 |
Actual - | 10 | 15 |
Accuracy 0.770, Precision 0.878, Recall 0.818, F1 0.847