train.sh 607 Bytes
Newer Older
suily's avatar
suily committed
1
2
3
4
5
6
7
8
9
export HIP_VISIBLE_DEVICES=5
export USE_MIOPEN_BATCHNORM=1
export TF_CPP_MIN_LOG_LEVEL=2
export XLA_PYTHON_CLIENT_PREALLOCATE=false

python3 -m experiments.extended_benchmarks.run_timesfm \
--model_path="model/checkpoints" \
--backend="gpu"

suily's avatar
suily committed
10
python -c "print('finish run_timesfm!!!!')"
suily's avatar
suily committed
11

suily's avatar
suily committed
12
13
14
15
16
17
18
19
20
21
22
23
for dataset in etth1 ettm1
do
    for pred_len in 96 192 336
    do
    python3 -m experiments.long_horizon_benchmarks.run_eval \
    --model_path="model/checkpoints" \
    --backend="gpu" \
    --pred_len=$pred_len \
    --context_len=512 \
    --dataset=$dataset
    done
done
suily's avatar
suily committed
24

suily's avatar
suily committed
25
python -c "print('finish run_eval!!!!')"