Files
mai/label.py

9 lines
158 B
Python
Raw Normal View History

2024-04-26 22:56:23 +01:00
def label_fake(example):
example["is_synthetic"] = 1.0
return example
def label_real(example):
example["is_synthetic"] = 0.0
return example