Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
7c40324b
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
1 年多 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7c40324b
编写于
12月 08, 2019
作者:
C
ceci3
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix for py3
上级
95a95672
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
31 addition
and
55 deletion
+31
-55
paddleslim/analysis/__init__.py
paddleslim/analysis/__init__.py
+4
-7
paddleslim/common/__init__.py
paddleslim/common/__init__.py
+11
-21
paddleslim/common/controller_client.py
paddleslim/common/controller_client.py
+1
-1
paddleslim/common/controller_server.py
paddleslim/common/controller_server.py
+1
-1
paddleslim/common/sa_controller.py
paddleslim/common/sa_controller.py
+1
-1
paddleslim/nas/__init__.py
paddleslim/nas/__init__.py
+3
-7
paddleslim/nas/search_space/__init__.py
paddleslim/nas/search_space/__init__.py
+10
-17
未找到文件。
paddleslim/analysis/__init__.py
浏览文件 @
7c40324b
...
...
@@ -11,10 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
flops
as
flops_module
from
flops
import
*
import
model_size
as
model_size_module
from
model_size
import
*
__all__
=
[]
__all__
+=
flops_module
.
__all__
__all__
+=
model_size_module
.
__all__
from
.flops
import
flops
from
.model_size
import
model_size
__all__
=
[
'flops'
,
'model_size'
]
paddleslim/common/__init__.py
浏览文件 @
7c40324b
...
...
@@ -11,25 +11,15 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
controller
from
controller
import
*
import
sa_controller
from
sa_controller
import
*
import
log_helper
from
log_helper
import
*
import
controller_server
from
controller_server
import
*
import
controller_client
from
controller_client
import
*
import
lock_utils
from
lock_utils
import
*
import
cached_reader
as
cached_reader_module
from
cached_reader
import
*
from
.controller
import
EvolutionaryController
from
.sa_controller
import
SAController
from
.log_helper
import
get_logger
from
.controller_server
import
ControllerServer
from
.controller_client
import
ControllerClient
from
.lock_utils
import
lock
,
unlock
from
.cached_reader
import
cached_reader
__all__
=
[]
__all__
+=
controller
.
__all__
__all__
+=
sa_controller
.
__all__
__all__
+=
controller_server
.
__all__
__all__
+=
controller_client
.
__all__
__all__
+=
lock_utils
.
__all__
__all__
+=
cached_reader_module
.
__all__
__all__
=
[
'EvolutionaryController'
,
'SAController'
,
'get_logger'
,
'ControllerServer'
,
'ControllerClient'
,
'lock'
,
'unlock'
,
'cached_reader'
]
paddleslim/common/controller_client.py
浏览文件 @
7c40324b
...
...
@@ -14,7 +14,7 @@
import
logging
import
socket
from
log_helper
import
get_logger
from
.
log_helper
import
get_logger
__all__
=
[
'ControllerClient'
]
...
...
paddleslim/common/controller_server.py
浏览文件 @
7c40324b
...
...
@@ -107,7 +107,7 @@ class ControllerServer(object):
_logger
.
debug
(
"send message to {}: [{}]"
.
format
(
addr
,
tokens
))
conn
.
close
()
except
Exception
,
err
:
except
Exception
as
err
:
_logger
.
error
(
err
)
finally
:
self
.
_socket_server
.
close
()
...
...
paddleslim/common/sa_controller.py
浏览文件 @
7c40324b
...
...
@@ -18,7 +18,7 @@ import math
import
logging
import
numpy
as
np
from
.controller
import
EvolutionaryController
from
log_helper
import
get_logger
from
.
log_helper
import
get_logger
__all__
=
[
"SAController"
]
...
...
paddleslim/nas/__init__.py
浏览文件 @
7c40324b
...
...
@@ -12,11 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
search_space
from
search_space
import
*
import
sa_nas
from
sa_nas
import
*
from
.search_space
import
*
from
.sa_nas
import
SANAS
__all__
=
[]
__all__
+=
search_space
.
__all__
__all__
+=
sa_nas
.
__all__
__all__
=
[
'SANAS'
]
paddleslim/nas/search_space/__init__.py
浏览文件 @
7c40324b
...
...
@@ -12,21 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
mobilenetv2
from
.mobilenetv2
import
*
import
mobilenetv1
from
.mobilenetv1
import
*
import
resnet
from
.resnet
import
*
import
search_space_registry
from
search_space_registry
import
*
import
search_space_factory
from
search_space_factory
import
*
import
search_space_base
from
search_space_base
import
*
from
.mobilenetv2
import
MobileNetV2Space
from
.mobilenetv1
import
MobileNetV1Space
from
.resnet
import
ResNetSpace
from
.search_space_registry
import
SEARCHSPACE
from
.search_space_factory
import
SearchSpaceFactory
from
.search_space_base
import
SearchSpaceBase
__all__
=
[]
__all__
+=
mobilenetv2
.
__all__
__all__
+=
search_space_registry
.
__all__
__all__
+=
search_space_factory
.
__all__
__all__
+=
search_space_base
.
__all__
__all__
=
[
'MobileNetV1Space'
,
'MobileNetV2Space'
,
'ResNetSpace'
,
'SearchSpaceBase'
,
'SearchSpaceFactory'
,
'SEARCHSPACE'
]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录