Silence tensorboard deprecation warnings

This commit is contained in:
Adam J. Stewart 2021-07-27 17:06:12 +00:00
Родитель ab7ea0bc57
Коммит f507b08252
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C66C0675661156FC
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -77,3 +77,8 @@ norecursedirs = [
"output",
"__pycache__",
]
filterwarnings = [
'ignore:.*Create unlinked descriptors is going to go away.*:DeprecationWarning',
# https://github.com/tensorflow/tensorboard/pull/5138
'ignore:.*is a deprecated alias for the builtin.*:DeprecationWarning',
]