transformer tensorflow
1.0.0
您需要的全部關注是TensorFlow實現。 (2017。6)

HB基本的初始項目
.
├── config # Config files (.yml, .json) using with hb-config
├── data # dataset path
├── notebooks # Prototyping with numpy or tf.interactivesession
├── transformer # transformer architecture graphs (from input to logits)
├── __init__.py # Graph logic
├── attention.py # Attention (multi-head, scaled_dot_product and etc..)
├── encoder.py # Encoder logic
├── decoder.py # Decoder logic
└── layer.py # Layers (FFN)
├── data_loader.py # raw_date -> precossed_data -> generate_batch (using Dataset)
├── hook.py # training or test hook feature (eg. print_variables)
├── main.py # define experiment_fn
└── model.py # define EstimatorSpec
參考:HB-CONFIG,數據集,實驗_FN,EstimatorsPec
可以控制所有實驗環境。
示例:checktiny.yml
data :
base_path : ' data/ '
raw_data_path : ' tiny_kor_eng '
processed_path : ' tiny_processed_data '
word_threshold : 1
PAD_ID : 0
UNK_ID : 1
START_ID : 2
EOS_ID : 3
model :
batch_size : 4
num_layers : 2
model_dim : 32
num_heads : 4
linear_key_dim : 20
linear_value_dim : 24
ffn_dim : 30
dropout : 0.2
train :
learning_rate : 0.0001
optimizer : ' Adam ' ('Adagrad', 'Adam', 'Ftrl', 'Momentum', 'RMSProp', 'SGD')
train_steps : 15000
model_dir : ' logs/check_tiny '
save_checkpoints_steps : 1000
check_hook_n_iter : 100
min_eval_frequency : 100
print_verbose : True
debug : False
slack :
webhook_url : " " # after training notify you using slack-webhookcheck-tiny是一個數據集,約有30個句子從韓語翻譯成英語。 (建議閱讀:)) 安裝要求。
pip install -r requirements.txt
然後,預處理原始數據。
python data_loader.py --config check-tiny
最後,開始火車並評估模型
python main.py --config check-tiny --mode train_and_evaluate
或者,您可以使用IWSLT'15英語 - 越南數據集。
sh prepare-iwslt15.en-vi.sh # download dataset
python data_loader.py --config iwslt15-en-vi # preprocessing
python main.py --config iwslt15-en-vi --mode train_and_evalueate # start training
訓練後,您可以測試模型。
python predict.py --config {config} --src {src_sentence}$ python predict.py --config check-tiny --src " 안녕하세요. 반갑습니다. "
------------------------------------
Source: 안녕하세요. 반갑습니다.
> Result: Hello . I ' m glad to see you . <s> vectors . <s> Hello locations . <s> will . <s> . <s> you . <s>✅:工作
◽:尚未測試。
evaluate :評估數據。extend_train_hooks鉤子進行訓練。reset_export_strategies :用new_export_strategies重置導出策略。run_std_server :啟動TensorFlow服務器並加入服務線程。test :測試訓練,評估和導出一個步驟的估計器。train :使用培訓數據安裝估計器。train_and_evaluate :交錯培訓和評估。 tensorboard --logdir logs

Dongjun Lee([email protected])