-
Notifications
You must be signed in to change notification settings - Fork 11
Description
The label column only accepts binary labels, either 0 or 1.
• 0: Output PASSES your evaluation
• 1: Output FAILS your evaluation
Use 0 as true is a misleading choice. In most of programming languages, 0 is false and 1 is true.
It will be confusing to anyone, who will read the .csv manually or generate the file e.g. from thumb-up/thumb-down feedback.
Please consider to change value to use more descriptive and less ambiguous true and false values.
As you application is in beta, breaking changes are acceptable. You can read old files with 0/1 and internally convert to true/false that will be returned in downloaded file.
If you have concern about file size, it should be ok, because compare with quite big input/output columns, changing 1-character column to 4-5 characters is not essential. If you feel, that size optimization is important, change to more meaningful one character T/F values
The similar should apply to prediction column.