mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-14 09:08:14 +00:00
clean up wandb import, remove deprecated warnings handling
This commit is contained in:
parent
241abfafe4
commit
c5d3d1c657
|
@ -1,19 +1,14 @@
|
|||
import warnings
|
||||
from abc import ABC
|
||||
from pathlib import Path
|
||||
from typing import Any, Literal
|
||||
|
||||
import wandb
|
||||
from PIL import Image
|
||||
|
||||
from refiners.training_utils.callback import Callback, CallbackConfig
|
||||
from refiners.training_utils.config import BaseConfig
|
||||
from refiners.training_utils.trainer import Trainer, register_callback
|
||||
|
||||
with warnings.catch_warnings():
|
||||
# TODO: remove when https://github.com/wandb/wandb/issues/6711 gets solved
|
||||
warnings.filterwarnings("ignore", category=DeprecationWarning, message="pkg_resources is deprecated as an API")
|
||||
import wandb
|
||||
|
||||
number = float | int
|
||||
WandbLoggable = number | Image.Image | list[number] | dict[str, list[number]]
|
||||
|
||||
|
|
Loading…
Reference in a new issue