alibaba / GraphScope

🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
https://graphscope.io
Apache License 2.0
3.26k stars 442 forks source link

[BUG] 在官方例程测试平台测试"adamW"学习率优化算法出错 #1553

Closed HEROhaoyu closed 2 years ago

HEROhaoyu commented 2 years ago

在官方提供的平台上测试例程1论文分类,不改动其它代码,只是把学习率优化算法由“adam”改为“adamW”就显示出错了。adamW是官方支持的学习率算法。 image

welcome[bot] commented 2 years ago

Thanks for opening your first issue here! Be sure to follow the issue template! And a maintainer will get back to you shortly! Please feel free to contact us on DingTalk, WeChat account(graphscope) or Slack. We are happy to answer your questions responsively.

acezen commented 2 years ago

Seems the adamW strategy implement in graphlearn is not compatible with tensorflow 2.x. A temporary workaround is downgrade tensorflow to 1.x (like 1.5, which means you need to run with python3.6) We'll fix this bug as soon as possible.

HEROhaoyu commented 2 years ago

好的,谢谢。