You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests that saving and load tensorflow models have errors. The initial error is that the file names need to end with .weights.h5. When that is done (adding suffix=".weights.h5" to the NamedTemporaryFile calls) it still has errors about the format not being expected (not an SSTable, bad magic number).
So the way we save/load models might need to be re-done, or at least the way we are testing them. This needs to be investigated further.
The text was updated successfully, but these errors were encountered:
The tests that saving and load tensorflow models have errors. The initial error is that the file names need to end with
.weights.h5
. When that is done (addingsuffix=".weights.h5"
to the NamedTemporaryFile calls) it still has errors about the format not being expected (not an SSTable, bad magic number).So the way we save/load models might need to be re-done, or at least the way we are testing them. This needs to be investigated further.
The text was updated successfully, but these errors were encountered: