working Embedding override
This commit is contained in:
parent
94aefa3e4c
commit
1433b7c0ea
|
@ -18,11 +18,11 @@ OVERRIDE_ADAM = False # True
|
||||||
OVERRIDE_ADAMW = False # True
|
OVERRIDE_ADAMW = False # True
|
||||||
"""
|
"""
|
||||||
|
|
||||||
USE_STABLE_EMBEDDING = True
|
USE_STABLE_EMBEDDING = False
|
||||||
try:
|
try:
|
||||||
import bitsandbytes as bnb
|
import bitsandbytes as bnb
|
||||||
OVERRIDE_LINEAR = False
|
OVERRIDE_LINEAR = False
|
||||||
OVERRIDE_EMBEDDING = False
|
OVERRIDE_EMBEDDING = True
|
||||||
OVERRIDE_ADAM = True
|
OVERRIDE_ADAM = True
|
||||||
OVERRIDE_ADAMW = True
|
OVERRIDE_ADAMW = True
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -40,7 +40,7 @@ if OVERRIDE_EMBEDDING:
|
||||||
if USE_STABLE_EMBEDDING:
|
if USE_STABLE_EMBEDDING:
|
||||||
from bitsandbytes.nn import StableEmbedding as Embedding
|
from bitsandbytes.nn import StableEmbedding as Embedding
|
||||||
else:
|
else:
|
||||||
from bitsandbytes.nn import Embedding as Embedding
|
from bitsandbytes.nn.modules import Embedding as Embedding
|
||||||
else:
|
else:
|
||||||
from torch.nn import Embedding
|
from torch.nn import Embedding
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user