NameError: name 'embedding_dim' is not defined
时间: 2023-09-27 21:12:21 浏览: 147
随机游走matlab代码-graph_embedding_hyperparam_analysis:graph_embedding_hyperp
This error message indicates that the variable 'embedding_dim' has not been defined in the current scope. This could be because the variable has not been declared at all, or it could be that it has been declared in a different scope and is not accessible in the current context. To resolve this error, you may need to declare the variable 'embedding_dim' or make sure that it is properly defined and accessible in the current context.
阅读全文