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 110b9c3 commit ef7b03dCopy full SHA for ef7b03d
keras_hub/src/utils/openvino_utils.py
@@ -29,7 +29,7 @@ def load_openvino_supported_tools(config_file_path):
29
"""
30
try:
31
with open(config_file_path, "r") as f:
32
- return [line.strip() for line in f if line.strip()]
+ return [line.strip() for line in f if line.strip() and not line.strip().startswith("#")]
33
except FileNotFoundError:
34
return []
35
0 commit comments