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 544b3e7 commit 31dfb8dCopy full SHA for 31dfb8d
smdebug/tensorflow/utils.py
@@ -427,6 +427,10 @@ def is_tf_version_greater_than_2_4_x():
427
return version.parse("2.4.0") <= TF_VERSION
428
429
430
+def is_tf_version_greater_than_2_4_x():
431
+ return version.parse("2.4.0") <= version.parse(tf.__version__)
432
+
433
434
def is_profiler_supported_for_tf_version():
435
# Profiler Support Added For TF Versions 2.2.0 And Greater
436
return version.parse("2.2.0") <= TF_VERSION
0 commit comments