Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseYang committed May 7, 2018
1 parent f0a72bf commit 4d9a193
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ coco
*.jpg
*.npy
*.json
fitness_videos
4 changes: 2 additions & 2 deletions cfgs/config_mobilenetv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
_.limb_seq.append([_.limb_from[idx], _.limb_to[idx]])
_.map_idx.append([2 * idx, 2 * idx + 1])

# _.stride = 8
_.stride = 4
_.stride = 8
# _.stride = 4

_.sigma = 7

Expand Down
4 changes: 2 additions & 2 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
if cfg.backbone == 'vgg19':
from modules import VGGBlock as Backbone, Stage1Block, StageTBlock
else:
# from modules import Mobilenetv2Block as Backbone, Stage1DepthBlock as Stage1Block, StageTDepthBlock as StageTBlock
from modules import Mobilenetv2Block as Backbone, Stage1Block, StageTBlock
from modules import Mobilenetv2Block as Backbone, Stage1DepthBlock as Stage1Block, StageTDepthBlock as StageTBlock
# from modules import Mobilenetv2Block as Backbone, Stage1Block, StageTBlock
from reader import Data

def apply_mask(t, mask):
Expand Down

0 comments on commit 4d9a193

Please sign in to comment.