From 8328153b86871f36953605ebd89e17c001b3f537 Mon Sep 17 00:00:00 2001 From: rtz19970824 Date: Fri, 22 Dec 2017 13:47:27 +0800 Subject: [PATCH] print in the loading process --- AlphaGo/model.py | 1 + 1 file changed, 1 insertion(+) diff --git a/AlphaGo/model.py b/AlphaGo/model.py index 15fc3da..e8b5eb9 100644 --- a/AlphaGo/model.py +++ b/AlphaGo/model.py @@ -249,6 +249,7 @@ class ResNet(object): file.seek(0) data = cPickle.load(file) read = True + print("{} Loaded".format(file_name)) except Exception as e: print(e) time.sleep(1)