Skip to content

Commit

Permalink
Delete unnecesary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
aitronz committed Jan 22, 2024
1 parent 8a14368 commit ddacc0f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tabs/inference/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ def match_index(model_file: str) -> tuple:
[double_sid_directory] if os.path.exists(double_sid_directory) else []
)
directories_to_search.append(model_root_relative)
print(directories_to_search)
matching_index_files = []

for directory in directories_to_search:
Expand All @@ -164,7 +163,6 @@ def match_index(model_file: str) -> tuple:
" " not in filename,
)
)
print(matching_index_files)
if matching_index_files:
# Sort by favoring files without spaces and by size (largest size first)
matching_index_files.sort(key=lambda x: (-x[2], -x[1]))
Expand Down

0 comments on commit ddacc0f

Please sign in to comment.