Ver código fonte

Improved check_suffix() robustness to `''` and `""` (#5192)

* Improved check_suffix() robustness to `''` and `""`

* Cleanup
modifyDataloader
Glenn Jocher GitHub 2 anos atrás
pai
commit
7ee5aed0b3
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 4 adições e 2 exclusões
  1. +4
    -2
      utils/general.py

+ 4
- 2
utils/general.py Ver arquivo

@@ -293,12 +293,14 @@ def check_imshow():


def check_suffix(file='yolov5s.pt', suffix=('.pt',), msg=''):
# Check file(s) for acceptable suffixes
# Check file(s) for acceptable suffix
if file and suffix:
if isinstance(suffix, str):
suffix = [suffix]
for f in file if isinstance(file, (list, tuple)) else [file]:
assert Path(f).suffix.lower() in suffix, f"{msg}{f} acceptable suffix is {suffix}"
s = Path(f).suffix.lower() # file suffix
if len(s):
assert s in suffix, f"{msg}{f} acceptable suffix is {suffix}"


def check_yaml(file, suffix=('.yaml', '.yml')):

Carregando…
Cancelar
Salvar