-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat] Support lazy imports #3764
base: develop
Are you sure you want to change the base?
Conversation
Thanks for your contribution! |
- id: check-custom | ||
name: Check Custom | ||
entry: python .precommit/check_custom.py | ||
- id: check-license-headers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
将原本的自定义检查按照功能拆分成证书检查和导入语句检查
|
||
|
||
_initialize() | ||
|
||
__version__ = version.get_pdx_version() | ||
for mod in _SPECIAL_MODS: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
此处添加断言,确保import paddlex
时没有代码将paddle
等误载入了。我们保证这一点;如果用户遇到这个问题,说明我们的程序存在bug,用户可以向我们反馈。
@@ -12,11 +12,11 @@ | |||
# See the License for the specific language governing permissions and | |||
# limitations under the License. | |||
|
|||
import lazy_paddle as paddle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
不再特殊处理paddle,而是和其他依赖一样用统一的方式管理。
is_onnx_model_available = ( | ||
is_onnx_model_available or "paddle" in model_paths | ||
) | ||
else: | ||
logging.debug( | ||
"Paddle2ONNX is not available. Automatic model conversion will not be performed." | ||
"The Paddle2ONNX plugin is not available. Automatic model conversion will not be performed." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
体现产品层面的“插件”概念,避免抽象泄漏
from .deps import DEP_SPECS | ||
|
||
# TODO: Precompute or cache the constraints | ||
with tempfile.NamedTemporaryFile("w", suffix=".txt", delete=False) as f: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
由于pip目前并不会充分考虑已经安装的库,这里以PaddleX的直接依赖作为constraints,防止安装过程中PaddleX的直接依赖被变更(这是危险的)
cons_files = [cons_file] | ||
else: | ||
cons_files = [] | ||
# HACK: Avoid installing OpenCV variants unexpectedly |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
双重保险,万一套件的依赖有变更,而paddlex没有及时感知,这里也能拒绝安装错误的库。
continue | ||
else: | ||
lines.append(line_s) | ||
elif req.name in ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
防止安装不同变体的opencv。这种做法的缺点是:
- 需要手工维护直接和间接依赖其他变体opencv的库。好在目前这部分还可控且未来套件依赖大概率也不会有太大变更。
- 安装完成后可能显示部分套件核心库缺少依赖(一些opencv变体)。这个理论上不影响使用,如果需要消除的话可以考虑修改套件核心库的metadata等,但比较麻烦,这里没有实现。
本PR为PaddleX增加一系列utility函数以实现规范化、大面积应用的延迟导入,并新增静态检查脚本以发现问题。