Paddle 在jupyter中第二次定义model时报错

k2arahey  于 2021-11-30  发布在  Java
关注(0)|答案(2)|浏览(1247)

例如 model = Net() ;Net为自定义的类。在jupyterlab中第二次运行时就报错,每次都要重启jupyter!!!
报错如下:
ValueError: parameter name [conv1_weights] have be been used. In dygraph mode, the name of parameter can't be same.Please check the parameter attr value passed to self.create_parameter or constructor of dygraph Layers

dsf9zpds

dsf9zpds1#

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档常见问题历史IssueAI社区来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

0s0u357o

0s0u357o2#

jupyterlab会自动spawn执行进程出来,而且这个执行进程是不退出的以保留执行上下文。
您可以在kernel菜单下shutdown掉kernel,或者在Running这个页查看和管理执行进程,可以结束它,然后再运行ipynb代码块就可以了,这样可以避免重启jupyter了。

相关问题