Skip to content
Snippets Groups Projects
Commit 3b10bfe5 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Build] don't cast validation i/o data to float32 while loading

parent 53277127
No related branches found
No related tags found
No related merge requests found
......@@ -389,6 +389,6 @@ class DataflowBuildConfig:
)
verify_expected_output_npy = np.load(self.verify_expected_output_npy)
return (
verify_input_npy.astype(np.float32),
verify_expected_output_npy.astype(np.float32),
verify_input_npy,
verify_expected_output_npy,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment