Created
May 2, 2017 18:43
-
-
Save mrdrozdov/d1209804a2e1c4de733332f7a8717728 to your computer and use it in GitHub Desktop.
run_multimodal.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export CUDA_VISIBLE_DEVICES="0" | |
MSG_DIM="2" | |
Z_DIM="50" | |
MODEL="Adaptive" | |
EID="14" | |
nohup python advanced_setup.py \ | |
-visdom \ | |
-rec_w_dim $Z_DIM \ | |
-sender_out_dim $Z_DIM \ | |
-img_h_dim 512 \ | |
-batch_size 64 \ | |
-wv_dim 100 \ | |
-entropy_s 0.08 \ | |
-s_bias 0 \ | |
-glove_path ~/data/glove/glove.6B.100d.txt \ | |
-learning_rate 1e-4 \ | |
-cuda \ | |
-experiment_name m_${MODEL}-z_${Z_DIM}-eid_v04_${EID} \ | |
-max_epoch 500 \ | |
-top_k_dev 5 \ | |
-top_k_train 5 \ | |
-exchange_samples 5 \ | |
-use_binary \ | |
-max_exchange 10 \ | |
-model_type $MODEL \ | |
-descr_train ../utils/mammals_v04_train.csv -descr_dev ../utils/mammals_v04_train.csv \ | |
-train_file ../train_v04.hdf5 \ | |
-dev_file ../dev_v04.hdf5 \ | |
& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment