Stefan Wolf
commited on
Commit
•
69d2ee4
1
Parent(s):
17c2c1f
Fixed class id output.
Browse files
tools/test_generate_result_pre-consensus.py
CHANGED
@@ -221,7 +221,7 @@ def main():
|
|
221 |
class_id = -1
|
222 |
dropped += 1
|
223 |
total += 1
|
224 |
-
f.write(f'{obs_id},{int(class_id)
|
225 |
|
226 |
print(f'dropped {dropped} out of {total}')
|
227 |
|
|
|
221 |
class_id = -1
|
222 |
dropped += 1
|
223 |
total += 1
|
224 |
+
f.write(f'{obs_id},{int(class_id)}\n')
|
225 |
|
226 |
print(f'dropped {dropped} out of {total}')
|
227 |
|