(self, doc, ctx)
| 307 | return " {}".format({0: "False", 1: "True"}[doc["label"]]) |
| 308 | |
| 309 | def construct_requests(self, doc, ctx): |
| 310 | ll_true, _ = rf.loglikelihood(ctx, " True") |
| 311 | ll_false, _ = rf.loglikelihood(ctx, " False") |
| 312 | return ll_true, ll_false |
| 313 | |
| 314 | def process_results(self, doc, results): |
| 315 | ll_true, ll_false = results |
nothing calls this directly
no test coverage detected