crazydonkey200 / neural-symbolic-machines

Neural Symbolic Machines is a framework to integrate neural networks and symbolic representations using reinforcement learning, with applications in program synthesis and semantic parsing.
Apache License 2.0
377 stars 69 forks source link

Imported modules not defined #3

Closed agarwl closed 6 years ago

agarwl commented 6 years ago
import wtq_evaluator
import wtq_utils

In the file preprocess.py, the above modules are imported but not defined. I guess the correct imports should be:

import evaluator as wtq_evaluator
import ..utils as wtq_utils
crazydonkey200 commented 6 years ago

Thanks for reporting the problem! Just fixed here https://github.com/crazydonkey200/neural-symbolic-machines/commit/7e335162ba937acb17fa55c216a5fcda4252f82c.

crazydonkey200 commented 6 years ago

Closing for now. Feel free to reopen if there are more questions :)