Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
Qinqing Liu committed Nov 17, 2020
1 parent d782d35 commit dcf5585
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified tensorflow/.DS_Store
Binary file not shown.
Binary file modified tensorflow/script/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion tensorflow/script/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
_C.MODEL = CN()
_C.MODEL.name = '' # The name of the model
_C.MODEL.depth = 5 # The input octree depth
_C.MODEL.depth_out = 5 # The output feature depth
_C.MODEL.depth_out = 2 # The output feature depth
_C.MODEL.channel = 3 # The input feature channel
_C.MODEL.factor = 1 # The factor used to widen the network
_C.MODEL.nout = 40 # The output feature channel
Expand Down
5 changes: 2 additions & 3 deletions tensorflow/script/configs/test_resnet_depth6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ DATA:
dtype: points
distort: True
depth: 6
full_depth: 2
axis: xyz
angle: (180, 180, 180)
interval: (1, 1, 1)
Expand All @@ -26,9 +25,9 @@ MODEL:
channel: 24
nout: 1
depth: 6
resblock_num: 3
dropout: (0.0, )
resblock_num: 3

LOSS:
num_class: 1
weight_decay: 0.001
weight_decay: 0.01
5 changes: 1 addition & 4 deletions tensorflow/script/configs/train_resnet_depth6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ DATA:
dtype: points
distort: True
depth: 6
full_depth: 2
axis: xyz
angle: (180, 180, 180)
interval: (1, 1, 1)
Expand All @@ -29,7 +28,6 @@ DATA:
dtype: points
distort: True
depth: 6
full_depth: 2
axis: xyz
angle: (12, 12, 12)
interval: (1, 1, 1)
Expand All @@ -41,11 +39,10 @@ DATA:
x_alias: data

MODEL:
name: resnet #vgg or resnet
name: resnet #resnet or vgg
channel: 24
nout: 1
depth: 6
depth_out: 2
dropout: (0.0,)
resblock_num: 3

Expand Down

0 comments on commit dcf5585

Please sign in to comment.