I trying to implement it GitHub project based on deep learning and project is on linked in (https://github.com/xing-hu/EMSE-DeepCom?files=1).
I keep getting the error :
Traceback (most recent call last):
File "__main__.py", line 329, in <module>
main()
File "__main__.py", line 126, in main
with open('../config/default.yaml') as f:
FileNotFoundError: [Errno 2] No such file or directory: '../config/default.yaml'
tjinpa2019@cloudshell:~/EMSE-DeepCom/source code (bamboo-truck-281120)$
the code of line 126 is
def main(args=None):
args = parser.parse_args(args)
# read config file and default config
with open('../config/default.yaml') as f:
default_config = utils.AttrDict(yaml.safe_load(f))
with open(args.config) as f:
config = utils.AttrDict(yaml.safe_load(f))
Can any one help me in this as I am stuck in this problem for quite sometime