提交 2239ecbf 编写于 作者: Y Yang Zhang 提交者: qingqing01

simplify setup and fix bug in cascade head (#2500)

* Merge setup.py and requirements.txt
* Fix cascade head initializer fanout
上级 24f72797
......@@ -213,7 +213,7 @@ class CascadeBBoxHead(object):
def _head_share(self, roi_feat, wb_scalar=2.0, name=''):
# FC6 FC7
fan = roi_feat[1] * roi_feat[2] * roi_feat[3]
fan = roi_feat.shape[1] * roi_feat.shape[2] * roi_feat.shape[3]
fc6 = fluid.layers.fc(input=roi_feat,
size=self.head.num_chan,
act='relu',
......@@ -268,7 +268,7 @@ class FC6FC7Head(object):
self.num_chan = num_chan
def __call__(self, roi_feat, wb_scalar=1.0, name=''):
fan = roi_feat[1] * roi_feat[2] * roi_feat[3]
fan = roi_feat.shape[1] * roi_feat.shape[2] * roi_feat.shape[3]
fc6 = fluid.layers.fc(input=roi_feat,
size=self.num_chan,
act='relu',
......
pre-commit
tqdm
docstring_parser @ http://github.com/willthefrog/docstring_parser/tarball/master
typeguard ; python_version >= '3.4'
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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 setuptools
import sys
docstring_parser = 'docstring_parser @ ' \
+ 'http://github.com/willthefrog/docstring_parser/tarball/master'
install_requires = [docstring_parser]
if sys.version_info[0] > 2:
install_requires += ['typeguard']
setuptools.setup(install_requires=install_requires, )
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册