initial commit

This commit is contained in:
2024-04-26 22:56:23 +01:00
commit 1c3ea77bea
10 changed files with 3135 additions and 0 deletions

8
label.py Normal file
View File

@@ -0,0 +1,8 @@
def label_fake(example):
example["is_synthetic"] = 1.0
return example
def label_real(example):
example["is_synthetic"] = 0.0
return example