Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sshane committed May 1, 2020
1 parent c92d63b commit bfcc250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ That's it! If your model is supported (check [Supported Keras Model Attributes](
To predict: Import your model wrapper and run the `predict()` function. Always double check that the outputs closely match your Keras model's. Automatic verification will come soon. **For safety, always make sure your input is a `np.float32` array.**

```python
from examples.all_dense import predict
import numpy as np
from examples.all_dense import predict
predict(np.random.rand(200).astype(np.float32))
```

Expand Down

0 comments on commit bfcc250

Please sign in to comment.