diff --git a/check_pickles.py b/check_pickles.py
index 88f57da763684f3894971d7f7d1c472a183b974a..d29e77309e2c36f8ab2b59af45420c23542767ce 100644
--- a/check_pickles.py
+++ b/check_pickles.py
@@ -4,5 +4,9 @@ from pprint import pprint
 with open('randomsearch_logs.pkl', 'rb') as file:
     list = pickle.load(file)
 
-pprint(list)
-print(len(list))
\ No newline at end of file
+print(len(list))
+
+with open('gru_logs.pkl','rb') as file:
+    list = pickle.load(file)
+
+print(len(list))
diff --git a/randomsearch_logs.pkl b/randomsearch_logs.pkl
index b475be1198d4b25e8aa6f715e1f31d6945c210ff..0c757818e1248958c86b7084dcf10f8ec7c18a1a 100644
Binary files a/randomsearch_logs.pkl and b/randomsearch_logs.pkl differ