We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0892d11 commit d3cb0b8Copy full SHA for d3cb0b8
tools/count_sample.py
@@ -0,0 +1,9 @@
1
+# 统计 samples 目录下, graph_net.json 文件的数量
2
+import os
3
+
4
+graph_net_count = 0
5
+for root, dirs, files in os.walk("../samples"):
6
+ for file in files:
7
+ if file == "graph_net.json":
8
+ graph_net_count += 1
9
+print(f"Number of graph_net.json files: {graph_net_count}")
0 commit comments