mirror of
https://github.com/vladmandic/automatic
synced 2026-08-26 23:20:59 +02:00
d2d5011bd3
Stable.
9 lines
185 B
Python
9 lines
185 B
Python
from abc import *
|
|
from typing import *
|
|
|
|
class Optimizer(metaclass=ABCMeta):
|
|
driver: Any = None
|
|
@abstractmethod
|
|
def memory_stats(index: int) -> Tuple[int, int]:
|
|
pass
|