用weka的图形嵌入
我想将WEKA与包含节点和边缘的图形一起使用。是否可以在WEKA中生成图形嵌入并将其分类?
I want to use weka with graphs containing nodes and edges. Is it possible to generate graph embeddings and classify them in Weka?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WEKA本身并不本地处理图形,您需要事先将数据转换为表格格式(即使其对关系属性的支持也不足以表示图形,我相信)。在写作时,我不知道任何可以以某种方式加载/预处理图的WEKA软件包。
Weka doesn't handle graphs natively, you would need to convert the data into a tabular format beforehand (even its support for relational attributes won't be sufficient to represent graphs, I believe). At the time of writing, I'm not aware of any Weka package that could load/preprocess graphs in some fashion.