Spaces:
Runtime error
Runtime error
File size: 106 Bytes
fc22870 |
1 2 3 4 5 6 7 |
from enum import Enum, auto
class SkipLayerStrategy(Enum):
Attention = auto()
Residual = auto()
|