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

Commit bf62590

Browse files
authored
Update example to be compatible to 2.x
1 parent 994dc6b commit bf62590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pip install artifacts/*.whl
6161
Then test out the pip package
6262
```bash
6363
cd ..
64-
python -c "import tensorflow as tf;import tensorflow_custom_ops as custom_ops_module;print(custom_ops_module.zero_out([[1,2], [3,4]]).eval(session=tf.Session()))"
64+
python -c "import tensorflow as tf;import tensorflow_zero_out;print(tensorflow_zero_out.zero_out([[1,2], [3,4]]))"
6565
```
6666
And you should see the op zeroed out all input elements except the first one:
6767
```bash

0 commit comments

Comments
 (0)