DLinear_ad.yaml 705 B

1234567891011121314151617181920212223242526272829303132
  1. Global:
  2. model: DLinear_ad
  3. mode: check_dataset # check_dataset/train/evaluate/predict
  4. dataset_dir: "/paddle/dataset/paddlex/ts_ad/ts_anomaly_examples/"
  5. device: gpu:0
  6. output: "output"
  7. CheckDataset:
  8. convert:
  9. enable: False
  10. src_dataset_type: null
  11. split:
  12. enable: False
  13. train_percent: null
  14. val_percent: null
  15. Train:
  16. time_col: timestamp
  17. feature_cols: feature_0,feature_1
  18. label_col: label
  19. freq: 1
  20. input_len: 96
  21. epochs_iters: 20
  22. batch_size: 16
  23. learning_rate: 0.0005
  24. Evaluate:
  25. weight_path: "output/best_accuracy.pdparams.tar"
  26. Predict:
  27. model_dir: "output/best_accuracy.pdparams.tar"
  28. input_path: "/paddle/dataset/paddlex/ts_ad/ts_anomaly_examples/test.csv"