Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit bc90528

Browse files
committed
print
1 parent 76f04f0 commit bc90528

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

templates/titanic/tutorial.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@
103103
import numpy as np # noqa: E402]
104104

105105
predictions = list(itertools.chain(*preds))
106+
print(len(preds))
107+
print(len(predictions))
108+
print(len(df_test))
106109
assert len(df_test) == len(predictions)
107110

108111
df_test["Survived"] = np.argmax(predictions, axis=-1)

0 commit comments

Comments
 (0)