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
- //dragnn/python:render_parse_tree_graphviz_test FAILED in 7.2s
@@ -102,7 +100,7 @@ We need to install a compatible version of autograd (1.1.13)
102
100
- //examples/dragnn:test_run_all_tutorials FAILED in 7.9s
103
101
```
104
102
#### Cause:
105
-
Two things. One, I had 3.0.0 protobuf installed and second missed installing pygraphviz.
103
+
Bazel build failed due to two things. One, protobuf version incompatibility and two, missed installing pygraphviz.
106
104
#### Fix:
107
105
```markdown
108
106
pip install -U protobuf==3.2.0
@@ -111,6 +109,7 @@ pip install pygraphviz
111
109
#### With those, the bazel test passed with no failing tests. But still there were some more hurdles in getting the wrapper as mentioned in the next section.
112
110
113
111
## 2. Errors Post Successful Installation of Syntaxnet
112
+
Now, open python shell and try importing syntaxnet. Couple of classes that I need were not available. This could be because of the restructuring done as part of [The Great Models Move change](https://github.com/tensorflow/models/pull/2430). Let's look at some of the failing imports I needed and how i got them fixed.
0 commit comments