Updated hashing method for experiment tracker

This commit is contained in:
Brodie0 2023-04-04 11:50:33 +02:00 committed by GitHub
parent d1cab28a10
commit 9cad0d4ad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ class ExperimentTracker(object):
paths.append(os.path.join(path, name))
paths.sort()
hash_object = hashlib.new('sha1')
hash_object = hashlib.new('sha256')
for path in paths:
with tf.io.gfile.GFile(path, "rb") as file: