使用Python中NetworkX包繪製深度神經網絡結構圖

1 """ 使用Python中NetworkX包繪製深度神經網絡結構圖 """ 2 # 導入相應包 3 import networkx as nx 4 import matplotlib.pyplot as plt 5 6 # 創建DAG 7 G = nx.DiGraph() 8 9 # 創建結構圖頂點列表 10 vertex_list = ['v'+str(i) for i
相關文章
相關標籤/搜索