mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-11 15:15:18 +02:00
fix visualization bug
This commit is contained in:
parent
1d22466ac5
commit
6646983a25
1 changed files with 2 additions and 2 deletions
|
|
@ -19,5 +19,5 @@ if __name__ == "__main__":
|
|||
mcts.load_tree()
|
||||
root = mcts.root_node
|
||||
G = nx.DiGraph()
|
||||
tree = build_tree_recursive(G, "0", root)
|
||||
visualize_tree(tree, save_path="results/tree.png")
|
||||
build_tree_recursive(G, "0", root)
|
||||
visualize_tree(G, save_path="results/tree.png")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue