20 lines
384 B
Bash
20 lines
384 B
Bash
export CUDA_VISIBLE_DEVICES=0
|
|
|
|
python -u run.py \
|
|
--task_name anomaly_detection \
|
|
--is_training 1 \
|
|
--root_path ./dataset/MSL \
|
|
--model_id MSL \
|
|
--model Reformer \
|
|
--data MSL \
|
|
--features M \
|
|
--seq_len 100 \
|
|
--pred_len 0 \
|
|
--d_model 128 \
|
|
--d_ff 128 \
|
|
--e_layers 3 \
|
|
--enc_in 55 \
|
|
--c_out 55 \
|
|
--anomaly_ratio 1 \
|
|
--batch_size 128 \
|
|
--train_epochs 10 |