metric / utils.py
Elron's picture
Upload utils.py with huggingface_hub
4c76401
raw
history blame
No virus
238 Bytes
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]