Commit 7f6c83d8 authored by Yuxin Wu's avatar Yuxin Wu

sed -i introduces a linting issue..

parent c4589f1d
...@@ -83,7 +83,7 @@ class Model(ModelDesc): ...@@ -83,7 +83,7 @@ class Model(ModelDesc):
def add_stage(stage, l): def add_stage(stage, l):
l = tf.concat([l, shared, pool_center], 3, l = tf.concat([l, shared, pool_center], 3,
name='concat_stage{}'.format(stage)) name='concat_stage{}'.format(stage))
for i in range(1, 6): for i in range(1, 6):
l = Conv2D('Mconv{}_stage{}'.format(i, stage), l, 128) l = Conv2D('Mconv{}_stage{}'.format(i, stage), l, 128)
l = Conv2D('Mconv6_stage{}'.format(stage), l, 128, kernel_shape=1) l = Conv2D('Mconv6_stage{}'.format(stage), l, 128, kernel_shape=1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment