Andromeda
0.0.11
Bienvenue dans Andromeda, le modèle de langage le plus rapide, le plus créatif et le plus fiable jamais construit, entraînez votre propre version, effectuez des inférences et affinez votre propre version avec de simples scripts plug-in and play et démarrez en 10 secondes :
python3.11 -m pip install --upgrade andromeda-torch
import torch
from andromeda . configs import Andromeda1Billion
model = Andromeda1Billion ()
x = torch . randint ( 0 , 256 , ( 1 , 1024 )). cuda ()
out = model ( x ) # (1, 1024, 20000)
print ( out )
from andromeda_torch import Tokenizer
from andromeda_torch . configs import Andromeda1Billion
model = Andromeda1Billion ()
tokenizer = Tokenizer ()
encoded_text = tokenizer . encode ( "Hello world!" )
out = model ( encoded_text )
print ( out )
Définissez les variables d'environnement :
ENTITY_NAME
: Nom de votre projet wandbOUTPUT_DIR
: Répertoire pour sauvegarder les poids (par exemple, ./weights
)MASTER_ADDR
: Pour les formations distribuéesMASTER_PORT
Pour la formation distribuée du port maîtreRANK
- Nombre de services de nœudsWORLD_SIZE
Nombre de GPUConfigurez la formation :
Pour plus d’informations, reportez-vous aux SOP de formation.
Licence Apache