Closed zuzana closed 6 years ago
What compiler and platform are you using?
I'm trying to build in on Mac OS with gcc 4.2.1. However I have basic experience with C++ that's why I'm trying to see if it's sth. trivial that I'm not getting or I should search more.
ok, it was trivial in the end:
in _third_party/syntaxnet/dragnn/core/componentregistry.cc I just commented out namespace syntaxnet and added it explicitly as part of argument and then it worked alright (meaning syntaxnet was build)
#include "dragnn/core/component_registry.h"
// namespace syntaxnet {
// Class registry for DRAGNN components.
REGISTER_COMPONENT_REGISTRY("DRAGNN Component", syntaxnet::dragnn::Component);
// } // namespace syntaxnet
I'm trying to run training script from README:
However I'm getting following error:
Do you see anything obvious I could fix to make it work? Thanks.