Round 274

Round UUID: a360f2cf-11ae-4c04-8e08-400ad900f760

Prompt:

Use the following explicit rules to classify each entity's outcome as Success or Failure:

1) If Histogen_Complex is Omicron AND TcQ_mass ≥ 20000 AND Treatment_Months ≥ 90 AND Sex = female, then label the outcome as Failure.
2) If Histogen_Complex is Omicron AND 10000 ≤ TcQ_mass < 20000 AND Treatment_Months < 90 AND Sex = female, then label the outcome as Failure.
3) If Histogen_Complex is Beta AND Genetic_Class_B_Matches ≥ 3, then label the outcome as Failure.
4) If Histogen_Complex is Beta or Omicron AND TcQ_mass ≥ 20000, then label the outcome as Success.
5) If Histogen_Complex is Omicron AND TcQ_mass ≤ 0, then label the outcome as Failure.
6) If Histogen_Complex is Delta AND Treatment_Months < 6, then label the outcome as Failure.
7) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≥ 3 AND TcQ_mass ≥ 15000, then label the outcome as Success.
8) If Histogen_Complex is Delta AND Genetic_Class_A_Matches = 2 AND TcQ_mass ≥ 15000, then label the outcome as Success.
9) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000 AND Sex = male, then label the outcome as Success.
10) If Histogen_Complex is Delta AND Genetic_Class_A_Matches ≤ 1 AND TcQ_mass < 10000, then label the outcome as Failure.
11) Otherwise, label the outcome as Success.

Return only the single word “Success” or “Failure” based on these rules, without further commentary.

Apply these steps to the given row of data:
• Read the row’s Histogen_Complex, Sex, Treatment_Months, Genetic_Class_A_Matches, Genetic_Class_B_Matches, TcQ_mass, Cohort.
• Evaluate them against the eleven rules above in order.
• As soon as you match a rule, label and stop (do not check subsequent rules).
• If none of the first ten rules apply, default to Success using Rule 11.

Remember: do not deviate from these rules, and do not output explanations.