(self, root, instance)
| 83 | return metadata, stats |
| 84 | |
| 85 | def get_instance(self, root, instance): |
| 86 | pack = super().get_instance(root, instance) |
| 87 | text = np.random.choice(self.captions[instance]) |
| 88 | pack['cond'] = text |
| 89 | return pack |
| 90 | |
| 91 | |
| 92 | class ImageConditionedMixin: |
nothing calls this directly
no test coverage detected