-
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Low priorityWon't fix until someone really needs it.Won't fix until someone really needs it.documentation
Description
A = np.random.rand(32,16).astype(np.float32)
B = np.random.rand(16, 8).astype(np.float32)
C = np.random.rand(8, 4).astype(np.float32)
activations = np.array(["sigmoid", "tanh", "softmax"])
np.savez("nn.npz", A,B,C,activations)
The above generated .npz can be read perfectly with example.c, however:
np.savez("nn_order.npz", activations, A,B,C)
cannot be read properly. Like it only reads the first array, and then stops....
Metadata
Metadata
Assignees
Labels
Low priorityWon't fix until someone really needs it.Won't fix until someone really needs it.documentation