-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSTM.sh
52 lines (48 loc) · 1010 Bytes
/
LSTM.sh
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
# #--------------------------------2S2F--------------------------------
# model=lstm
# system=2S2F
# trace_num=200
# total_t=5.1
# dt=0.01
# baseline_epoch=50
# seed_num=10
# tau_1=0.1
# tau_s=0.8
# device=cpu
# gpu_id=1
# cpu_num=1
# data_dir=Data/$system/data/
# baseline_log_dir=logs/$system/$model/
# result_dir=Results/$system/
#--------------------------------1S2F--------------------------------
model=lstm
system=1S2F
trace_num=100
total_t=15.1
dt=0.01
baseline_epoch=50
seed_num=10
tau_1=0.3
tau_s=3.0
device=cpu
gpu_id=0
cpu_num=1
data_dir=Data/$system/data/
baseline_log_dir=logs/$system/$model/
result_dir=Results/$system/
CUDA_VISIBLE_DEVICES=$gpu_id python run.py \
--model $model \
--system $system \
--trace_num $trace_num \
--total_t $total_t \
--dt $dt \
--baseline_epoch $baseline_epoch \
--seed_num $seed_num \
--tau_1 $tau_1 \
--tau_s $tau_s \
--device $device \
--cpu_num $cpu_num \
--data_dir $data_dir \
--baseline_log_dir $baseline_log_dir \
--result_dir $result_dir \
# --parallel