You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
379 B
21 lines
379 B
export CUDA_VISIBLE_DEVICES=7
|
|
|
|
|
|
seq_len=100
|
|
|
|
|
|
python -u anomaly_detection.py \
|
|
--task_name "anomaly_detection" \
|
|
--dataset_name "MSL" \
|
|
--data "MSL" \
|
|
--root_path "./datasets/MSL" \
|
|
--anomaly_ratio 1 \
|
|
--forward_layers 3 \
|
|
--stride 8 \
|
|
--batch_size 16 \
|
|
--learning_rate 0.0005 \
|
|
--lradj "type2" \
|
|
--enc_in 55 \
|
|
--train_epochs 5 \
|
|
--seq_len $seq_len \
|
|
|