未验证 提交 ab284dc2 编写于 作者: C Chang Xu 提交者: GitHub

fix_demo (#998)

上级 13fb9138
...@@ -2,7 +2,7 @@ import paddle ...@@ -2,7 +2,7 @@ import paddle
from paddle import fluid from paddle import fluid
from paddle.fluid.layer_helper import LayerHelper from paddle.fluid.layer_helper import LayerHelper
import numpy as np import numpy as np
from one_shot_nas import OneShotSuperNet from .one_shot_nas import OneShotSuperNet
__all__ = ['SuperMnasnet'] __all__ = ['SuperMnasnet']
...@@ -209,14 +209,14 @@ class SuperMnasnet(OneShotSuperNet): ...@@ -209,14 +209,14 @@ class SuperMnasnet(OneShotSuperNet):
def init_tokens(self): def init_tokens(self):
return [ return [
3, 3, 6, 6, 6, 6, 3, 3, 3, 6, 6, 6, 3, 3, 3, 3, 6, 6, 3, 3, 3, 6, 3, 3, 6, 6, 6, 6, 3, 3, 3, 6, 6, 6, 3, 3, 3, 3, 6, 6, 3, 3, 3, 6, 6,
6, 6, 3, 3, 3, 6, 6, 6, 3, 6, 6, 6, 6, 6 6, 3, 3, 3, 6, 6, 6, 3, 6, 6, 6, 6, 6
] ]
def range_table(self): def range_table(self):
max_v = [ max_v = [
6, 6, 10, 10, 10, 10, 6, 6, 6, 10, 10, 10, 6, 6, 6, 6, 10, 10, 6, 6, 6, 10, 10, 10, 10, 6, 6, 6, 10, 10, 10, 6, 6, 6, 6, 10, 10, 6, 6,
6, 6, 10, 10, 10, 6, 6, 6, 10, 10, 10, 6, 10, 10, 10, 10, 10 6, 10, 10, 10, 6, 6, 6, 10, 10, 10, 6, 10, 10, 10, 10, 10
] ]
return (len(max_v) * [0], max_v) return (len(max_v) * [0], max_v)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册