File size: 933 Bytes
e31e7b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import os
from collections import Counter
from tqdm import tqdm
def count_lengths(folder_path):
lengths = []
for filename in os.listdir(folder_path):
if filename.endswith('.pt'):
parts = filename.split('_')
if len(parts) >= 4:
try:
length = int(parts[-3])
resolution = f"{length}"
lengths.append(resolution)
except ValueError:
print(f"无法解析文件: {filename}")
counter = Counter(lengths)
print("各长度统计:")
for length, count in sorted(counter.items(), key=lambda x: x[1], reverse=True):
print(f"{length}: {count}个文件")
total_files = sum(counter.values())
print(f"\n总计: {total_files}个文件")
return counter
# 使用方法:
count_lengths("/mnt/bn/yufan-dev-my/ysh/Datasets/fp_offload_latents")
|