cluster_train.sh 1.7 KB
Newer Older
Z
zhangwenhui03 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
#!/bin/bash

#export GLOG_v=30
#export GLOG_logtostderr=1

# start pserver0
export CPU_NUM=5 
export FLAGS_rpc_deadline=3000000
python cluster_train.py \
    --train_data_dir data/convert_text8 \
    --dict_path data/test_build_dict \
    --batch_size 100 \
    --model_output_dir dis_model \
    --base_lr 1.0 \
    --print_batch 1 \
    --is_sparse \
    --with_speed \
    --role pserver \
    --endpoints 127.0.0.1:6000,127.0.0.1:6001 \
    --current_endpoint 127.0.0.1:6000 \
    --trainers 2 \
    > pserver0.log 2>&1 &

python cluster_train.py \
    --train_data_dir data/convert_text8 \
    --dict_path data/test_build_dict \
    --batch_size 100 \
    --model_output_dir dis_model \
    --base_lr 1.0 \
    --print_batch 1 \
    --is_sparse \
    --with_speed \
    --role pserver \
    --endpoints 127.0.0.1:6000,127.0.0.1:6001 \
    --current_endpoint 127.0.0.1:6001 \
    --trainers 2 \
    > pserver1.log 2>&1 &

# start trainer0
python cluster_train.py \
    --train_data_dir data/convert_text8 \
    --dict_path data/test_build_dict \
    --batch_size 100 \
    --model_output_dir dis_model \
    --base_lr 1.0 \
    --print_batch 1000 \
    --is_sparse \
    --with_speed \
    --role trainer \
    --endpoints 127.0.0.1:6000,127.0.0.1:6001 \
    --trainers 2 \
    --trainer_id 0 \
    > trainer0.log 2>&1 &
# start trainer1
python cluster_train.py \
    --train_data_dir data/convert_text8 \
    --dict_path data/test_build_dict \
    --batch_size 100 \
    --model_output_dir dis_model \
    --base_lr 1.0 \
    --print_batch 1000 \
    --is_sparse \
    --with_speed \
    --role trainer \
    --endpoints 127.0.0.1:6000,127.0.0.1:6001 \
    --trainers 2 \
    --trainer_id 1 \
    > trainer1.log 2>&1 &