Skip to content

Commit

Permalink
new pretrained model
Browse files Browse the repository at this point in the history
  • Loading branch information
yysijie committed Feb 21, 2019
1 parent fb71c93 commit ed11e21
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/st_gcn/kinetics-skeleton/demo.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
weights: ./models/kinetics-st_gcn.pt
weights: ./models/st_gcn.kinetics.pt

# model
model: net.st_gcn.Model
Expand Down
2 changes: 1 addition & 1 deletion config/st_gcn/kinetics-skeleton/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
weights: ./models/kinetics-st_gcn.pt
weights: ./models/st_gcn.kinetics.pt

# feeder
feeder: feeder.feeder.Feeder
Expand Down
2 changes: 1 addition & 1 deletion config/st_gcn/kinetics-skeleton/train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test_batch_size: 256
#optim
base_lr: 0.1
step: [20, 30, 40, 50]
num_epoch: 60
num_epoch: 50



24 changes: 24 additions & 0 deletions config/st_gcn/ntu-xsub/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
weights: ./models/st_gcn.ntu-xsub.pt

# feeder
feeder: feeder.feeder.Feeder
test_feeder_args:
data_path: ./data/NTU-RGB-D/xsub/val_data.npy
label_path: ./data/NTU-RGB-D/xsub/val_label.pkl

# model
model: net.st_gcn.Model
model_args:
in_channels: 3
num_class: 60
dropout: 0.5
edge_importance_weighting: True
graph_args:
layout: 'ntu-rgb+d'
strategy: 'spatial'

# test
phase: test
device: 0
test_batch_size: 64

24 changes: 24 additions & 0 deletions config/st_gcn/ntu-xview/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
weights: ./models/st_gcn.ntu-xview.pt

# feeder
feeder: feeder.feeder.Feeder
test_feeder_args:
data_path: ./data/NTU-RGB-D/xview/val_data.npy
label_path: ./data/NTU-RGB-D/xview/val_label.pkl

# model
model: net.st_gcn.Model
model_args:
in_channels: 3
num_class: 60
dropout: 0.5
edge_importance_weighting: True
graph_args:
layout: 'ntu-rgb+d'
strategy: 'spatial'

# test
phase: test
device: 0
test_batch_size: 64

4 changes: 3 additions & 1 deletion resource/reference_model.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
kinetics-st_gcn.pt
st_gcn.kinetics.pt
st_gcn.ntu-xview.pt
st_gcn.ntu-xsub.pt

0 comments on commit ed11e21

Please sign in to comment.