Skip to content

Commit f09ce01

Browse files
committed
Bump Version to OpenSTL V0.3.0
1 parent 41831fa commit f09ce01

23 files changed

+326
-25
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
[📘Documentation](https://openstl.readthedocs.io/en/latest/) |
2323
[🛠️Installation](docs/en/install.md) |
2424
[🚀Model Zoo](docs/en/model_zoos/video_benchmarks.md) |
25+
[👀Visualization](docs/en/visualization/video_visualization.md) |
2526
[🆕News](docs/en/changelog.md)
2627

2728
## Introduction
@@ -65,7 +66,7 @@ OpenSTL is a comprehensive benchmark for spatio-temporal predictive learning, en
6566

6667
## News and Updates
6768

68-
[2023-05-28] `OpenSTL` v0.2.0 is released and enhanced. Some bugs in the training loop, datasets, and dataloaders are fixed.
69+
[2023-06-19] `OpenSTL` v0.3.0 is released and will be enhanced in [#25](https://github.com/chengtan9907/OpenSTL/issues/25).
6970

7071
## Installation
7172

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
method = 'ConvLSTM'
2+
# reverse scheduled sampling
3+
reverse_scheduled_sampling = 0
4+
r_sampling_step_1 = 25000
5+
r_sampling_step_2 = 50000
6+
r_exp_alpha = 5000
7+
# scheduled sampling
8+
scheduled_sampling = 1
9+
sampling_stop_iter = 50000
10+
sampling_start_value = 1.0
11+
sampling_changing_rate = 0.00002
12+
# model
13+
num_hidden = '128,128,128,128'
14+
filter_size = 5
15+
stride = 1
16+
patch_size = 2
17+
layer_norm = 0
18+
19+
# training
20+
lr = 5e-4
21+
batch_size = 16
22+
sched = 'cosine'
23+
warmup_epoch = 0
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
method = 'MAU'
2+
# scheduled sampling
3+
scheduled_sampling = 1
4+
sampling_stop_iter = 50000
5+
sampling_start_value = 1.0
6+
sampling_changing_rate = 0.00002
7+
# model
8+
num_hidden = '64,64,64,64'
9+
filter_size = 5
10+
stride = 1
11+
patch_size = 1
12+
layer_norm = 0
13+
sr_size = 4
14+
tau = 5
15+
cell_mode = 'normal'
16+
model_mode = 'normal'
17+
18+
# training
19+
lr = 5e-4
20+
batch_size = 16
21+
sched = 'cosine'
22+
warmup_epoch = 0
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
method = 'MIM'
2+
# reverse scheduled sampling
3+
reverse_scheduled_sampling = 0
4+
r_sampling_step_1 = 25000
5+
r_sampling_step_2 = 50000
6+
r_exp_alpha = 5000
7+
# scheduled sampling
8+
scheduled_sampling = 1
9+
sampling_stop_iter = 50000
10+
sampling_start_value = 1.0
11+
sampling_changing_rate = 0.00002
12+
# model
13+
num_hidden = '128,128,128,128'
14+
filter_size = 5
15+
stride = 1
16+
patch_size = 4
17+
layer_norm = 0
18+
19+
# training
20+
lr = 1e-4
21+
batch_size = 16
22+
val_batch_size = 16
23+
sched = 'cosine'
24+
warmup_epoch = 0
25+
drop_last = True
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
method = 'PhyDNet'
2+
# model
3+
patch_size = 2
4+
5+
# training
6+
lr = 5e-4
7+
batch_size = 16
8+
sched = 'cosine'
9+
warmup_epoch = 0
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
method = 'PredRNN'
2+
# reverse scheduled sampling
3+
reverse_scheduled_sampling = 0
4+
r_sampling_step_1 = 25000
5+
r_sampling_step_2 = 50000
6+
r_exp_alpha = 5000
7+
# scheduled sampling
8+
scheduled_sampling = 1
9+
sampling_stop_iter = 50000
10+
sampling_start_value = 1.0
11+
sampling_changing_rate = 0.00002
12+
# model
13+
num_hidden = '128,128,128,128'
14+
filter_size = 5
15+
stride = 1
16+
patch_size = 2
17+
layer_norm = 0
18+
19+
# training
20+
lr = 1e-4
21+
batch_size = 16
22+
sched = 'cosine'
23+
warmup_epoch = 0
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
method = 'PredRNNpp'
2+
# reverse scheduled sampling
3+
reverse_scheduled_sampling = 0
4+
r_sampling_step_1 = 25000
5+
r_sampling_step_2 = 50000
6+
r_exp_alpha = 5000
7+
# scheduled sampling
8+
scheduled_sampling = 1
9+
sampling_stop_iter = 50000
10+
sampling_start_value = 1.0
11+
sampling_changing_rate = 0.00002
12+
# model
13+
num_hidden = '128,128,128,128'
14+
filter_size = 5
15+
stride = 1
16+
patch_size = 2
17+
layer_norm = 0
18+
19+
# training
20+
lr = 1e-4
21+
batch_size = 16
22+
sched = 'cosine'
23+
warmup_epoch = 0
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
method = 'PredRNNv2'
2+
# reverse scheduled sampling
3+
reverse_scheduled_sampling = 1
4+
r_sampling_step_1 = 25000
5+
r_sampling_step_2 = 50000
6+
r_exp_alpha = 5000
7+
# scheduled sampling
8+
scheduled_sampling = 1
9+
sampling_stop_iter = 50000
10+
sampling_start_value = 1.0
11+
sampling_changing_rate = 0.00002
12+
# model
13+
num_hidden = '128,128,128,128'
14+
filter_size = 5
15+
stride = 1
16+
patch_size = 2
17+
layer_norm = 0
18+
decouple_beta = 0.1
19+
20+
# training
21+
lr = 5e-4
22+
batch_size = 16
23+
sched = 'cosine'
24+
warmup_epoch = 0

configs/weather/mv_4_s6_5_625/SimVP_HorNet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
N_S = 2
1010

1111
# training
12-
# lr = 1e-3
12+
lr = 5e-3
1313
batch_size = 16
1414
drop_path = 0.1
1515
sched = 'cosine'

configs/weather/mv_4_s6_5_625/SimVP_IncepU.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
N_S = 2
1010

1111
# training
12-
# lr = 1e-3
12+
lr = 5e-3
1313
batch_size = 16
1414
drop_path = 0.1
1515
sched = 'cosine'

0 commit comments

Comments
 (0)