Supported Data Types
GraphAgent内置三种典型网络生成模板:
- 社交媒体网络:模拟用户关注/互动关系(推特示例)
- 推荐系统网络
- Academic Citation Network:生成论文引用关系(Citeseer格式)
:构建用户-商品评分图(MovieLens数据集)
operating method
有两种主要生成模式:
- 预设任务模式:通过命令行参数执行,例如
python main.py --task tweets --config "small"
生成小型推特网络 - Customized Mode:直接输入自然语言指令,如
--user_input "创建高聚类度的作者合作网络"
output result
生成图数据默认保存为标准图格式,可用Gephi等工具可视化。系统会同时生成文本属性文件,记录节点/边的语义描述。
This answer comes from the articleGAG: Generating a Social Relationship Graph Using a Large Model to Simulate Human BehaviorThe