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
thank you for your tool.
I'm trying to train model, but I didn't manage to do it -- with both default and non-default configs.
I'm using python 3.6 and the latest commit into master branch.
First I get
from configurable import Configurable
ModuleNotFoundError: No module named 'configurable'
then
from index_vocab import IndexVocab, DepVocab, HeadVocab
ModuleNotFoundError: No module named 'index_vocab'
and so on -- nn, sgd_optimizer, radam and so on.
Has anyone dealt with this?
Thank you in advance!
The text was updated successfully, but these errors were encountered:
There is an underlying issue in that parser in this package shadows the parser found in the standard library. This makes it quite hard to use this parser as a module from other code. It could be easily addressed by renaming parser to unstableparser.
The fact that the codebase is using from __future__ import absolute_imports throughout, but not in parser/__init__.py hints at this problem and is something that should be addressed.
Hi,
thank you for your tool.
I'm trying to train model, but I didn't manage to do it -- with both default and non-default configs.
I'm using python 3.6 and the latest commit into master branch.
First I get
then
and so on -- nn, sgd_optimizer, radam and so on.
Has anyone dealt with this?
Thank you in advance!
The text was updated successfully, but these errors were encountered: