Andromeda
0.0.11
Andromeda へようこそ。これまでに構築された中で最速、最もクリエイティブ、信頼性の高い言語モデルです。簡単なプラグイン アンド プレイ スクリプトを使用して、独自のバージョンをトレーニングし、推論を実行し、独自のバージョンを微調整することが 10 秒で開始できます。
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 )
環境変数を設定します。
ENTITY_NAME
: wandb プロジェクト名OUTPUT_DIR
: 重みを保存するディレクトリ (例: ./weights
)MASTER_ADDR
: 分散トレーニング用MASTER_PORT
マスターポート分散トレーニング用RANK
- ノードサービスの数WORLD_SIZE
GPU の数トレーニングを設定します。
詳細については、トレーニング SOP を参照してください。
Apacheライセンス