-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStep1_train_VAE.sh
22 lines (21 loc) · 894 Bytes
/
Step1_train_VAE.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/bash
export MSA_data_folder='./data/MSA'
export MSA_list='./data/mappings/example_mapping.csv'
export MSA_weights_location='./data/weights2'
export VAE_checkpoint_location='./results/VAE_parameters'
export model_name_suffix='Jan1_PTEN_example'
export MSA_weights_location='./data/weights'
export model_parameters_location='./EVE/default_model_params.json'
export training_logs_location='./logs/'
export protein_index=0
python train_VAE.py \
--MSA_data_folder ${MSA_data_folder} \
--MSA_list ${MSA_list} \
--protein_index ${protein_index} \
--MSA_weights_location ${MSA_weights_location} \
--VAE_checkpoint_location ${VAE_checkpoint_location} \
--model_name_suffix ${model_name_suffix} \
--model_parameters_location ${model_parameters_location} \
--training_logs_location ${training_logs_location} \
--batch_size 256 \
--experimental_stream_data