megengine.hub.import_module¶
- import_module(repo_info, git_host, use_cache=True, commit=None, protocol='HTTPS')[源代码]¶
以类似python import的方式 import hubmodule。
- 参数
repo_info (
str
) – a string with format"repo_owner/repo_name[:tag_name/:branch_name]"
with an optional tag/branch. The default branch ismaster
if not specified. Eg:"brain_sdk/MegBrain[:hub]"
git_host (
str
) – host address of git repo. Eg: github.comuse_cache (
bool
) – 选择使用本地缓存的代码或完全重新拉取代码。protocol (
str
) – 获得代码仓库所使用的协议,其中,HTTPS协议只支持github公共仓库。该参数值可为HTTPS 或 SSH。
- 返回
一个python模块。