diff --git a/Dockerfile b/Dockerfile index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..9adc948b01d4de7c582407b81b5b0267b0e921d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM swr.cn-south-1.myhuaweicloud.com/mindspore/mindspore-cpu:1.8.0 +RUN mkdir /code +WORKDIR /code +COPY src/qaRobot/requirements.txt /code/ +RUN pip install -r requirements.txt +COPY src/qaRobot /code/ +EXPOSE 8000 +CMD ["python", "./manage.py", "runserver"] diff --git a/README.md b/README.md index 114db075a64ef4bffe236e55e84e2c874965975c..2d99ad2f5b3c353e6fe246cdc4bff474fca061ca 100644 --- a/README.md +++ b/README.md @@ -1,102 +1,125 @@ -## MindSpore 知识机器人 - -项目目标为针对MindSpore官网主页的文档、FAQ等,构建知识机器人,可以让开发者通过机器人解决80%的问题,提升MindSpore文档易用性的体验。 - - -## 环境准备 - -### 安装MindSpore以及相关的组件 - -当前MindSpore端到端工具链完整支持的系统为Linux,所以以下的安装指南会基于Ubuntu 18.04. - -1. 安装MindSpore GPU版本: - -MindSpore当前提供了Ubuntu的自动化安装脚本,参考[安装指南](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_pip.md),安装Python 3.9 以及MindSpore 1.7.0版本,执行如下命令: - -```bash -# 安装MindSpore 1.7.0,Python 3.9和CUDA 11.1。 -wget https://gitee.com/mindspore/mindspore/raw/master/scripts/install/ubuntu-gpu-pip.sh -PYTHON_VERSION=3.9 MINDSPORE_VERSION=1.7.0 bash -i ./ubuntu-gpu-pip.sh -``` - -或者基于Conda,安装MindSpore GPU版本: - -```bash -# 安装Python 3.9,CUDA 11.1以及最新版本的MindSpore -wget https://gitee.com/mindspore/mindspore/raw/master/scripts/install/ubuntu-gpu-conda.sh -PYTHON_VERSION=3.9 bash -i ./ubuntu-gpu-conda.sh -``` - -2. 安装调试调优工具MindInsight: - -MindInsight是MindSpore的可视化调试调优工具。利用MindInsight,可以可视化地查看训练过程、优化模型性能、调试精度问题、解释推理结果。也是我们在开发过程中必不可少的工具。在命令行中执行`pip install mindinsight`即可完成MindInight的安装。 - -3. 安装可解释性工具XAI: - -XAI是一个基于昇思MindSpore的可解释AI工具箱hao de 。当前深度学习模型多为黑盒模型,性能表现好但可解释性较差。XAI旨在为用户提供对模型决策的解释,帮助用户更好地理解模型、信任模型,以及当模型出现错误时有针对性地改进模型。除了提供多种解释方法,还提供了一套对解释方法效果评分的度量方法,从多种维度评估解释方法的效果,从而帮助用户比较和选择最适合于特定场景的解释方法。 - -```bash -curl -O https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.5.0/Xai/any/mindspore_xai-1.5.0-py3-none-any.whl -pip install mindspore_xai-1.5.0-py3-none-any.whl -``` - -4. 安装可靠性、安全性工具MindArmour: - -MindArmour是昇思MindSpore的一个子项目,为昇思MindSpore提供安全与隐私保护能力,主要包括对抗鲁棒性、模型安全测试、差分隐私训练、隐私泄露风险评估、数据漂移检测等技术。 - -```bash -version=1.7.0 -pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/{version}/MindArmour/any/mindarmour-${version}-py3-none-any.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple -``` - -5. 安装MindSpore Serving: - -MindSpore Serving是MindSpore的推理后端,用于在云侧部署推理服务,当前支持各类硬件平台(Nvidia GPU, Ascend系列芯片, CPU),在本项目中,Serving用于云侧推理服务的部署。 - -```bash -arch=x86_64 -version=1.7.0 -python_version=3.9.0 -pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/${version}/Serving/${arch}/mindspore_serving-${version}-${python_version}-linux_${arch}.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple -``` - -6. 安装MindSpore Lite: - -MindSpore Lite是端侧的推理框架,主要用于端侧设备的部署,在本项目中用于模型在IDE中的部署和推理。 - -```bash -curl -O https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.7.0/MindSpore/lite/release/linux/x86_64/mindspore-lite-1.7.0-linux-x64.tar.gz -tar -xvzf mindspore-lite-1.7.0-linux-x64.tar.gz -``` - -### 安装IDE及MindSpore Dev Toolkit插件 - -1. 下载安装Pycharm IDE: Pycharm IDE是Jetbrains公司推出的针对Python开发的IDE,开发者可以选择[Pycharm社区版本](https://download.jetbrains.com/python/pycharm-community-2021.3.3.exe)进行安装。 - -2. 安装MindSpore Dev Tookkit插件:MindSpore Dev Toolkit是一款面向MindSpore开发者的IDE 开发插件,它提供了智能代码补全、算子互搜等能力,为MindSpore的开发者提供更好的编码体验。开发者在完成Pycharm的安装后,可以下载[Dev Toolkit插件](https://gitee.com/link?target=https%3A%2F%2Fms-release.obs.cn-north-4.myhuaweicloud.com%2F1.6.1%2FIdePlugin%2Fany%2FMindSpore_Dev_ToolKit-1.6.1.zip),然后打开Pycharm,选择`File->Settings->Plugins->Install Plugin from Disk`,然后从本地磁盘加载刚下载的zip包,重启IDE之后就可以正常使用插件了。 - -### 如何在本地启动Jenkins - -`infra` 目录提供了Jenkins的docker-compose文件,使用`docker-compose up -d`启动jenkins,通过`docker-compose logs`可以获得启动时的登录密码,浏览器中访问`localhost:8080`完成初始化即可。 - -### 如何创建和配置Kubernetes集群 - -1. 在华为云创建CCE Turbo集群,并创建和纳管两个ECS节点。 - -2. 安装配置kubectl: - -下载kubectl `curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"` ,使用`sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl` 安装。 - -在CCE Turbo集群详情页面绑定公网IP,然后下载证书,按照指南创建 `$HOME/.kube`,并将证书添加到`$HOME/.kube/config`文件中。然后用`kubectl config use-context external`切换到互联网访问模式。 - -使用`kubectl get nodes`就可以看到节点的信息,验证配置无误: - -``` -$ kubectl get nodes -NAME STATUS ROLES AGE VERSION -192.168.0.34 Ready 5d1h v1.19.10-r0-CCE21.12.1.B004 -192.168.0.39 Ready 5d1h v1.19.10-r0-CCE21.12.1.B004 -``` - -### 配置MLops流水线 -社区机器人项目覆盖数据、特征、模型和应用开发等多个领域,为了促进项目中数据工程师、模型研究员以及应用开发人员等有效协作和工作,提升模型开发、部署和迭代效率,我们在项目中引入MLOps流水线简化ML任务的E2E生命周期。当前构建版本基于[MLOps-Tools](https://github.com/TECH4DX/MLops-Tools#readme)项目,相关配置说明可在项目仓库中查看。你可以参考[getting-started-guide.md](https://github.com/TECH4DX/MLops-Tools/blob/main/cd/examples/getting-started-guide.md)快速便捷地构建你的第一条流水线。 +## MindSpore 知识机器人 + +项目目标为针对MindSpore官网主页的文档、FAQ等,构建知识机器人,可以让开发者通过机器人解决80%的问题,提升MindSpore文档易用性的体验。 + + +## 环境准备 + +### 安装MindSpore以及相关的组件 + +当前MindSpore端到端工具链完整支持的系统为Linux,所以以下的安装指南会基于Ubuntu 18.04. + +1. 安装MindSpore GPU版本: + +MindSpore当前提供了Ubuntu的自动化安装脚本,参考[安装指南](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_pip.md),安装Python 3.9 以及MindSpore 1.7.0版本,执行如下命令: + +```bash +# 安装MindSpore 1.7.0,Python 3.9和CUDA 11.1。 +wget https://gitee.com/mindspore/mindspore/raw/master/scripts/install/ubuntu-gpu-pip.sh +PYTHON_VERSION=3.9 MINDSPORE_VERSION=1.7.0 bash -i ./ubuntu-gpu-pip.sh +``` + +或者基于Conda,安装MindSpore GPU版本: + +```bash +# 安装Python 3.9,CUDA 11.1以及最新版本的MindSpore +wget https://gitee.com/mindspore/mindspore/raw/master/scripts/install/ubuntu-gpu-conda.sh +PYTHON_VERSION=3.9 bash -i ./ubuntu-gpu-conda.sh +``` + +2. 安装调试调优工具MindInsight: + +MindInsight是MindSpore的可视化调试调优工具。利用MindInsight,可以可视化地查看训练过程、优化模型性能、调试精度问题、解释推理结果。也是我们在开发过程中必不可少的工具。在命令行中执行`pip install mindinsight`即可完成MindInight的安装。 + +3. 安装可解释性工具XAI: + +XAI是一个基于昇思MindSpore的可解释AI工具箱hao de 。当前深度学习模型多为黑盒模型,性能表现好但可解释性较差。XAI旨在为用户提供对模型决策的解释,帮助用户更好地理解模型、信任模型,以及当模型出现错误时有针对性地改进模型。除了提供多种解释方法,还提供了一套对解释方法效果评分的度量方法,从多种维度评估解释方法的效果,从而帮助用户比较和选择最适合于特定场景的解释方法。 + +```bash +curl -O https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.5.0/Xai/any/mindspore_xai-1.5.0-py3-none-any.whl +pip install mindspore_xai-1.5.0-py3-none-any.whl +``` + +4. 安装可靠性、安全性工具MindArmour: + +MindArmour是昇思MindSpore的一个子项目,为昇思MindSpore提供安全与隐私保护能力,主要包括对抗鲁棒性、模型安全测试、差分隐私训练、隐私泄露风险评估、数据漂移检测等技术。 + +```bash +version=1.7.0 +pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/{version}/MindArmour/any/mindarmour-${version}-py3-none-any.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple +``` + +5. 安装MindSpore Serving: + +MindSpore Serving是MindSpore的推理后端,用于在云侧部署推理服务,当前支持各类硬件平台(Nvidia GPU, Ascend系列芯片, CPU),在本项目中,Serving用于云侧推理服务的部署。 + +```bash +arch=x86_64 +version=1.7.0 +python_version=3.9.0 +pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/${version}/Serving/${arch}/mindspore_serving-${version}-${python_version}-linux_${arch}.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple +``` + +6. 安装MindSpore Lite: + +MindSpore Lite是端侧的推理框架,主要用于端侧设备的部署,在本项目中用于模型在IDE中的部署和推理。 + +```bash +curl -O https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.7.0/MindSpore/lite/release/linux/x86_64/mindspore-lite-1.7.0-linux-x64.tar.gz +tar -xvzf mindspore-lite-1.7.0-linux-x64.tar.gz +``` + +### 安装IDE及MindSpore Dev Toolkit插件 + +1. 下载安装Pycharm IDE: Pycharm IDE是Jetbrains公司推出的针对Python开发的IDE,开发者可以选择[Pycharm社区版本](https://download.jetbrains.com/python/pycharm-community-2021.3.3.exe)进行安装。 + +2. 安装MindSpore Dev Tookkit插件:MindSpore Dev Toolkit是一款面向MindSpore开发者的IDE 开发插件,它提供了智能代码补全、算子互搜等能力,为MindSpore的开发者提供更好的编码体验。开发者在完成Pycharm的安装后,可以下载[Dev Toolkit插件](https://gitee.com/link?target=https%3A%2F%2Fms-release.obs.cn-north-4.myhuaweicloud.com%2F1.6.1%2FIdePlugin%2Fany%2FMindSpore_Dev_ToolKit-1.6.1.zip),然后打开Pycharm,选择`File->Settings->Plugins->Install Plugin from Disk`,然后从本地磁盘加载刚下载的zip包,重启IDE之后就可以正常使用插件了。 + +### 如何在本地启动Jenkins + +`infra` 目录提供了Jenkins的docker-compose文件,使用`docker-compose up -d`启动jenkins,通过`docker-compose logs`可以获得启动时的登录密码,浏览器中访问`localhost:8080`完成初始化即可。 + +### 如何创建和配置Kubernetes集群 + +1. 在华为云创建CCE Turbo集群,并创建和纳管两个ECS节点。 + +2. 安装配置kubectl: + +下载kubectl `curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"` ,使用`sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl` 安装。 + +在CCE Turbo集群详情页面绑定公网IP,然后下载证书,按照指南创建 `$HOME/.kube`,并将证书添加到`$HOME/.kube/config`文件中。然后用`kubectl config use-context external`切换到互联网访问模式。 + +使用`kubectl get nodes`就可以看到节点的信息,验证配置无误: + +``` +$ kubectl get nodes +NAME STATUS ROLES AGE VERSION +192.168.0.34 Ready 5d1h v1.19.10-r0-CCE21.12.1.B004 +192.168.0.39 Ready 5d1h v1.19.10-r0-CCE21.12.1.B004 +``` + +### 配置MLops流水线 +社区机器人项目覆盖数据、特征、模型和应用开发等多个领域,为了促进项目中数据工程师、模型研究员以及应用开发人员等有效协作和工作,提升模型开发、部署和迭代效率,我们在项目中引入MLOps流水线简化ML任务的E2E生命周期。当前构建版本基于[MLOps-Tools](https://github.com/TECH4DX/MLops-Tools#readme)项目,相关配置说明可在项目仓库中查看。你可以参考[getting-started-guide.md](https://github.com/TECH4DX/MLops-Tools/blob/main/cd/examples/getting-started-guide.md)快速便捷地构建你的第一条流水线。 + + +## 准备数据 +data 路径下的data.csv为提取的官方文档中的数据。首先运行prepare_data.py生成预备数据。 +* resource_sentence_encode.json是FAQ中问题的编码,key为问题,value为问题经过bert之后的编码。 +* q_a.json 是所有FAQ的数据,key为问题,value为答案。 + +## 在命令行运行 +运行 q_a.py, 参数为问题,即可匹配到现有知识库中的答案。 +* 执行:python q_a.py 改变第三方依赖库安装路径 +* 返回结果:第三方依赖库的包默认安装在build/mindspore/.mslib目录下,可以设置环境变量MSLIBS_CACHE_PATH来改变安装目录,比如 `export MSLIBS_CACHE_PATH = ~/.mslib`。 + +## 调用Restful接口访问 +切换到src/qaRobot 路径下,执行 python manage.py runserver +访问http://127.0.0.1:8000/robot/api/?q=安装mindspore 即可返回答案,其中q参数为问题: +```json +{ + "question": "安装mindspore", + "answer": "您可以从[MindSpore网站下载地址](https://www.mindspore.cn/versions)下载whl包,通过`pip install`命令进行安装。" +} +``` + + diff --git a/data/data.csv b/data/data.csv new file mode 100644 index 0000000000000000000000000000000000000000..97e4249134febd8a6cad9442d163eeca8e689c3b --- /dev/null +++ b/data/data.csv @@ -0,0 +1,714 @@ +title,content,link,process,tag, +torch.abs,mindspore.ops.Abs,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Abs.html#mindspore.ops.Abs,算子,pytorch|API映射, +torch.acos,mindspore.ops.ACos,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ACos.html#mindspore.ops.ACos,算子,pytorch|API映射, +torch.add,mindspore.ops.Add,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Add.html#mindspore.ops.Add,算子,pytorch|API映射, +torch.arange,mindspore.numpy.arange,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.arange.html#mindspore.numpy.arange,算子,pytorch|API映射, +torch.argmax,mindspore.ops.Argmax,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Argmax.html#mindspore.ops.Argmax,算子,pytorch|API映射, +torch.argmin,mindspore.ops.Argmin,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Argmin.html#mindspore.ops.Argmin,算子,pytorch|API映射, +torch.argsort,mindspore.ops.Sort,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sort.html#mindspore.ops.Sort,算子,pytorch|API映射, +torch.asin,mindspore.ops.Asin,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Asin.html#mindspore.ops.Asin,算子,pytorch|API映射, +torch.atan,mindspore.ops.Atan,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Atan.html#mindspore.ops.Atan,算子,pytorch|API映射, +torch.atan2,mindspore.ops.Atan2,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Atan2.html#mindspore.ops.Atan2,算子,pytorch|API映射, +torch.bartlett_window,mindspore.numpy.bartlett,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.bartlett.html#mindspore.numpy.bartlett,算子,pytorch|API映射, +torch.bincount,mindspore.numpy.bincount,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.bincount.html#mindspore.numpy.bincount,算子,pytorch|API映射, +torch.bitwise_and,mindspore.ops.BitwiseAnd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BitwiseAnd.html#mindspore.ops.BitwiseAnd,算子,pytorch|API映射, +torch.bitwise_or,mindspore.ops.BitwiseOr,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BitwiseOr.html#mindspore.ops.BitwiseOr,算子,pytorch|API映射, +torch.bitwise_xor,mindspore.ops.BitwiseXor,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BitwiseXor.html#mindspore.ops.BitwiseXor,算子,pytorch|API映射, +torch.blackman_window,mindspore.numpy.blackman,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.blackman.html#mindspore.numpy.blackman,算子,pytorch|API映射, +torch.bmm,mindspore.ops.BatchMatMul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BatchMatMul.html#mindspore.ops.BatchMatMul,算子,pytorch|API映射, +torch.broadcast_tensors,mindspore.ops.BroadcastTo,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BroadcastTo.html#mindspore.ops.BroadcastTo,算子,pytorch|API映射, +torch.cat,mindspore.ops.Concat,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Concat.html#mindspore.ops.Concat,算子,pytorch|API映射, +torch.ceil,mindspore.ops.Ceil,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Ceil.html#mindspore.ops.Ceil,算子,pytorch|API映射, +torch.chunk,mindspore.ops.Split,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Split.html#mindspore.ops.Split,算子,pytorch|API映射, +torch.clamp,mindspore.ops.clip_by_value,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.clip_by_value.html#mindspore.ops.clip_by_value,算子,pytorch|API映射, +torch.conj,mindspore.ops.Conj,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Conj.html#mindspore.ops.Conj,算子,pytorch|API映射, +torch.cos,mindspore.ops.Cos,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Cos.html#mindspore.ops.Cos,算子,pytorch|API映射, +torch.cosh,mindspore.ops.Cosh,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Cosh.html#mindspore.ops.Cosh,算子,pytorch|API映射, +torch.cross,mindspore.numpy.cross,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.cross.html#mindspore.numpy.cross,算子,pytorch|API映射, +torch.cumprod,mindspore.ops.CumProd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.CumProd.html#mindspore.ops.CumProd,算子,pytorch|API映射, +torch.cumsum,mindspore.ops.CumSum,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.CumSum.html#mindspore.ops.CumSum,算子,pytorch|API映射, +torch.diag,mindspore.nn.MatrixDiag,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MatrixDiag.html#mindspore.nn.MatrixDiag,算子,pytorch|API映射, +torch.diagflat,mindspore.numpy.diagflat,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.diagflat.html#mindspore.numpy.diagflat,算子,pytorch|API映射, +torch.diagonal,mindspore.numpy.diagonal,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.diagonal.html#mindspore.numpy.diagonal,算子,pytorch|API映射, +torch.div,mindspore.ops.Div,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Div.html#mindspore.ops.Div,算子,pytorch|API映射, +torch.dot,mindspore.ops.tensor_dot,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.tensor_dot.html#mindspore.ops.tensor_dot,算子,pytorch|API映射, +torch.empty,mindspore.numpy.empty,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.empty.html#mindspore.numpy.empty,算子,pytorch|API映射, +torch.empty_like,mindspore.numpy.empty_like,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.empty_like.html#mindspore.numpy.empty_like,算子,pytorch|API映射, +torch.eq,mindspore.ops.Equal,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Equal.html#mindspore.ops.Equal,算子,pytorch|API映射, +torch.erfc,mindspore.ops.Erfc,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Erfc.html#mindspore.ops.Erfc,算子,pytorch|API映射, +torch.erfinv,mindspore.ops.Erfinv,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Erfinv.html#mindspore.ops.Erfinv,算子,pytorch|API映射, +torch.exp,mindspore.ops.Exp,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Exp.html#mindspore.ops.Exp,算子,pytorch|API映射, +torch.expm1,mindspore.ops.Expm1,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Expm1.html#mindspore.ops.Expm1,算子,pytorch|API映射, +torch.eye,mindspore.ops.Eye,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Eye.html#mindspore.ops.Eye,算子,pytorch|API映射, +torch.flatten,mindspore.ops.Flatten,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Flatten.html#mindspore.ops.Flatten,算子,pytorch|API映射, +torch.flip,mindspore.ops.ReverseV2,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReverseV2.html#mindspore.ops.ReverseV2,算子,pytorch|API映射, +torch.floor,mindspore.ops.Floor,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Floor.html#mindspore.ops.Floor,算子,pytorch|API映射, +torch.floor_divide,mindspore.ops.FloorDiv,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.FloorDiv.html#mindspore.ops.FloorDiv,算子,pytorch|API映射, +torch.fmod,mindspore.ops.Mod,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Mod.html#mindspore.ops.Mod,算子,pytorch|API映射, +torch.from_numpy,mindspore.tensor.from_numpy,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html?#mindspore.Tensor.from_numpy,算子,pytorch|API映射, +torch.full,mindspore.numpy.full,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.full.html#mindspore.numpy.full,算子,pytorch|API映射, +torch.full_like,mindspore.numpy.full_like,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.full_like.html#mindspore.numpy.full_like,算子,pytorch|API映射, +torch.gather,mindspore.ops.GatherD,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.GatherD.html#mindspore.ops.GatherD,算子,pytorch|API映射, +torch.ge,mindspore.ops.GreaterEqual,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.GreaterEqual.html#mindspore.ops.GreaterEqual,算子,pytorch|API映射, +torch.gt,mindspore.ops.Greater,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Greater.html#mindspore.ops.Greater,算子,pytorch|API映射, +torch.hamming_window,mindspore.numpy.hamming,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.hamming.html#mindspore.numpy.hamming,算子,pytorch|API映射, +torch.hann_window,mindspore.numpy.hanning,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.hanning.html#mindspore.numpy.hanning,算子,pytorch|API映射, +torch.histc,mindspore.ops.HistogramFixedWidth,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.HistogramFixedWidth.html#mindspore.ops.HistogramFixedWidth,算子,pytorch|API映射, +torch.imag,mindspore.ops.Imag,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Imag.html#mindspore.ops.Imag,算子,pytorch|API映射, +torch.isfinite,mindspore.ops.IsFinite,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.IsFinite.html#mindspore.ops.IsFinite,算子,pytorch|API映射, +torch.isinf,mindspore.ops.IsInf,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.IsInf.html#mindspore.ops.IsInf,算子,pytorch|API映射, +torch.isnan,mindspore.ops.IsNan,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.IsNan.html#mindspore.ops.IsNan,算子,pytorch|API映射, +torch.le,mindspore.ops.LessEqual,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LessEqual.html#mindspore.ops.LessEqual,算子,pytorch|API映射, +torch.lerp,mindspore.ops.Lerp,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Lerp.html#mindspore.ops.Lerp,算子,pytorch|API映射, +torch.linspace,mindspore.ops.LinSpace,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LinSpace.html#mindspore.ops.LinSpace,算子,pytorch|API映射, +torch.load,mindspore.load_checkpoint,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.load_checkpoint.html#mindspore-load-checkpoint,算子,pytorch|API映射, +torch.log,mindspore.ops.Log,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Log.html#mindspore.ops.Log,算子,pytorch|API映射, +torch.log1p,mindspore.ops.Log1p,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Log1p.html#mindspore.ops.Log1p,算子,pytorch|API映射, +torch.log2,mindspore.numpy.log2,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.log2.html#mindspore.numpy.log2,算子,pytorch|API映射, +torch.logical_and,mindspore.ops.LogicalAnd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LogicalAnd.html#mindspore.ops.LogicalAnd,算子,pytorch|API映射, +torch.logical_not,mindspore.numpy.logical_not,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.logical_not.html#mindspore.numpy.logical_not,算子,pytorch|API映射, +torch.logical_or,mindspore.ops.LogicalOr,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LogicalOr.html#mindspore.ops.LogicalOr,算子,pytorch|API映射, +torch.logical_xor,mindspore.numpy.logical_xor,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.logical_xor.html#mindspore.numpy.logical_xor,算子,pytorch|API映射, +torch.logspace,mindspore.numpy.logspace,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.logspace.html#mindspore.numpy.logspace,算子,pytorch|API映射, +torch.lt,mindspore.ops.Less,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Less.html#mindspore.ops.Less,算子,pytorch|API映射, +torch.matmul,mindspore.nn.MatMul,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MatMul.html#mindspore.nn.MatMul,算子,pytorch|API映射, +torch.matrix_power,mindspore.numpy.matrix_power,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.matrix_power.html#mindspore.numpy.matrix_power,算子,pytorch|API映射, +torch.matrix_rank,mindspore.ops.Rank,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Rank.html#mindspore.ops.Rank,算子,pytorch|API映射, +torch.max,mindspore.ops.ArgMaxWithValue,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ArgMaxWithValue.html#mindspore.ops.ArgMaxWithValue,算子,pytorch|API映射, +torch.maximum,mindspore.ops.Maximum,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Maximum.html#mindspore.ops.Maximum,算子,pytorch|API映射, +torch.mean,mindspore.ops.ReduceMean,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReduceMean.html#mindspore.ops.ReduceMean,算子,pytorch|API映射, +torch.meshgrid,mindspore.ops.Meshgrid,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Meshgrid.html#mindspore.ops.Meshgrid,算子,pytorch|API映射, +torch.min,mindspore.ops.ArgMinWithValue,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ArgMinWithValue.html#mindspore.ops.ArgMinWithValue,算子,pytorch|API映射, +torch.mm,mindspore.ops.MatMul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.MatMul.html#mindspore.ops.MatMul,算子,pytorch|API映射, +torch.mul,mindspore.ops.Mul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Mul.html#mindspore.ops.Mul,算子,pytorch|API映射, +torch.multinomial,mindspore.ops.multinomial,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.multinomial.html#mindspore.ops.multinomial,算子,pytorch|API映射, +torch.ne,mindspore.ops.NotEqual,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.NotEqual.html#mindspore.ops.NotEqual,算子,pytorch|API映射, +torch.neg,mindspore.ops.Neg,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Neg.html#mindspore.ops.Neg,算子,pytorch|API映射, +torch.norm,mindspore.ops.LpNorm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LpNorm.html#mindspore.ops.LpNorm,算子,pytorch|API映射, +torch.numel,mindspore.ops.Size,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Size.html#mindspore.ops.Size,算子,pytorch|API映射, +torch.ones,mindspore.ops.Ones,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Ones.html#mindspore.ops.Ones,算子,pytorch|API映射, +torch.ones_like,mindspore.ops.OnesLike,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.OnesLike.html#mindspore.ops.OnesLike,算子,pytorch|API映射, +torch.poisson,mindspore.ops.poisson,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.poisson.html#mindspore.ops.poisson,算子,pytorch|API映射, +torch.pow,mindspore.ops.Pow,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Pow.html#mindspore.ops.Pow,算子,pytorch|API映射, +torch.prod,mindspore.ops.ReduceProd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReduceProd.html#mindspore.ops.ReduceProd,算子,pytorch|API映射, +torch.promote_types,mindspore.numpy.promote_types,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.promote_types.html#mindspore.numpy.promote_types,算子,pytorch|API映射, +torch.rand,mindspore.ops.UniformReal,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.UniformReal.html#mindspore.ops.UniformReal,算子,pytorch|API映射, +torch.rand_like,mindspore.ops.UniformReal,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.UniformReal.html#mindspore.ops.UniformReal,算子,pytorch|API映射, +torch.randint,mindspore.ops.UniformInt,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.UniformInt.html#mindspore.ops.UniformInt,算子,pytorch|API映射, +torch.randint_like,mindspore.ops.UniformInt,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.UniformInt.html#mindspore.ops.UniformInt,算子,pytorch|API映射, +torch.randn,mindspore.ops.StandardNormal,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.StandardNormal.html#mindspore.ops.StandardNormal,算子,pytorch|API映射, +torch.randperm,mindspore.ops.Randperm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Randperm.html#mindspore.ops.Randperm,算子,pytorch|API映射, +torch.range,mindspore.nn.Range,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Range.html#mindspore.nn.Range,算子,pytorch|API映射, +torch.real,mindspore.ops.Real,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Real.html#mindspore.ops.Real,算子,pytorch|API映射, +torch.reciprocal,mindspore.ops.Reciprocal,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Reciprocal.html#mindspore.ops.Reciprocal,算子,pytorch|API映射, +torch.remainder,mindspore.numpy.remainder,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.remainder.html#mindspore.numpy.remainder,算子,pytorch|API映射, +torch.reshape,mindspore.ops.Reshape,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Reshape.html#mindspore.ops.Reshape,算子,pytorch|API映射, +torch.result_type,mindspore.numpy.result_type,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.result_type.html#mindspore.numpy.result_type,算子,pytorch|API映射, +torch.roll,mindspore.nn.Roll,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Roll.html#mindspore.nn.Roll,算子,pytorch|API映射, +torch.rot90,mindspore.numpy.rot90,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.rot90.html#mindspore.numpy.rot90,算子,pytorch|API映射, +torch.round,mindspore.ops.Rint,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Rint.html#mindspore.ops.Rint,算子,pytorch|API映射, +torch.rsqrt,mindspore.ops.Rsqrt,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Rsqrt.html#mindspore.ops.Rsqrt,算子,pytorch|API映射, +torch.save,mindspore.save_checkpoint,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.save_checkpoint.html#mindspore.save_checkpoint,算子,pytorch|API映射, +torch.sigmoid,mindspore.ops.Sigmoid,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sigmoid.html#mindspore.ops.Sigmoid,算子,pytorch|API映射, +torch.sin,mindspore.ops.Sin,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sin.html#mindspore.ops.Sin,算子,pytorch|API映射, +torch.sinh,mindspore.ops.Sinh,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sinh.html#mindspore.ops.Sinh,算子,pytorch|API映射, +torch.sort,mindspore.ops.Sort,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sort.html#mindspore.ops.Sort,算子,pytorch|API映射, +torch.sparse_coo_tensor,mindspore.SparseTensor,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.SparseTensor.html#mindspore.SparseTensor,算子,pytorch|API映射, +torch.split,mindspore.ops.Split,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Split.html#mindspore.ops.Split,算子,pytorch|API映射, +torch.sqrt,mindspore.ops.Sqrt,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sqrt.html#mindspore.ops.Sqrt,算子,pytorch|API映射, +torch.square,mindspore.ops.Square,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Square.html#mindspore.ops.Square,算子,pytorch|API映射, +torch.squeeze,mindspore.ops.Squeeze,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Squeeze.html#mindspore.ops.Squeeze,算子,pytorch|API映射, +torch.stack,mindspore.ops.Stack,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Stack.html#mindspore.ops.Stack,算子,pytorch|API映射, +torch.std,mindspore.Tensor.std,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.std,算子,pytorch|API映射, +torch.std_mean,mindspore.ops.ReduceMean,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReduceMean.html#mindspore.ops.ReduceMean,算子,pytorch|API映射, +torch.sum,mindspore.ops.ReduceSum,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReduceSum.html#mindspore.ops.ReduceSum,算子,pytorch|API映射, +torch.take,mindspore.Tensor.take,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.take,算子,pytorch|API映射, +torch.tan,mindspore.ops.Tan,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Tan.html#mindspore.ops.Tan,算子,pytorch|API映射, +torch.tanh,mindspore.ops.Tanh,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Tanh.html#mindspore.ops.Tanh,算子,pytorch|API映射, +torch.tensor,mindspore.Tensor,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor,算子,pytorch|API映射, +torch.Tensor,mindspore.Tensor,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor,算子,pytorch|API映射, +torch.tensordot,mindspore.numpy.tensordot,https://www.mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.tensordot.html,算子,pytorch|API映射, +torch.topk,mindspore.ops.TopK,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.TopK.html#mindspore.ops.TopK,算子,pytorch|API映射, +torch.trace,mindspore.Tensor.trace,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.trace,算子,pytorch|API映射, +torch.transpose,mindspore.ops.Transpose,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html#mindspore.ops.Transpose,算子,pytorch|API映射, +torch.trapz,mindspore.numpy.trapz,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.trapz.html#mindspore.numpy.trapz,算子,pytorch|API映射, +torch.tril,mindspore.nn.Tril,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Tril.html#mindspore.nn.Tril,算子,pytorch|API映射, +torch.tril_indices,mindspore.numpy.tril_indices,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.tril_indices.html#mindspore.numpy.tril_indices,算子,pytorch|API映射, +torch.triu,mindspore.nn.Triu,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Triu.html#mindspore.nn.Triu,算子,pytorch|API映射, +torch.triu_indices,mindspore.numpy.triu_indices,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.triu_indices.html#mindspore.numpy.triu_indices,算子,pytorch|API映射, +torch.true_divide,mindspore.numpy.true_divide,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.true_divide.html#mindspore.numpy.true_divide,算子,pytorch|API映射, +torch.trunc,mindspore.numpy.trunc,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.trunc.html#mindspore.numpy.trunc,算子,pytorch|API映射, +torch.unbind,mindspore.ops.Unstack,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Unstack.html#mindspore.ops.Unstack,算子,pytorch|API映射, +torch.unique,mindspore.ops.Unique,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Unique.html#mindspore.ops.Unique,算子,pytorch|API映射, +torch.unsqueeze,mindspore.ops.ExpandDims,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ExpandDims.html#mindspore.ops.ExpandDims,算子,pytorch|API映射, +torch.var,mindspore.Tensor.var,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.var,算子,pytorch|API映射, +torch.where,mindspore.numpy.where,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.where.html#mindspore.numpy.where,算子,pytorch|API映射, +torch.zeros,mindspore.ops.Zeros,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Zeros.html#mindspore.ops.Zeros,算子,pytorch|API映射, +torch.zeros_like,mindspore.ops.ZerosLike,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ZerosLike.html#mindspore.ops.ZerosLike,算子,pytorch|API映射, +torch.autograd.backward,mindspore.ops.GradOperation,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.GradOperation.html#mindspore.ops.GradOperation,算子,pytorch|API映射, +torch.autograd.enable_grad,mindspore.ops.stop_gradient,https://www.mindspore.cn/tutorials/zh-CN/master/beginner/autograd.html#停止计算梯度,算子,pytorch|API映射, +torch.autograd.grad,mindspore.ops.GradOperation,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.GradOperation.html#mindspore.ops.GradOperation,算子,pytorch|API映射, +torch.autograd.no_grad,mindspore.ops.stop_gradient,https://www.mindspore.cn/tutorials/zh-CN/master/beginner/autograd.html#停止计算梯度,算子,pytorch|API映射, +torch.autograd.variable,mindspore.Parameter,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Parameter.html#mindspore.Parameter,算子,pytorch|API映射, +torch.cuda.device_count,mindspore.communication.get_group_size,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.communication.html#mindspore.communication.get_group_size,算子,pytorch|API映射, +torch.cuda.set_device,mindspore.context.set_context,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.context.html#mindspore.context.set_context,算子,pytorch|API映射, +torch.distributed.all_gather,mindspore.ops.AllGather,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AllGather.html#mindspore.ops.AllGather,算子,pytorch|API映射, +torch.distributed.all_reduce,mindspore.ops.AllReduce,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AllReduce.html#mindspore.ops.AllReduce,算子,pytorch|API映射, +torch.distributed.get_rank,mindspore.communication.get_rank,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.communication.html#mindspore.communication.get_rank,算子,pytorch|API映射, +torch.distributed.init_process_group,mindspore.communication.init,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.communication.html#mindspore.communication.init,算子,pytorch|API映射, +torch.distributed.new_group,mindspore.communication.create_group,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.communication.html#mindspore.communication.create_group,算子,pytorch|API映射, +torch.distributions.gamma.Gamma,mindspore.ops.Gamma,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Gamma.html#mindspore.ops.Gamma,算子,pytorch|API映射, +torch.nn.AdaptiveAvgPool2d,mindspore.ops.AdaptiveAvgPool2D,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AdaptiveAvgPool2D.html#mindspore.ops.AdaptiveAvgPool2D,算子,pytorch|API映射, +torch.nn.AvgPool1d,mindspore.nn.AvgPool1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.AvgPool1d.html#mindspore.nn.AvgPool1d,算子,pytorch|API映射, +torch.nn.AvgPool2d,mindspore.nn.AvgPool2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.AvgPool2d.html#mindspore.nn.AvgPool2d,算子,pytorch|API映射, +torch.nn.BatchNorm1d,mindspore.nn.BatchNorm1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.BatchNorm1d.html#mindspore.nn.BatchNorm1d,算子,pytorch|API映射, +torch.nn.BatchNorm2d,mindspore.nn.BatchNorm2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.BatchNorm2d.html#mindspore.nn.BatchNorm2d,算子,pytorch|API映射, +torch.nn.BCEWithLogitsLoss,mindspore.nn.BCEWithLogitsLoss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.BCEWithLogitsLoss.html#mindspore.nn.BCEWithLogitsLoss,算子,pytorch|API映射, +torch.nn.Conv1d,mindspore.nn.Conv1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv1d.html#mindspore.nn.Conv1d,算子,pytorch|API映射, +torch.nn.Conv2d,mindspore.nn.Conv2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2d.html#mindspore.nn.Conv2d,算子,pytorch|API映射, +torch.nn.Conv3d,mindspore.nn.Conv3d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv3d.html#mindspore.nn.Conv3d,算子,pytorch|API映射, +torch.nn.ConvTranspose1d,mindspore.nn.Conv1dTranspose,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv1dTranspose.html#mindspore.nn.Conv1dTranspose,算子,pytorch|API映射, +torch.nn.ConvTranspose2d,mindspore.nn.Conv2dTranspose,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2dTranspose.html#mindspore.nn.Conv2dTranspose,算子,pytorch|API映射, +torch.nn.ConvTranspose3d,mindspore.nn.Conv3dTranspose,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv3dTranspose.html#mindspore.nn.Conv3dTranspose,算子,pytorch|API映射, +torch.nn.CrossEntropyLoss,mindspore.nn.SoftmaxCrossEntropyWithLogits,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SoftmaxCrossEntropyWithLogits.html#mindspore.nn.SoftmaxCrossEntropyWithLogits,算子,pytorch|API映射, +torch.nn.CTCLoss,mindspore.ops.CTCLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.CTCLoss.html#mindspore.ops.CTCLoss,算子,pytorch|API映射, +torch.nn.Dropout,mindspore.nn.Dropout,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Dropout.html#mindspore.nn.Dropout,算子,pytorch|API映射, +torch.nn.Embedding,mindspore.nn.Embedding,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Embedding.html#mindspore.nn.Embedding,算子,pytorch|API映射, +torch.nn.Flatten,mindspore.nn.Flatten,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Flatten.html#mindspore.nn.Flatten,算子,pytorch|API映射, +torch.nn.GELU,mindspore.nn.GELU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.GELU.html#mindspore.nn.GELU,算子,pytorch|API映射, +torch.nn.GELU,mindspore.nn.FastGelu,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.FastGelu.html#mindspore.nn.FastGelu,算子,pytorch|API映射, +torch.nn.GroupNorm,mindspore.nn.GroupNorm,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.GroupNorm.html#mindspore.nn.GroupNorm,算子,pytorch|API映射, +torch.nn.GRU,mindspore.nn.GRU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.GRU.html#mindspore.nn.GRU,算子,pytorch|API映射, +torch.nn.Hardshrink,mindspore.nn.HShrink,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.HShrink.html#mindspore.nn.HShrink,算子,pytorch|API映射, +torch.nn.KLDivLoss,mindspore.ops.KLDivLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.KLDivLoss.html#mindspore.ops.KLDivLoss,算子,pytorch|API映射, +torch.nn.L1Loss,mindspore.nn.L1Loss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.L1Loss.html#mindspore.nn.L1Loss,算子,pytorch|API映射, +torch.nn.LayerNorm,mindspore.nn.LayerNorm,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LayerNorm.html#mindspore.nn.LayerNorm,算子,pytorch|API映射, +torch.nn.LeakyReLU,mindspore.nn.LeakyReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LeakyReLU.html#mindspore.nn.LeakyReLU,算子,pytorch|API映射, +torch.nn.Linear,mindspore.nn.Dense,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Dense.html#mindspore.nn.Dense,算子,pytorch|API映射, +torch.nn.LSTM,mindspore.nn.LSTM,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LSTM.html#mindspore.nn.LSTM,算子,pytorch|API映射, +torch.nn.LSTMCell,mindspore.nn.LSTMCell,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LSTMCell.html#mindspore.nn.LSTMCell,算子,pytorch|API映射, +torch.nn.MaxPool1d,mindspore.nn.MaxPool1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MaxPool1d.html#mindspore.nn.MaxPool1d,算子,pytorch|API映射, +torch.nn.MaxPool2d,mindspore.nn.MaxPool2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MaxPool2d.html#mindspore.nn.MaxPool2d,算子,pytorch|API映射, +torch.nn.MultiheadAttention,mindspore.nn.transformer.MultiHeadAttention,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.MultiHeadAttention,算子,pytorch|API映射, +torch.nn.Module,mindspore.nn.Cell,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell,算子,pytorch|API映射, +torch.nn.Module.add_module,mindspore.nn.Cell.insert_child_to_cell,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.insert_child_to_cell,算子,pytorch|API映射, +torch.nn.Module.buffers,mindspore.nn.Cell.untrainable_params,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.untrainable_params,算子,pytorch|API映射, +torch.nn.Module.children,mindspore.nn.Cell.cells,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.cells,算子,pytorch|API映射, +torch.nn.Module.load_state_dict,mindspore.load_param_into_net,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.load_param_into_net.html#mindspore.load_param_into_net,算子,pytorch|API映射, +torch.nn.Module.named_children,mindspore.nn.Cell.name_cells,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.name_cells,算子,pytorch|API映射, +torch.nn.Module.named_modules,mindspore.nn.Cell.cells_and_names,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.cells_and_names,算子,pytorch|API映射, +torch.nn.Module.parameters,mindspore.nn.Cell.get_parameters,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.get_parameters,算子,pytorch|API映射, +torch.nn.Module.state_dict,mindspore.nn.Cell.parameters_dict,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.parameters_dict,算子,pytorch|API映射, +torch.nn.Module.train,mindspore.nn.Cell.set_train,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Cell.html#mindspore.nn.Cell.set_train,算子,pytorch|API映射, +torch.nn.ModuleList,mindspore.nn.CellList,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.CellList.html#mindspore.nn.CellList,算子,pytorch|API映射, +torch.nn.MSELoss,mindspore.nn.MSELoss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MSELoss.html#mindspore.nn.MSELoss,算子,pytorch|API映射, +torch.nn.Parameter,mindspore.Parameter,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Parameter.html#mindspore.Parameter,算子,pytorch|API映射, +torch.nn.ParameterList,mindspore.ParameterTuple,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.ParameterTuple.html#mindspore.ParameterTuple,算子,pytorch|API映射, +torch.nn.PixelShuffle,mindspore.ops.DepthToSpace,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.DepthToSpace.html#mindspore.ops.DepthToSpace,算子,pytorch|API映射, +torch.nn.PReLU,mindspore.nn.PReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.PReLU.html#mindspore.nn.PReLU,算子,pytorch|API映射, +torch.nn.ReLU,mindspore.nn.ReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ReLU.html#mindspore.nn.ReLU,算子,pytorch|API映射, +torch.nn.ReplicationPad2d,mindspore.nn.Pad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Pad.html#mindspore.nn.Pad,算子,pytorch|API映射, +torch.nn.SELU,mindspore.ops.SeLU,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.SeLU.html#mindspore.ops.SeLU,算子,pytorch|API映射, +torch.nn.Sequential,mindspore.nn.SequentialCell,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SequentialCell.html#mindspore.nn.SequentialCell,算子,pytorch|API映射, +torch.nn.Sigmoid,mindspore.nn.Sigmoid,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Sigmoid.html#mindspore.nn.Sigmoid,算子,pytorch|API映射, +torch.nn.SmoothL1Loss,mindspore.nn.SmoothL1Loss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SmoothL1Loss.html#mindspore.nn.SmoothL1Loss,算子,pytorch|API映射, +torch.nn.Softmax,mindspore.nn.Softmax,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Softmax.html#mindspore.nn.Softmax,算子,pytorch|API映射, +torch.nn.Softshrink,mindspore.nn.SoftShrink,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SoftShrink.html#mindspore.nn.SoftShrink,算子,pytorch|API映射, +torch.nn.SyncBatchNorm.convert_sync_batchnorm,mindspore.nn.GlobalBatchNorm,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.GlobalBatchNorm.html#mindspore.nn.GlobalBatchNorm,算子,pytorch|API映射, +torch.nn.Tanh,mindspore.nn.Tanh,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Tanh.html#mindspore.nn.Tanh,算子,pytorch|API映射, +torch.nn.Transformer,mindspore.nn.transformer.Transformer,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.Transformer,算子,pytorch|API映射, +torch.nn.TransformerEncoder,mindspore.nn.transformer.TransformerEncoder,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.TransformerEncoder,算子,pytorch|API映射, +torch.nn.TransformerDecoder,mindspore.nn.transformer.TransformerDecoder,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.TransformerDecoder,算子,pytorch|API映射, +torch.nn.TransformerEncoderLayer,mindspore.nn.transformer.TransformerEncoderLayer,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.TransformerEncoderLayer,算子,pytorch|API映射, +torch.nn.TransformerDecoderLayer,mindspore.nn.transformer.TransformerDecoderLayer,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.transformer.html#mindspore.nn.transformer.TransformerDecoderLayer,算子,pytorch|API映射, +torch.nn.Unfold,mindspore.nn.Unfold,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Unfold.html#mindspore.nn.Unfold,算子,pytorch|API映射, +torch.nn.Upsample,mindspore.nn.ResizeBilinear,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ResizeBilinear.html#mindspore.nn.ResizeBilinear,算子,pytorch|API映射, +torch.nn.functional.adaptive_avg_pool2d,mindspore.ops.AdaptiveAvgPool2D,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AdaptiveAvgPool2D.html#mindspore.ops.AdaptiveAvgPool2D,算子,pytorch|API映射, +torch.nn.functional.avg_pool1d,mindspore.nn.AvgPool1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.AvgPool1d.html#mindspore.nn.AvgPool1d,算子,pytorch|API映射, +torch.nn.functional.avg_pool2d,mindspore.ops.AvgPool,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AvgPool.html#mindspore.ops.AvgPool,算子,pytorch|API映射, +torch.nn.functional.avg_pool3d,mindspore.ops.AvgPool3D,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.AvgPool3D.html#mindspore.ops.AvgPool3D,算子,pytorch|API映射, +torch.nn.functional.batch_norm,mindspore.ops.BatchNorm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BatchNorm.html#mindspore.ops.BatchNorm,算子,pytorch|API映射, +torch.nn.functional.binary_cross_entropy,mindspore.ops.BinaryCrossEntropy,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BinaryCrossEntropy.html#mindspore.ops.BinaryCrossEntropy,算子,pytorch|API映射, +torch.nn.functional.conv2d,mindspore.ops.Conv2D,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Conv2D.html#mindspore.ops.Conv2D,算子,pytorch|API映射, +torch.nn.functional.cosine_embedding_loss,mindspore.nn.CosineEmbeddingLoss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.CosineEmbeddingLoss.html#mindspore.nn.CosineEmbeddingLoss,算子,pytorch|API映射, +torch.nn.functional.ctc_loss,mindspore.ops.CTCLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.CTCLoss.html#mindspore.ops.CTCLoss,算子,pytorch|API映射, +torch.nn.functional.elu,mindspore.ops.Elu,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Elu.html#mindspore.ops.Elu,算子,pytorch|API映射, +torch.nn.functional.kl_div,mindspore.ops.KLDivLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.KLDivLoss.html#mindspore.ops.KLDivLoss,算子,pytorch|API映射, +torch.nn.functional.l1_loss,mindspore.nn.L1Loss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.L1Loss.html#mindspore.nn.L1Loss,算子,pytorch|API映射, +torch.nn.functional.layer_norm,mindspore.ops.LayerNorm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LayerNorm.html#mindspore.ops.LayerNorm,算子,pytorch|API映射, +torch.nn.functional.leaky_relu,mindspore.nn.LeakyReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LeakyReLU.html#mindspore.nn.LeakyReLU,算子,pytorch|API映射, +torch.nn.functional.log_softmax,mindspore.nn.LogSoftmax,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LogSoftmax.html#mindspore.nn.LogSoftmax,算子,pytorch|API映射, +torch.nn.functional.max_pool1d,mindspore.nn.MaxPool1d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MaxPool1d.html#mindspore.nn.MaxPool1d,算子,pytorch|API映射, +torch.nn.functional.max_pool2d,mindspore.nn.MaxPool2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MaxPool2d.html#mindspore.nn.MaxPool2d,算子,pytorch|API映射, +torch.nn.functional.max_pool3d,mindspore.ops.MaxPool3D,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.MaxPool3D.html#mindspore.ops.MaxPool3D,算子,pytorch|API映射, +torch.nn.functional.mse_loss,mindspore.nn.MSELoss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MSELoss.html#mindspore.nn.MSELoss,算子,pytorch|API映射, +torch.nn.functional.nll_loss,mindspore.ops.NLLLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.NLLLoss.html#mindspore.ops.NLLLoss,算子,pytorch|API映射, +torch.nn.functional.normalize,mindspore.ops.L2Normalize,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.L2Normalize.html#mindspore.ops.L2Normalize,算子,pytorch|API映射, +torch.nn.functional.one_hot,mindspore.ops.OneHot,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.OneHot.html#mindspore.ops.OneHot,算子,pytorch|API映射, +torch.nn.functional.pad,mindspore.nn.Pad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Pad.html#mindspore.nn.Pad,算子,pytorch|API映射, +torch.nn.functional.pixel_shuffle,mindspore.ops.DepthToSpace,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.DepthToSpace.html#mindspore.ops.DepthToSpace,算子,pytorch|API映射, +torch.nn.functional.relu,mindspore.ops.ReLU,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ReLU.html#mindspore.ops.ReLU,算子,pytorch|API映射, +torch.nn.functional.smooth_l1_loss,mindspore.nn.SmoothL1Loss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SmoothL1Loss.html#mindspore.nn.SmoothL1Loss,算子,pytorch|API映射, +torch.nn.functional.soft_margin_loss,mindspore.nn.SoftMarginLoss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SoftMarginLoss.html#mindspore.nn.SoftMarginLoss,算子,pytorch|API映射, +torch.nn.functional.softmax,mindspore.ops.Softmax,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Softmax.html#mindspore.ops.Softmax,算子,pytorch|API映射, +torch.nn.functional.softplus,mindspore.ops.Softplus,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Softplus.html#mindspore.ops.Softplus,算子,pytorch|API映射, +torch.nn.functional.softsign,mindspore.ops.Softsign,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Softsign.html#mindspore.ops.Softsign,算子,pytorch|API映射, +torch.nn.init.constant_,mindspore.common.initializer.Constant,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Constant,算子,pytorch|API映射, +torch.nn.init.kaiming_normal_,mindspore.common.initializer.HeNormal,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.HeNormal,算子,pytorch|API映射, +torch.nn.init.kaiming_uniform_,mindspore.common.initializer.HeUniform,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.HeUniform,算子,pytorch|API映射, +torch.nn.init.normal_,mindspore.common.initializer.Normal,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Normal,算子,pytorch|API映射, +torch.nn.init.ones_,mindspore.common.initializer.One,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.One,算子,pytorch|API映射, +torch.nn.init.xavier_uniform_,mindspore.common.initializer.XavierUniform,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.XavierUniform,算子,pytorch|API映射, +torch.nn.init.zeros_,mindspore.common.initializer.Zero,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Zero,算子,pytorch|API映射, +torch.nn.init.uniform_,mindspore.common.initializer.Uniform,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Uniform,算子,pytorch|API映射, +torch.optim.Adadelta,mindspore.ops.ApplyAdadelta,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ApplyAdadelta.html#mindspore.ops.ApplyAdadelta,算子,pytorch|API映射, +torch.optim.Adagrad,mindspore.nn.Adagrad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Adagrad.html#mindspore.nn.Adagrad,算子,pytorch|API映射, +torch.optim.Adam,mindspore.nn.Adam,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Adam.html#mindspore.nn.Adam,算子,pytorch|API映射, +torch.optim.Adamax,mindspore.ops.ApplyAdaMax,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ApplyAdaMax.html#mindspore.ops.ApplyAdaMax,算子,pytorch|API映射, +torch.optim.AdamW,mindspore.nn.AdamWeightDecay,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.AdamWeightDecay.html#mindspore.nn.AdamWeightDecay,算子,pytorch|API映射, +torch.optim.lr_scheduler.CosineAnnealingWarmRestarts,mindspore.nn.cosine_decay_lr,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.cosine_decay_lr.html#mindspore.nn.cosine_decay_lr,算子,pytorch|API映射, +torch.optim.lr_scheduler.ExponentialLR,mindspore.nn.exponential_decay_lr,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.exponential_decay_lr.html#mindspore.nn.exponential_decay_lr,算子,pytorch|API映射, +torch.optim.lr_scheduler.MultiStepLR,mindspore.nn.piecewise_constant_lr,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.piecewise_constant_lr.html#mindspore.nn.piecewise_constant_lr,算子,pytorch|API映射, +torch.optim.lr_scheduler.StepLR,mindspore.nn.piecewise_constant_lr,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.piecewise_constant_lr.html#mindspore.nn.piecewise_constant_lr,算子,pytorch|API映射, +torch.optim.Optimizer,mindspore.nn.Optimizer,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Optimizer.html#mindspore.nn.Optimizer,算子,pytorch|API映射, +torch.optim.Optimizer.step,mindspore.nn.TrainOneStepCell,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.TrainOneStepCell.html#mindspore.nn.TrainOneStepCell,算子,pytorch|API映射, +torch.optim.RMSprop,mindspore.nn.RMSProp,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.RMSProp.html#mindspore.nn.RMSProp,算子,pytorch|API映射, +torch.optim.SGD,mindspore.nn.SGD,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SGD.html#mindspore.nn.SGD,算子,pytorch|API映射, +torch.repeat_interleave,mindspore.ops.repeat_elements,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.repeat_elements.html#mindspore.ops.repeat_elements,算子,pytorch|API映射, +torch.BoolTensor.all,mindspore.Tensor.all,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.all,算子,pytorch|API映射, +torch.BoolTensor.any,mindspore.Tensor.any,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.any,算子,pytorch|API映射, +torch.minimum,mindspore.ops.Minimum,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Minimum.html#mindspore.ops.Minimum,算子,pytorch|API映射, +torch.Tensor.abs,mindspore.Tensor.abs,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.abs,算子,pytorch|API映射, +torch.Tensor.argmax,mindspore.Tensor.argmax,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.argmax,算子,pytorch|API映射, +torch.Tensor.argmin,mindspore.Tensor.argmin,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.argmin,算子,pytorch|API映射, +torch.Tensor.chunk,mindspore.ops.Split,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Split.html#mindspore.ops.Split,算子,pytorch|API映射, +torch.Tensor.copy_,mindspore.Tensor.copy,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.copy,算子,pytorch|API映射, +torch.Tensor.cuda,mindspore.context.set_context,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.context.html#mindspore.context.set_context,算子,pytorch|API映射, +torch.Tensor.cumsum,mindspore.Tensor.cumsum,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.cumsum,算子,pytorch|API映射, +torch.Tensor.diagonal,mindspore.Tensor.diagonal,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.diagonal,算子,pytorch|API映射, +torch.Tensor.dtype,mindspore.Tensor.dtype,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.dtype,算子,pytorch|API映射, +torch.Tensor.expand,mindspore.ops.BroadcastTo,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BroadcastTo.html#mindspore.ops.BroadcastTo,算子,pytorch|API映射, +torch.Tensor.expand_as,mindspore.Tensor.expand_as,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.expand_as,算子,pytorch|API映射, +torch.Tensor.fill_,mindspore.ops.Fill,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Fill.html#mindspore.ops.Fill,算子,pytorch|API映射, +torch.Tensor.flatten,mindspore.Tensor.flatten,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.flatten,算子,pytorch|API映射, +torch.Tensor.float,mindspore.ops.Cast,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Cast.html#mindspore.ops.Cast,算子,pytorch|API映射, +torch.Tensor.index_add,mindspore.ops.InplaceAdd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.InplaceAdd.html#mindspore.ops.InplaceAdd,算子,pytorch|API映射, +torch.Tensor.item,mindspore.Tensor.item,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.item,算子,pytorch|API映射, +torch.Tensor.max,mindspore.Tensor.max,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.max,算子,pytorch|API映射, +torch.Tensor.mean,mindspore.Tensor.mean,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.mean,算子,pytorch|API映射, +torch.Tensor.min,mindspore.Tensor.min,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.min,算子,pytorch|API映射, +torch.Tensor.mm,mindspore.ops.MatMul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.MatMul.html#mindspore.ops.MatMul,算子,pytorch|API映射, +torch.Tensor.mul,mindspore.ops.Mul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Mul.html#mindspore.ops.Mul,算子,pytorch|API映射, +torch.Tensor.ndim,mindspore.Tensor.ndim,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.ndim,算子,pytorch|API映射, +torch.Tensor.new_full,mindspore.numpy.full,https://mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.full.html#mindspore.numpy.full,算子,pytorch|API映射, +torch.Tensor.new_zeros,mindspore.ops.Zeros,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Zeros.html#mindspore.ops.Zeros,算子,pytorch|API映射, +torch.Tensor.norm,mindspore.ops.LpNorm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LpNorm.html#mindspore.ops.LpNorm,算子,pytorch|API映射, +torch.Tensor.numpy,mindspore.Tensor.asnumpy,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.asnumpy,算子,pytorch|API映射, +torch.Tensor.pow,mindspore.ops.Pow,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Pow.html#mindspore.ops.Pow,算子,pytorch|API映射, +torch.Tensor.permute,mindspore.ops.Transpose,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html#mindspore.ops.Transpose,算子,pytorch|API映射, +torch.Tensor.repeat,mindspore.numpy.tile,https://www.mindspore.cn/docs/zh-CN/master/api_python/numpy/mindspore.numpy.tile.html#mindspore.numpy.tile,算子,pytorch|API映射, +torch.Tensor.requires_grad_,mindspore.Parameter.requires_grad,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Parameter.html#mindspore.Parameter.requires_grad,算子,pytorch|API映射, +torch.Tensor.reshape_as,mindspore.tensor.reshape,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.reshape,算子,pytorch|API映射, +torch.Tensor.resize_,mindspore.Tensor.resize,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.resize,算子,pytorch|API映射, +torch.Tensor.round,mindspore.ops.Round,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Round.html#mindspore.ops.Round,算子,pytorch|API映射, +torch.Tensor.scatter,mindspore.ops.ScatterNd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ScatterNd.html#mindspore.ops.ScatterNd,算子,pytorch|API映射, +torch.Tensor.scatter_add_,mindspore.ops.ScatterNdAdd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ScatterNdAdd.html#mindspore.ops.ScatterNdAdd,算子,pytorch|API映射, +torch.Tensor.sigmoid,mindspore.nn.Sigmoid,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Sigmoid.html#mindspore.nn.Sigmoid,算子,pytorch|API映射, +torch.Tensor.sign,mindspore.ops.Sign,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sign.html#mindspore.ops.Sign,算子,pytorch|API映射, +torch.Tensor.size,mindspore.Tensor.shape,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.shape,算子,pytorch|API映射, +torch.Tensor.sqrt,mindspore.ops.Sqrt,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sqrt.html#mindspore.ops.Sqrt,算子,pytorch|API映射, +torch.Tensor.stride,mindspore.Tensor.strides,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.strides,算子,pytorch|API映射, +torch.Tensor.squeeze,mindspore.Tensor.squeeze,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.squeeze,算子,pytorch|API映射, +torch.Tensor.sub,mindspore.ops.Sub,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sub.html#mindspore.ops.Sub,算子,pytorch|API映射, +torch.Tensor.sum,mindspore.Tensor.sum,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.sum,算子,pytorch|API映射, +torch.Tensor.t,mindspore.ops.Transpose,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html#mindspore.ops.Transpose,算子,pytorch|API映射, +torch.Tensor.t,mindspore.Tensor.T,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.T,算子,pytorch|API映射, +torch.Tensor.take,mindspore.Tensor.take,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.take,算子,pytorch|API映射, +torch.Tensor.transpose,mindspore.Tensor.transpose,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.transpose,算子,pytorch|API映射, +torch.Tensor.unsqueeze,mindspore.ops.ExpandDims,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ExpandDims.html#mindspore.ops.ExpandDims,算子,pytorch|API映射, +torch.Tensor.view,mindspore.Tensor.view,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.view,算子,pytorch|API映射, +torch.Tensor.view_as,mindspore.Tensor.view,https://www.mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.view,算子,pytorch|API映射, +torch.Tensor.zero_,mindspore.ops.ZerosLike,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ZerosLike.html#mindspore.ops.ZerosLike,算子,pytorch|API映射, +torch.utils.data.Dataset,mindspore.dataset.GeneratorDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset,算子,pytorch|API映射, +torch.utils.data.distributed.DistributedSampler,mindspore.dataset.DistributedSampler,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.DistributedSampler.html#mindspore.dataset.DistributedSampler,算子,pytorch|API映射, +torch.utils.data.RandomSampler,mindspore.dataset.RandomSampler,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.RandomSampler.html#mindspore.dataset.RandomSampler,算子,pytorch|API映射, +torch.utils.data.SequentialSampler,mindspore.dataset.SequentialSampler,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.SequentialSampler.html#mindspore.dataset.SequentialSampler,算子,pytorch|API映射, +torch.utils.data.SubsetRandomSampler,mindspore.dataset.SubsetRandomSampler,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.SubsetRandomSampler.html#mindspore.dataset.SubsetRandomSampler,算子,pytorch|API映射, +torch.utils.data.WeightedRandomSampler,mindspore.dataset.WeightedRandomSampler,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.WeightedRandomSampler.html#mindspore.dataset.WeightedRandomSampler,算子,pytorch|API映射, +torchtext.data.functional.custom_replace,mindspore.dataset.text.transforms.RegexReplace,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.RegexReplace.html#mindspore.dataset.text.transforms.RegexReplace,算子,pytorch|API映射, +torchtext.data.functional.load_sp_model,mindspore.dataset.text.transforms.SentencePieceVocab,https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.SentencePieceVocab.html#mindspore.dataset.text.SentencePieceVocab,算子,pytorch|API映射, +torchtext.data.functional.numericalize_tokens_from_iterator,mindspore.dataset.text.transforms.Lookup,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.Lookup.html#mindspore.dataset.text.transforms.Lookup,算子,pytorch|API映射, +torchtext.data.functional.sentencepiece_numericalizer,mindspore.dataset.text.transforms.SentencePieceTokenizer,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.SentencePieceTokenizer.html#mindspore.dataset.text.transforms.SentencePieceTokenizer,算子,pytorch|API映射, +torchtext.data.functional.sentencepiece_tokenizer,mindspore.dataset.text.transforms.SentencePieceTokenizer,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.SentencePieceTokenizer.html#mindspore.dataset.text.transforms.SentencePieceTokenizer,算子,pytorch|API映射, +torchtext.data.functional.simple_space_split,mindspore.dataset.text.transforms.WhitespaceTokenizer,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.WhitespaceTokenizer.html#mindspore.dataset.text.transforms.WhitespaceTokenizer,算子,pytorch|API映射, +torchtext.data.utils.ngrams_iterator,mindspore.dataset.text.transforms.Ngram,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_text/mindspore.dataset.text.transforms.Ngram.html#mindspore.dataset.text.transforms.Ngram,算子,pytorch|API映射, +torchvision.datasets.CelebA,mindspore.dataset.CelebADataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.CelebADataset.html#mindspore.dataset.CelebADataset,算子,pytorch|API映射, +torchvision.datasets.CIFAR10,mindspore.dataset.Cifar10Dataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.Cifar10Dataset.html#mindspore.dataset.Cifar10Dataset,算子,pytorch|API映射, +torchvision.datasets.CIFAR100,mindspore.dataset.Cifar100Dataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.Cifar100Dataset.html#mindspore.dataset.Cifar100Dataset,算子,pytorch|API映射, +torchvision.datasets.CocoDetection,mindspore.dataset.CocoDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.CocoDataset.html#mindspore.dataset.CocoDataset,算子,pytorch|API映射, +torchvision.datasets.ImageFolder,mindspore.dataset.ImageFolderDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.ImageFolderDataset.html#mindspore.dataset.ImageFolderDataset,算子,pytorch|API映射, +torchvision.datasets.MNIST,mindspore.dataset.MnistDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.MnistDataset.html#mindspore.dataset.MnistDataset,算子,pytorch|API映射, +torchvision.datasets.VOCDetection,mindspore.dataset.VOCDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.VOCDataset.html#mindspore.dataset.VOCDataset,算子,pytorch|API映射, +torchvision.datasets.VOCSegmentation,mindspore.dataset.VOCDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.VOCDataset.html#mindspore.dataset.VOCDataset,算子,pytorch|API映射, +torchvision.ops.nms,mindspore.ops.NMSWithMask,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.NMSWithMask.html#mindspore.ops.NMSWithMask,算子,pytorch|API映射, +torchvision.ops.roi_align,mindspore.ops.ROIAlign,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ROIAlign.html#mindspore.ops.ROIAlign,算子,pytorch|API映射, +torchvision.transforms.CenterCrop,mindspore.dataset.vision.c_transforms.CenterCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.CenterCrop.html#mindspore.dataset.vision.c_transforms.CenterCrop,算子,pytorch|API映射, +torchvision.transforms.ColorJitter,mindspore.dataset.vision.c_transforms.RandomColorAdjust,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomColorAdjust.html#mindspore.dataset.vision.c_transforms.RandomColorAdjust,算子,pytorch|API映射, +torchvision.transforms.Compose,mindspore.dataset.transforms.c_transforms.Compose,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_transforms/mindspore.dataset.transforms.c_transforms.Compose.html#mindspore.dataset.transforms.c_transforms.Compose,算子,pytorch|API映射, +torchvision.transforms.ConvertImageDtype,mindspore.dataset.vision.py_transforms.ToType,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.ToType.html#mindspore.dataset.vision.py_transforms.ToType,算子,pytorch|API映射, +torchvision.transforms.FiveCrop,mindspore.dataset.vision.py_transforms.FiveCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.FiveCrop.html#mindspore.dataset.vision.py_transforms.FiveCrop,算子,pytorch|API映射, +torchvision.transforms.GaussianBlur,mindspore.dataset.vision.c_transforms.GaussianBlur,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.GaussianBlur.html#mindspore.dataset.vision.c_transforms.GaussianBlur,算子,pytorch|API映射, +torchvision.transforms.Grayscale,mindspore.dataset.vision.py_transforms.Grayscale,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.Grayscale.html#mindspore.dataset.vision.py_transforms.Grayscale,算子,pytorch|API映射, +torchvision.transforms.LinearTransformation,mindspore.dataset.vision.py_transforms.LinearTransformation,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.LinearTransformation.html#mindspore.dataset.vision.py_transforms.LinearTransformation,算子,pytorch|API映射, +torchvision.transforms.Normalize,mindspore.dataset.vision.c_transforms.Normalize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Normalize.html#mindspore.dataset.vision.c_transforms.Normalize,算子,pytorch|API映射, +torchvision.transforms.Pad,mindspore.dataset.vision.c_transforms.Pad,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Pad.html#mindspore.dataset.vision.c_transforms.Pad,算子,pytorch|API映射, +torchvision.transforms.RandomAffine,mindspore.dataset.vision.c_transforms.RandomAffine,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomAffine.html#mindspore.dataset.vision.c_transforms.RandomAffine,算子,pytorch|API映射, +torchvision.transforms.RandomApply,mindspore.dataset.transforms.c_transforms.RandomApply,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_transforms/mindspore.dataset.transforms.c_transforms.RandomApply.html#mindspore.dataset.transforms.c_transforms.RandomApply,算子,pytorch|API映射, +torchvision.transforms.RandomChoice,mindspore.dataset.transforms.c_transforms.RandomChoice,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_transforms/mindspore.dataset.transforms.c_transforms.RandomChoice.html#mindspore.dataset.transforms.c_transforms.RandomChoice,算子,pytorch|API映射, +torchvision.transforms.RandomCrop,mindspore.dataset.vision.c_transforms.RandomCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomCrop.html#mindspore.dataset.vision.c_transforms.RandomCrop,算子,pytorch|API映射, +torchvision.transforms.RandomErasing,mindspore.dataset.vision.py_transforms.RandomErasing,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.RandomErasing.html#mindspore.dataset.vision.py_transforms.RandomErasing,算子,pytorch|API映射, +torchvision.transforms.RandomGrayscale,mindspore.dataset.vision.py_transforms.RandomGrayscale,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.RandomGrayscale.html#mindspore.dataset.vision.py_transforms.RandomGrayscale,算子,pytorch|API映射, +torchvision.transforms.RandomHorizontalFlip,mindspore.dataset.vision.c_transforms.RandomHorizontalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomHorizontalFlip.html#mindspore.dataset.vision.c_transforms.RandomHorizontalFlip,算子,pytorch|API映射, +torchvision.transforms.RandomOrder,mindspore.dataset.transforms.py_transforms.RandomOrder,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_transforms/mindspore.dataset.transforms.py_transforms.RandomOrder.html#mindspore.dataset.transforms.py_transforms.RandomOrder,算子,pytorch|API映射, +torchvision.transforms.RandomPerspective,mindspore.dataset.vision.py_transforms.RandomPerspective,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.RandomPerspective.html#mindspore.dataset.vision.py_transforms.RandomPerspective,算子,pytorch|API映射, +torchvision.transforms.RandomPosterize,mindspore.dataset.vision.c_transforms.RandomPosterize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomPosterize.html#mindspore.dataset.vision.c_transforms.RandomPosterize,算子,pytorch|API映射, +torchvision.transforms.RandomResizedCrop,mindspore.dataset.vision.c_transforms.RandomResizedCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomResizedCrop.html#mindspore.dataset.vision.c_transforms.RandomResizedCrop,算子,pytorch|API映射, +torchvision.transforms.RandomRotation,mindspore.dataset.vision.c_transforms.RandomRotation,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomRotation.html#mindspore.dataset.vision.c_transforms.RandomRotation,算子,pytorch|API映射, +torchvision.transforms.RandomSolarize,mindspore.dataset.vision.c_transforms.RandomSolarize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomSolarize.html#mindspore.dataset.vision.c_transforms.RandomSolarize,算子,pytorch|API映射, +torchvision.transforms.RandomVerticalFlip,mindspore.dataset.vision.c_transforms.RandomVerticalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomVerticalFlip.html#mindspore.dataset.vision.c_transforms.RandomVerticalFlip,算子,pytorch|API映射, +torchvision.transforms.Resize,mindspore.dataset.vision.c_transforms.Resize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Resize.html#mindspore.dataset.vision.c_transforms.Resize,算子,pytorch|API映射, +torchvision.transforms.TenCrop,mindspore.dataset.vision.py_transforms.TenCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.TenCrop.html#mindspore.dataset.vision.py_transforms.TenCrop,算子,pytorch|API映射, +torchvision.transforms.ToPILImage,mindspore.dataset.vision.py_transforms.ToPIL,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.ToPIL.html#mindspore.dataset.vision.py_transforms.ToPIL,算子,pytorch|API映射, +torchvision.transforms.ToTensor,mindspore.dataset.vision.py_transforms.ToTensor,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.ToTensor.html#mindspore.dataset.vision.py_transforms.ToTensor,算子,pytorch|API映射, +tf.arg_max,mindspore.Tensor.argmax,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.argmax,算子,tensorflow|API映射, +tf.arg_min,mindspore.Tensor.argmin,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.argmin,算子,tensorflow|API映射, +tf.clip_by_value,mindspore.Tensor.clip,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.clip,算子,tensorflow|API映射, +tf.expand_dims,mindspore.ops.ExpandDims,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ExpandDims.html,算子,tensorflow|API映射, +tf.eye,mindspore.ops.Eye,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Eye.html,算子,tensorflow|API映射, +tf.fill,mindspore.ops.Fill,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Fill.html,算子,tensorflow|API映射, +tf.gather,mindspore.ops.Gather,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Gather.html,算子,tensorflow|API映射, +tf.gradients,mindspore.ops.GradOperation,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.GradOperation.html,算子,tensorflow|API映射, +tf.norm,mindspore.nn.Norm,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Norm.html,算子,tensorflow|API映射, +tf.one_hot,mindspore.nn.OneHot,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.OneHot.html,算子,tensorflow|API映射, +tf.ones_like,mindspore.ops.OnesLike,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.OnesLike.html,算子,tensorflow|API映射, +tf.pad,mindspore.nn.Pad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Pad.html,算子,tensorflow|API映射, +tf.print,mindspore.ops.Print,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Print.html,算子,tensorflow|API映射, +tf.repeat,mindspore.Tensor.repeat,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.repeat,算子,tensorflow|API映射, +tf.reshape,mindspore.ops.Reshape,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Reshape.html,算子,tensorflow|API映射, +tf.reshape,mindspore.Tensor.reshape,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.reshape,算子,tensorflow|API映射, +tf.shape,mindspore.ops.Shape,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Shape.html,算子,tensorflow|API映射, +tf.size,mindspore.ops.Size,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Size.html,算子,tensorflow|API映射, +tf.slice,mindspore.ops.Slice,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Slice.html,算子,tensorflow|API映射, +tf.squeeze,mindspore.Tensor.squeeze,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.squeeze,算子,tensorflow|API映射, +tf.stop_gradient,mindspore.ops.stop_gradient,https://mindspore.cn/tutorials/zh-CN/master/beginner/autograd.html#停止计算梯度,算子,tensorflow|API映射, +tf.Tensor,mindspore.Tensor,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html,算子,tensorflow|API映射, +tf.tile,mindspore.ops.Tile,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Tile.html,算子,tensorflow|API映射, +tf.transpose,mindspore.ops.Transpose,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html,算子,tensorflow|API映射, +tf.zeros_like,mindspore.ops.ZerosLike,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.ZerosLike.html,算子,tensorflow|API映射, +tf.data.Dataset.apply,mindspore.dataset.GeneratorDataset.apply,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.apply,算子,tensorflow|API映射, +tf.data.Dataset.batch,mindspore.dataset.GeneratorDataset.batch,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.batch,算子,tensorflow|API映射, +tf.data.Dataset.concatenate,mindspore.dataset.GeneratorDataset.concat,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.concat,算子,tensorflow|API映射, +tf.data.Dataset.filter,mindspore.dataset.GeneratorDataset.filter,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.filter,算子,tensorflow|API映射, +tf.data.Dataset.flat_map,mindspore.dataset.GeneratorDataset.flat_map,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.flat_map,算子,tensorflow|API映射, +tf.data.Dataset.from_generator,mindspore.dataset.GeneratorDataset,https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset,算子,tensorflow|API映射, +tf.data.Dataset.from_tensor_slices,mindspore.dataset.NumpySlicesDataset,https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.NumpySlicesDataset.html#mindspore.dataset.NumpySlicesDataset,算子,tensorflow|API映射, +tf.data.Dataset.map,mindspore.dataset.GeneratorDataset.map,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.map,算子,tensorflow|API映射, +tf.data.Dataset.prefetch,mindspore.dataset.config.set_prefetch_size,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.dataset.config.html#mindspore.dataset.config.set_prefetch_size,算子,tensorflow|API映射, +tf.data.Dataset.repeat,mindspore.dataset.GeneratorDataset.repeat,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.repeat,算子,tensorflow|API映射, +tf.data.Dataset.shuffle,mindspore.dataset.GeneratorDataset.shuffle,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.shuffle,算子,tensorflow|API映射, +tf.data.Dataset.skip,mindspore.dataset.GeneratorDataset.skip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.skip,算子,tensorflow|API映射, +tf.data.Dataset.take,mindspore.dataset.GeneratorDataset.take,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.take,算子,tensorflow|API映射, +tf.data.Dataset.zip,mindspore.dataset.GeneratorDataset.zip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.zip,算子,tensorflow|API映射, +tf.data.TextLineDataset,mindspore.dataset.TextFileDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.TextFileDataset.html#mindspore.dataset.TextFileDataset,算子,tensorflow|API映射, +tf.data.TFRecordDataset,mindspore.dataset.TFRecordDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.TFRecordDataset.html#mindspore.dataset.TFRecordDataset,算子,tensorflow|API映射, +tf.data.experimental.bucket_by_sequence_length,mindspore.dataset.GeneratorDataset.bucket_batch_by_length,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset.bucket_batch_by_length,算子,tensorflow|API映射, +tf.data.experimental.CsvDataset,mindspore.dataset.CSVDataset,https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.CSVDataset.html#mindspore.dataset.CSVDataset,算子,tensorflow|API映射, +tf.distribute.Strategy,context.set_auto_parallel_context(parallel_mode=ParallelMode.DATA_PARALLEL),https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.context.html#mindspore.context.set_auto_parallel_context,算子,tensorflow|API映射, +tf.image.ssim,mindspore.nn.SSIM,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SSIM.html,算子,tensorflow|API映射, +tf.image.central_crop,mindspore.dataset.vision.c_transforms.CenterCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.CenterCrop.html#mindspore.dataset.vision.c_transforms.CenterCrop,算子,tensorflow|API映射, +tf.image.convert_image_dtype,mindspore.dataset.vision.py_transforms.ToType,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.ToType.html#mindspore.dataset.vision.py_transforms.ToType,算子,tensorflow|API映射, +tf.image.crop_to_bounding_box,mindspore.dataset.vision.c_transforms.Crop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Crop.html#mindspore.dataset.vision.c_transforms.Crop,算子,tensorflow|API映射, +tf.image.flip_left_right,mindspore.dataset.vision.c_transforms.HorizontalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.HorizontalFlip.html#mindspore.dataset.vision.c_transforms.HorizontalFlip,算子,tensorflow|API映射, +tf.image.flip_up_down,mindspore.dataset.vision.c_transforms.VerticalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.VerticalFlip.html#mindspore.dataset.vision.c_transforms.VerticalFlip,算子,tensorflow|API映射, +tf.image.grayscale_to_rgb,mindspore.dataset.vision.c_transforms.ConvertColor,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.ConvertColor.html#mindspore.dataset.vision.c_transforms.ConvertColor,算子,tensorflow|API映射, +tf.image.hsv_to_rgb,mindspore.dataset.vision.py_transforms.HsvToRgb,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.py_transforms.HsvToRgb.html#mindspore.dataset.vision.py_transforms.HsvToRgb,算子,tensorflow|API映射, +tf.image.pad_to_bounding_box,mindspore.dataset.vision.c_transforms.Pad,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Pad.html#mindspore.dataset.vision.c_transforms.Pad,算子,tensorflow|API映射, +tf.image.per_image_standardization,mindspore.dataset.vision.c_transforms.Normalize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Normalize.html#mindspore.dataset.vision.c_transforms.Normalize,算子,tensorflow|API映射, +tf.image.random_crop,mindspore.dataset.vision.c_transforms.RandomCrop,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomCrop.html#mindspore.dataset.vision.c_transforms.RandomCrop,算子,tensorflow|API映射, +tf.image.random_flip_left_right,mindspore.dataset.vision.c_transforms.RandomHorizontalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomHorizontalFlip.html#mindspore.dataset.vision.c_transforms.RandomHorizontalFlip,算子,tensorflow|API映射, +tf.image.random_flip_up_down,mindspore.dataset.vision.c_transforms.RandomVerticalFlip,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomVerticalFlip.html#mindspore.dataset.vision.c_transforms.RandomVerticalFlip,算子,tensorflow|API映射, +tf.image.ResizeMethod,mindspore.dataset.vision.Inter,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.Inter.html#mindspore.dataset.vision.Inter,算子,tensorflow|API映射, +tf.image.resize_images,mindspore.dataset.vision.c_transforms.Resize,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Resize.html#mindspore.dataset.vision.c_transforms.Resize,算子,tensorflow|API映射, +tf.image.rgb_to_grayscale,mindspore.dataset.vision.c_transforms.ConvertColor,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.ConvertColor.html#mindspore.dataset.vision.c_transforms.ConvertColor,算子,tensorflow|API映射, +tf.image.rot90,mindspore.dataset.vision.c_transforms.Rotate,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Rotate.html#mindspore.dataset.vision.c_transforms.Rotate,算子,tensorflow|API映射, +tf.io.decode_image,mindspore.dataset.vision.c_transforms.Decode,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.Decode.html#mindspore.dataset.vision.c_transforms.Decode,算子,tensorflow|API映射, +tf.keras.Model,mindspore.Model,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Model.html#mindspore.Model,算子,tensorflow|API映射, +tf.keras.Model.fit,mindspore.Model.train,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Model.html#mindspore.Model.train,算子,tensorflow|API映射, +tf.keras.Model.fit_generator,mindspore.Model.train,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Model.html#mindspore.Model.train,算子,tensorflow|API映射, +tf.keras.Model.predict,mindspore.Model.eval,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Model.html#mindspore.Model.eval,算子,tensorflow|API映射, +tf.keras.Model.predict_generator,mindspore.Model.eval,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Model.html#mindspore.Model.eval,算子,tensorflow|API映射, +tf.keras.backend.batch_dot,mindspore.ops.batch_dot,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.batch_dot.html,算子,tensorflow|API映射, +tf.keras.backend.dot,mindspore.ops.dot,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.batch_dot.html,算子,tensorflow|API映射, +tf.keras.datasets.cifar10,mindspore.dataset.Cifar10Dataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.Cifar10Dataset.html#mindspore.dataset.Cifar10Dataset,算子,tensorflow|API映射, +tf.keras.datasets.cifar100,mindspore.dataset.Cifar100Dataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.Cifar100Dataset.html#mindspore.dataset.Cifar100Dataset,算子,tensorflow|API映射, +tf.keras.datasets.fashion_mnist,mindspore.dataset.FashionMnistDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.FashionMnistDataset.html#mindspore.dataset.FashionMnistDataset,算子,tensorflow|API映射, +tf.keras.datasets.imdb,mindspore.dataset.IMDBDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.IMDBDataset.html#mindspore.dataset.IMDBDataset,算子,tensorflow|API映射, +tf.keras.datasets.mnist,mindspore.dataset.MnistDataset,https://mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.MnistDataset.html#mindspore.dataset.MnistDataset,算子,tensorflow|API映射, +tf.keras.initializers.Constant,mindspore.common.initializer.Constant,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Constant,算子,tensorflow|API映射, +tf.keras.initializers.Ones,mindspore.common.initializer.One,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.One,算子,tensorflow|API映射, +tf.keras.initializers.RandomNormal,mindspore.common.initializer.Normal,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Normal,算子,tensorflow|API映射, +tf.keras.initializers.RandomUniform,mindspore.common.initializer.Uniform,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Uniform,算子,tensorflow|API映射, +tf.keras.initializers.TruncatedNormal,mindspore.common.initializer.TruncatedNormal,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.TruncatedNormal,算子,tensorflow|API映射, +tf.keras.initializers.VarianceScaling,mindspore.common.initializer.XavierUniform,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.XavierUniform,算子,tensorflow|API映射, +tf.keras.initializers.Zeros,mindspore.common.initializer.Zero,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.common.initializer.html#mindspore.common.initializer.Zero,算子,tensorflow|API映射, +tf.keras.layers.Embedding,mindspore.nn.Embedding,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Embedding.html,算子,tensorflow|API映射, +tf.keras.layers.Flatten,mindspore.nn.Flatten,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Flatten.html,算子,tensorflow|API映射, +tf.keras.layers.LayerNormalization,mindspore.nn.LayerNorm,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LayerNorm.html,算子,tensorflow|API映射, +tf.keras.layers.LSTM,mindspore.nn.LSTM,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LSTM.html,算子,tensorflow|API映射, +tf.keras.layers.PReLU,mindspore.nn.PReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.PReLU.html,算子,tensorflow|API映射, +tf.keras.layers.RNN,mindspore.ops.DynamicRNN,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.DynamicRNN.html,算子,tensorflow|API映射, +tf.keras.metrics.Accuracy,mindspore.nn.Accuracy,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Accuracy.html#mindspore.nn.Accuracy,算子,tensorflow|API映射, +tf.keras.metrics.BinaryAccuracy,mindspore.nn.Accuracy,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Accuracy.html#mindspore.nn.Accuracy,算子,tensorflow|API映射, +tf.keras.metrics.CategoricalAccuracy,mindspore.nn.Accuracy,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Accuracy.html#mindspore.nn.Accuracy,算子,tensorflow|API映射, +tf.keras.metrics.SparseCategoricalAccuracy,mindspore.nn.Accuracy,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Accuracy.html#mindspore.nn.Accuracy,算子,tensorflow|API映射, +tf.keras.metrics.AUC,mindspore.nn.auc,https://www.mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.auc.html,算子,tensorflow|API映射, +tf.keras.metrics.CosineSimilarity,mindspore.nn.CosineSimilarity,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.CosineSimilarity.html#mindspore.nn.CosineSimilarity,算子,tensorflow|API映射, +tf.keras.metrics.Mean,mindspore.nn.Loss,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Loss.html#mindspore.nn.Loss,算子,tensorflow|API映射, +tf.keras.metrics.MeanAbsoluteError,mindspore.nn.MAE,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MAE.html#mindspore.nn.MAE,算子,tensorflow|API映射, +tf.keras.metrics.MeanSquaredError,mindspore.nn.MSE,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MSE.html#mindspore.nn.MSE,算子,tensorflow|API映射, +tf.keras.metrics.Precision,mindspore.nn.Precision,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Precision.html#mindspore.nn.Precision,算子,tensorflow|API映射, +tf.keras.metrics.Recall,mindspore.nn.Recall,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Recall.html#mindspore.nn.Recall,算子,tensorflow|API映射, +tf.keras.optimizers.Adagrad,mindspore.nn.Adagrad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Adagrad.html,算子,tensorflow|API映射, +tf.keras.optimizers.Adam,mindspore.nn.Adam,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Adam.html,算子,tensorflow|API映射, +tf.keras.optimizers.Ftrl,mindspore.nn.FTRL,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.FTRL.html,算子,tensorflow|API映射, +tf.keras.optimizers.RMSprop,mindspore.nn.RMSProp,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.RMSProp.html#mindspore.nn.RMSProp,算子,tensorflow|API映射, +tf.keras.optimizers.SGD,mindspore.nn.SGD,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SGD.html,算子,tensorflow|API映射, +tf.keras.preprocessing.image.random_rotation,mindspore.dataset.vision.c_transforms.RandomRotation,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomRotation.html#mindspore.dataset.vision.c_transforms.RandomRotation,算子,tensorflow|API映射, +tf.keras.preprocessing.image.random_shear,mindspore.dataset.vision.c_transforms.RandomAffine,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomAffine.html#mindspore.dataset.vision.c_transforms.RandomAffine,算子,tensorflow|API映射, +tf.keras.preprocessing.image.random_shift,mindspore.dataset.vision.c_transforms.RandomAffine,https://mindspore.cn/docs/zh-CN/master/api_python/dataset_vision/mindspore.dataset.vision.c_transforms.RandomAffine.html#mindspore.dataset.vision.c_transforms.RandomAffine,算子,tensorflow|API映射, +tf.layers.Dense,mindspore.nn.Dense,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Dense.html,算子,tensorflow|API映射, +tf.linalg.inv,mindspore.ops.Inv,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Inv.html,算子,tensorflow|API映射, +tf.linalg.matmul,mindspore.nn.MatMul,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MatMul.html,算子,tensorflow|API映射, +tf.math.add,mindspore.ops.Add,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Add.html,算子,tensorflow|API映射, +tf.math.cumsum,mindspore.Tensor.cumsum,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.cumsum,算子,tensorflow|API映射, +tf.math.divide,mindspore.ops.Div,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Div.html,算子,tensorflow|API映射, +tf.math.erf,mindspore.ops.Erf,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Erf.html,算子,tensorflow|API映射, +tf.math.greater,mindspore.ops.Greater,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Greater.html,算子,tensorflow|API映射, +tf.math.less_equal,mindspore.ops.LessEqual,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.LessEqual.html,算子,tensorflow|API映射, +tf.math.log,mindspore.ops.Log,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Log.html,算子,tensorflow|API映射, +tf.math.multiply,mindspore.ops.Mul,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Mul.html,算子,tensorflow|API映射, +tf.math.pow,mindspore.ops.Pow,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Pow.html,算子,tensorflow|API映射, +tf.math.reduce_std,mindspore.Tensor.std,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.std,算子,tensorflow|API映射, +tf.math.reduce_sum,mindspore.Tensor.sum,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.sum,算子,tensorflow|API映射, +tf.math.reduce_variance,mindspore.Tensor.var,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.Tensor.html#mindspore.Tensor.var,算子,tensorflow|API映射, +tf.math.sigmoid,mindspore.nn.Sigmoid,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Sigmoid.html,算子,tensorflow|API映射, +tf.math.subtract,mindspore.ops.Sub,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Sub.html,算子,tensorflow|API映射, +tf.metrics.mean_iou,mindspore.ops.IOU,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.IOU.html,算子,tensorflow|API映射, +tf.nn.avg_pool2d,mindspore.nn.AvgPool2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.AvgPool2d.html,算子,tensorflow|API映射, +tf.nn.batch_normalization,mindspore.ops.BatchNorm,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BatchNorm.html,算子,tensorflow|API映射, +tf.nn.bias_add,mindspore.ops.BiasAdd,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.BiasAdd.html,算子,tensorflow|API映射, +tf.nn.conv2d,mindspore.nn.Conv2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2d.html,算子,tensorflow|API映射, +tf.nn.conv2d_transpose,mindspore.nn.Conv2dTranspose,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2dTranspose.html,算子,tensorflow|API映射, +tf.nn.ctc_loss,mindspore.ops.CTCLoss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.CTCLoss.html,算子,tensorflow|API映射, +tf.nn.dropout,mindspore.nn.Dropout,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Dropout.html,算子,tensorflow|API映射, +tf.nn.elu,mindspore.nn.ELU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ELU.html,算子,tensorflow|API映射, +tf.nn.l2_loss,mindspore.ops.L2Loss,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.L2Loss.html,算子,tensorflow|API映射, +tf.nn.l2_normalize,mindspore.ops.L2Normalize,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.L2Normalize.html,算子,tensorflow|API映射, +tf.nn.leaky_relu,mindspore.nn.LeakyReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.LeakyReLU.html,算子,tensorflow|API映射, +tf.nn.max_pool_with_argmax,mindspore.ops.MaxPoolWithArgmax,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.MaxPoolWithArgmax.html,算子,tensorflow|API映射, +tf.nn.max_pool2d,mindspore.nn.MaxPool2d,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.MaxPool2d.html,算子,tensorflow|API映射, +tf.nn.moments,mindspore.nn.Moments,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Moments.html,算子,tensorflow|API映射, +tf.nn.relu,mindspore.nn.ReLU,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ReLU.html,算子,tensorflow|API映射, +tf.nn.selu,mindspore.ops.SeLU,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.SeLU.html,算子,tensorflow|API映射, +tf.nn.sigmoid_cross_entropy_with_logits,mindspore.ops.SigmoidCrossEntropyWithLogits,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.SigmoidCrossEntropyWithLogits.html,算子,tensorflow|API映射, +tf.nn.softmax,mindspore.nn.Softmax,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Softmax.html,算子,tensorflow|API映射, +tf.nn.softmax_cross_entropy_with_logits,mindspore.nn.SoftmaxCrossEntropyWithLogits,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.SoftmaxCrossEntropyWithLogits.html,算子,tensorflow|API映射, +tf.random.gamma,mindspore.ops.Gamma,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Gamma.html,算子,tensorflow|API映射, +tf.random.uniform,mindspore.ops.uniform,https://mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.uniform.html,算子,tensorflow|API映射, +tf.sparse.SparseTensor,mindspore.SparseTensor,https://mindspore.cn/docs/zh-CN/master/api_python/mindspore/mindspore.SparseTensor.html,算子,tensorflow|API映射, +tf.train.ProximalAdagradOptimizer,mindspore.nn.ProximalAdagrad,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ProximalAdagrad.html#mindspore.nn.ProximalAdagrad,算子,tensorflow|API映射, +tf.train.exponential_decay,mindspore.nn.ExponentialDecayLR,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.ExponentialDecayLR.html,算子,tensorflow|API映射, +tf.train.linear_cosine_decay,mindspore.nn.CosineDecayLR,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.CosineDecayLR.html,算子,tensorflow|API映射, +tf.train.MomentumOptimizer,mindspore.nn.Momentum,https://mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Momentum.html,算子,tensorflow|API映射, +tfp.bijectors.Softplus,mindspore.nn.probability.bijector.Softplus,https://www.mindspore.cn/docs/zh-CN/master/api_python/nn_probability/mindspore.nn.probability.bijector.Softplus.html,算子,tensorflow|API映射, +请问如果不使用高阶API,怎么实现数据下沉?,可以参考此手动下沉方式的[test_tdt_data_transfer.py](https://gitee.com/mindspore/mindspore/blob/master/tests/st/data_transfer/test_tdt_data_transfer.py)示例实现,不用借助`model.train`接口,目前支持:GPU和Ascend硬件使用。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +在使用`Dataset`处理数据过程中内存占用高,怎么优化?,可以参考如下几个步骤来降低内存占用,同时也可能会降低数据处理的效率。 1. 在定义数据集`**Dataset`对象前,设置`Dataset`数据处理预取的大小,`ds.config.set_prefetch_size(2)`。 2. 在定义`**Dataset`对象时,设置其参数`num_parallel_workers`为1。 3. 如果对`**Dataset`对象进一步使用了`.map(...)`操作,可以设置`.map(...)`的参数`num_parallel_workers`为1。 4. 如果对`**Dataset`对象进一步使用了`.batch(...)`操作,可以设置`.batch(...)`的参数`num_parallel_workers`为1。 5. 如果对`**Dataset`对象进一步使用了`.shuffle(...)`操作,可以把参数`buffer_size`设置减少。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +在使用`Dataset`处理数据过程中CPU占用高,表现为sy占用高而us占用低,怎么优化?,可以参考如下几个步骤来降低CPU占用,进一步提升性能,其主要原因是三方库多线程与数据处理多线程存在资源竞争。 1. 如果数据处理阶段有opencv的`cv2`操作,那么通过`cv2.setNumThreads(2)`设置`cv2`全局线程数。 2. 如果数据处理阶段有`numpy`操作,那么通过`export OPENBLAS_NUM_THREADS=1`设置`OPENBLAS`线程数。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +在`GeneratorDataset`中,看到有参数`shuffle`,在跑任务时发现`shuffle=True`和`shuffle=False`,两者没有区别,这是为什么?,开启`shuffle`,需要传入的`Dataset`是支持随机访问的(例如自定义的`Dataset`有`getitem`方法),如果是在自定义的`Dataset`里面通过`yeild`方式返回回来的数据,是不支持随机访问的,具体可查看教程中的[自定义数据集](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html)章节。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +请问`Dataset`如何把两个`columns`合并成一个`column`?,可以添加如下操作把 两个字段合成一个。 ```python def combine(x, y): x = x.flatten() y = y.flatten() return np.append(x, y) dataset = dataset.map(operations=combine, input_columns=["data", "data2"], output_columns=["data"]) ```注:因为两个`columns`是不同的`shape`,需要先`flatten`下,然后再合并。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +请问`GeneratorDataset`支持`ds.PKSampler`采样吗?,自定义数据集`GeneratorDataset`不支持`PKSampler`采样逻辑。主要原因是自定义数据操作灵活度太大了,内置的`PKSampler`难以做到通用性,所以选择在接口层面直接提示不支持。但是对于`GeneratorDataset`,可以方便的定义自己需要的`Sampler`逻辑,即在`ImageDataset`类的`__getitem__`函数中定义具体的`sampler`规则,返回自己需要的数据即可。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindSpore如何加载已有的预训练词向量?,可以在定义EmbedingLookup或者Embedding时候,把预训练的词向量传进来,把预训练的词向量封装成一个Tensor作为EmbeddingLookup初始值。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +请问`c_transforms`和`py_transforms`有什么区别,比较推荐使用哪个?,推荐使用`c_transforms`,因为纯C层执行,所以性能会更好。 原理:`c_transform`底层使用的是C版本`opencv/jpeg-turbo`进行的数据处理,`py_transform`使用的是Python版本的`Pillow`进行数据处理。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +由于我一条数据包含多个图像,并且每个图像的宽高都不一致,需要对转成mindrecord格式的数据进行`map`操作。可是我从`record`读取的数据是`np.ndarray`格式的数据,我的数据处理的`operations`是针对图像格式的。我应该怎么样才能对所生成的mindrecord的格式的数据进行预处理呢?,建议你按照如下操作进行: ```python #1 The defined schema is as follows: Among them, data1, data2, data3, ... These fields store your image, and only the binary of the image is stored here. cv_schema_json = {"label": {"type": "int32"}, "data1": {"type": "bytes"}, "data2": {"type": "bytes"}, "data3": {"type": "bytes"}} #2 The organized data can be as follows, and then this data_list can be written by FileWriter.write_raw_data(...). data_list = [] data = {} data['label'] = 1 f = open("1.jpg", "rb") image_bytes = f.read() f.close data['data1'] = image_bytes f2 = open("2.jpg", "rb") image_bytes2 = f2.read() f2.close data['data2'] = image_bytes2 f3 = open("3.jpg", "rb") image_bytes3 = f3.read() f3.close data['data3'] = image_bytes3 data_list.append(data) #3 Use MindDataset to load, then use the decode operator we provide to decode, and then perform subsequent processing. data_set = ds.MindDataset("mindrecord_file_name") data_set = data_set.map(input_columns=["data1"], operations=vision.Decode(), num_parallel_workers=2) data_set = data_set.map(input_columns=["data2"], operations=vision.Decode(), num_parallel_workers=2) data_set = data_set.map(input_columns=["data3"], operations=vision.Decode(), num_parallel_workers=2) resize_op = vision.Resize((32, 32), interpolation=Inter.LINEAR) data_set = data_set.map(operations=resize_op, input_columns=["data1"], num_parallel_workers=2) for item in data_set.create_dict_iterator(output_numpy=True): print(item) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +我的自定义图像数据集转为mindrecord格式时,我的数据是`numpy.ndarray`格式的,且`shape`为[4,100,132,3],这个`shape`的含义是四幅三通道的帧,且每个值都在0~255。可是当我查看转化成mindrecord的格式的数据时,发现是`[19800]`的`shape`,我原数据的维度全部展开有`[158400]`,请问这是为什么?,可能是你数据中`ndarray`的`dtype`是`int8`,因为`[158400]`和`[19800]`刚好相差了8倍,建议将数据中`ndarray`的`dtype`指定为`float64`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +想要保存生成的图片,代码运行完毕以后在相应目录找不到图片。相似的,在JupyterLab中生成数据集用于训练,训练时可以在相应路径读取到数据,但是自己却无法在路径中找到图片或数据集?,可能是JumperLab生成的图片或者数据集都是在Docker内,`moxing`下载的数据只能训练进程的Docker内看见,训练完成后这些数据就随着Docker释放了。 可以试试在训练任务中将需要`download`的数据再通过`moxing`传回`obs`,然后再在`obs`里面下载到你本地。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindSpore中`model.train`的`dataset_sink_mode`参数该如何理解?,当`dataset_sink_mode=True`时,数据处理会和网络计算构成Pipeline方式,即: 数据处理在逐步处理数据时,处理完一个`batch`的数据,会把数据放到一个队列里,这个队列用于缓存已经处理好的数据,然后网络计算从这个队列里面取数据用于训练,那么此时数据处理与网络计算就`Pipeline`起来了,整个训练耗时就是数据处理/网络计算耗时最长的那个。 当`dataset_sink_mode=False`时,数据处理会和网络计算构成串行的过程,即: 数据处理在处理完一个`batch`后,把这个`batch`的数据传递给网络用于计算,在计算完成后,数据处理再处理下一个`batch`,然后把这个新的`batch`数据传递给网络用于计算,如此的循环往复,直到训练完。该方法的总耗时是数据处理的耗时+网络计算的耗时=训练总耗时。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindSpore能否支持按批次对不同尺寸的图片数据进行训练?,你可以参考yolov3对于此场景的使用,里面有对于图像的不同缩放,脚本见[yolo_dataset](https://gitee.com/mindspore/models/blob/master/official/cv/yolov3_darknet53/src/yolo_dataset.py)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +使用MindSpore做分割训练,必须将数据转为MindRecord吗?,[build_seg_data.py](https://gitee.com/mindspore/models/blob/master/official/cv/deeplabv3/src/data/build_seg_data.py)是将数据集生成MindRecord的脚本,可以直接使用/适配下你的数据集。或者如果你想尝试自己实现数据集的读取,可以使用`GeneratorDataset`自定义数据集加载。 [GenratorDataset 示例](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html) [GenratorDataset API说明](https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset),https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindSpore在Ascend硬件平台进行多卡训练,自定义数据集如何给不同卡传递不同数据?,使用`GeneratorDataset`的时候,可以使用`num_shards=num_shards`,`shard_id=device_id`参数来控制不同卡读取哪个分片的数据,`__getitem__`和`__len__`按全量数据集处理即可。 举例: ```python # 卡0: ds.GeneratorDataset(..., num_shards=8, shard_id=0, ...) # 卡1: ds.GeneratorDataset(..., num_shards=8, shard_id=1, ...) # 卡2: ds.GeneratorDataset(..., num_shards=8, shard_id=2, ...) ... # 卡7: ds.GeneratorDataset(..., num_shards=8, shard_id=7, ...) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +如何构建图像的多标签MindRecord格式数据集?,数据Schema可以按如下方式定义: `cv_schema_json = {"label": {"type": "int32", "shape": [-1]}, "data": {"type": "bytes"}}` 说明: label是一个数组,numpy类型,这里面可以存 1, 1,0,1, 0, 1 这么多label值,这些label值对应同一个data,即: 同一个图像的二进制值。 可以参考[将数据集转换为MindRecord](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/record.html#转换成record格式)教程。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +请问自己制作的黑底白字`28*28`的数字图片,使用MindSpore训练出来的模型做预测,报错提示`wrong shape of image`是怎么回事?,首先MindSpore训练使用的灰度图MNIST数据集。所以模型使用时对数据是有要求的,需要设置为`28*28`的灰度图,就是单通道才可以。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +第一次看到有专门的数据处理框架,能介绍下么?,MindData提供数据处理异构硬件加速功能,高并发数据处理`pipeline`同时支持`Ascend/GPU/CPU`,`CPU`占用降低30%,点击查询[优化数据处理](https://www.mindspore.cn/tutorials/experts/zh-CN/master/dataset/optimize.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +网络训练时出现报错提示数据下发失败“TDT Push data into device Failed”,如何定位原因?,首先上述报错指的是通过训练数据下发通道(TDT,train data transfer)发送数据到卡(device)上失败,导致这一报错的原因可能有多种,因此日志中给出了相应的检查建议,具体而言: 1. 通常我们会找到日志中最先抛出的错误(第一个ERROR级别的错误)或报错堆栈(TraceBack),并尝试从中找到有助于定位错误原因的信息。 2. **在图编译阶段,训练还没开始报错时**(例如日志中还没打印loss),请先检查下报错(ERROR)日志中是否有网络中涉及的相关算子报错或涉及环境没配置好导致的报错(如hccl.json不对导致多卡通信初始化异常)。 3. **在中间训练过程中报错时**,通常为下发的数据量(batch数)与网络训练需要的数据量(step数)不匹配导致的,可以通过`get_dataset_size`接口打印一个epoch中包含的batch数,导致异常的部分可能原因如下: - 通过查看打印loss次数的等方式判断如果数据量(step数)刚好为一个epoch中batch数的整数倍,则可能是数据处理部分涉及epoch的处理存在问题,如下面这场景: ```python ... dataset = dataset.create_tuple_iteator(num_epochs=-1) # 此处如果要返回一个迭代器则num_epochs应该给1, 但建议直接返回dataset return dataset ``` - 考虑是否是数据处理性能较慢,跟不上网络训练的速度,针对这一场景,可借助profiler工具和MindInsight看一下是否存在明显的迭代间隙,或手动遍历一下dataset,并打印计算下平均单batch的耗时,是否比网络正反向加起来的时间更长,如果是则大概率需要对数据处理部分进行性能优化。 - 训练过程中出现异常数据抛出异常导致下发数据失败,通常这种情况会有其他报错(ERROR)日志会提示数据处理哪个环节出现了异常及检查建议。如果不明显,也可以通过遍历dataset每条数据的方式尝试找出异常的数据(如关闭shuffle, 然后进行二分法)。 4. 如果**在训练结束后**打印这条日志(大抵是强制释放资源导致),可忽略这个报错。 5. 如果仍不能定位具体原因,请通过提issue或论坛提问等方式找模块开发人员协助定位。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +py_transforms 和 c_transforms 算子能否混合使用,如果混合使用具体需要怎么使用?,出于高性能考虑,通常不建议将py_transforms 与 c_transforms算子混合使用,[文档](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/enhanced_image_data.html#注意事项)也对此进行了说明。但若不追求极致的性能,主要考虑打通流程,在无法全部使用c_transforms算子(缺少对应的c_transforms算子)的情况下,可使用py_transforms算子替代,此时即存在混合使用。 对此我们需要注意c_transforms 算子的输出通常是numpy array,py_transforms算子的输出是PIL Image,具体可查看算子说明,为此通常的混合使用方法为: - c_transforms 算子 + ToPIL 算子 + py_transforms 算子 + ToTensor算子 - py_transforms 算子 + ToTensor 算子 + c_transforms 算子 ```python # example that using c_transforms and py_transforms operators together # in following case: c_vision refers to c_transforms, py_vision refer to py_transforms decode_op = c_vision.Decode() # If input type is not PIL, then add ToPIL operator. transforms = [ py_vision.ToPIL(), py_vision.CenterCrop(375), py_vision.ToTensor() ] transform = mindspore.dataset.transforms.py_transforms.Compose(transforms) data1 = data1.map(operations=decode_op, input_columns=["image"]) data1 = data1.map(operations=transform, input_columns=["image"]) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +当错误提示 "The data pipeline is not a tree (i.e., one node has 2 consumers)" 应该怎么检查?,上述错误通常是脚本书写错误导致,具体发生在下面这种场景;正常情况下数据处理pipeline中的操作是依次串联的,下面的异常场景中dataset1有两个消费节点 dataset2和dataset3,就会出现上述错误。 ```python dataset2 = dataset1.map(***) dataset3 = dataset1.map(***) ```正确的写法如下所示,dataset3是由dataset2进性数据增强得到的,而不是在dataset1基础上进行数据增强操作得到。 ```python dataset2 = dataset1.map(***) dataset3 = dataset2.map(***) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindSpore中和Dataloader对应的算子是什么?,如果将Dataloader考虑为接收自定义Dataset的API接口,MindSpore数据处理API中和Dataloader较为相似的是GeneratorDataset,可接收用户自定义的Dataset,具体使用方式参考[GeneratorDataset 文档](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html),差异对比也可查看[API算子映射表](https://www.mindspore.cn/docs/zh-CN/master/note/api_mapping/pytorch_api_mapping.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +自定义的Dataset出现错误时,应该如何调试?,自定义的Dataset通常会传入到GeneratorDataset,在使用过程中错误指向了自定义的Dataset时,可通过一些方式进行调试(如增加打印信息,打印返回值的shape、dtype等),自定义Dataset通常要保持中间处理结果为numpy array,且不建议与MindSpore网络计算的算子混合使用。此外针对自定义的Dataset如下面的MyDataset,初始化后也可直接进行如下遍历(主要为简化调试,分析原始Dataset中的问题,可不传入GeneratorDataset),调试遵循常规的Python语法规则。 ```python Dataset = MyDataset() for item in Dataset: print("item:", item) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +数据处理算子与网络计算算子能否混合使用?,通常数据处理算子与网络计算算子混合使用会导致性能有所降低,在缺少对应的数据处理算子且自定义py_transforms算子不合适时可进行尝试。需要注意的是,因为二者需要的输入不一致,数据处理算子通常输入为numpy array 或 PIL Image,但网络计算算子输入需要是MindSpore.Tensor; 将二者混合使用需要使上一个算子的输出格式和下一个算子所需的输入格式一致。数据处理算子指的是官网API文档中mindspore.dataset开头的算子,如 mindspore.dataset.vision.c_transforms.CenterCrop,网络计算算子包含 mindspore.nn、 mindspore.ops等目录下的算子。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +MindRecord为何会生成.db文件? 缺少.db文件时加载数据集会有什么报错?,.db文件为MindRecord文件对应的索引文件,缺少.db文件通常会在获取数据集总的数据量时报错,错误提示如:`MindRecordOp Count total rows failed`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +自定义Dataset中如何进行图像读取并进行Decode操作?,传入GeneratorDataset的自定义Dataset,在接口内部(如`__getitem__`函数)进行图像读取后可以直接返回bytes类型的数据、numpy array类型的数组或已经做了解码操作的numpy array, 具体如下所示: - 读取图像后直接返回bytes类型的数据 ```python class ImageDataset: def __init__(self, data_path): self.data = data_path def __getitem__(self, index): # use file open and read method f = open(self.data[index], 'rb') img_bytes = f.read() f.close() # return bytes directly return (img_bytes, ) def __len__(self): return len(self.data) # data_path is a list of image file name dataset1 = ds.GeneratorDataset(ImageDataset(data_path), ["data"]) decode_op = py_vision.Decode() to_tensor = py_vision.ToTensor(output_type=np.int32) dataset1 = dataset1.map(operations=[decode_op, to_tensor], input_columns=["data"]) ``` - 读取图像后返回numpy array ```python # 在上面的用例中,对__getitem__函数可进行如下修改, Decode操作同上述用例一致 def __getitem__(self, index): # use np.fromfile to read image img_np = np.fromfile(self.data[index]) # return Numpy array directly return (img_np, ) ``` - 读取图像后直接进行Decode操作 ```python # 依据上面的用例,对__getitem__函数可进行如下修改, 直接返回Decode之后的数据,此后可以不需要通过map算子接Decode操作 def __getitem__(self, index): # use Image.Open to open file, and convert to RGC img_rgb = Image.Open(self.data[index]).convert("RGB") return (img_rgb, ) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +在使用`Dataset`处理数据过程中,报错`RuntimeError: can't start new thread`,怎么解决?,主要原因是在使用`**Dataset`、`.map(...)`和`.batch(...)`时,参数`num_parallel_workers`配置过大,用户进程数达到最大,可以通过`ulimit -u 最大进程数`来增加用户最大进程数范围,或者将`num_parallel_workers`配置减小。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +在使用`GeneratorDataset`加载数据时,报错`RuntimeError: Failed to copy data into tensor.`,怎么解决?,在使用`GeneratorDataset`加载Pyfunc返回的Numpy array时,MindSpore框架将执行Numpy array到MindSpre Tensor的转换,假设Numpy array所指向的内存被释放,可能会发生内存拷贝的错误。举例如下: - 在`__getitem__`函数中执行Numpy array - MindSpore Tensor - Numpy array的就地转换。其中Tensor `tensor`和Numpy array `ndarray_1`共享同一块内存,Tensor `tensor`在`__getitem__`函数退出时超出作用域,其所指向的内存将被释放。 ```python class RandomAccessDataset: def __init__(self): pass def __getitem__(self, item): ndarray = np.zeros((544, 1056, 3)) tensor = Tensor.from_numpy(ndarray) ndarray_1 = tensor.asnumpy() return ndarray_1 def __len__(self): return 8 data1 = ds.GeneratorDataset(RandomAccessDataset(), ["data"]) ``` - 忽略上面例子中的循环转换,在`__getitem__`函数退出时,Tensor对象`tensor`被释放,和其共享同一块内存的Numpy array对象`ndarray_1`变成未知状态,为了规避此问题可以直接使用`deepcopy`函数为将返回的Numpy array对象`ndarray_2`申请独立的内存。 ```python class RandomAccessDataset: def __init__(self): pass def __getitem__(self, item): ndarray = np.zeros((544, 1056, 3)) tensor = Tensor.from_numpy(ndarray) ndarray_1 = tensor.asnumpy() ndarray_2 = copy.deepcopy(ndarray_1) return ndarray_2 def __len__(self): return 8 data1 = ds.GeneratorDataset(RandomAccessDataset(), ["data"]) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/data_processing.html,FAQ,数据处理|FAQ, +进行HCCL分布式训练出错:`Init plugin so failed, ret = 1343225860`?,初始化HCCL失败了,通常由于`rank json`没写对,可以用`mindspore/model_zoo/utils/hccl_tools`下面的工具生成一个试试。或者导入环境变量`export ASCEND_SLOG_PRINT_TO_STDOUT=1`打开HCCL的日志打印,然后检查日志信息。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +MindSpore执行GPU分布式训练报错如下,如何解决:,```text Loading libgpu_collective.so failed. Many reasons could cause this: 1.libgpu_collective.so is not installed. 2.nccl is not installed or found. 3.mpi is not installed or found ```此问题为MindSpore动态加载集合通信库失败,可能原因如下: - 执行环境未安装分布式训练依赖的OpenMPI以及NCCL。 - NCCL版本未更新至`v2.7.6`: MindSpore `v1.1.0`新增GPU P2P通信算子,该特性依赖于NCCL `v2.7.6`,若环境使用的NCCL未升级为此版本,则会引起加载失败错误。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +GPU分布式训练场景下,若错误设置环境变量CUDA_VISIBLE_DEVICES的个数小于执行的进程数时,可能导致进程阻塞问题。,此场景下,部分训练进程会提示如下报错: ```text [ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/cuda_driver.cc:245] SetDevice] SetDevice for id:7 failed, ret[101], invalid device ordinal. Please make sure that the 'device_id' set in context is in the range:[0, total number of GPU). If the environment variable 'CUDA_VISIBLE_DEVICES' is set, the total number of GPU will be the number set in the environment variable 'CUDA_VISIBLE_DEVICES'. For example, if export CUDA_VISIBLE_DEVICES=4,5,6, the 'device_id' can be 0,1,2 at the moment, 'device_id' starts from 0, and 'device_id'=0 means using GPU of number 4. [ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/gpu_device_manager.cc:27] InitDevice] Op Error: Failed to set current device id | Error Number: 0 ```其余进程由于GPU资源已分配成功,会正常执行到初始化`NCCL`步骤,日志如下: ```text [INFO] DEVICE [mindspore/ccsrc/runtime/hardware/gpu/gpu_device_context.cc:90] Initialize] Start initializing NCCL communicator for device 1 ```此步骤中会调用`NCCL`接口`ncclCommInitRank`,该接口会阻塞,直到所有进程达成一致。因此如果某进程没有调用`ncclCommInitRank`,则会导致进程阻塞。 此问题我们已向`NCCL`社区反馈,社区开发者正在设计解决方案中,目前最新版本还未修复,详见[issue链接](https://github.com/NVIDIA/nccl/issues/593#issuecomment-965939279)。 解决方法:手动`kill`训练进程,根据报错日志,设置正确的卡号后,重启训练任务。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +GPU分布式训练场景下,若某进程异常退出,可能导致其余进程阻塞问题。,此场景下,异常进程由于各种问题退出,其余进程由于GPU资源已分配成功,会正常执行到初始化`NCCL`步骤,日志如下: ```text [INFO] DEVICE [mindspore/ccsrc/runtime/hardware/gpu/gpu_device_context.cc:90] Initialize] Start initializing NCCL communicator for device 1 ```此步骤中会调用`NCCL`接口`ncclCommInitRank`,该接口会阻塞,直到所有进程达成一致。因此如果某进程没有调用`ncclCommInitRank`,则会导致进程阻塞。 此问题我们已向`NCCL`社区反馈,社区开发者正在设计解决方案中,目前最新版本还未修复,详见[issue链接](https://github.com/NVIDIA/nccl/issues/593#issuecomment-965939279)。 解决方法:手动`kill`训练进程后重启训练任务。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +在执行GPU单机单卡的脚本时,不使用mpirun启动进程时,调用mindspore.communication.init方法可能会报错,导致执行失败,该如何处理?,```text [CRITICAL] DISTRIBUTED [mindspore/ccsrc/distributed/cluster/cluster_context.cc:130] InitNodeRole] Role name is invalid... ```在用户不使用`mpirun`启动进程,但是依然调用了`init()`方法的情况下,MindSpore要求用户按照[不依赖OpenMPI进行训练](https://www.mindspore.cn/tutorials/experts/zh-CN/master/parallel/train_gpu.html#不依赖openmpi进行训练)配置若干环境变量并进行校验,若没有配置,MindSpore会给出以上报错提示。因此建议只有在执行分布式训练时调用`mindspore.communication.init`,并在不使用`mpirun`的场景下,根据文档配置正确的环境变量以启动分布式训练。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +在通过OpenMPI执行多机多卡训练时,提示由于MPI_Allgather失败。,```text pml_ucx.c:175 Error: Failed to receive UCX worker address: Not found (-13) pml_ucx.c:452 Error: Failed to resolve UCX endpoint for rank X ```此问题是`OpenMPI`在Host侧通信时,无法和对端地址进行通信,一般是机器之间的网卡配置不同导致的,可以通过手动设置网卡名或者子网的方式解决: ```text mpirun -n process_num --mca btl tcp --mca btl_tcp_if_include eth0 ./run.sh ```以上指令启动了`process_num`个`run.sh`进程,并且选择Host侧通信方式为`tcp`,网卡选择了`eth0`,这样就能保证在每台机器上使用的网卡相同,进而解决通信异常问题。 还可以选择子网来进行匹配: ```text mpirun -n process_num --mca btl tcp --mca btl_tcp_if_include 192.168.1.0/24 ./run.sh ```子网范围需要包括所有机器所用的IP地址。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +在通过OpenMPI执行分布式训练时,单机多卡训练正常,但在多机多卡训练时,某些机器提示GPU device id设置失败。,```text [ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/cuda_driver.cc:245] SetDevice] SetDevice for id:7 failed, ret[101], invalid device ordinal. Please make sure that the 'device_id' set in context is in the range:[0, total number of GPU). If the environment variable 'CUDA_VISIBLE_DEVICES' is set, the total number of GPU will be the number set in the environment variable 'CUDA_VISIBLE_DEVICES'. For example, if export CUDA_VISIBLE_DEVICES=4,5,6, the 'device_id' can be 0,1,2 at the moment, 'device_id' starts from 0, and 'device_id'=0 means using GPU of number 4. [ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/gpu_device_manager.cc:27] InitDevice] Op Error: Failed to set current device id | Error Number: 0 ```在多机场景下,各进程卡号需要通过在Host侧`AllGather` `HOSTNAME`后计算得到,如果机器间有使用相同的`HOSTNAME`,则进程卡号会计算出错,导致卡号越界而设置失败。可以在执行脚本中设置每台机器的HOSTNAME为各自的IP地址来解决: ```text export HOSTNAME=node_ip_address ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +在通过OpenMPI执行多机多卡训练时,NCCL报错提示网络不通。,```text include/socket.h:403 NCCL WARN Connect to XXX failed: Network is unreachable ```此问题是`NCCL`在Host侧同步进程信息或者初始化通信域时,无法和对端地址进行通信,一般是机器之间的网卡配置不同导致的,可以通过设置`NCCL`环境变量`NCCL_SOCKET_IFNAME`,进行网卡选择: ```text export NCCL_SOCKET_IFNAME=eth ```以上指令设置了`NCCL`在Host侧选择网卡名中带有`eth`的网卡进行通信。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +多机多卡选择特定名称的RDMA网卡(通过NCCL_SOCKET_IFNAME设置)通信后,训练仍然报错:,```text misc/ibvwrap.cc:284 NCCL WARN Call to ibv_modify_qp failed with error Invalid argument ... include/socket.h:403 NCCL WARN Connect to XXX failed: Connection refused ```一般此问题是多机之间RDMA网卡配置存在差异,需要具体情况具体分析。但常见原因是存在某些主机网卡存在IB协议和RoCE协议同时存在的情况,可能出现连接建立失败的情况。解决方案: 需要使用以下指令指定使用的RDMA网卡名为ib开头: ```text export NCCL_IB_HCA=ib ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +单机多卡训练能够成功,但是扩展脚本到多机多卡后,其他主机提示各类报错:,报错内容有多种,下面是几种典型的报错,可能有: 1.已经安装的whl包找不到。 2.IB网卡通信失败。 3.Cuda库加载失败。 这些问题,都是由于在`mpirun`启动其他主机时,其他主机的环境变量(包括NCCL的网卡选择配置)没有与本机同步,导致了单机多卡正常执行而多机多卡失败的现象。解决方法是通过mpirun的-x选项,导出特定的环境变量: ```text mpirun --hostfile /path/to/hostfile -n 64 -x PYTHONPATH -x GLOG_v -x LD_LIBRARY_PATH -x NCCL_SOCKET_IFNAME -x NCCL_IB_HCA -x NCCL_DEBUG=INFO python train.py ```以上指令导出了在本机已经设置的一些环境变量到其他主机,保证了在执行训练脚本前所有主机环境变量保持一致,达到多机多卡训练目标。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/distributed_configure.html,FAQ,分布式配置|FAQ, +导出MindIR格式的时候,`input=np.random.uniform(...)`是不是固定格式?,不是固定格式的,这一步操作是为了创建一个输入,以便于构建网络结构。`export`里只要传入正确的`shape`即可,使用`np.ones`和`np.zeros`创建都是可以的。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore现支持直接读取哪些其他框架的模型和哪些格式呢?比如PyTorch下训练得到的pth模型可以加载到MindSpore框架下使用吗?, MindSpore采用Protobuf存储训练参数,无法直接读取其他框架的模型。对于模型文件本质保存的就是参数和对应的值,可以用其他框架的API将参数读取出来之后,拿到参数的键值对,然后再加载到MindSpore中使用。比如想用其他框架训练好的ckpt文件,可以先把参数读取出来,再调用MindSpore的`save_checkpoint`接口,就可以保存成MindSpore可以读取的ckpt文件格式了。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +在使用ckpt或导出模型的过程中,报Protobuf内存限制错误,如何处理?,当单条Protobuf数据过大时,因为Protobuf自身对数据流大小的限制,会报出内存限制的错误。这时可通过设置环境变量`PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python`解除限制。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +PyNative模式和Graph模式的区别?,通过下面四个方面进行对比: - 网络执行:两个模式使用的算子是一致的,因此相同的网络和算子,分别在两个模式下执行时,精度效果是一致的。由于Graph模式运用了图优化、计算图整图下沉等技术,Graph模式执行网络的性能和效率更高; - 场景使用:Graph模式需要一开始就构建好网络结构,然后框架做整图优化和执行,比较适合网络固定没有变化,且需要高性能的场景; - 不同硬件(`Ascend`、`GPU`和`CPU`)资源:都支持这两种模式; - 代码调试:由于PyNative模式是逐行执行算子,用户可以直接调试Python代码,在代码中任意位置打断点查看对应算子的输出或执行结果。而Graph模式由于在构造函数里只是完成网络构造,实际没有执行,因此在`construct`函数里打断点无法获取对应算子的输出,只能先指定算子进行打印,然后在网络执行完成后查看输出结果。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +使用MindSpore在GPU上训练的网络脚本可以不做修改直接在Ascend上进行训练么?,可以的,MindSpore面向Ascend/GPU/CPU提供统一的API,在算子支持的前提下,网络脚本可以不做修改直接跨平台运行。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +一个环境中如果既安装了MindSpore,又安装了PyTorch,是否在一个python文件中可以混用两个框架的语法呢?,可以在一个python文件中混用两个框架的。要注意类型间的区别。例如两个框架创建的Tensor类型是不同的,但对于python的基础类型都是通用的。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore可以读取TensorFlow的ckpt文件吗?,MindSpore的`ckpt`和TensorFlow的`ckpt`格式是不通用的,虽然都是使用`Protobuf`协议,但是`proto`的定义是不同的。当前MindSpore不支持读取TensorFlow或PyTorch的`ckpt`文件。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +用MindSpore训练出的模型如何在Ascend 310上使用?可以转换成适用于HiLens Kit用的吗?,Ascend 310需要运行专用的OM模型,先使用MindSpore导出ONNX或AIR模型,再转化为Ascend 310支持的OM模型。具体可参考[多平台推理](https://www.mindspore.cn/tutorials/experts/zh-CN/master/infer/ascend_310_mindir.html)。可以,HiLens Kit是以Ascend 310为推理核心,所以前后两个问题本质上是一样的,需要转换为OM模型.,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +**Q:MindSpore只能在华为自己的`Ascend`上跑么?,MindSpore同时支持华为自己的`Ascend`、`GPU`与`CPU`,是支持异构算力的。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore在Ascend 310上是否可以转AIR模型?,Ascend 310不能导出AIR,需要在Ascend 910加载训练好的checkpoint后,导出AIR,然后在Ascend 310转成OM模型进行推理。Ascend 910的安装方法可以参考官网MindSpore[安装指南](https://www.mindspore.cn/install)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore对导出、导入模型的单个Tensor输入大小有什么限制?,由于Protobuf的硬件限制,导出AIR、ONNX格式时,模型参数大小不能超过2G;导出MINDIR格式时,模型参数大小没有限制,MindSpore不支持导入AIR、ONNX格式,只支持MINDIR,导入大小的限制与导出一致。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +安装运行MindSpore时,是否要求平台有GPU计算单元?需要什么硬件支持?,MindSpore当前支持CPU/GPU/Ascend。目前笔记本电脑或者有GPU的环境,都可以通过Docker镜像来使用。当前MindSpore Model Zoo中有部分模型已经支持GPU的训练和推理,其他模型也在不断地进行完善。在分布式并行训练方面,MindSpore当前支持GPU多卡训练。你可以通过项目[Release note](https://gitee.com/mindspore/mindspore/blob/master/RELEASE.md#)获取最新信息。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +针对异构计算单元的支持,MindSpore有什么计划?,MindSpore提供了可插拔式的设备管理接口,其他计算单元(比如FPGA)可快速灵活地实现与MindSpore的对接,欢迎您参与社区进行异构计算后端的开发工作。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore与ModelArts是什么关系,在ModelArts中能使用MindSpore吗?,ModelArts是华为公有云线上训练及推理平台,MindSpore是华为深度学习框架。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +最近出来的taichi编程语言有Python扩展,类似`import taichi as ti`就能直接用了,MindSpore是否也支持?,MindSpore支持Python原生表达,`import mindspore`相关包即可使用。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +请问MindSpore支持梯度截断吗?,支持,可以参考[梯度截断的定义和使用](https://gitee.com/mindspore/models/blob/master/official/nlp/transformer/src/transformer_for_train.py#L35)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore的IR设计理念是什么?,函数式: 一切皆函数,易于微分实现;无副作用,易于实现自动并行化分析。`JIT`编译能力: 图形IR,控制流依赖和数据流合一,平衡通用性/易用性。图形完备的IR: 更多的转换`Python`灵活语法,包括递归等。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore并行模型训练的优势和特色有哪些?,MindSpore分布式训练除了支持数据并行,还支持算子级模型并行,可以对算子输入tensor进行切分并行。在此基础上支持自动并行,用户只需要写单卡脚本,就能自动切分到多个节点并行执行。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore在语义协同和处理上是如何实现的?是否利用当前学术界流行的FCA理论?,MindSpore框架本身并不需要支持FCA。对于语义类模型,用户可以调用第三方的工具在数据预处理阶段做FCA数学分析。MindSpore本身支持Python语言,`import FCA`相关包即可使用。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +当前在云上MindSpore的训练和推理功能是比较完备的,至于边端场景(尤其是终端设备)MindSpore有什么计划?,MindSpore是端边云统一的训练和推理框架,支持将云侧训练的模型导出到Ascend AI处理器和终端设备进行推理。当前推理阶段支持的优化包括量化、算子融合、内存复用等。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore自动并行支持情况如何?,自动并行特性对CPU GPU的支持还在完善中。推荐用户在Ascend 910 AI处理器上使用自动并行,可以关注开源社区,申请MindSpore开发者体验环境进行试用。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore有没有类似基于TensorFlow实现的对象检测算法的模块?,TensorFlow的对象检测Pipeline接口属于TensorFlow Model模块。待MindSpore检测类模型完备后,会提供类似的Pipeline接口。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +使用PyNative模式能够进行迁移学习?,PyNative模式是兼容迁移学习的。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +MindSpore仓库中的[ModelZoo](https://gitee.com/mindspore/models/blob/master/README_CN.md#)和昇腾官网的[ModelZoo](https://www.hiascend.com/software/modelzoo)有什么关系?,MindSpore的ModelZoo主要提供MindSpore框架实现的模型,同时包括了Ascend/GPU/CPU/Mobile多种设备的支持。昇腾的ModelZoo主要提供运行于Ascend加速芯片上的模型,包括了MindSpore/PyTorch/TensorFlow/Caffe等多种框架的支持。可以参考对应的[Gitee仓库](https://gitee.com/ascend/modelzoo) 其中MindSpore+Ascend的组合是有重合的,这部分模型会以MindSpore的ModelZoo为主要版本,定期向昇腾ModelZoo发布。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +Ascend与NPU是什么关系?,NPU指针对神经网络算法的专用处理器,不同公司推出的NPU架构各异,Ascend是基于华为公司自研的达芬奇架构的NPU。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/feature_advice.html,FAQ,特性咨询|FAQ, +请问使用MindSpore如何实现多尺度训练?,在多尺度训练过程中,使用不同`shape`调用`Cell`对象的时候,会自动根据不同`shape`编译并调用不同的图,从而实现多尺度的训练。要注意多尺度训练只支持非数据下沉模式,不能支持数据下沉的训练方式。可以参考[yolov3](https://gitee.com/mindspore/models/tree/master/official/cv/yolov3_darknet53)的多尺度训练实现。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如果MindSpore的`requires_grad=False`的`tensor`转化为`numpy`类型进行处理然后再转化会`tensor`,会对计算图和反向传播有影响吗?,在PyNative模式下,如果中间使用`numpy`计算,会导致梯度传递中断,`requires_grad=False`的场景下,如果该`tensor`的反向传播不传给其他参数使用,是没有影响的;如果`requires_grad=True`的场景下,是有影响的。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +请问怎样实现类似`torch.nn.functional.linear()`那样能够对全连接层`weight`、`bias`进行修改,应该如何操作?,MindSpore与`torch.nn.functional.linear()`功能最接近的接口就是`nn.Dense`了。`nn.Dense`能指定`weight`和`bias`的初始值,后续的变化是由优化器自动更新的。训练过程中,用户不需要主动修改这两个参数的值。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用MindSpore在模型保存后生成的`.meta`文件作用是什么,可以用`.meta`文件导入图结构吗?,这里的`.meta`文件是编译好的图结构,但是目前并不支持直接导入这种结构。如果不知道图结构的情况下想要导入网络,还是需要用MindIR格式的文件。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +请问`yolov4-tiny-3l.weights`模型文件可以直接转换成MindSpore模型吗?,不能的,需要把其他框架训练好的参数转换成MindSpore的格式,才能转成MindSpore的模型。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用MindSpore进行`model.train`的时候进行了如下设置,为什么会报错呢?,```python model.train(1, dataset, callbacks=LossMonitor(1), dataset_sink_mode=True) model.train(1, dataset, callbacks=LossMonitor(1), dataset_sink_mode=False) ```因为在已经设置为下沉模式的情况下,就不能再设置为非下沉了,是运行机制上的限制。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用MindSpore训练模型在`eval`阶段,需要注意什么?能够直接加载网络和参数吗?需要在Model中使用优化器吗?,在`eval`阶段主要看需要什么,比如图像分类任务`eval`网络的输出是各个类的概率值,与对应标签计算`acc`。 大多数情况是可以直接复用训练的网络和参数的,需要注意的是需要设置推理模式。 ```python net.set_train(False) ```在eval阶段不需要优化器,但是需要使用MindSpore的`model.eval`接口的话需要配置一下`loss function`,如: ```python # 定义模型 model = Model(net, loss_fn=loss, metrics={'top_1_accuracy', 'top_5_accuracy'}) # 评估模型 res = model.eval(dataset) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何使用SGD里的`param_group`来实现学习率的衰减?,如果需要按照`epoch`来变化,可以使用[Dynamic LR](https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.html#dynamic-lr函数),把其中的`step_per_epoch`设置成`step_size`,如果需要按照`step`来变化,可以把其中的`step_per_epoch`设置成1,也可以用[LearningRateSchedule](https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.html#learningrateschedule)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +MindSpore如何进行参数(如dropout值)修改?,在构造网络的时候可以通过 `if self.training: x = dropput(x)`,推理时,执行前设置`network.set_train(mode_false)`,就可以不使用dropout,训练时设置为True就可以使用dropout。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何查看模型参数量?,可以直接加载CheckPoint统计,可能额外统计了动量和optimizer中的变量,需要过滤下相关变量。 您可以参考如下接口统计网络参数量: ```python def count_params(net): """Count number of parameters in the network Args: net (mindspore.nn.Cell): Mindspore network instance Returns: total_params (int): Total number of trainable params """ total_params = 0 for param in net.trainable_params(): total_params += np.prod(param.shape) return total_params ```具体[脚本链接](https://gitee.com/mindspore/models/blob/master/research/cv/tinynet/src/utils.py)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何在训练过程中监控`loss`在最低的时候并保存训练参数?,可以自定义一个`Callback`。参考`ModelCheckpoint`的写法,此外再增加判断`loss`的逻辑: ```python class EarlyStop(Callback): def __init__(self): self.loss = None def step_end(self, run_context): loss = ****(get current loss) if (self.loss == None or loss < self.loss): self.loss = loss # do save ckpt ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用`nn.Conv2d`时,怎样获取期望大小的`feature map`?,`Conv2d shape`推导方法可以[参考这里](https://www.mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2d.html#mindspore.nn.Conv2d),`Conv2d`的`pad_mode`改成`same`,或者可以根据`Conv2d shape`推导公式自行计算`pad`,想要使得`shape`不变,一般pad为`(kernel_size-1)//2`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用MindSpore可以自定义一个可以返回多个值的loss函数?,自定义`loss function`后还需自定义`TrainOneStepCell`,实现梯度计算时`sens`的个数和`network`的输出个数相同。具体可参考: ```python net = Net() loss_fn = MyLoss() loss_with_net = MyWithLossCell(net, loss_fn) train_net = MyTrainOneStepCell(loss_with_net, optim) model = Model(net=train_net, loss_fn=None, optimizer=None) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +MindSpore如何实现早停功能?,可以自定义`callback`方法实现早停功能。 例子: 当loss降到一定数值后,停止训练。 ```python class EarlyStop(Callback): def __init__(self, control_loss=1): super(EarlyStop, self).__init__() self._control_loss = control_loss def step_end(self, run_context): cb_params = run_context.original_args() loss = cb_params.net_outputs if loss.asnumpy() < self._control_loss: # Stop training run_context._stop_requested = True stop_cb = EarlyStop(control_loss=1) model.train(epoch_size, ds_train, callbacks=[stop_cb]) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +模型已经训练好,如何将模型的输出结果保存为文本或者`npy`的格式?,您好,我们网络的输出为`Tensor`,需要使用`asnumpy()`方法将`Tensor`转换为`numpy`,再进行下一步保存。具体可参考: ```python out = net(x) np.save("output.npy", out.asnumpy()) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +缓存服务器异常关闭如何处理?,缓存服务器使用过程中,会进行IPC共享内存和socket文件等系统资源的分配。若允许溢出,在磁盘空间还会存在溢出的数据文件。一般情况下,如果通过`cache_admin --stop`命令正常关闭服务器,这些资源将会被自动清理。 但如果缓存服务器被异常关闭,例如缓存服务进程被杀等,用户需要首先尝试重新启动服务器,若启动失败,则应该依照以下步骤手动清理系统资源: - 删除IPC资源。 1. 检查是否有IPC共享内存残留。 一般情况下,系统会为缓存服务分配4GB的共享内存。通过以下命令可以查看系统中的共享内存块使用情况。 ```text $ ipcs -m ------ Shared Memory Segments -------- key shmid owner perms bytes nattch status 0x61020024 15532037 root 666 4294967296 1 ``` 其中,`shmid`为共享内存块id,`bytes`为共享内存块的大小,`nattch`为链接到该共享内存块的进程数量。`nattch`不为0表示仍有进程使用该共享内存块。在删除共享内存前,需要停止使用该内存块的所有进程。 2. 删除IPC共享内存。 找到对应的共享内存id,并通过以下命令删除。 ```text ipcrm -m {shmid} ``` - 删除socket文件。 一般情况下,socket文件位于`/tmp/mindspore/cache`。进入文件夹,执行以下命令删除socket文件。 ```text rm cache_server_p{port_number} ``` 其中`port_number`为用户创建缓存服务器时指定的端口号,默认为50052。 - 删除溢出到磁盘空间的数据文件。 进入启用缓存服务器时指定的溢出数据路径。通常,默认溢出路径为`/tmp/mindspore/cache`。找到路径下对应的数据文件夹并逐一删除。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +通过Hub可以使用GPU加载`vgg16`模型以及是否可以做迁移模型吗?,请手动修改如下两处参数即可: ```python # 增加**kwargs参数: 如下 def vgg16(num_classes=1000, args=None, phase="train", **kwargs): ``````python # 增加**kwargs参数: 如下 net = Vgg(cfg['16'], num_classes=num_classes, args=args, batch_norm=args.batch_norm, phase=phase, **kwargs) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何得到VGG模型中间层特征?,你好,获取网络中间层的特征,其实跟具体框架没有太大关系了。`torchvison`里定义的`vgg`模型,可以通过`features`字段获取"中间层特征",`torchvison`的`vgg`源码如下: ```python class VGG(nn.Module): def __init__(self, features, num_classes=1000, init_weights=True): super(VGG, self).__init__() self.features = features self.avgpool = nn.AdaptiveAvgPool2d((7, 7)) ```在MindSpore的ModelZoo里定义的`vgg16`,可以通过`layers`字段获取,如下: ```python network = vgg16() print(network.layers) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用MindSpore进行模型训练时,`CTCLoss`的输入参数有四个: `inputs`, `labels_indices`, `labels_values`, `sequence_length`,如何使用`CTCLoss`进行训练?,定义的`model.train`接口里接收的`dataset`可以是多个数据组成,形如(`data1`, `data2`, `data3`, ...),所以`dataset`是可以包含`inputs`,`labels_indices`,`labels_values`,`sequence_length`的信息的。只需要定义好相应形式的`dataset`,传入`model.train`里就可以。具体的可以了解下相应的[数据处理接口](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset.html),https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +模型转移时如何把PyTorch的权重加载到MindSpore中?,首先输入PyTorch的`pth`文件,以`ResNet-18`为例,MindSpore的网络结构和PyTorch保持一致,转完之后可直接加载进网络,这边参数只用到`BN`和`Conv2D`,若有其他层`ms`和PyTorch名称不一致,需要同样的修改名称。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +MindSpore有哪些现成的推荐类或生成类网络或模型可用?,目前正在开发Wide & Deep、DeepFM、NCF等推荐类模型,NLP领域已经支持Bert_NEZHA,正在开发MASS等模型,用户可根据场景需要改造为生成类网络,可以关注[MindSpore ModelZoo](https://gitee.com/mindspore/models/blob/master/README_CN.md#)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何使用MindSpore拟合$f(x)=a \times sin(x)+b$这类函数?,以下拟合案例是基于MindSpore线性拟合官方案例改编而成。 ```python # The fitting function is: f(x)=2*sin(x)+3. import numpy as np from mindspore import dataset as ds from mindspore.common.initializer import Normal from mindspore import nn, Model, set_context, GRAPH_MODE from mindspore.train.callback import LossMonitor set_context(mode=GRAPH_MODE, device_target="CPU") def get_data(num, w=2.0, b=3.0): # f(x)=w * sin(x) + b # f(x)=2 * sin(x) +3 for i in range(num): x = np.random.uniform(-np.pi, np.pi) noise = np.random.normal(0, 1) y = w * np.sin(x) + b + noise yield np.array([np.sin(x)]).astype(np.float32), np.array([y]).astype(np.float32) def create_dataset(num_data, batch_size=16, repeat_size=1): input_data = ds.GeneratorDataset(list(get_data(num_data)), column_names=['data','label']) input_data = input_data.batch(batch_size) input_data = input_data.repeat(repeat_size) return input_data class LinearNet(nn.Cell): def __init__(self): super(LinearNet, self).__init__() self.fc = nn.Dense(1, 1, Normal(0.02), Normal(0.02)) def construct(self, x): x = self.fc(x) return x if __name__ == "__main__": num_data = 1600 batch_size = 16 repeat_size = 1 lr = 0.005 momentum = 0.9 net = LinearNet() net_loss = nn.loss.MSELoss() opt = nn.Momentum(net.trainable_params(), lr, momentum) model = Model(net, net_loss, opt) ds_train = create_dataset(num_data, batch_size=batch_size, repeat_size=repeat_size) model.train(1, ds_train, callbacks=LossMonitor(), dataset_sink_mode=False) print(net.trainable_params()[0], "\n%s" % net.trainable_params()[1]) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何使用MindSpore拟合$f(x)=ax^2+bx+c$这类的二次函数?,以下代码引用自MindSpore的官方教程的[代码仓](https://gitee.com/mindspore/docs/blob/master/docs/sample_code/linear_regression.py) 在以下几处修改即可很好的拟合$f(x)=ax^2+bx+c$: 1. 数据集生成。 2. 拟合网络。 3. 优化器。 修改的详细信息如下,附带解释。 ```python # Since the selected optimizer does not support CPU, so the training computing platform is changed to GPU, which requires readers to install the corresponding GPU version of MindSpore. context.set_context(mode=context.GRAPH_MODE, device_target="GPU") # Assuming that the function to be fitted this time is f(x)=2x^2+3x+4, the data generation function is modified as follows: def get_data(num, a=2.0, b=3.0 ,c = 4): for i in range(num): x = np.random.uniform(-10.0, 10.0) noise = np.random.normal(0, 1) # The y value is generated by the fitting target function ax^2+bx+c. y = x * x * a + x * b + c + noise # When a*x^2+b*x+c is fitted, a and b are weight parameters and c is offset parameter bias. The training data corresponding to the two weights are x^2 and x respectively, so the dataset generation mode is changed as follows: yield np.array([x*x, x]).astype(np.float32), np.array([y]).astype(np.float32) def create_dataset(num_data, batch_size=16, repeat_size=1): input_data = ds.GeneratorDataset(list(get_data(num_data)), column_names=['data','label']) input_data = input_data.batch(batch_size) input_data = input_data.repeat(repeat_size) return input_data class LinearNet(nn.Cell): def __init__(self): super(LinearNet, self).__init__() # Because the full join function inputs two training parameters, the input value is changed to 2, the first Nomral(0.02) will automatically assign random weights to the input two parameters, and the second Normal is the random bias. self.fc = nn.Dense(2, 1, Normal(0.02), Normal(0.02)) def construct(self, x): x = self.fc(x) return x if __name__ == "__main__": num_data = 1600 batch_size = 16 repeat_size = 1 lr = 0.005 momentum = 0.9 net = LinearNet() net_loss = nn.loss.MSELoss() # RMSProp optimalizer with better effect is selected for quadratic function fitting, Currently, Ascend and GPU computing platforms are supported. opt = nn.RMSProp(net.trainable_params(), learning_rate=0.1) model = Model(net, net_loss, opt) ds_train = create_dataset(num_data, batch_size=batch_size, repeat_size=repeat_size) model.train(1, ds_train, callbacks=LossMonitor(), dataset_sink_mode=False) print(net.trainable_params()[0], "\n%s" % net.trainable_params()[1]) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +`mindspore/tests`下怎样执行单个`ut`用例?,`ut`用例通常需要基于debug版本的MindSpore包,官网并没有提供。可以基于源码使用`sh build.sh`编译,然后通过`pytest`指令执行,debug模式编包不依赖后端。编译选项`sh build.sh -t on`,用例执行可以参考`tests/runtest.sh`脚本。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +在Ascend平台上,执行用例有时候会报错`run task error`,如何获取更详细的日志帮助问题定位?,使用msnpureport工具设置device侧日志级别,工具位置在: `/usr/local/Ascend/latest/driver/tools/msnpureport`。 - 全局级别: ```bash /usr/local/Ascend/latest/driver/tools/msnpureport -g info ```- 模块级别: ```bash /usr/local/Ascend/latest/driver/tools/msnpureport -m SLOG:error ````- Event级别: ```bash /usr/local/Ascend/latest/driver/tools/msnpureport -e disable/enable ```- 多device id级别: ```bash /usr/local/Ascend/latest/driver/tools/msnpureport -d 1 -g warning ```假设deviceID的取值范围是[0-7],`device0`-`device3`和`device4`-`device7`分别在一个os上。其中`device0`-`device3`共用一个日志配置文件;`device4`-`device7`共用一个配置文件。如果修改了`device0`-`device3`中的任意一个日志级别,其他`device`的日志级别也会被修改。如果修改了`device4`-`device7`中的任意一个日志级别,其他device的日志级别也会被修改。 `Driver`包安装以后(假设安装路径为/usr/local/HiAI,在Windows环境下,`msnpureport.exe`执行文件在C:\ProgramFiles\Huawei\Ascend\Driver\tools\目录下),假设用户在/home/shihangbo/目录下直接执行命令行,则Device侧日志被导出到当前目录下,并以时间戳命名文件夹进行存放。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用Ascend平台执行训练过程,出现报错: `Out of Memory!!! total[3212254720] (dynamic[0] memory poll[524288000]) malloc[32611480064] failed!` 如何解决?,此问题属于内存占用过多导致的内存不够问题,可能原因有两种: - `batch_size`的值设置过大。解决办法: 将`batch_size`的值设置减小。 - 引入了异常大的`Parameter`,例如单个数据shape为[640,1024,80,81],数据类型为float32,单个数据大小超过15G,这样差不多大小的两个数据相加时,占用内存超过3*15G,容易造成`Out of Memory`。解决办法: 检查参数的`shape`,如果异常过大,减少shape。 - 如果以上操作还是未能解决,可以上[官方论坛](https://bbs.huaweicloud.com/forum/forum-1076-1.html)发帖提出问题,将会有专门的技术人员帮助解决。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +如何在训练神经网络过程中对计算损失的超参数进行改变?,您好,很抱歉暂时还未有这样的功能。目前只能通过训练-->重新定义优化器-->训练,这样的过程寻找较优的超参数。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +运行应用时报错`error while loading shared libraries: libge_compiler.so: cannot open shared object file: No such file or directory`怎么办?,安装MindSpore所依赖的Ascend 310 AI处理器配套软件包时,`CANN`包不能安装`nnrt`版本,而是需要安装功能完整的`toolkit`版本。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +MindSpore代码里面的model_zoo/official/cv/resnet/train.py中context.set_ps_context(enable_ps=True)为什么一定要在init之前设置,MindSpore Ascend模式下,如果先调用init,那么会为所有的进程都分配卡,但是parameter server训练模式下server是不需要分配卡的,那么worker和server就会去使用同一块卡,导致会报错: HCCL dependent tsd is not open。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +在CPU ARM平台上进行resnet50训练,内存持续增长怎么办?,在CPU ARM上进行resnet50训练时,部分算子的实现是基于oneDNN库,oneDNN库中是基于libgomp库实现多线程并行,当前libgomp存在多个并行域配置的线程数不同时有内存占用持续增长的问题。可通过全局配置统一的线程数来控制内存的持续增长。再综合性能上的考虑,建议统一配置为物理核数的1/4,比如`export OMP_NUM_THREADS=32`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +为什么在Ascend平台执行模型时报流超限的错误?,流表示一个操作队列,同一条流上的任务按序串行执行,不同流之间可以并行执行。网络中的各种操作会生成Task并被分配到流上,以控制任务执行的并发方式。由于Ascend平台对同一条流上的的任务数存在限制,超限的任务会分配新流,且MindSpore框架的多种并行方式也会分配新流,例如通信算子并行,因此当分配流的数目超过Ascend平台的资源限制就会报流超限的错误。参考解决方案: - 减小网络模型规模 - 减少网络中通信算子的使用 - 减少网络中的条件控制语句,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +在Ascend平台上,日志中出现报错“Ascend error occurred, error message:”且跟随了一个错误码,如“E40011”,如何查找出现错误码的原因?,当出现“Ascend error occurred, error message:”时,说明昇腾CANN相关模块出现异常,上报了错误日志。 此时错误码后有异常的错误信息。如果需要该异常更详细的可能原因和处理方法,请参考对应昇腾版本文档的《Error Code故障处理》部分,如[昇腾CANN社区版(5.0.3 alpha 002)(训练) Error Code故障处理](https://support.huaweicloud.com/trouble-cann503alpha2training/atlaspd_15_0001.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +训练nlp类网络,当使用第三方组件gensim时,可能会报错: ValueError,如何解决?,以下为报错信息: ```bash >>> import gensim Traceback (most recent call last): File "", line 1, in File "/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/__init__.py", line 11, in from gensim import parsing, corpora, matutils, interfaces, models, similarities, utils # noqa:F401 File "/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/corpora/__init__.py", line 6, in from .indexedcorpus import IndexedCorpus # noqa:F401 must appear before the other classes File "/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/corpora/indexedcorpus.py", line 14, in from gensim import interfaces, utils File "/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/interfaces.py", line 19, in from gensim import utils, matutils File "/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/matutils.py", line 1024, in from gensim._matutils import logsumexp, mean_absolute_difference, dirichlet_expectation File "gensim/_matutils.pyx", line 1, in init gensim._matutils ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 88 from C header, got 80 from PyObject ```报错原因请参考[gensim](https://github.com/RaRe-Technologies/gensim/issues/3095)官网,或者[numpy](https://github.com/numpy/numpy/issues/18709)官网: 解决方案: 方法一: 重新安装numpy及gensim, 执行命令: `pip uninstall gensim numpy -y && pip install numpy gensim` ; 方法二: 如果还是有问题,请删除wheel安装包的缓存文件,然后执行方法一(wheel安装包缓存目录为: `~/.cache/pip/wheels`)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +运行文档示例代码的过程中,遇到`matplotlib.pyplot.show()`或`plt.show()`无法执行怎么处理?,首先确认是否安装`matplotlib`,如果没有安装,可以在命令行中执行`pip install matplotlib`进行安装。 其次由于`matplotlib.pyplot.show()`的作用是以图形化方式展示,所以需要运行系统支持图形展示功能,如果系统不能支持图形展示,需要将该 图形展示的命令行注释后再运行,不影响整体代码的运行结果。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +使用文档中提供的在线运行时,遇到运行失败该如何处理?,需要确认有做以下准备工作。 - 首先,需要通过华为云账号登录ModelArts。 - 其次,注意教程文档的标签中列举的硬件环境,以及样例代码中配置的硬件环境,是Ascend、GPU还是CPU,由于登录后默认使用的硬件环境是CPU,Ascend环境和GPU环境需要用户手动点击切换。 - 最后,确保当前`Kernel`为MindSpore。 完成上述步骤后,就可以运行文档了。 具体的操作过程可以参考[基于ModelArts在线体验MindSpore](https://bbs.huaweicloud.com/forum/thread-168982-1-1.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +静态图下使用除法结果未报错,动态图下使用除法结果却报错?,在静态图模式下,由于使用的是静态编译,对于算子输出结果的数据类型是在图编译阶段确定的。 例如如下代码在静态图模式下执行,输入数据的类型都为int类型,根据静态图编译,其输出结果也是int类型。 ```python from mindspore import set_context, GRAPH_MODE from mindspore import nn set_context(mode=GRAPH_MODE, device_target="CPU") class MyTest(nn.Cell): def __init__(self): super(MyTest, self).__init__() def construct(self, x, y): return x / y x = 16 y = 4 net = MyTest() output = net(x, y) print(output, type(output)) ```输出结果: ```text 4 ```修改执行模式,将GRAPH_MODE修改成PYNATIVE_MODE,由于在动态图模式下使用的Python语法执行,Python语法对任意除法输出的类型都是float类型,因此执行结果如下: ```text 4.0 ```因此在后续算子明确需要使用int的场景下,建议使用Python的整除符号`//`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/implement_problem.html,FAQ,执行问题|FAQ, +在Ascend310硬件平台安装了MindSpore1.3版本,运行mindspore_serving中的`add_model.py`样例出现报错?,Ascend310上支持模型导出、Serving推理,但是不支持MindSpore前端Python脚本直接推理,`add`样例中导出模型多了MindSpore前端Python脚本直接推理的代码,在Ascend310场景注释掉即可。 ```python def export_net(): """Export add net of 2x2 + 2x2, and copy output model `tensor_add.mindir` to directory ../add/1""" x = np.ones([2, 2]).astype(np.float32) y = np.ones([2, 2]).astype(np.float32) add = Net() # MindSpore前端Python脚本直接推理,310注释掉 # output = add(ms.Tensor(x), ms.Tensor(y)) ms.export(add, ms.Tensor(x), ms.Tensor(y), file_name='tensor_add', file_format='MINDIR') dst_dir = '../add/1' try: os.mkdir(dst_dir) except OSError: pass dst_file = os.path.join(dst_dir, 'tensor_add.mindir') copyfile('tensor_add.mindir', dst_file) print("copy tensor_add.mindir to " + dst_dir + " success") print(x) print(y) # print(output.asnumpy())。 ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +编译应用时报错`/usr/bin/ld: warning: libxxx.so, needed by libmindspore.so, not found`怎么办?,寻找缺少的动态库文件所在目录,添加该路径到环境变量`LD_LIBRARY_PATH`中,环境变量设置参考[Ascend 310 AI处理器上使用MindIR模型进行推理#编译推理代码](https://www.mindspore.cn/tutorials/experts/zh-CN/master/infer/ascend_310_mindir.html#编译推理代码)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +运行应用时报错`error while loading shared libraries: libge_compiler.so: cannot open shared object file: No such file or directory`怎么办?,安装MindSpore所依赖的Ascend 310 AI处理器配套软件包时,`CANN`包不能安装`nnrt`版本,而是需要安装功能完整的`toolkit`版本。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +使用昇腾310进行推理的时候怎么设置高精度或者高性能模式?,在推理代码中通过Ascend310DeviceInfo中的SetPrecisionMode接口进行设置,可选:force_fp16、allow_fp32_to_fp16、must_keep_origin_dtype,allow_mix_precision。默认值为force_fp16,指的就是高性能模式。高精度模式可设置为allow_fp32_to_fp16或must_keep_origin_dtype。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +AIPP文件怎么配置?,AIPP(Artificial Intelligence Pre-Processing)AI预处理,用于在AI Core上完成图像预处理,包括改变图像尺寸、色域转换(转换图像格式)、减均值/乘系数(改变图像像素),数据处理之后再进行真正的模型推理。相关的配置介绍比较复杂,可以参考[ATC工具的AIPP使能章节](https://support.huaweicloud.com/atctool-cann502alpha3infer/atlasatc_16_0015.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +怎么设置昇腾310推理过程中的日志级别?,通过ASCEND_GLOBAL_LOG_LEVEL来设置,0:DEBUG级别;1:INFO级别;2:WARNING级别;3:ERROR级别;4:NULL级别,不输出日志;其他值为非法值。配置示例:export ASCEND_GLOBAL_LOG_LEVEL=1。如果推理过程中出现错误可通过修改日志级别来获取更详细的日志信息。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/inference.html,FAQ,推理|FAQ, +安装MindSpore版本: GPU、CUDA 10.1、0.5.0-beta,出现问题: `cannot open shared object file:No such file or directory`。,从报错情况来看,是cuBLAS库没有找到。一般的情况下是cuBLAS库没有安装,或者是因为没有加入到环境变量中去。通常cuBLAS是随着CUDA以及驱动一起安装的,确认安装后把cuBLAS所在的目录加入`LD_LIBRARY_PATH`环境变量中即可。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用pip安装时报错: `ERROR: mindspore_{VERSION}.whl is not a supported wheel on this platform`应该怎么办?,pip会通过wheel安装包的文件名来判断该安装包是否与当前Python环境兼容,例如安装mindspore_ascend-1.2.0-cp37-cp37m-linux_aarch64.whl时,pip会检查: 1. 当前python环境为3.7.x版本 2. 当前操作系统为Linux 3. 操作系统架构为arm64 因此,如果出现 `is not a supported wheel on this platform` 问题,请检查当前环境是否满足MindSpore安装要求,以及该MindSpore安装包版本是否正确。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +macOS系统源码编译后使用pip安装报错: `ERROR: mindspore-{VERSION}.whl is not a supported wheel on this platform`应该怎么办?,首先检查output目录下编译得到的安装包名,类似mindspore-1.6.0-cp37-cp37m-macosx_11_1_x84_64.whl。包名中“11_1”的意思是编译时使用的SDK版本是11.1。如果使用的SDK版本为11.x,则可能是因为编译时使用的SDK版本过高导致无法安装。 解决方法一:可以重命名安装包后再尝试安装,例如将上述安装包重命名为mindspore-1.6.0-cp37-cp37m-macosx_10_15_x84_64.whl。 解决方法二:在源码编译前,设置环境变量`MACOSX_DEPOLYMENT_TARGET`为`10.15`并重新编译。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +arm64架构的macOS系统使用pip安装SciPy依赖库时报错,应该怎么办?,SciPy当前没有对应macOS系统arm64架构的whl包,可以使用第三方编译的whl包进行安装。执行如下命令先安装SciPy,再重新安装MindSpore。 ```bash pip install --pre -i https://pypi.anaconda.org/scipy-wheels-nightly/simple scipy ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用pip安装时报错: `SSL:CERTIFICATE_VERIFY_FATLED`应该怎么办?,在pip安装命令后添加参数 `--trusted-host=ms-release.obs.cn-north-4.myhuaweicloud.com`重试即可。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore对Protobuf版本是否有特别要求?,MindSpore默认安装Protobuf的3.13.0版本,如果不是该版本,在使用pytest测试代码时日志中会产生很多告警,建议您使用命令`pip install protobuf==3.13.0`重新安装3.13.0版本。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用pip安装时报错`ProxyError(Cannot connect to proxy)`,应该怎么办?,此问题一般是代理配置问题,Ubuntu环境下可通过`export http_proxy={your_proxy}`设置代理;Windows环境可以在cmd中通过`set http_proxy={your_proxy}`进行代理设置。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用pip安装时提示错误,应该怎么办?,请执行`pip -V`查看是否绑定了Python3.7+。如果绑定的版本不对,建议使用`python3.7 -m pip install`代替`pip install`命令。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用pip安装依赖库时提示`No matching distribution found for XXX`错误,应该怎么办?,请执行`pip config list`,查看当前软件库索引路径`index-url`。某些情况下,软件库索引会出现更新滞后,可尝试设置其它软件库索引路径。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore网站安装页面找不到MindInsight和MindArmour的whl包,无法安装怎么办?,您可以从[MindSpore网站下载地址](https://www.mindspore.cn/versions)下载whl包,通过`pip install`命令进行安装。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore是否支持Nvidia GPU独立显卡+Windows操作系统的个人电脑?,目前MindSpore支持的情况是GPU+Linux与CPU+Windows的组合配置,Windows+GPU的支持还在开发中。 如果希望在GPU+Windows的环境上运行,可以尝试使用WSL+docker的方式,操作思路: 1. 以WSL方式安装起Ubuntu18.04,参考。 2. 安装支持WSL的Nvidia驱动以及在WSL运行容器的环境部署,参考。 > 由于CUDA on WSL还是预览特性,注意参考链接里对Windows版本要求的说明,版本不够的需要做升级。 3. 参考,取MindSpore-GPU镜像。如取MindSpore1.0.0版本容器,在WSL Ubuntu18.04中执行`docker pull mindspore/mindspore-gpu:1.0.0`运行容器: ```docker docker run -it --runtime=nvidia mindspore/mindspore-gpu:1.0.0 /bin/bash ```详细步骤可以参考社区提供的实践[张小白教你安装Windows10的GPU驱动(CUDA和cuDNN)](https://bbs.huaweicloud.com/blogs/212446)。 在此感谢社区成员[张辉](https://bbs.huaweicloud.com/community/usersnew/id_1552550689252345)的分享。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +Ascend硬件平台,在个人的Conda环境中,有时候出现报错RuntimeError: json.exception.parse_error.101 parse error at line 1, column 1: syntax error while parsing value - invalid literal; last read: 'T',该怎么处理?,出现这种类型的报错,大概率是run包更新后个人的Conda环境中没有更新te或topi或hccl工具包,可以将当前Conda环境中的上述几个工具包卸载,然后使用如下命令再重新安装: `pip install /usr/local/Ascend/ascend-toolkit/latest/fwkacllib/lib64/{te/topi/hccl}-{version}-py3-none-any.whl`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +pip同时安装MindSpore CPU和GPU版本,import时报错 `cannot import name 'context' from 'mindspore'`,应该怎么办?,MindSpore不同版本的安装目录名同为`mindspore`,安装在同一个Python环境可能产生目录相互覆盖问题,导致无法使用,如果需要使用多平台版本的MindSpore时(例如同时使用CPU和GPU版本),请先卸载其他版本再安装新版本。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +在ARM架构的环境上使用pip安装MindSpore时报错: `Could not find a version that satisfies the requirement`应该怎么办?,大概率是因为pip版本低于19.3,无法识别`manylinux2014`标签,导致pip install阶段下载了错误版本的`numpy`或`scipy`等python软件包,进而引发了无法找到构建依赖的问题,请执行`pip install --upgrade pip`将环境中的pip升级到19.3以上,重新安装MindSpore。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +pip安装MindSpore时,报错 `Running setup.py install for pillow: finished with status 'error' ... The headers or library files could not be found for jpeg, ...`,应该怎么办?,MindSpore依赖三方库`pillow`进行部分的数据处理操作,而`pillow`需要依赖环境上已经安装`libjpeg`库,以Ubuntu环境为例,可以使用`sudo apt-get install libjpeg8-dev`来安装`libjpeg`库,然后再安装MindSpore。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译时`bash -p`方式和 `bash -e`方式的区别?,MindSpore Serving的编译和运行依赖MindSpore,Serving提供两种编译方式: 一种指定已安装的MindSpore路径,即`bash -p {python site-packages}/mindspore/lib`,避免编译Serving时再编译MindSpore;另一种,编译Serving时,编译配套的MindSpore,Serving会将`-e`、`-V`和`-j`选项透传给MindSpore。 比如,在Serving目录下,`bash -e ascend -V 910 -j32`: - 首先将会以`bash -e ascend -V 910 -j32`方式编译`third_party/mindspore`目录下的MindSpore; - 其次,编译脚本将MindSpore编译结果作为Serving的编译依赖。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +在Linux中已经安装了交叉编译工具,但是编译命令要怎么写呢?,arm64版本编译: `bash build.sh -I arm64`;arm32版本编译: `bash build.sh -I arm32`;注意要先设置环境变量,指定Android NDK路径: `export ANDROID_NDK=/path/to/android-ndk`,编译成功后,在output目录可以找到编译出的包。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore安装: 版本0.6.0-beta + Ascend 910 + Ubuntu_aarch64 + Python3.7.5,手动下载对应版本的whl包,编译并安装gmp6.1.2。其他Python库依赖已经安装完成,执行样例失败,报错显示找不到so文件。,`libdatatransfer.so`动态库是`fwkacllib/lib64`目录下的,请先在`/usr/local`目录查找到这个库所在的路径,然后把这个路径加到`LD_LIBRARY_PATH`环境变量中,确认设置生效后,再执行。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +源码编译MindSpore过程时间过长,或时常中断该怎么办?,MindSpore通过submodule机制引入第三方依赖包,其中`Protobuf`依赖包(v3.13.0)下载速度不稳定,建议您提前进行包缓存。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +如何改变第三方依赖库安装路径?,第三方依赖库的包默认安装在build/mindspore/.mslib目录下,可以设置环境变量MSLIBS_CACHE_PATH来改变安装目录,比如 `export MSLIBS_CACHE_PATH = ~/.mslib`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore要求的配套软件版本与Ubuntu默认版本不一致怎么办?,当前MindSpore只提供版本配套关系,需要您手动进行配套软件的安装升级。(**注明**: MindSpore要求Python3.7.5和gcc7.3,Ubuntu 16.04默认为Python3.5和gcc5,Ubuntu 18.04默认自带Python3.7.3和gcc7.4)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +执行用例报错`No module named 'mindpore.version'`,应该怎么办?,当有这种报错时,有可能是在创建了和MindSpore安装包相同名字的路径中执行用例,导致Python导入包的时候优先找到了当前目录下,而当前目录没有version.py这个文件。解决方法就是目录重命名或者向上退出一级或者多级目录。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +源码编译时,报错`MD5 does not match`,应该怎么办?,这种报错可能是在编译的时候由于网络问题导致一些第三方库下载中断,之后重新编译的时候,该文件已经存在但是不完整,在校验MD5的时候失败。解决方法是: 删除.mslib缓存路径中的相关第三方库,然后重新编译。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +环境上安装了Python3.7.5,环境变量设置正确,编译MindSpore时仍然报错`Python3 not found`,应该怎么办?,可能是因为当前环境上的Python未包含动态库。编译MindSpore需要动态链接Python库,因此需要使用开启动态库编译选项的Python3.7.5,即在源码编译Python时使用`./configure --enable-shared`命令。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译失败后,应该清理哪些路径以确保上次失败的编译结果不会影响到下一次编译?,在编译MindSpore时,如果: 1. 第三方组件下载或编译失败,例如icu4c的patch动作失败返回错误信息`Cmake Error at cmake/utils.cmake:301 (message): Failed patch:`,则进入编译目录下的`build/mindspore/.mslib`目录,或由`MSLIBS_CACHE_PATH`环境变量指定的第三方软件安装目录,并删除其中的对应软件。 2. 其他阶段编译失败,或打算删除上一次编译结果,完全重新编译时,直接删除`build`目录即可。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译时报错,打开CMakeError.txt提示pthread找不到怎么办?,真正的失败原因会体现在打屏的日志里,CMakeError.txt无参考价值,请寻找打屏日志中的第一个报错。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译成功后,运行时报错`undefined reference to XXXX`或`undefined symbol XXXX`怎么办?,可能的原因有: 1. 如果问题是`git pull`更新代码后出现,请删除掉`build`文件夹,排除前次构建的影响。 2. 如果问题是修改代码后出现,可以使用`c++filt XXXX`查看该符号的意义,有可能是函数未实现、虚函数未实现、依赖未链接等原因引起。 3. 如果问题发生在Ascend平台,排除上述原因后,很可能是由于MindSpore版本与CANN版本不匹配引起的,版本匹配关系参考[安装说明](https://www.mindspore.cn/install)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +如何卸载MindSpore?,首先请确定MindSpore的全称,例如gpu版本的MindSpore,可以执行命令`pip uninstall mindspore-gpu`进行卸载。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +一些常用的环境变量设置,在新启动的终端窗口中需要重新设置,容易忘记应该怎么办?,常用的环境变量设置写入到`~/.bash_profile` 或 `~/.bashrc`中,可让环境变量设置在新启动的终端窗口中立即生效。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +使用GPU版本MindSpore时,如何设置`DEVICE_ID`环境变量,MindSpore GPU模式一般无需设置`DEVICE_ID`环境变量,MindSpore会根据cuda环境变量`CUDA_VISIBLE_DEVICES`,自动选择可见的GPU设备。设置`CUDA_VISIBLE_DEVICES`环境变量后,则`DEVICE_ID`环境变量代表可见GPU设备的下标: - 执行`export CUDA_VISIBLE_DEVICES=1,3,5`后,`DEVICE_ID`应当被设置为`0`,`1`或`2`,若设置为`3`及以上,MindSpore会由于设备ID不合法而运行失败。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译应用时报错`/usr/bin/ld: warning: libxxx.so, needed by libmindspore.so, not found`怎么办?,寻找缺少的动态库文件所在目录,添加该路径到环境变量`LD_LIBRARY_PATH`中,环境变量设置参考[Ascend 310 AI处理器上使用MindIR模型进行推理#编译推理代码](https://www.mindspore.cn/tutorials/experts/zh-CN/master/infer/ascend_310_mindir.html#编译推理代码)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +运行应用时出现`ModuleNotFoundError: No module named 'te'`怎么办?,首先确认环境安装是否正确,`te`、`topi`等whl包是否正确安装。如果用户环境中有多个Python版本,如Conda虚拟环境中,需`ldd name_of_your_executable_app`确认应用所链接的`libpython3.so`是否与当前Python路径一致,如果不一致需要调整环境变量`LD_LIBRARY_PATH`顺序,例如 ```bash export LD_LIBRARY_PATH=`python -c "import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))"`:$LD_LIBRARY_PATH ```将当前的`python`命令对应程序的运行库路径加入到`LD_LIBRARY_PATH`的最前面。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +运行应用时出现`error while loading shared libraries: libpython3.so: cannot open shared object file: No such file or directory`怎么办?,该报错通常出现在装有多个Python版本的环境中,首先确认Python的`lib`目录是否在环境变量`LD_LIBRARY_PATH`中,可执行以下命令进行设置: ```bash export LD_LIBRARY_PATH=`python -c "import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))"`:$LD_LIBRARY_PATH ```另外如果在Conda虚拟环境中,Python 3.7.6以下版本不含该动态库,可以执行命令升级Conda中Python的版本,如:`conda install python=3.7.11`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +Ascend AI处理器配套软件包与其他依赖软件已安装,但是执行MindSpore时提示`Cannot open shared objectfile: No such file or directory`该怎么办?,常见原因有两种: Ascend AI处理器配套软件包或固件/驱动包版本不正确,或没有安装在默认位置且未配置相应的环境变量。 1. 打开Ascend AI处理器配套软件包安装目录,默认`/usr/local/Ascend`下,各个子目录中的`version.info`文件,观察其版本号是否与当前使用的MindSpore版本一直,参照[安装页面](https://www.mindspore.cn/install/)中关于Ascend AI处理器配套软件包版本的描述。如果版本不配套,请更换软件包或MindSpore版本。 2. 检查Ascend AI处理器配套软件包与其他依赖软件是否安装在默认位置,MindSpore会尝试从默认安装位置`/usr/local/Ascend`自动加载,如果将Ascend软件包安装在自定义位置,请参照[安装页面](https://www.mindspore.cn/install/)页面的安装指南一栏设置环境变量。如果将其他依赖软件安装在自定义位置,请根据其位置关系设置`LD_LIBRARY_PATH`环境变量。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +MindSpore的GPU版本对设备的计算能力有限制吗?,目前MindSpore仅支持计算能力大于5.3的设备。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +个人电脑CPU环境安装MindSpore后验证代码时报错: `the pointer[session] is null`,具体代码如下,该如何验证是否安装成功呢?,```python import numpy as np from mindspore import Tensor, set_context import mindspore.ops as ops set_context(device_target="Ascend") x = Tensor(np.ones([1,3,3,4]).astype(np.float32)) y = Tensor(np.ones([1,3,3,4]).astype(np.float32)) print(ops.add(x,y)) ```验证安装是否成功,可以参照对应版本的安装指南页面中 `验证是否成功安装` 段落的描述: ```bash python -c "import mindspore;mindspore.run_check()" ```如果输出: ```text MindSpore version: 版本号 The result of multiplication calculation is correct, MindSpore has been installed successfully! ```说明MindSpore安装成功了。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +`Linux`平台下执行用例的时候会报错`sh:1:python:not found`或者由于链接到了Python2.7的版本中而报错`No module named mindspore._extends.remote`,该怎么处理?,遇到类似的问题,大多是由于Python的环境问题,可以通过如下方式检查Python环境是否是MindSpore运行时所需要的环境。 - 在终端窗口中输入`python`,检查以下进入Python交互环境中的版本信息,如果直接报错则是没有Python的软连接;如果进入的是非Python3.7版本的环境,则当前Python环境不是MindSpore运行所需要的。 - 执行`sudo ln -sf /usr/bin/python3.7.x /usr/bin/python`创建Python的软连接,然后再检查执行。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +在脚本中`import mindspore`之前import了其他三方库,提示如下错误(`/{your_path}/libgomp.so.1: cannot allocate memory in static TLS block`)该怎么解决?,上述问题较为常见,当前有两种可行的解决方法,可任选其一: - 交换import的顺序,先`import mindspore`再import其他三方库。 - 执行程序之前先添加环境变量(`export LD_PRELOAD=/{your_path}/libgomp.so.1`),其中`{your_path}`是上述报错提示的路径。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +mindspore和gmp都已经通过源码编译安装后,在脚本中执行`import mindspore`, 提示如下错误(`ImportError: libgmpxx.so: cannot open shared object file: No such file or directory`)该怎么解决?,上述问题的原因是在编译安装gmp库的时候没有设置`--enable-cxx`,正确的gmp编译安装方式如下(假设已经下载了gmp6.1.2安装包): ```bash $cd gmp-6.1.2 $./configure --enable-cxx $make $make check $sudo make install ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +运行MindSpore时出现告警 `UserWarning: The value of the smallest subnormal for type is zero.` 应该怎么解决?,上述问题出现在安装了较新版本的numpy(>=1.22.0)版本的ARM python3.9环境上。告警来自numpy而非MindSpore。如果告警影响到了代码的正常调测,可以考虑手动安装较低版本的numpy(<=1.21.2)来规避。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/installation.html,FAQ,安装|FAQ, +编译时报错“'self.xx' should be defined in the class '__init__' function.”怎么办?,如果在`construct`函数里,想对类成员`self.xx`赋值,那么`self.xx`必须已经在`__init__`函数中被定义为[Parameter]()类型,其他类型则不支持。局部变量`xx`不受这个限制。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“This comparator 'AnyValue' is not supported. For statement 'is', only support compare with 'None', 'False' or 'True'”怎么办?,对于语法`is` 或 `is not`而言,当前`MindSpore`仅支持与`True`、`False`和`None`的比较。暂不支持其他类型,如字符串等。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“MindSpore does not support comparison with operators more than one now, ops size =2”怎么办?,对于比较语句,`MindSpore`最多支持一个操作数。例如不支持语句`1 < x < 3`,请使用`1 < x and x < 3`的方式代替。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“TypeError: The function construct need 1 positional argument and 0 default argument, but provided 2”怎么办?,网络的实例被调用时,会执行`construct`方法,然后会检查`construct`方法需要的参数个数和实际传入的参数个数,如果不一致则会抛出以上异常。 请检查脚本中调用网络实例时传入的参数个数,和定义的网络中`construct`函数需要的参数个数是否一致。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“Type Join Failed”或“Shape Join Failed”怎么办?,在前端编译的推理阶段,会对节点的抽象类型(包含`type`、`shape`等)进行推导,常见抽象类型包括`AbstractScalar`、`AbstractTensor`、`AbstractFunction`、`AbstractTuple`、`AbstractList`等。在一些场景比如多分支场景,会对不同分支返回值的抽象类型进行`join`合并,推导出返回结果的抽象类型。如果抽象类型不匹配,或者`type`/`shape`不一致,则会抛出以上异常。 当出现类似“Type Join Failed: dtype1 = Float32, dtype2 = Float16”的报错时,说明数据类型不一致,导致抽象类型合并失败。根据提供的数据类型和代码行信息,可以快速定位出错范围。此外,报错信息中提供了具体的抽象类型信息、节点信息,可以通过`analyze_fail.dat`文件查看MindIR信息,定位解决问题。关于MindIR的具体介绍,可以参考[MindSpore IR(MindIR)](https://www.mindspore.cn/docs/zh-CN/master/design/mindir.html)。代码样例如下: ```python import numpy as np import mindspore as ms import mindspore.ops as ops from mindspore import nn, Tensor, set_context, GRAPH_MODE set_context(mode=GRAPH_MODE) class Net(nn.Cell): def __init__(self): super().__init__() self.relu = ops.ReLU() self.cast = ops.Cast() def construct(self, x, a, b): if a > b: # if的两个分支返回值的type不一致 return self.relu(x) # shape: (2, 3, 4, 5), dtype:Float32 else: return self.cast(self.relu(x), ms.float16) # shape: (2, 3, 4, 5), dtype:Float16 input_x = Tensor(np.random.rand(2, 3, 4, 5).astype(np.float32)) input_a = Tensor(2, ms.float32) input_b = Tensor(6, ms.float32) net = Net() out_me = net(input_x, input_a, input_b) ```执行结果如下: ```text TypeError: Cannot join the return values of different branches, perhaps you need to make them equal. Type Join Failed: dtype1 = Float32, dtype2 = Float16. For more details, please refer to the FAQ at https://www.mindspore.cn The abstract type of the return value of the current branch is AbstractTensor(shape: (2, 3, 4, 5), element: AbstractScalar(Type: Float16, Value: AnyValue, Shape: NoShape), value_ptr: 0x55b9f289d090, value: AnyValue), and that of the previous branch is AbstractTensor(shape: (2, 3, 4, 5), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x55b9f289d090, value: AnyValue). The node is construct.6:[CNode]13{[0]: construct.6:[CNode]12{[0]: ValueNode Switch, [1]: [CNode]11, [2]: ValueNode ✓construct.4, [3]: ValueNode ✗construct.5}}, true branch: ✓construct.4, false branch: ✗construct.5 The function call stack: In file test.py(14)/ if a > b: The function call stack (See file 'analyze_fail.dat' for more details): # 0 In file test.py(14) if a > b: ^ ```当出现类似“Shape Join Failed: shape1 = (2, 3, 4, 5), shape2 = ()”的报错时,说明`shape`不一致,导致抽象类型合并失败。代码样例如下: ```python import numpy as np import mindspore as ms import mindspore.ops as ops from mindspore import nn, Tensor, set_context, GRAPH_MODE set_context(mode=GRAPH_MODE) class Net(nn.Cell): def __init__(self): super().__init__() self.relu = ops.ReLU() self.reducesum = ops.ReduceSum() def construct(self, x, a, b): if a > b: # if的两个分支返回值的shape不一致 return self.relu(x) # shape: (2, 3, 4, 5), dtype:Float32 else: return self.reducesum(x) # shape:(), dype: Float32 input_x = Tensor(np.random.rand(2, 3, 4, 5).astype(np.float32)) input_a = Tensor(2, ms.float32) input_b = Tensor(6, ms.float32) net = Net() out = net(input_x, input_a, input_b) ``````text ValueError: Cannot join the return values of different branches, perhaps you need to make them equal. Shape Join Failed: shape1 = (2, 3, 4, 5), shape2 = (). For more details, please refer to the FAQ at https://www.mindspore.cn The abstract type of the return value of the current branch is AbstractTensor(shape: (), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x55658aa9b090, value: AnyValue), and that of the previous branch is AbstractTensor(shape: (2, 3, 4, 5), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x55658aa9b090, value: AnyValue). The node is construct.6:[CNode]13{[0]: construct.6:[CNode]12{[0]: ValueNode Switch, [1]: [CNode]11, [2]: ValueNode ✓construct.4, [3]: ValueNode ✗construct.5}}, true branch: ✓construct.4, false branch: ✗construct.5 The function call stack: In file test.py(14)/ if a > b: The function call stack (See file 'analyze_fail.dat' for more details): # 0 In file test.py(14) if a > b: ^ ```当出现如“Type Join Failed: abstract type AbstractTensor can not join with AbstractTuple”的报错时,说明抽象类型不匹配,导致抽象类型合并失败,代码样例如下: ```python import mindspore.ops as ops from mindspore import Tensor, ms_function x = Tensor([1.0]) y = Tensor([2.0]) grad = ops.GradOperation(get_by_list=False, sens_param=True) sens = 1.0 def test_net(a, b): return a, b @ms_function() def join_fail(): sens_i = ops.Fill()(ops.DType()(x), ops.Shape()(x), sens) # sens_i 是一个标量shape: (1), dtype:Float64, value:1.0 # sens_i = (sens_i, sens_i) a = grad(test_net)(x, y, sens_i) # 对输出类型为tuple(Tensor, Tensor)的test_net求梯度需要sens_i的类型同输出保持一致,但sens_i是个Tensor; 在grad前设置sens_i = (sens_i, sens_i)可以修复问题。 return a join_fail() ```执行结果如下: ```text TypeError: Type Join Failed: abstract type AbstractTensor cannot join with AbstractTuple. For more details, please refer to the FAQ at https://www.mindspore.cn. This: AbstractTensor(shape: (1), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x56458a351ad0, value: Tensor(shape=[1], dtype=Float32, value=[ 1.00000000e+00])), other: AbstractTuple{element[0]: AbstractTensor(shape: (1), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x564583e3fa90, value: Tensor(shape=[1], dtype=Float32, value=[ 1.00000000e+00])), element[1]: AbstractTensor(shape: (1), element: AbstractScalar(Type: Float32, Value: AnyValue, Shape: NoShape), value_ptr: 0x564583cb00b0, value: Tensor(shape=[1], dtype=Float32, value=[ 2.00000000e+00])), sequence_nodes: {test_net.3:[CNode]4{[0]: ValueNode MakeTuple, [1]: a, [2]: b}, elements_use_flags: {ptr: 0x5645cbc500c0, value: [const vector][1, 1]}}} The function call stack (See file 'analyze_fail.dat' for more details): # 0 In file test.py(16) a = grad(test_net)(x, y, sens_i) ^ ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“The params of function 'bprop' of Primitive or Cell requires the forward inputs as well as the 'out' and 'dout'”怎么办?,用户自定义的Cell的反向传播函数`bprop`,它的输入需要包含正向网络的输入,以及`out`和`dout`,例如: ```python class BpropUserDefinedNet(nn.Cell): def __init__(self): super(BpropUserDefinedNet, self).__init__() self.zeros_like = P.ZerosLike() def construct(self, x, y): return x + y def bprop(self, x, y, out, dout): return self.zeros_like(out), self.zeros_like(out) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“There isn't any branch that can be evaluated”怎么办?,当出现There isn't any branch that can be evaluated 时,说明代码中可能出现了无穷递归或者时死循环,导致if条件的每一个分支都无法推导出正确的类型和维度信息。 例如代码 ```python from mindspore import Tensor, ms_function, set_context, GRAPH_MODE from mindspore import dtype as mstype ZERO = Tensor([0], mstype.int32) ONE = Tensor([1], mstype.int32) @ms_function def f(x): y = ZERO if x < 0: y = f(x - 3) elif x < 3: y = x * f(x - 1) elif x < 5: y = x * f(x - 2) else: y = f(x - 4) z = y + 1 return z def test_endless(): set_context(mode=GRAPH_MODE) x = Tensor([5], mstype.int32) f(x) ```其中f(x)由于每一个if分支都没办法推导出正确的类型信息导致失败。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错"Exceed function call depth limit 1000"怎么办?,当出现Exceed function call depth limit 1000 时,说明代码中出现了无穷递归死循环,或者是代码过于复杂,类型推导过程中导致栈深度超过设置的最大深度。 此时可以通过设置context.set_context(max_call_depth = value)这样的方式更改栈的最大深度,并考虑简化代码逻辑或者检查代码中是否存在无穷递归或死循环。 此外设置max_call_depth = value 虽然可以改变MindSpore的递归深度,但是此时也可能会超过系统栈的最大深度而出现段错误。此时可能还需要设置将系统栈深度进行设置。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“could not get source code”以及“Mindspore can not compile temporary source code in terminal. Please write source code to a python file and run the file.”是什么原因?,MindSpore编译网络时通过`inspect.getsourcelines(self.fn)`获取网络代码所在的文件,如果网络是编辑在命令行中的临时代码,那么会出现如标题所示的报错,需要将网络写在Python文件中去执行才能避免该错误。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +报错提示中的“Corresponding forward node candidate:”或“Corresponding code candidate:”是什么意思?,“Corresponding forward node candidate:”为关联的正向网络中的代码,表示该反向传播算子与该正向代码对应。“Corresponding code candidate:”表示该算子是由这些代码融合而来,其中分符“-”用以区分不同的代码。 例如: - 算子FusionOp_BNTrainingUpdate_ReLUV2报错,打印了如下的代码行: ```text Corresponding code candidate: - In file /home/workspace/mindspore/build/package/mindspore/nn/layer/normalization.py(212)/ return self.bn_train(x,/ In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(265)/ x = self.bn1(x)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/ In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/ - In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(266)/ x = self.relu(x)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/ In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/ ``` 第一个分隔符的代码调用栈指向了网络脚本文件中第265行的“x = self.bn1(x)”,第二个分隔符的代码调用栈指向了网络脚本文件中第266行的“x = self.relu(x)”。可知,该算子FusionOp_BNTrainingUpdate_ReLUV2由这两行代码融合而来。 - 算子Conv2DBackpropFilter报错,打印了如下的代码行: ```text In file /home/workspace/mindspore/build/package/mindspore/ops/_grad/grad_nn_ops.py(65)/ dw = filter_grad(dout, x, w_shape)/ Corresponding forward node candidate: - In file /home/workspace/mindspore/build/package/mindspore/nn/layer/conv.py(266)/ output = self.conv2d(x, self.weight)/ In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(149)/ out = self.conv1(x)/ In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(195)/ x = self.a(x)/ In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(270)/ x = self.layer2(x)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/ In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/ In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/ ``` 第一行是该算子的相应源码,该算子是反向算子,故由MindSpore实现。第二行提示此算子有关联的正向节点,第四行则指向了网络脚本文件第149行的“out = self.conv1(x)”。综上可知,算子Conv2DBackpropFilter是一个反向算子,相应的正向节点是一个卷积算子。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +什么是“JIT Fallback”?编译时报错“Should not use Python object in runtime”怎么办?,JIT Fallback是从静态图的角度出发考虑静态图和动态图的统一,希望静态图模式能够尽量多的支持动态图模式的语法,其借鉴了传统JIT编译的fallback的思路。编译静态图时,如果遇到不支持的语法,将会记录相关语句并生成解释节点,在后续处理中将相关语句fallback到Python解释器进行解释执行,从而支持该语法。JIT Fallback的环境变量开关是`DEV_ENV_ENABLE_FALLBACK`,默认使用JIT Fallback。 当出现“Should not use Python object in runtime”和“We suppose all nodes generated by JIT Fallback would not return to outside of graph”的报错信息时,说明静态图模式代码中出现了错误使用语法,生成的解释节点在编译阶段无法正常解释执行,从而出现报错。当前JIT Fallback有条件地支持Graph模式的部分常量场景,同时需要符合MindSpore的编程语法,编写代码时请参考[静态图语法支持](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)。 例如,在调用第三方库NumPy时,JIT Fallback支持`np.add(x, y)`和`Tensor(np.add(x, y))`的语法,但MindSpore不支持NumPy类型的返回值,将会出现报错。代码样例如下: ```python import numpy as np import mindspore.nn as nn from mindspore import set_context, GRAPH_MODE set_context(mode=GRAPH_MODE) class Net(nn.Cell): def construct(self, x, y): out = np.add(x, y) return out net = Net() out = net(1, 1) ```执行结果如下: ```text RuntimeError: mindspore/ccsrc/pipeline/jit/validator.cc:139 ValidateValueNode] Should not use Python object in runtime, node: ValueNode InterpretedObject: '2' We suppose all nodes generated by JIT Fallback not return to outside of graph. # In file test.py(9) out = np.add(x, y) ^ ```出现JIT Fallback相关的报错时,请根据[静态图语法支持](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)以及报错代码行,重新检视代码语法并修改。如果需要关闭JIT Fallback,可以设置`export DEV_ENV_ENABLE_FALLBACK=0`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“Operator[AddN] input(kNumberTypeBool,kNumberTypeBool) output(kNumberTypeBool) is not support. This error means the current input type is not supported, please refer to the MindSpore doc for supported types.”怎么办?,MindSpore当前对数据类型为bool的Tensor[后续简称Tensor(bool)]支持能力较弱,仅有少量算子支持Tensor(bool)类型的数据参与运算。若在正向图中使用了支持Tensor(bool)类型的算子且正向图语法正确,由于反向图求解全导数会引入`AddN`,`AddN`不支持Tensor(bool)类型,反向图运行就会抛出该异常。 例如代码: ```python from mindspore import set_context, ops, ms_function, Tensor, dtype set_context(save_graphs=True, save_graphs_path='graph_path') @ms_function def test_logic(x, y): z = x and y return z and x x = Tensor(True, dtype.bool_) y = Tensor(True, dtype.bool_) grad = ops.GradOperation(get_all=True) grad_net = grad(test_logic) out = grad_net(x, y) ```上述代码正向处理可以用公式表示为:`r = f(z, x), z = z(x, y)` 对应的全导数公式为:`dr/dx = df/dz * dz/dx + df/dx`, 函数`f(z,x)`和`z(x,y)`均为逻辑运算符`and`; 正向图中的`and`算子支持Tensor(bool)类型,反向图求全导数时引入的`AddN`不支持Tensor(bool) 类型, 且该错误无法对应到具体的正向代码行。 执行结果如下: ```text Traceback (most recent call last): File "grad_fail.py", line 14, in out = grad_net(x, y) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py", line 307, in staging_specialize out = _MindsporeFunctionExecutor(func, ms_create_time, input_signature, process_obj)(*args) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py", line 79, in wrapper results = fn(*arg, **kwargs) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py", line 221, in __call__ phase = self.compile(args_list, arg_names, parse_method) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py", line 195, in compile self.enable_tuple_broaden) TypeError: mindspore/ccsrc/runtime/device/cpu/kernel_select_cpu.cc:235 KernelNotSupportException] Operator[AddN] input(kNumberTypeBool,kNumberTypeBool) output(kNumberTypeBool) is not support. This error means the current input type is not supported, please refer to the MindSpore doc for supported types. Trace: In file /usr/local/python3.7/lib/python3.7/site-packages/mindspore/ops/composite/multitype_ops/add_impl.py(287)/ return F.addn((x, y))/ ```若遇到这类问题请去除对Tensor(bool)类型的使用,本例中将Tensor(bool)替换为bool即可解决问题。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +编译时报错“Side Effect Invalid: found unsupported syntax in graph mode, those side effect codes would be ignored:”怎么办?,如果在`Cell.construct`或者`ms_function`函数以及其调用的子函数里,使用了副作用算子,则要求所在函数不能直接返回常量值,包括最终返回值经过推导是常量的情况。由于函数返回常量时,编译器会优先把常量值以外的操作优化掉,导致其它操作看起来无效。对于非副作用的算子操作,忽略掉一般不会影响最终结果的正确性。但是如果包含了副作用算子的操作,忽略掉副作用算子往往跟用户期望相左。因此,对于出现函数返回值为常量,同时又包含副作用算子操作的情况,编译器会抛出异常,提示用户代码执行有可能无法符合预期,需要调整代码实现。 例如代码: ```python from mindspore.nn import Cell class Demo(Cell): def __init__(self): super().__init__() def construct(self, x): print('print here...') y = x[1] y[1] = 9 return y x = [[1, 2, 3, 4], [5, 6, 7, 8]] net = Demo() output = net(x) print(output) ```上述代码`y`经过推导后是一个常量值,整个函数可以被优化为直接返回常量值。除此以外的操作全部被优化掉,包括`print('print here...')`也会在编译时被忽略掉。由于`print`算子是副作用算子,其行为被删除后不符合预期,因此编译器会抛出错误提示用户。 执行结果如下: ```text Traceback (most recent call last): File "test_print_op.py", line 20, in output = net(x) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py", line 586, in __call__ out = self.compile_and_run(*args) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py", line 964, in compile_and_run self.compile(*inputs) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py", line 937, in compile _cell_graph_executor.compile(self, *inputs, phase=self.phase, auto_parallel_mode=self._auto_parallel_mode) File "/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py", line 1086, in compile result = self._graph_executor.compile(obj, args_list, phase, self._use_vm_mode()) RuntimeError: mindspore/ccsrc/pipeline/jit/static_analysis/evaluator.cc:127 CheckSideEffectNodes] Side Effect Invalid: Found unsupported syntax in graph mode, those side effect codes would be ignored: ----- # No. 1: In file test_print_op.py(11) print('print here...') ^ ----- If a function return a const value or inferred const value, the side effect node would be ignored. So the codes may not run as the user's expectation, please fix it. In this case, the const value '[[1, 2, 3, 4], [5, 6, 7, 8]]' returns: In file test_print_op.py(10) def construct(self, a): ^ For more information about this issue, please refer to https://www.mindspore.cn/search?inputValue=Side%20Effect%20Invalid ```若遇到这类问题请去除副作用算子的调用,或者修改函数返回值不返回常量。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/network_compilation.html,FAQ,网络编译|FAQ, +在使用`ops.concat`算子时,因为数据规模有点大,导致报错`Error:Input and (output + workspace) num should <=192!`,可以怎么处理?,这种报错,主要为`ops.concat`算子提示`shape`过大。建议对`dataset`对象创建迭代器时可设置输出为`numpy`, 如下设置: ```python gallaryloader.create_dict_iterator(output_numpy=True) ```另外在上述后处理环节(非网络计算过程中,即非`construct`函数里面),可以采用`numpy`直接计算,如采用`numpy.concatenate`代替上述`ops.concat`进行计算。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +请问在静态图模式的`construct`函数里,如何把一个`tensor`中所含有的负数值全部去除掉?,建议使用`ops.clip_by_value`接口,把负数全变成0来进行计算。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +`TransData`算子的功能是什么,能否优化性能?,`TransData`算子出现的场景是: 如果网络中相互连接的算子使用的数据格式不一致(如NC1HWC0),框架就会自动插入`transdata`算子使其转换成一致的数据格式,然后再进行计算。 华为Ascend支持5D格式运算,通过`transdata`算子将数据由4D转为5D以提升性能。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +算子`Concat`拼接包含多个Tensor的元组出错,似乎传入的`tensor list`元素个数>=192就会报错。如果要`Concat`包含多个Tensor的元组,有什么较好的解决方案?,这个昇腾算子底层规格限制一次拼接的Tensor个数不能超过192个,可以尝试分开两次进行拼接。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +在使用`Conv2D`进行卷积定义的时候使用到了`group`的参数,`group`的值不是只需要保证可以被输入输出的维度整除即可了吗?`group`参数的传递方式是怎样的呢?,`Conv2D`算子是有这个约束条件的: 当`group`大于1 时,其值必须要与输入输出的通道数相等。不要使用`ops.Conv2D`,这个算子目前不支持`group`>1。目前MindSpore只有`nn.Conv2D`接口支持组卷积,但是有`group`要与输入输出的通道数相等的约束。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +MindSpore支持矩阵转置吗?,支持,请参考`mindspore.ops.Transpose`的[算子教程](https://www.mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html#mindspore.ops.Transpose)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +请问MindSpore能算给定任意一个`tensor`的方差吗?,mindspore目前暂无可以直接求出`tensor`方差的算子或接口。不过MindSpore有足够多的小算子可以支持用户实现这样的操作,你可以参考[class Moments(Cell)](https://www.mindspore.cn/docs/en/master/_modules/mindspore/nn/layer/math.html#Moments)来实现。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +`nn.Embedding`层与PyTorch相比缺少了`Padding`操作,有其余的算子可以实现吗?,在PyTorch中`padding_idx`的作用是将embedding矩阵中`padding_idx`位置的词向量置为0,并且反向传播时不会更新`padding_idx`位置的词向量。在MindSpore中,可以手动将embedding的`padding_idx`位置对应的权重初始化为0,并且在训练时通过`mask`的操作,过滤掉`padding_idx`位置对应的`Loss`。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +Operations中`Tile`算子执行到`__infer__`时`value`值为`None`,丢失了数值是怎么回事?,`Tile`算子的`multiples input`必须是一个常量(该值不能直接或间接来自于图的输入)。否则构图的时候会拿到一个`None`的数据,因为图的输入是在图执行的时候才传下去的,构图的时候拿不到图的输入数据。 相关的资料可以看[静态图语法支持](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +使用conv2d算子将卷积核设置为(3,10),Tensor设置为[2,2,10,10],在ModelArts上利用Ascend跑,报错: `FM_W+pad_left+pad_right-KW>=strideW`,CPU下不报错。,TBE(Tensor Boost Engine)算子是华为自研的Ascend算子开发工具,在TVM框架基础上扩展,进行自定义算子开发。上述问题是这个TBE算子的限制,x的width必须大于kernel的width。CPU的这个算子没有这个限制,所以不报错。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +请问MindSpore实现了反池化操作了吗?类似于`nn.MaxUnpool2d` 这个反池化操作?,目前 MindSpore 还没有反池化相关的接口。用户可以通过自定义算子的方式自行开发算子,详情请见[自定义算子](https://www.mindspore.cn/tutorials/experts/zh-CN/master/operation/op_custom.html)。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +使用ExpandDims算子报错: `Pynative run op ExpandDims failed`。具体代码:,```python context.set_context(mode=context.GRAPH_MODE,device_target='Ascend') input_tensor=Tensor(np.array([[2,2],[2,2]]),mindspore.float32) expand_dims=ops.ExpandDims() output=expand_dims(input_tensor,0) ```这边的问题是选择了Graph模式却使用了PyNative的写法,所以导致报错,MindSpore支持两种运行模式,在调试或者运行方面做了不同的优化: - PyNative模式: 也称动态图模式,将神经网络中的各个算子逐一下发执行,方便用户编写和调试神经网络模型。 - Graph模式: 也称静态图模式或者图模式,将神经网络模型编译成一整张图,然后下发执行。该模式利用图优化等技术提高运行性能,同时有助于规模部署和跨平台运行。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +Ascend后端报错:`AI CORE` 和`AI CPU`中都找不到有效的`kernel info`这个Kernel Select Failed时,如何定位?,Ascend后端,算子有AI CORE算子和AI CPU算子之分,部分算子AI CORE支持,部分算子AI CPU支持,部分算子两者同时支持。根据报错信息: 1. 如果`AI CORE`候选算子信息为空,则可能是在算子`check support`阶段,所有的算子信息均校验未通过。可以在日志中搜索关键字`CheckSupport`找到未通过的原因,根据具体信息修改shape或data type, 或者找开发人员进一步定位; 2. 如果`AI CPU`候选算子信息不为空,或者`AI CORE`和`AI CPU`候选算子信息都不为空,则可能是用户给到该算子的输入数据类型不在候选列表中,在选择阶段被过滤掉导致,可以根据候选列表尝试修改该算子的输入data type。 用户可以参考[官网教程](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/pynative_graph/pynative.html)选择合适、统一的模式和写法来完成训练。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/operators_compile.html,FAQ,算子编译|FAQ, +MindSpore安装完成,执行训练时发现网络性能异常,权重初始化耗时过长,怎么办?,可能与环境中使用了`scipy 1.4`系列版本有关,通过`pip list | grep scipy`命令可查看scipy版本,建议改成MindSpore要求的`scipy`版本。版本第三方库依赖可以在`requirement.txt`中查看。 > 其中version替换为MindSpore具体的版本分支。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/performance_tuning.html,FAQ,性能调优|FAQ, +导致Loss值不收敛或者精度不达标的原因有哪些呢,应该怎样定位调优?,可能导致Loss值不收敛或者精度问题的原因很多,推荐参考下面总结,逐一排查问题。 [MindSpore模型精度调优实战(一)精度问题的常见现象、原因和简要调优思路](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=102750) [MindSpore模型精度调优实战(二)精度调试调优思路](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=106624) [MindSpore模型精度调优实战(三)常见精度问题简介](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=119271),https://www.mindspore.cn/docs/zh-CN/r1.7/faq/precision_tuning.html,FAQ,精度调优|FAQ, +请问想加载PyTorch预训练好的模型用于MindSpore模型finetune有什么方法?,需要把PyTorch和MindSpore的参数进行一一对应,因为网络定义的灵活性,所以没办法提供统一的转化脚本。 一般情况下,CheckPoint文件中保存的就是参数名和参数值,调用相应框架的读取接口后,获取到参数名和数值后,按照MindSpore格式,构建出对象,就可以直接调用MindSpore接口保存成MindSpore格式的CheckPoint文件了。 其中主要的工作量为对比不同框架间的parameter名称,做到两个框架的网络中所有parameter name一一对应(可以使用一个map进行映射),下面代码的逻辑转化parameter格式,不包括对应parameter name。 ```python import torch from mindspore import Tensor, save_checkpoint def pytorch2mindspore(default_file = 'torch_resnet.pth'): # read pth file par_dict = torch.load(default_file)['state_dict'] params_list = [] for name in par_dict: param_dict = {} parameter = par_dict[name] param_dict['name'] = name param_dict['data'] = Tensor(parameter.numpy()) params_list.append(param_dict) save_checkpoint(params_list, 'ms_resnet.ckpt') ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +怎么将PyTorch的`dataset`转换成MindSpore的`dataset`?,MindSpore和PyTorch的自定义数据集逻辑是比较类似的,需要用户先定义一个自己的`dataset`类,该类负责定义`__init__`,`__getitem__`,`__len__`来读取自己的数据集,然后将该类实例化为一个对象(如: `dataset/dataset_generator`),最后将这个实例化对象传入`GeneratorDataset`(mindspore用法)/`DataLoader`(pytorch用法),至此即可以完成自定义数据集加载了。而MindSpore在`GeneratorDataset`的基础上提供了进一步的`map`->`batch`操作,可以很方便的让用户在`map`内添加一些其他的自定义操作,并将其`batch`起来。 对应的MindSpore的自定义数据集加载如下: ```python # 1 Data enhancement,shuffle,sampler. class Mydata: def __init__(self): np.random.seed(58) self.__data = np.random.sample((5, 2)) self.__label = np.random.sample((5, 1)) def __getitem__(self, index): return (self.__data[index], self.__label[index]) def __len__(self): return len(self.__data) dataset_generator = Mydata() dataset = ds.GeneratorDataset(dataset_generator, ["data", "label"], shuffle=False) # 2 Customized data enhancement dataset = dataset.map(operations=pyFunc, {other_params}) # 3 batch dataset = dataset.batch(batch_size, drop_remainder=True) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +其他框架的脚本或者模型怎么迁移到MindSpore?,关于脚本或者模型迁移,可以查询MindSpore官网中关于[迁移脚本](https://www.mindspore.cn/docs/zh-CN/master/migration_guide/migration_script.html)的介绍。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +MindConverter转换TensorFlow脚本报错提示`terminate called after throwing an instance of 'std::system_error', what(): Resource temporarily unavailable, Aborted (core dumped)`,该问题由TensorFlow导致。脚本转换时,需要通过TensorFlow库加载TensorFlow的模型文件,此时TensorFlow会申请相关资源进行初始化,若申请资源失败(可能由于系统进程数超过Linux最大进程数限制),TensorFlow C/C++层会出现Core Dumped问题。详细信息请参考TensorFlow官方ISSUE,如下ISSUE仅供参考: [TF ISSUE 14885](https://github.com/tensorflow/tensorflow/issues/14885), [TF ISSUE 37449](https://github.com/tensorflow/tensorflow/issues/37449),https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +MindConverter是否可以在ARM平台运行?,MindConverter同时支持X86、ARM平台,若在ARM平台运行需要用户自行安装模型所需的依赖包和运行环境。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +为什么使用MindConverter进行模型转换需要很长时间(超过十分钟),而模型并不大?,MindConverter进行转换时,需要使用Protobuf对模型文件进行反序列化,请确保Python环境中安装的Protobuf采用C++后端实现,检查方法如下,若输出为Python,则需要安装采用C++实现的Python Protobuf(下载Protobuf源码并进入源码中的python子目录,使用python setup.py install --cpp_implementation进行安装);若输出为cpp,转换过程仍耗时较长,请在转换前使用添加环境变量`export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp`。 ```python from google.protobuf.internal import api_implementation print(api_implementation.Type()) ```,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +使用.pb文件进行转换时,已确定`model_file`,`shape`,`input_nodes`,`output_nodes`均无误,并且环境中的依赖库已经正常安装,但是仍然报异常代码1000001,可能是什么原因?,请检查生成该.pb文件所使用的TensorFlow版本不高于用于转换时安装的TensorFlow版本,避免由于旧版本TensorFlow无法解析新版本生成的.pb文件,而导致的模型文件解析失败。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, +出现报错信息`[ERROR] MINDCONVERTER: [BaseConverterError] code: 0000000, msg: {python_home}/lib/libgomp.so.1: cannot allocate memory in static TLS block`时,应该怎么处理?,该问题通常是由于环境变量导入不正确导致的。建议用户设置`export LD_PRELOAD={python_home}/lib/libgomp.so.1.0.0`这一环境变量,然后重新尝试进行转换。,https://www.mindspore.cn/docs/zh-CN/r1.7/faq/usage_migrate_3rd.html,FAQ,第三方框架迁移使用|FAQ, diff --git a/notebooks/robot.ipynb b/notebooks/robot.ipynb index 6032dc9fb5a641335217c1ecc165f65e6f36430c..02363c0f74fc887ec12739bc99954c04fcc8a77b 100644 --- a/notebooks/robot.ipynb +++ b/notebooks/robot.ipynb @@ -1,19 +1,19 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is the robot notebook." - ] - } - ], - "metadata": { - "language_info": { - "name": "python" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This is the robot notebook." + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 3a25238891aa82bac1f486f166e597e42abbd4d3..318cd4ff40c7fe540bd0453c2dbd7ccc56fa3212 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,3 +1,3 @@ -#!/bin/bash - +#!/bin/bash + echo "deploying to prod" \ No newline at end of file diff --git a/scripts/train.sh b/scripts/train.sh index f8ed0fef24ad0a30f91be21b403f51b0a0c59708..6faebe0c19342172de31dfee6b2376bf70560dad 100644 --- a/scripts/train.sh +++ b/scripts/train.sh @@ -1,4 +1,4 @@ -#!/bin/bash - - +#!/bin/bash + + echo "train and evaluate model" \ No newline at end of file diff --git a/src/inference/.gitkeep b/src/__init__.py similarity index 100% rename from src/inference/.gitkeep rename to src/__init__.py diff --git a/src/train/.gitkeep b/src/model/__init__.py similarity index 100% rename from src/train/.gitkeep rename to src/model/__init__.py diff --git a/src/model/prepare_data.py b/src/model/prepare_data.py new file mode 100644 index 0000000000000000000000000000000000000000..f7b0605b24f77aa00615b2e2f1c69adb115ccf3c --- /dev/null +++ b/src/model/prepare_data.py @@ -0,0 +1,46 @@ +import json +import mindspore +from bert4ms import BertTokenizer, BertModel +from mindspore import context +import csv + +context.set_context(mode=context.GRAPH_MODE, device_target="CPU") + + +def load_data(file_path): + result = {} + with open(file_path) as f: + reader = csv.reader(f) + for item in reader: + if reader.line_num == 1: + continue + if item[3] == "FAQ": + result[item[0]] = item[1] + return result + + +def encode_resource_sentences(resource_sentences): + tokenizer = BertTokenizer.load('sentence-transformers/all-MiniLM-L6-v2') + model = BertModel.load('sentence-transformers/all-MiniLM-L6-v2') + resource_sentences_encode = {} + for sentence in resource_sentences: + resource_token = mindspore.Tensor([tokenizer.encode(sentence, add_special_tokens=True)], + mindspore.int32) + resource_sentences_encode[sentence] = model(resource_token)[1][0].asnumpy().tolist() + with open("../data/resource_sentence_encode.json", "w", encoding='utf-8') as f: + json.dump(resource_sentences_encode, f) + with open("../qaRobot/qa_api/data/resource_sentence_encode.json", "w", encoding='utf-8') as f: + json.dump(resource_sentences_encode, f) + + +def dump_q_a(result): + with open("../data/q_a.json", "w", encoding='utf-8') as f: + json.dump(result, f) + with open("../qaRobot/qa_api/data/q_a.json", "w", encoding='utf-8') as f: + json.dump(result, f) + + +if __name__ == '__main__': + r = load_data("../../data/data.csv") + encode_resource_sentences(r.keys()) + dump_q_a(r) diff --git a/src/model/q_a.py b/src/model/q_a.py new file mode 100644 index 0000000000000000000000000000000000000000..3a97829c2561b65ab4061640b5f61506e1619f2d --- /dev/null +++ b/src/model/q_a.py @@ -0,0 +1,44 @@ +import json +import mindspore +from bert4ms import BertTokenizer, BertModel +from sklearn.metrics.pairwise import cosine_similarity +import sys +from mindspore import context +import numpy as np + +context.set_context(mode=context.GRAPH_MODE, device_target="CPU") + + +def compute_similarity(input_encode): + max_similarity = 0 + with open("../data/resource_sentence_encode.json") as f: + resource_sentences_encode = json.load(f) + for k, v in resource_sentences_encode.items(): + similarity = cosine_similarity( + [input_encode[1][0].asnumpy()], [np.asarray(v)]) + if similarity > max_similarity: + max_similarity = similarity + match_key = k + return match_key + + +def encode_sentence(input_sentence): + tokenizer = BertTokenizer.load('sentence-transformers/all-MiniLM-L6-v2') + model = BertModel.load('sentence-transformers/all-MiniLM-L6-v2') + model.set_train(False) + input_token = mindspore.Tensor([tokenizer.encode(input_sentence, add_special_tokens=True)], mindspore.int32) + return model(input_token) + + +def load_q_a_data(file_path): + with open(file_path) as f: + return json.load(f) + + +if __name__ == '__main__': + input_sentence = sys.argv[1] + input_encode = encode_sentence(input_sentence) + match_key = compute_similarity(input_encode) + q_a_data = load_q_a_data("../data/q_a.json") + if match_key in q_a_data.keys(): + print(q_a_data[match_key]) diff --git a/tests/.gitkeep b/src/qaRobot/__init__.py similarity index 100% rename from tests/.gitkeep rename to src/qaRobot/__init__.py diff --git a/src/qaRobot/manage.py b/src/qaRobot/manage.py new file mode 100755 index 0000000000000000000000000000000000000000..a97671a8b6077b0dc2ee46ab853c7969b7d50668 --- /dev/null +++ b/src/qaRobot/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'qaRobot.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/src/qaRobot/qaRobot/__init__.py b/src/qaRobot/qaRobot/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/qaRobot/qaRobot/asgi.py b/src/qaRobot/qaRobot/asgi.py new file mode 100644 index 0000000000000000000000000000000000000000..0da2f0e5f9ab7f2488713826b9732d40c4378584 --- /dev/null +++ b/src/qaRobot/qaRobot/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for qaRobot project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'qaRobot.settings') + +application = get_asgi_application() diff --git a/src/qaRobot/qaRobot/settings.py b/src/qaRobot/qaRobot/settings.py new file mode 100644 index 0000000000000000000000000000000000000000..deff327b22886956d9b3ee977bc1f0f857035b8d --- /dev/null +++ b/src/qaRobot/qaRobot/settings.py @@ -0,0 +1,114 @@ +""" +Django settings for qaRobot project. + +Generated by 'django-admin startproject' using Django 4.0.6. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/4.0/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-9wuaz-c1!1&08!49er!)^h61%9kqk58l06sv@=o0+qny7+v-y&' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'qa_api', + 'rest_framework', + +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'qaRobot.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'qaRobot.wsgi.application' + +# Database +# https://docs.djangoproject.com/en/4.0/ref/settings/#databases + + +# Password validation +# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + +# Internationalization +# https://docs.djangoproject.com/en/4.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/4.0/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/src/qaRobot/qaRobot/urls.py b/src/qaRobot/qaRobot/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..93992b9b6e24dd7dd1b6403704cb501bc041d146 --- /dev/null +++ b/src/qaRobot/qaRobot/urls.py @@ -0,0 +1,22 @@ +"""qaRobot URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/4.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('robot/api/', include('qa_api.urls')), +] diff --git a/src/qaRobot/qaRobot/wsgi.py b/src/qaRobot/qaRobot/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..d9f354f5f8e89233ee5cf9afad50d517eda5dab8 --- /dev/null +++ b/src/qaRobot/qaRobot/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for qaRobot project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'qaRobot.settings') + +application = get_wsgi_application() diff --git a/src/qaRobot/qa_api/__init__.py b/src/qaRobot/qa_api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/qaRobot/qa_api/apps.py b/src/qaRobot/qa_api/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..bde5fbf4830135a4a1ee52bf0ca0e49801d0ebfc --- /dev/null +++ b/src/qaRobot/qa_api/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class QaApiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'qa_api' diff --git a/src/qaRobot/qa_api/data/.gitkeep b/src/qaRobot/qa_api/data/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/qaRobot/qa_api/data/q_a.json b/src/qaRobot/qa_api/data/q_a.json new file mode 100644 index 0000000000000000000000000000000000000000..4ffe39f963de6dec36559bfa5c7e09ff9b13b11a --- /dev/null +++ b/src/qaRobot/qa_api/data/q_a.json @@ -0,0 +1 @@ +{"\u8bf7\u95ee\u5982\u679c\u4e0d\u4f7f\u7528\u9ad8\u9636API\uff0c\u600e\u4e48\u5b9e\u73b0\u6570\u636e\u4e0b\u6c89\uff1f": "\u53ef\u4ee5\u53c2\u8003\u6b64\u624b\u52a8\u4e0b\u6c89\u65b9\u5f0f\u7684[test_tdt_data_transfer.py](https://gitee.com/mindspore/mindspore/blob/master/tests/st/data_transfer/test_tdt_data_transfer.py)\u793a\u4f8b\u5b9e\u73b0\uff0c\u4e0d\u7528\u501f\u52a9`model.train`\u63a5\u53e3\uff0c\u76ee\u524d\u652f\u6301\uff1aGPU\u548cAscend\u786c\u4ef6\u4f7f\u7528\u3002", "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2d\u5185\u5b58\u5360\u7528\u9ad8\uff0c\u600e\u4e48\u4f18\u5316\uff1f": "\u53ef\u4ee5\u53c2\u8003\u5982\u4e0b\u51e0\u4e2a\u6b65\u9aa4\u6765\u964d\u4f4e\u5185\u5b58\u5360\u7528\uff0c\u540c\u65f6\u4e5f\u53ef\u80fd\u4f1a\u964d\u4f4e\u6570\u636e\u5904\u7406\u7684\u6548\u7387\u3002\t1. \u5728\u5b9a\u4e49\u6570\u636e\u96c6`**Dataset`\u5bf9\u8c61\u524d\uff0c\u8bbe\u7f6e`Dataset`\u6570\u636e\u5904\u7406\u9884\u53d6\u7684\u5927\u5c0f\uff0c`ds.config.set_prefetch_size(2)`\u3002\t\t 2. \u5728\u5b9a\u4e49`**Dataset`\u5bf9\u8c61\u65f6\uff0c\u8bbe\u7f6e\u5176\u53c2\u6570`num_parallel_workers`\u4e3a1\u3002\t\t 3. \u5982\u679c\u5bf9`**Dataset`\u5bf9\u8c61\u8fdb\u4e00\u6b65\u4f7f\u7528\u4e86`.map(...)`\u64cd\u4f5c\uff0c\u53ef\u4ee5\u8bbe\u7f6e`.map(...)`\u7684\u53c2\u6570`num_parallel_workers`\u4e3a1\u3002\t\t 4. \u5982\u679c\u5bf9`**Dataset`\u5bf9\u8c61\u8fdb\u4e00\u6b65\u4f7f\u7528\u4e86`.batch(...)`\u64cd\u4f5c\uff0c\u53ef\u4ee5\u8bbe\u7f6e`.batch(...)`\u7684\u53c2\u6570`num_parallel_workers`\u4e3a1\u3002\t\t 5. \u5982\u679c\u5bf9`**Dataset`\u5bf9\u8c61\u8fdb\u4e00\u6b65\u4f7f\u7528\u4e86`.shuffle(...)`\u64cd\u4f5c\uff0c\u53ef\u4ee5\u628a\u53c2\u6570`buffer_size`\u8bbe\u7f6e\u51cf\u5c11\u3002", "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2dCPU\u5360\u7528\u9ad8\uff0c\u8868\u73b0\u4e3asy\u5360\u7528\u9ad8\u800cus\u5360\u7528\u4f4e\uff0c\u600e\u4e48\u4f18\u5316\uff1f": "\u53ef\u4ee5\u53c2\u8003\u5982\u4e0b\u51e0\u4e2a\u6b65\u9aa4\u6765\u964d\u4f4eCPU\u5360\u7528\uff0c\u8fdb\u4e00\u6b65\u63d0\u5347\u6027\u80fd\uff0c\u5176\u4e3b\u8981\u539f\u56e0\u662f\u4e09\u65b9\u5e93\u591a\u7ebf\u7a0b\u4e0e\u6570\u636e\u5904\u7406\u591a\u7ebf\u7a0b\u5b58\u5728\u8d44\u6e90\u7ade\u4e89\u3002\t1. \u5982\u679c\u6570\u636e\u5904\u7406\u9636\u6bb5\u6709opencv\u7684`cv2`\u64cd\u4f5c\uff0c\u90a3\u4e48\u901a\u8fc7`cv2.setNumThreads(2)`\u8bbe\u7f6e`cv2`\u5168\u5c40\u7ebf\u7a0b\u6570\u3002\t\t 2. \u5982\u679c\u6570\u636e\u5904\u7406\u9636\u6bb5\u6709`numpy`\u64cd\u4f5c\uff0c\u90a3\u4e48\u901a\u8fc7`export OPENBLAS_NUM_THREADS=1`\u8bbe\u7f6e`OPENBLAS`\u7ebf\u7a0b\u6570\u3002", "\u5728`GeneratorDataset`\u4e2d\uff0c\u770b\u5230\u6709\u53c2\u6570`shuffle`\uff0c\u5728\u8dd1\u4efb\u52a1\u65f6\u53d1\u73b0`shuffle=True`\u548c`shuffle=False`\uff0c\u4e24\u8005\u6ca1\u6709\u533a\u522b\uff0c\u8fd9\u662f\u4e3a\u4ec0\u4e48\uff1f": "\u5f00\u542f`shuffle`\uff0c\u9700\u8981\u4f20\u5165\u7684`Dataset`\u662f\u652f\u6301\u968f\u673a\u8bbf\u95ee\u7684\uff08\u4f8b\u5982\u81ea\u5b9a\u4e49\u7684`Dataset`\u6709`getitem`\u65b9\u6cd5\uff09\uff0c\u5982\u679c\u662f\u5728\u81ea\u5b9a\u4e49\u7684`Dataset`\u91cc\u9762\u901a\u8fc7`yeild`\u65b9\u5f0f\u8fd4\u56de\u56de\u6765\u7684\u6570\u636e\uff0c\u662f\u4e0d\u652f\u6301\u968f\u673a\u8bbf\u95ee\u7684\uff0c\u5177\u4f53\u53ef\u67e5\u770b\u6559\u7a0b\u4e2d\u7684[\u81ea\u5b9a\u4e49\u6570\u636e\u96c6](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html)\u7ae0\u8282\u3002", "\u8bf7\u95ee`Dataset`\u5982\u4f55\u628a\u4e24\u4e2a`columns`\u5408\u5e76\u6210\u4e00\u4e2a`column`\uff1f": "\u53ef\u4ee5\u6dfb\u52a0\u5982\u4e0b\u64cd\u4f5c\u628a \u4e24\u4e2a\u5b57\u6bb5\u5408\u6210\u4e00\u4e2a\u3002\t```python\tdef combine(x\uff0c y):\t x = x.flatten()\t y = y.flatten()\t return np.append(x\uff0c y)\t\tdataset = dataset.map(operations=combine\uff0c input_columns=[\"data\"\uff0c \"data2\"]\uff0c output_columns=[\"data\"])\t```\u6ce8\uff1a\u56e0\u4e3a\u4e24\u4e2a`columns`\u662f\u4e0d\u540c\u7684`shape`\uff0c\u9700\u8981\u5148`flatten`\u4e0b\uff0c\u7136\u540e\u518d\u5408\u5e76\u3002", "\u8bf7\u95ee`GeneratorDataset`\u652f\u6301`ds.PKSampler`\u91c7\u6837\u5417\uff1f": "\u81ea\u5b9a\u4e49\u6570\u636e\u96c6`GeneratorDataset`\u4e0d\u652f\u6301`PKSampler`\u91c7\u6837\u903b\u8f91\u3002\u4e3b\u8981\u539f\u56e0\u662f\u81ea\u5b9a\u4e49\u6570\u636e\u64cd\u4f5c\u7075\u6d3b\u5ea6\u592a\u5927\u4e86\uff0c\u5185\u7f6e\u7684`PKSampler`\u96be\u4ee5\u505a\u5230\u901a\u7528\u6027\uff0c\u6240\u4ee5\u9009\u62e9\u5728\u63a5\u53e3\u5c42\u9762\u76f4\u63a5\u63d0\u793a\u4e0d\u652f\u6301\u3002\u4f46\u662f\u5bf9\u4e8e`GeneratorDataset`\uff0c\u53ef\u4ee5\u65b9\u4fbf\u7684\u5b9a\u4e49\u81ea\u5df1\u9700\u8981\u7684`Sampler`\u903b\u8f91\uff0c\u5373\u5728`ImageDataset`\u7c7b\u7684`__getitem__`\u51fd\u6570\u4e2d\u5b9a\u4e49\u5177\u4f53\u7684`sampler`\u89c4\u5219\uff0c\u8fd4\u56de\u81ea\u5df1\u9700\u8981\u7684\u6570\u636e\u5373\u53ef\u3002", "MindSpore\u5982\u4f55\u52a0\u8f7d\u5df2\u6709\u7684\u9884\u8bad\u7ec3\u8bcd\u5411\u91cf\uff1f": "\u53ef\u4ee5\u5728\u5b9a\u4e49EmbedingLookup\u6216\u8005Embedding\u65f6\u5019\uff0c\u628a\u9884\u8bad\u7ec3\u7684\u8bcd\u5411\u91cf\u4f20\u8fdb\u6765\uff0c\u628a\u9884\u8bad\u7ec3\u7684\u8bcd\u5411\u91cf\u5c01\u88c5\u6210\u4e00\u4e2aTensor\u4f5c\u4e3aEmbeddingLookup\u521d\u59cb\u503c\u3002", "\u8bf7\u95ee`c_transforms`\u548c`py_transforms`\u6709\u4ec0\u4e48\u533a\u522b\uff0c\u6bd4\u8f83\u63a8\u8350\u4f7f\u7528\u54ea\u4e2a\uff1f": "\u63a8\u8350\u4f7f\u7528`c_transforms`\uff0c\u56e0\u4e3a\u7eafC\u5c42\u6267\u884c\uff0c\u6240\u4ee5\u6027\u80fd\u4f1a\u66f4\u597d\u3002\t\u539f\u7406:`c_transform`\u5e95\u5c42\u4f7f\u7528\u7684\u662fC\u7248\u672c`opencv/jpeg-turbo`\u8fdb\u884c\u7684\u6570\u636e\u5904\u7406\uff0c`py_transform`\u4f7f\u7528\u7684\u662fPython\u7248\u672c\u7684`Pillow`\u8fdb\u884c\u6570\u636e\u5904\u7406\u3002", "\u7531\u4e8e\u6211\u4e00\u6761\u6570\u636e\u5305\u542b\u591a\u4e2a\u56fe\u50cf\uff0c\u5e76\u4e14\u6bcf\u4e2a\u56fe\u50cf\u7684\u5bbd\u9ad8\u90fd\u4e0d\u4e00\u81f4\uff0c\u9700\u8981\u5bf9\u8f6c\u6210mindrecord\u683c\u5f0f\u7684\u6570\u636e\u8fdb\u884c`map`\u64cd\u4f5c\u3002\u53ef\u662f\u6211\u4ece`record`\u8bfb\u53d6\u7684\u6570\u636e\u662f`np.ndarray`\u683c\u5f0f\u7684\u6570\u636e\uff0c\u6211\u7684\u6570\u636e\u5904\u7406\u7684`operations`\u662f\u9488\u5bf9\u56fe\u50cf\u683c\u5f0f\u7684\u3002\u6211\u5e94\u8be5\u600e\u4e48\u6837\u624d\u80fd\u5bf9\u6240\u751f\u6210\u7684mindrecord\u7684\u683c\u5f0f\u7684\u6570\u636e\u8fdb\u884c\u9884\u5904\u7406\u5462\uff1f": "\u5efa\u8bae\u4f60\u6309\u7167\u5982\u4e0b\u64cd\u4f5c\u8fdb\u884c:\t```python\t#1 The defined schema is as follows: Among them\uff0c data1\uff0c data2\uff0c data3\uff0c ... These fields store your image\uff0c and only the binary of the image is stored here.\t\tcv_schema_json = {\"label\": {\"type\": \"int32\"}\uff0c \"data1\": {\"type\": \"bytes\"}\uff0c \"data2\": {\"type\": \"bytes\"}\uff0c \"data3\": {\"type\": \"bytes\"}}\t\t#2 The organized data can be as follows\uff0c and then this data_list can be written by FileWriter.write_raw_data(...).\t\tdata_list = []\tdata = {}\tdata['label'] = 1\t\tf = open(\"1.jpg\"\uff0c \"rb\")\timage_bytes = f.read()\tf.close\t\tdata['data1'] = image_bytes\t\tf2 = open(\"2.jpg\"\uff0c \"rb\")\timage_bytes2 = f2.read()\tf2.close\t\tdata['data2'] = image_bytes2\t\tf3 = open(\"3.jpg\"\uff0c \"rb\")\timage_bytes3 = f3.read()\tf3.close\t\tdata['data3'] = image_bytes3\t\tdata_list.append(data)\t\t#3 Use MindDataset to load\uff0c then use the decode operator we provide to decode\uff0c and then perform subsequent processing.\t\tdata_set = ds.MindDataset(\"mindrecord_file_name\")\tdata_set = data_set.map(input_columns=[\"data1\"]\uff0c operations=vision.Decode()\uff0c num_parallel_workers=2)\tdata_set = data_set.map(input_columns=[\"data2\"]\uff0c operations=vision.Decode()\uff0c num_parallel_workers=2)\tdata_set = data_set.map(input_columns=[\"data3\"]\uff0c operations=vision.Decode()\uff0c num_parallel_workers=2)\tresize_op = vision.Resize((32\uff0c 32)\uff0c interpolation=Inter.LINEAR)\tdata_set = data_set.map(operations=resize_op\uff0c input_columns=[\"data1\"]\uff0c num_parallel_workers=2)\tfor item in data_set.create_dict_iterator(output_numpy=True):\t print(item)\t```", "\u6211\u7684\u81ea\u5b9a\u4e49\u56fe\u50cf\u6570\u636e\u96c6\u8f6c\u4e3amindrecord\u683c\u5f0f\u65f6\uff0c\u6211\u7684\u6570\u636e\u662f`numpy.ndarray`\u683c\u5f0f\u7684\uff0c\u4e14`shape`\u4e3a[4\uff0c100\uff0c132\uff0c3]\uff0c\u8fd9\u4e2a`shape`\u7684\u542b\u4e49\u662f\u56db\u5e45\u4e09\u901a\u9053\u7684\u5e27\uff0c\u4e14\u6bcf\u4e2a\u503c\u90fd\u57280~255\u3002\u53ef\u662f\u5f53\u6211\u67e5\u770b\u8f6c\u5316\u6210mindrecord\u7684\u683c\u5f0f\u7684\u6570\u636e\u65f6\uff0c\u53d1\u73b0\u662f`[19800]`\u7684`shape`\uff0c\u6211\u539f\u6570\u636e\u7684\u7ef4\u5ea6\u5168\u90e8\u5c55\u5f00\u6709`[158400]`\uff0c\u8bf7\u95ee\u8fd9\u662f\u4e3a\u4ec0\u4e48\uff1f": "\u53ef\u80fd\u662f\u4f60\u6570\u636e\u4e2d`ndarray`\u7684`dtype`\u662f`int8`\uff0c\u56e0\u4e3a`[158400]`\u548c`[19800]`\u521a\u597d\u76f8\u5dee\u4e868\u500d\uff0c\u5efa\u8bae\u5c06\u6570\u636e\u4e2d`ndarray`\u7684`dtype`\u6307\u5b9a\u4e3a`float64`\u3002", "\u60f3\u8981\u4fdd\u5b58\u751f\u6210\u7684\u56fe\u7247\uff0c\u4ee3\u7801\u8fd0\u884c\u5b8c\u6bd5\u4ee5\u540e\u5728\u76f8\u5e94\u76ee\u5f55\u627e\u4e0d\u5230\u56fe\u7247\u3002\u76f8\u4f3c\u7684\uff0c\u5728JupyterLab\u4e2d\u751f\u6210\u6570\u636e\u96c6\u7528\u4e8e\u8bad\u7ec3\uff0c\u8bad\u7ec3\u65f6\u53ef\u4ee5\u5728\u76f8\u5e94\u8def\u5f84\u8bfb\u53d6\u5230\u6570\u636e\uff0c\u4f46\u662f\u81ea\u5df1\u5374\u65e0\u6cd5\u5728\u8def\u5f84\u4e2d\u627e\u5230\u56fe\u7247\u6216\u6570\u636e\u96c6\uff1f": "\u53ef\u80fd\u662fJumperLab\u751f\u6210\u7684\u56fe\u7247\u6216\u8005\u6570\u636e\u96c6\u90fd\u662f\u5728Docker\u5185\uff0c`moxing`\u4e0b\u8f7d\u7684\u6570\u636e\u53ea\u80fd\u8bad\u7ec3\u8fdb\u7a0b\u7684Docker\u5185\u770b\u89c1\uff0c\u8bad\u7ec3\u5b8c\u6210\u540e\u8fd9\u4e9b\u6570\u636e\u5c31\u968f\u7740Docker\u91ca\u653e\u4e86\u3002 \u53ef\u4ee5\u8bd5\u8bd5\u5728\u8bad\u7ec3\u4efb\u52a1\u4e2d\u5c06\u9700\u8981`download`\u7684\u6570\u636e\u518d\u901a\u8fc7`moxing`\u4f20\u56de`obs`\uff0c\u7136\u540e\u518d\u5728`obs`\u91cc\u9762\u4e0b\u8f7d\u5230\u4f60\u672c\u5730\u3002", "MindSpore\u4e2d`model.train`\u7684`dataset_sink_mode`\u53c2\u6570\u8be5\u5982\u4f55\u7406\u89e3\uff1f": "\u5f53`dataset_sink_mode=True`\u65f6\uff0c\u6570\u636e\u5904\u7406\u4f1a\u548c\u7f51\u7edc\u8ba1\u7b97\u6784\u6210Pipeline\u65b9\u5f0f\uff0c\u5373: \u6570\u636e\u5904\u7406\u5728\u9010\u6b65\u5904\u7406\u6570\u636e\u65f6\uff0c\u5904\u7406\u5b8c\u4e00\u4e2a`batch`\u7684\u6570\u636e\uff0c\u4f1a\u628a\u6570\u636e\u653e\u5230\u4e00\u4e2a\u961f\u5217\u91cc\uff0c\u8fd9\u4e2a\u961f\u5217\u7528\u4e8e\u7f13\u5b58\u5df2\u7ecf\u5904\u7406\u597d\u7684\u6570\u636e\uff0c\u7136\u540e\u7f51\u7edc\u8ba1\u7b97\u4ece\u8fd9\u4e2a\u961f\u5217\u91cc\u9762\u53d6\u6570\u636e\u7528\u4e8e\u8bad\u7ec3\uff0c\u90a3\u4e48\u6b64\u65f6\u6570\u636e\u5904\u7406\u4e0e\u7f51\u7edc\u8ba1\u7b97\u5c31`Pipeline`\u8d77\u6765\u4e86\uff0c\u6574\u4e2a\u8bad\u7ec3\u8017\u65f6\u5c31\u662f\u6570\u636e\u5904\u7406/\u7f51\u7edc\u8ba1\u7b97\u8017\u65f6\u6700\u957f\u7684\u90a3\u4e2a\u3002\t\u5f53`dataset_sink_mode=False`\u65f6\uff0c\u6570\u636e\u5904\u7406\u4f1a\u548c\u7f51\u7edc\u8ba1\u7b97\u6784\u6210\u4e32\u884c\u7684\u8fc7\u7a0b\uff0c\u5373: \u6570\u636e\u5904\u7406\u5728\u5904\u7406\u5b8c\u4e00\u4e2a`batch`\u540e\uff0c\u628a\u8fd9\u4e2a`batch`\u7684\u6570\u636e\u4f20\u9012\u7ed9\u7f51\u7edc\u7528\u4e8e\u8ba1\u7b97\uff0c\u5728\u8ba1\u7b97\u5b8c\u6210\u540e\uff0c\u6570\u636e\u5904\u7406\u518d\u5904\u7406\u4e0b\u4e00\u4e2a`batch`\uff0c\u7136\u540e\u628a\u8fd9\u4e2a\u65b0\u7684`batch`\u6570\u636e\u4f20\u9012\u7ed9\u7f51\u7edc\u7528\u4e8e\u8ba1\u7b97\uff0c\u5982\u6b64\u7684\u5faa\u73af\u5f80\u590d\uff0c\u76f4\u5230\u8bad\u7ec3\u5b8c\u3002\u8be5\u65b9\u6cd5\u7684\u603b\u8017\u65f6\u662f\u6570\u636e\u5904\u7406\u7684\u8017\u65f6+\u7f51\u7edc\u8ba1\u7b97\u7684\u8017\u65f6=\u8bad\u7ec3\u603b\u8017\u65f6\u3002", "MindSpore\u80fd\u5426\u652f\u6301\u6309\u6279\u6b21\u5bf9\u4e0d\u540c\u5c3a\u5bf8\u7684\u56fe\u7247\u6570\u636e\u8fdb\u884c\u8bad\u7ec3\uff1f": "\u4f60\u53ef\u4ee5\u53c2\u8003yolov3\u5bf9\u4e8e\u6b64\u573a\u666f\u7684\u4f7f\u7528\uff0c\u91cc\u9762\u6709\u5bf9\u4e8e\u56fe\u50cf\u7684\u4e0d\u540c\u7f29\u653e\uff0c\u811a\u672c\u89c1[yolo_dataset](https://gitee.com/mindspore/models/blob/master/official/cv/yolov3_darknet53/src/yolo_dataset.py)\u3002", "\u4f7f\u7528MindSpore\u505a\u5206\u5272\u8bad\u7ec3\uff0c\u5fc5\u987b\u5c06\u6570\u636e\u8f6c\u4e3aMindRecord\u5417\uff1f": "[build_seg_data.py](https://gitee.com/mindspore/models/blob/master/official/cv/deeplabv3/src/data/build_seg_data.py)\u662f\u5c06\u6570\u636e\u96c6\u751f\u6210MindRecord\u7684\u811a\u672c\uff0c\u53ef\u4ee5\u76f4\u63a5\u4f7f\u7528/\u9002\u914d\u4e0b\u4f60\u7684\u6570\u636e\u96c6\u3002\u6216\u8005\u5982\u679c\u4f60\u60f3\u5c1d\u8bd5\u81ea\u5df1\u5b9e\u73b0\u6570\u636e\u96c6\u7684\u8bfb\u53d6\uff0c\u53ef\u4ee5\u4f7f\u7528`GeneratorDataset`\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u52a0\u8f7d\u3002\t[GenratorDataset \u793a\u4f8b](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html)\t[GenratorDataset API\u8bf4\u660e](https://www.mindspore.cn/docs/zh-CN/master/api_python/dataset/mindspore.dataset.GeneratorDataset.html#mindspore.dataset.GeneratorDataset)", "MindSpore\u5728Ascend\u786c\u4ef6\u5e73\u53f0\u8fdb\u884c\u591a\u5361\u8bad\u7ec3\uff0c\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u5982\u4f55\u7ed9\u4e0d\u540c\u5361\u4f20\u9012\u4e0d\u540c\u6570\u636e\uff1f": "\u4f7f\u7528`GeneratorDataset`\u7684\u65f6\u5019\uff0c\u53ef\u4ee5\u4f7f\u7528`num_shards=num_shards`\uff0c`shard_id=device_id`\u53c2\u6570\u6765\u63a7\u5236\u4e0d\u540c\u5361\u8bfb\u53d6\u54ea\u4e2a\u5206\u7247\u7684\u6570\u636e\uff0c`__getitem__`\u548c`__len__`\u6309\u5168\u91cf\u6570\u636e\u96c6\u5904\u7406\u5373\u53ef\u3002\t\u4e3e\u4f8b:\t```python\t# \u53610:\tds.GeneratorDataset(...\uff0c num_shards=8\uff0c shard_id=0\uff0c ...)\t# \u53611:\tds.GeneratorDataset(...\uff0c num_shards=8\uff0c shard_id=1\uff0c ...)\t# \u53612:\tds.GeneratorDataset(...\uff0c num_shards=8\uff0c shard_id=2\uff0c ...)\t...\t# \u53617:\tds.GeneratorDataset(...\uff0c num_shards=8\uff0c shard_id=7\uff0c ...)\t```", "\u5982\u4f55\u6784\u5efa\u56fe\u50cf\u7684\u591a\u6807\u7b7eMindRecord\u683c\u5f0f\u6570\u636e\u96c6\uff1f": "\u6570\u636eSchema\u53ef\u4ee5\u6309\u5982\u4e0b\u65b9\u5f0f\u5b9a\u4e49: `cv_schema_json = {\"label\": {\"type\": \"int32\"\uff0c \"shape\": [-1]}\uff0c \"data\": {\"type\": \"bytes\"}}`\t\u8bf4\u660e: label\u662f\u4e00\u4e2a\u6570\u7ec4\uff0cnumpy\u7c7b\u578b\uff0c\u8fd9\u91cc\u9762\u53ef\u4ee5\u5b58 1\uff0c 1\uff0c0\uff0c1\uff0c 0\uff0c 1 \u8fd9\u4e48\u591alabel\u503c\uff0c\u8fd9\u4e9blabel\u503c\u5bf9\u5e94\u540c\u4e00\u4e2adata\uff0c\u5373: \u540c\u4e00\u4e2a\u56fe\u50cf\u7684\u4e8c\u8fdb\u5236\u503c\u3002\t\u53ef\u4ee5\u53c2\u8003[\u5c06\u6570\u636e\u96c6\u8f6c\u6362\u4e3aMindRecord](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/record.html#\u8f6c\u6362\u6210record\u683c\u5f0f)\u6559\u7a0b\u3002", "\u8bf7\u95ee\u81ea\u5df1\u5236\u4f5c\u7684\u9ed1\u5e95\u767d\u5b57`28*28`\u7684\u6570\u5b57\u56fe\u7247\uff0c\u4f7f\u7528MindSpore\u8bad\u7ec3\u51fa\u6765\u7684\u6a21\u578b\u505a\u9884\u6d4b\uff0c\u62a5\u9519\u63d0\u793a`wrong shape of image`\u662f\u600e\u4e48\u56de\u4e8b\uff1f": "\u9996\u5148MindSpore\u8bad\u7ec3\u4f7f\u7528\u7684\u7070\u5ea6\u56feMNIST\u6570\u636e\u96c6\u3002\u6240\u4ee5\u6a21\u578b\u4f7f\u7528\u65f6\u5bf9\u6570\u636e\u662f\u6709\u8981\u6c42\u7684\uff0c\u9700\u8981\u8bbe\u7f6e\u4e3a`28*28`\u7684\u7070\u5ea6\u56fe\uff0c\u5c31\u662f\u5355\u901a\u9053\u624d\u53ef\u4ee5\u3002", "\u7b2c\u4e00\u6b21\u770b\u5230\u6709\u4e13\u95e8\u7684\u6570\u636e\u5904\u7406\u6846\u67b6\uff0c\u80fd\u4ecb\u7ecd\u4e0b\u4e48\uff1f": "MindData\u63d0\u4f9b\u6570\u636e\u5904\u7406\u5f02\u6784\u786c\u4ef6\u52a0\u901f\u529f\u80fd\uff0c\u9ad8\u5e76\u53d1\u6570\u636e\u5904\u7406`pipeline`\u540c\u65f6\u652f\u6301`Ascend/GPU/CPU`\uff0c`CPU`\u5360\u7528\u964d\u4f4e30%\uff0c\u70b9\u51fb\u67e5\u8be2[\u4f18\u5316\u6570\u636e\u5904\u7406](https://www.mindspore.cn/tutorials/experts/zh-CN/master/dataset/optimize.html)\u3002", "\u7f51\u7edc\u8bad\u7ec3\u65f6\u51fa\u73b0\u62a5\u9519\u63d0\u793a\u6570\u636e\u4e0b\u53d1\u5931\u8d25\u201cTDT Push data into device Failed\u201d\uff0c\u5982\u4f55\u5b9a\u4f4d\u539f\u56e0\uff1f": "\u9996\u5148\u4e0a\u8ff0\u62a5\u9519\u6307\u7684\u662f\u901a\u8fc7\u8bad\u7ec3\u6570\u636e\u4e0b\u53d1\u901a\u9053\uff08TDT\uff0ctrain data transfer)\u53d1\u9001\u6570\u636e\u5230\u5361\uff08device\uff09\u4e0a\u5931\u8d25\uff0c\u5bfc\u81f4\u8fd9\u4e00\u62a5\u9519\u7684\u539f\u56e0\u53ef\u80fd\u6709\u591a\u79cd\uff0c\u56e0\u6b64\u65e5\u5fd7\u4e2d\u7ed9\u51fa\u4e86\u76f8\u5e94\u7684\u68c0\u67e5\u5efa\u8bae\uff0c\u5177\u4f53\u800c\u8a00:\t1. \u901a\u5e38\u6211\u4eec\u4f1a\u627e\u5230\u65e5\u5fd7\u4e2d\u6700\u5148\u629b\u51fa\u7684\u9519\u8bef\uff08\u7b2c\u4e00\u4e2aERROR\u7ea7\u522b\u7684\u9519\u8bef\uff09\u6216\u62a5\u9519\u5806\u6808\uff08TraceBack)\uff0c\u5e76\u5c1d\u8bd5\u4ece\u4e2d\u627e\u5230\u6709\u52a9\u4e8e\u5b9a\u4f4d\u9519\u8bef\u539f\u56e0\u7684\u4fe1\u606f\u3002\t\t 2. **\u5728\u56fe\u7f16\u8bd1\u9636\u6bb5\uff0c\u8bad\u7ec3\u8fd8\u6ca1\u5f00\u59cb\u62a5\u9519\u65f6**\uff08\u4f8b\u5982\u65e5\u5fd7\u4e2d\u8fd8\u6ca1\u6253\u5370loss)\uff0c\u8bf7\u5148\u68c0\u67e5\u4e0b\u62a5\u9519\uff08ERROR\uff09\u65e5\u5fd7\u4e2d\u662f\u5426\u6709\u7f51\u7edc\u4e2d\u6d89\u53ca\u7684\u76f8\u5173\u7b97\u5b50\u62a5\u9519\u6216\u6d89\u53ca\u73af\u5883\u6ca1\u914d\u7f6e\u597d\u5bfc\u81f4\u7684\u62a5\u9519\uff08\u5982hccl.json\u4e0d\u5bf9\u5bfc\u81f4\u591a\u5361\u901a\u4fe1\u521d\u59cb\u5316\u5f02\u5e38\uff09\u3002\t\t 3. **\u5728\u4e2d\u95f4\u8bad\u7ec3\u8fc7\u7a0b\u4e2d\u62a5\u9519\u65f6**\uff0c\u901a\u5e38\u4e3a\u4e0b\u53d1\u7684\u6570\u636e\u91cf\uff08batch\u6570\uff09\u4e0e\u7f51\u7edc\u8bad\u7ec3\u9700\u8981\u7684\u6570\u636e\u91cf\uff08step\u6570\uff09\u4e0d\u5339\u914d\u5bfc\u81f4\u7684\uff0c\u53ef\u4ee5\u901a\u8fc7`get_dataset_size`\u63a5\u53e3\u6253\u5370\u4e00\u4e2aepoch\u4e2d\u5305\u542b\u7684batch\u6570\uff0c\u5bfc\u81f4\u5f02\u5e38\u7684\u90e8\u5206\u53ef\u80fd\u539f\u56e0\u5982\u4e0b\uff1a\t\t - \u901a\u8fc7\u67e5\u770b\u6253\u5370loss\u6b21\u6570\u7684\u7b49\u65b9\u5f0f\u5224\u65ad\u5982\u679c\u6570\u636e\u91cf\uff08step\u6570\uff09\u521a\u597d\u4e3a\u4e00\u4e2aepoch\u4e2dbatch\u6570\u7684\u6574\u6570\u500d\uff0c\u5219\u53ef\u80fd\u662f\u6570\u636e\u5904\u7406\u90e8\u5206\u6d89\u53caepoch\u7684\u5904\u7406\u5b58\u5728\u95ee\u9898\uff0c\u5982\u4e0b\u9762\u8fd9\u573a\u666f:\t\t ```python\t ...\t dataset = dataset.create_tuple_iteator(num_epochs=-1) # \u6b64\u5904\u5982\u679c\u8981\u8fd4\u56de\u4e00\u4e2a\u8fed\u4ee3\u5668\u5219num_epochs\u5e94\u8be5\u7ed91\uff0c \u4f46\u5efa\u8bae\u76f4\u63a5\u8fd4\u56dedataset\t return dataset\t ```\t\t - \u8003\u8651\u662f\u5426\u662f\u6570\u636e\u5904\u7406\u6027\u80fd\u8f83\u6162\uff0c\u8ddf\u4e0d\u4e0a\u7f51\u7edc\u8bad\u7ec3\u7684\u901f\u5ea6\uff0c\u9488\u5bf9\u8fd9\u4e00\u573a\u666f\uff0c\u53ef\u501f\u52a9profiler\u5de5\u5177\u548cMindInsight\u770b\u4e00\u4e0b\u662f\u5426\u5b58\u5728\u660e\u663e\u7684\u8fed\u4ee3\u95f4\u9699\uff0c\u6216\u624b\u52a8\u904d\u5386\u4e00\u4e0bdataset\uff0c\u5e76\u6253\u5370\u8ba1\u7b97\u4e0b\u5e73\u5747\u5355batch\u7684\u8017\u65f6\uff0c\u662f\u5426\u6bd4\u7f51\u7edc\u6b63\u53cd\u5411\u52a0\u8d77\u6765\u7684\u65f6\u95f4\u66f4\u957f\uff0c\u5982\u679c\u662f\u5219\u5927\u6982\u7387\u9700\u8981\u5bf9\u6570\u636e\u5904\u7406\u90e8\u5206\u8fdb\u884c\u6027\u80fd\u4f18\u5316\u3002\t\t - \u8bad\u7ec3\u8fc7\u7a0b\u4e2d\u51fa\u73b0\u5f02\u5e38\u6570\u636e\u629b\u51fa\u5f02\u5e38\u5bfc\u81f4\u4e0b\u53d1\u6570\u636e\u5931\u8d25\uff0c\u901a\u5e38\u8fd9\u79cd\u60c5\u51b5\u4f1a\u6709\u5176\u4ed6\u62a5\u9519\uff08ERROR\uff09\u65e5\u5fd7\u4f1a\u63d0\u793a\u6570\u636e\u5904\u7406\u54ea\u4e2a\u73af\u8282\u51fa\u73b0\u4e86\u5f02\u5e38\u53ca\u68c0\u67e5\u5efa\u8bae\u3002\u5982\u679c\u4e0d\u660e\u663e\uff0c\u4e5f\u53ef\u4ee5\u901a\u8fc7\u904d\u5386dataset\u6bcf\u6761\u6570\u636e\u7684\u65b9\u5f0f\u5c1d\u8bd5\u627e\u51fa\u5f02\u5e38\u7684\u6570\u636e\uff08\u5982\u5173\u95edshuffle\uff0c \u7136\u540e\u8fdb\u884c\u4e8c\u5206\u6cd5\uff09\u3002\t\t 4. \u5982\u679c**\u5728\u8bad\u7ec3\u7ed3\u675f\u540e**\u6253\u5370\u8fd9\u6761\u65e5\u5fd7\uff08\u5927\u62b5\u662f\u5f3a\u5236\u91ca\u653e\u8d44\u6e90\u5bfc\u81f4\uff09\uff0c\u53ef\u5ffd\u7565\u8fd9\u4e2a\u62a5\u9519\u3002\t\t 5. \u5982\u679c\u4ecd\u4e0d\u80fd\u5b9a\u4f4d\u5177\u4f53\u539f\u56e0\uff0c\u8bf7\u901a\u8fc7\u63d0issue\u6216\u8bba\u575b\u63d0\u95ee\u7b49\u65b9\u5f0f\u627e\u6a21\u5757\u5f00\u53d1\u4eba\u5458\u534f\u52a9\u5b9a\u4f4d\u3002", "py_transforms \u548c c_transforms \u7b97\u5b50\u80fd\u5426\u6df7\u5408\u4f7f\u7528\uff0c\u5982\u679c\u6df7\u5408\u4f7f\u7528\u5177\u4f53\u9700\u8981\u600e\u4e48\u4f7f\u7528\uff1f": "\u51fa\u4e8e\u9ad8\u6027\u80fd\u8003\u8651\uff0c\u901a\u5e38\u4e0d\u5efa\u8bae\u5c06py_transforms \u4e0e c_transforms\u7b97\u5b50\u6df7\u5408\u4f7f\u7528\uff0c[\u6587\u6863](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/enhanced_image_data.html#\u6ce8\u610f\u4e8b\u9879)\u4e5f\u5bf9\u6b64\u8fdb\u884c\u4e86\u8bf4\u660e\u3002\u4f46\u82e5\u4e0d\u8ffd\u6c42\u6781\u81f4\u7684\u6027\u80fd\uff0c\u4e3b\u8981\u8003\u8651\u6253\u901a\u6d41\u7a0b\uff0c\u5728\u65e0\u6cd5\u5168\u90e8\u4f7f\u7528c_transforms\u7b97\u5b50\uff08\u7f3a\u5c11\u5bf9\u5e94\u7684c_transforms\u7b97\u5b50\uff09\u7684\u60c5\u51b5\u4e0b\uff0c\u53ef\u4f7f\u7528py_transforms\u7b97\u5b50\u66ff\u4ee3\uff0c\u6b64\u65f6\u5373\u5b58\u5728\u6df7\u5408\u4f7f\u7528\u3002\t\u5bf9\u6b64\u6211\u4eec\u9700\u8981\u6ce8\u610fc_transforms \u7b97\u5b50\u7684\u8f93\u51fa\u901a\u5e38\u662fnumpy array\uff0cpy_transforms\u7b97\u5b50\u7684\u8f93\u51fa\u662fPIL Image\uff0c\u5177\u4f53\u53ef\u67e5\u770b\u7b97\u5b50\u8bf4\u660e\uff0c\u4e3a\u6b64\u901a\u5e38\u7684\u6df7\u5408\u4f7f\u7528\u65b9\u6cd5\u4e3a\uff1a\t- c_transforms \u7b97\u5b50 + ToPIL \u7b97\u5b50 + py_transforms \u7b97\u5b50 + ToTensor\u7b97\u5b50\t- py_transforms \u7b97\u5b50 + ToTensor \u7b97\u5b50 + c_transforms \u7b97\u5b50\t```python\t# example that using c_transforms and py_transforms operators together\t# in following case: c_vision refers to c_transforms\uff0c py_vision refer to py_transforms\t\tdecode_op = c_vision.Decode()\t\t# If input type is not PIL\uff0c then add ToPIL operator.\ttransforms = [\t py_vision.ToPIL()\uff0c\t py_vision.CenterCrop(375)\uff0c\t py_vision.ToTensor()\t]\ttransform = mindspore.dataset.transforms.py_transforms.Compose(transforms)\tdata1 = data1.map(operations=decode_op\uff0c input_columns=[\"image\"])\tdata1 = data1.map(operations=transform\uff0c input_columns=[\"image\"])\t```", "\u5f53\u9519\u8bef\u63d0\u793a \"The data pipeline is not a tree (i.e.\uff0c one node has 2 consumers)\" \u5e94\u8be5\u600e\u4e48\u68c0\u67e5\uff1f": "\u4e0a\u8ff0\u9519\u8bef\u901a\u5e38\u662f\u811a\u672c\u4e66\u5199\u9519\u8bef\u5bfc\u81f4\uff0c\u5177\u4f53\u53d1\u751f\u5728\u4e0b\u9762\u8fd9\u79cd\u573a\u666f\uff1b\u6b63\u5e38\u60c5\u51b5\u4e0b\u6570\u636e\u5904\u7406pipeline\u4e2d\u7684\u64cd\u4f5c\u662f\u4f9d\u6b21\u4e32\u8054\u7684\uff0c\u4e0b\u9762\u7684\u5f02\u5e38\u573a\u666f\u4e2ddataset1\u6709\u4e24\u4e2a\u6d88\u8d39\u8282\u70b9 dataset2\u548cdataset3\uff0c\u5c31\u4f1a\u51fa\u73b0\u4e0a\u8ff0\u9519\u8bef\u3002\t```python\t dataset2 = dataset1.map(***)\t dataset3 = dataset1.map(***)\t```\u6b63\u786e\u7684\u5199\u6cd5\u5982\u4e0b\u6240\u793a\uff0cdataset3\u662f\u7531dataset2\u8fdb\u6027\u6570\u636e\u589e\u5f3a\u5f97\u5230\u7684\uff0c\u800c\u4e0d\u662f\u5728dataset1\u57fa\u7840\u4e0a\u8fdb\u884c\u6570\u636e\u589e\u5f3a\u64cd\u4f5c\u5f97\u5230\u3002\t```python\t dataset2 = dataset1.map(***)\t dataset3 = dataset2.map(***)\t```", "MindSpore\u4e2d\u548cDataloader\u5bf9\u5e94\u7684\u7b97\u5b50\u662f\u4ec0\u4e48\uff1f": "\u5982\u679c\u5c06Dataloader\u8003\u8651\u4e3a\u63a5\u6536\u81ea\u5b9a\u4e49Dataset\u7684API\u63a5\u53e3\uff0cMindSpore\u6570\u636e\u5904\u7406API\u4e2d\u548cDataloader\u8f83\u4e3a\u76f8\u4f3c\u7684\u662fGeneratorDataset\uff0c\u53ef\u63a5\u6536\u7528\u6237\u81ea\u5b9a\u4e49\u7684Dataset\uff0c\u5177\u4f53\u4f7f\u7528\u65b9\u5f0f\u53c2\u8003[GeneratorDataset \u6587\u6863](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset/custom.html)\uff0c\u5dee\u5f02\u5bf9\u6bd4\u4e5f\u53ef\u67e5\u770b[API\u7b97\u5b50\u6620\u5c04\u8868](https://www.mindspore.cn/docs/zh-CN/master/note/api_mapping/pytorch_api_mapping.html)\u3002", "\u81ea\u5b9a\u4e49\u7684Dataset\u51fa\u73b0\u9519\u8bef\u65f6\uff0c\u5e94\u8be5\u5982\u4f55\u8c03\u8bd5\uff1f": "\u81ea\u5b9a\u4e49\u7684Dataset\u901a\u5e38\u4f1a\u4f20\u5165\u5230GeneratorDataset\uff0c\u5728\u4f7f\u7528\u8fc7\u7a0b\u4e2d\u9519\u8bef\u6307\u5411\u4e86\u81ea\u5b9a\u4e49\u7684Dataset\u65f6\uff0c\u53ef\u901a\u8fc7\u4e00\u4e9b\u65b9\u5f0f\u8fdb\u884c\u8c03\u8bd5\uff08\u5982\u589e\u52a0\u6253\u5370\u4fe1\u606f\uff0c\u6253\u5370\u8fd4\u56de\u503c\u7684shape\u3001dtype\u7b49\uff09\uff0c\u81ea\u5b9a\u4e49Dataset\u901a\u5e38\u8981\u4fdd\u6301\u4e2d\u95f4\u5904\u7406\u7ed3\u679c\u4e3anumpy array\uff0c\u4e14\u4e0d\u5efa\u8bae\u4e0eMindSpore\u7f51\u7edc\u8ba1\u7b97\u7684\u7b97\u5b50\u6df7\u5408\u4f7f\u7528\u3002\u6b64\u5916\u9488\u5bf9\u81ea\u5b9a\u4e49\u7684Dataset\u5982\u4e0b\u9762\u7684MyDataset\uff0c\u521d\u59cb\u5316\u540e\u4e5f\u53ef\u76f4\u63a5\u8fdb\u884c\u5982\u4e0b\u904d\u5386\uff08\u4e3b\u8981\u4e3a\u7b80\u5316\u8c03\u8bd5\uff0c\u5206\u6790\u539f\u59cbDataset\u4e2d\u7684\u95ee\u9898\uff0c\u53ef\u4e0d\u4f20\u5165GeneratorDataset)\uff0c\u8c03\u8bd5\u9075\u5faa\u5e38\u89c4\u7684Python\u8bed\u6cd5\u89c4\u5219\u3002\t```python\tDataset = MyDataset()\tfor item in Dataset:\t print(\"item:\"\uff0c item)\t```", "\u6570\u636e\u5904\u7406\u7b97\u5b50\u4e0e\u7f51\u7edc\u8ba1\u7b97\u7b97\u5b50\u80fd\u5426\u6df7\u5408\u4f7f\u7528\uff1f": "\u901a\u5e38\u6570\u636e\u5904\u7406\u7b97\u5b50\u4e0e\u7f51\u7edc\u8ba1\u7b97\u7b97\u5b50\u6df7\u5408\u4f7f\u7528\u4f1a\u5bfc\u81f4\u6027\u80fd\u6709\u6240\u964d\u4f4e\uff0c\u5728\u7f3a\u5c11\u5bf9\u5e94\u7684\u6570\u636e\u5904\u7406\u7b97\u5b50\u4e14\u81ea\u5b9a\u4e49py_transforms\u7b97\u5b50\u4e0d\u5408\u9002\u65f6\u53ef\u8fdb\u884c\u5c1d\u8bd5\u3002\u9700\u8981\u6ce8\u610f\u7684\u662f\uff0c\u56e0\u4e3a\u4e8c\u8005\u9700\u8981\u7684\u8f93\u5165\u4e0d\u4e00\u81f4\uff0c\u6570\u636e\u5904\u7406\u7b97\u5b50\u901a\u5e38\u8f93\u5165\u4e3anumpy array \u6216 PIL Image\uff0c\u4f46\u7f51\u7edc\u8ba1\u7b97\u7b97\u5b50\u8f93\u5165\u9700\u8981\u662fMindSpore.Tensor;\t\u5c06\u4e8c\u8005\u6df7\u5408\u4f7f\u7528\u9700\u8981\u4f7f\u4e0a\u4e00\u4e2a\u7b97\u5b50\u7684\u8f93\u51fa\u683c\u5f0f\u548c\u4e0b\u4e00\u4e2a\u7b97\u5b50\u6240\u9700\u7684\u8f93\u5165\u683c\u5f0f\u4e00\u81f4\u3002\u6570\u636e\u5904\u7406\u7b97\u5b50\u6307\u7684\u662f\u5b98\u7f51API\u6587\u6863\u4e2dmindspore.dataset\u5f00\u5934\u7684\u7b97\u5b50\uff0c\u5982 mindspore.dataset.vision.c_transforms.CenterCrop\uff0c\u7f51\u7edc\u8ba1\u7b97\u7b97\u5b50\u5305\u542b mindspore.nn\u3001 mindspore.ops\u7b49\u76ee\u5f55\u4e0b\u7684\u7b97\u5b50\u3002", "MindRecord\u4e3a\u4f55\u4f1a\u751f\u6210.db\u6587\u4ef6\uff1f \u7f3a\u5c11.db\u6587\u4ef6\u65f6\u52a0\u8f7d\u6570\u636e\u96c6\u4f1a\u6709\u4ec0\u4e48\u62a5\u9519\uff1f": ".db\u6587\u4ef6\u4e3aMindRecord\u6587\u4ef6\u5bf9\u5e94\u7684\u7d22\u5f15\u6587\u4ef6\uff0c\u7f3a\u5c11.db\u6587\u4ef6\u901a\u5e38\u4f1a\u5728\u83b7\u53d6\u6570\u636e\u96c6\u603b\u7684\u6570\u636e\u91cf\u65f6\u62a5\u9519\uff0c\u9519\u8bef\u63d0\u793a\u5982\uff1a`MindRecordOp Count total rows failed`\u3002", "\u81ea\u5b9a\u4e49Dataset\u4e2d\u5982\u4f55\u8fdb\u884c\u56fe\u50cf\u8bfb\u53d6\u5e76\u8fdb\u884cDecode\u64cd\u4f5c\uff1f": "\u4f20\u5165GeneratorDataset\u7684\u81ea\u5b9a\u4e49Dataset\uff0c\u5728\u63a5\u53e3\u5185\u90e8\uff08\u5982`__getitem__`\u51fd\u6570\uff09\u8fdb\u884c\u56fe\u50cf\u8bfb\u53d6\u540e\u53ef\u4ee5\u76f4\u63a5\u8fd4\u56debytes\u7c7b\u578b\u7684\u6570\u636e\u3001numpy array\u7c7b\u578b\u7684\u6570\u7ec4\u6216\u5df2\u7ecf\u505a\u4e86\u89e3\u7801\u64cd\u4f5c\u7684numpy array\uff0c \u5177\u4f53\u5982\u4e0b\u6240\u793a\uff1a\t- \u8bfb\u53d6\u56fe\u50cf\u540e\u76f4\u63a5\u8fd4\u56debytes\u7c7b\u578b\u7684\u6570\u636e\t\t ```python\t class ImageDataset:\t def __init__(self\uff0c data_path):\t self.data = data_path\t\t def __getitem__(self\uff0c index):\t # use file open and read method\t f = open(self.data[index]\uff0c 'rb')\t img_bytes = f.read()\t f.close()\t\t # return bytes directly\t return (img_bytes\uff0c )\t\t def __len__(self):\t return len(self.data)\t\t # data_path is a list of image file name\t dataset1 = ds.GeneratorDataset(ImageDataset(data_path)\uff0c [\"data\"])\t decode_op = py_vision.Decode()\t to_tensor = py_vision.ToTensor(output_type=np.int32)\t dataset1 = dataset1.map(operations=[decode_op\uff0c to_tensor]\uff0c input_columns=[\"data\"])\t ```\t\t- \u8bfb\u53d6\u56fe\u50cf\u540e\u8fd4\u56denumpy array\t\t ```python\t # \u5728\u4e0a\u9762\u7684\u7528\u4f8b\u4e2d\uff0c\u5bf9__getitem__\u51fd\u6570\u53ef\u8fdb\u884c\u5982\u4e0b\u4fee\u6539\uff0c Decode\u64cd\u4f5c\u540c\u4e0a\u8ff0\u7528\u4f8b\u4e00\u81f4\t def __getitem__(self\uff0c index):\t # use np.fromfile to read image\t img_np = np.fromfile(self.data[index])\t\t # return Numpy array directly\t return (img_np\uff0c )\t ```\t\t- \u8bfb\u53d6\u56fe\u50cf\u540e\u76f4\u63a5\u8fdb\u884cDecode\u64cd\u4f5c\t\t ```python\t # \u4f9d\u636e\u4e0a\u9762\u7684\u7528\u4f8b\uff0c\u5bf9__getitem__\u51fd\u6570\u53ef\u8fdb\u884c\u5982\u4e0b\u4fee\u6539\uff0c \u76f4\u63a5\u8fd4\u56deDecode\u4e4b\u540e\u7684\u6570\u636e\uff0c\u6b64\u540e\u53ef\u4ee5\u4e0d\u9700\u8981\u901a\u8fc7map\u7b97\u5b50\u63a5Decode\u64cd\u4f5c\t def __getitem__(self\uff0c index):\t # use Image.Open to open file\uff0c and convert to RGC\t img_rgb = Image.Open(self.data[index]).convert(\"RGB\")\t return (img_rgb\uff0c )\t ```", "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2d\uff0c\u62a5\u9519`RuntimeError: can't start new thread`\uff0c\u600e\u4e48\u89e3\u51b3\uff1f": "\u4e3b\u8981\u539f\u56e0\u662f\u5728\u4f7f\u7528`**Dataset`\u3001`.map(...)`\u548c`.batch(...)`\u65f6\uff0c\u53c2\u6570`num_parallel_workers`\u914d\u7f6e\u8fc7\u5927\uff0c\u7528\u6237\u8fdb\u7a0b\u6570\u8fbe\u5230\u6700\u5927\uff0c\u53ef\u4ee5\u901a\u8fc7`ulimit -u \u6700\u5927\u8fdb\u7a0b\u6570`\u6765\u589e\u52a0\u7528\u6237\u6700\u5927\u8fdb\u7a0b\u6570\u8303\u56f4\uff0c\u6216\u8005\u5c06`num_parallel_workers`\u914d\u7f6e\u51cf\u5c0f\u3002", "\u5728\u4f7f\u7528`GeneratorDataset`\u52a0\u8f7d\u6570\u636e\u65f6\uff0c\u62a5\u9519`RuntimeError: Failed to copy data into tensor.`\uff0c\u600e\u4e48\u89e3\u51b3\uff1f": "\u5728\u4f7f\u7528`GeneratorDataset`\u52a0\u8f7dPyfunc\u8fd4\u56de\u7684Numpy array\u65f6\uff0cMindSpore\u6846\u67b6\u5c06\u6267\u884cNumpy array\u5230MindSpre Tensor\u7684\u8f6c\u6362\uff0c\u5047\u8bbeNumpy array\u6240\u6307\u5411\u7684\u5185\u5b58\u88ab\u91ca\u653e\uff0c\u53ef\u80fd\u4f1a\u53d1\u751f\u5185\u5b58\u62f7\u8d1d\u7684\u9519\u8bef\u3002\u4e3e\u4f8b\u5982\u4e0b\uff1a\t- \u5728`__getitem__`\u51fd\u6570\u4e2d\u6267\u884cNumpy array - MindSpore Tensor - Numpy array\u7684\u5c31\u5730\u8f6c\u6362\u3002\u5176\u4e2dTensor `tensor`\u548cNumpy array `ndarray_1`\u5171\u4eab\u540c\u4e00\u5757\u5185\u5b58\uff0cTensor `tensor`\u5728`__getitem__`\u51fd\u6570\u9000\u51fa\u65f6\u8d85\u51fa\u4f5c\u7528\u57df\uff0c\u5176\u6240\u6307\u5411\u7684\u5185\u5b58\u5c06\u88ab\u91ca\u653e\u3002\t\t ```python\t class RandomAccessDataset:\t def __init__(self):\t pass\t\t def __getitem__(self\uff0c item):\t ndarray = np.zeros((544\uff0c 1056\uff0c 3))\t tensor = Tensor.from_numpy(ndarray)\t ndarray_1 = tensor.asnumpy()\t return ndarray_1\t\t def __len__(self):\t return 8\t\t data1 = ds.GeneratorDataset(RandomAccessDataset()\uff0c [\"data\"])\t ```\t\t- \u5ffd\u7565\u4e0a\u9762\u4f8b\u5b50\u4e2d\u7684\u5faa\u73af\u8f6c\u6362\uff0c\u5728`__getitem__`\u51fd\u6570\u9000\u51fa\u65f6\uff0cTensor\u5bf9\u8c61`tensor`\u88ab\u91ca\u653e\uff0c\u548c\u5176\u5171\u4eab\u540c\u4e00\u5757\u5185\u5b58\u7684Numpy array\u5bf9\u8c61`ndarray_1`\u53d8\u6210\u672a\u77e5\u72b6\u6001\uff0c\u4e3a\u4e86\u89c4\u907f\u6b64\u95ee\u9898\u53ef\u4ee5\u76f4\u63a5\u4f7f\u7528`deepcopy`\u51fd\u6570\u4e3a\u5c06\u8fd4\u56de\u7684Numpy array\u5bf9\u8c61`ndarray_2`\u7533\u8bf7\u72ec\u7acb\u7684\u5185\u5b58\u3002\t\t ```python\t class RandomAccessDataset:\t def __init__(self):\t pass\t\t def __getitem__(self\uff0c item):\t ndarray = np.zeros((544\uff0c 1056\uff0c 3))\t tensor = Tensor.from_numpy(ndarray)\t ndarray_1 = tensor.asnumpy()\t ndarray_2 = copy.deepcopy(ndarray_1)\t return ndarray_2\t\t def __len__(self):\t return 8\t\t data1 = ds.GeneratorDataset(RandomAccessDataset()\uff0c [\"data\"])\t ```", "\u8fdb\u884cHCCL\u5206\u5e03\u5f0f\u8bad\u7ec3\u51fa\u9519\uff1a`Init plugin so failed\uff0c ret = 1343225860`\uff1f": "\u521d\u59cb\u5316HCCL\u5931\u8d25\u4e86\uff0c\u901a\u5e38\u7531\u4e8e`rank json`\u6ca1\u5199\u5bf9\uff0c\u53ef\u4ee5\u7528`mindspore/model_zoo/utils/hccl_tools`\u4e0b\u9762\u7684\u5de5\u5177\u751f\u6210\u4e00\u4e2a\u8bd5\u8bd5\u3002\u6216\u8005\u5bfc\u5165\u73af\u5883\u53d8\u91cf`export ASCEND_SLOG_PRINT_TO_STDOUT=1`\u6253\u5f00HCCL\u7684\u65e5\u5fd7\u6253\u5370\uff0c\u7136\u540e\u68c0\u67e5\u65e5\u5fd7\u4fe1\u606f\u3002", "MindSpore\u6267\u884cGPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u62a5\u9519\u5982\u4e0b\uff0c\u5982\u4f55\u89e3\u51b3:": "```text\tLoading libgpu_collective.so failed. Many reasons could cause this:\t1.libgpu_collective.so is not installed.\t2.nccl is not installed or found.\t3.mpi is not installed or found\t```\u6b64\u95ee\u9898\u4e3aMindSpore\u52a8\u6001\u52a0\u8f7d\u96c6\u5408\u901a\u4fe1\u5e93\u5931\u8d25\uff0c\u53ef\u80fd\u539f\u56e0\u5982\u4e0b:\t- \u6267\u884c\u73af\u5883\u672a\u5b89\u88c5\u5206\u5e03\u5f0f\u8bad\u7ec3\u4f9d\u8d56\u7684OpenMPI\u4ee5\u53caNCCL\u3002\t- NCCL\u7248\u672c\u672a\u66f4\u65b0\u81f3`v2.7.6`: MindSpore `v1.1.0`\u65b0\u589eGPU P2P\u901a\u4fe1\u7b97\u5b50\uff0c\u8be5\u7279\u6027\u4f9d\u8d56\u4e8eNCCL `v2.7.6`\uff0c\u82e5\u73af\u5883\u4f7f\u7528\u7684NCCL\u672a\u5347\u7ea7\u4e3a\u6b64\u7248\u672c\uff0c\u5219\u4f1a\u5f15\u8d77\u52a0\u8f7d\u5931\u8d25\u9519\u8bef\u3002", "GPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u573a\u666f\u4e0b\uff0c\u82e5\u9519\u8bef\u8bbe\u7f6e\u73af\u5883\u53d8\u91cfCUDA_VISIBLE_DEVICES\u7684\u4e2a\u6570\u5c0f\u4e8e\u6267\u884c\u7684\u8fdb\u7a0b\u6570\u65f6\uff0c\u53ef\u80fd\u5bfc\u81f4\u8fdb\u7a0b\u963b\u585e\u95ee\u9898\u3002": "\u6b64\u573a\u666f\u4e0b\uff0c\u90e8\u5206\u8bad\u7ec3\u8fdb\u7a0b\u4f1a\u63d0\u793a\u5982\u4e0b\u62a5\u9519\uff1a\t```text\t[ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/cuda_driver.cc:245] SetDevice] SetDevice for id:7 failed\uff0c ret[101]\uff0c invalid device ordinal. Please make sure that the 'device_id' set in context is in the range:[0\uff0c total number of GPU). If the environment variable 'CUDA_VISIBLE_DEVICES' is set\uff0c the total number of GPU will be the number set in the environment variable 'CUDA_VISIBLE_DEVICES'. For example\uff0c if export CUDA_VISIBLE_DEVICES=4\uff0c5\uff0c6\uff0c the 'device_id' can be 0\uff0c1\uff0c2 at the moment\uff0c 'device_id' starts from 0\uff0c and 'device_id'=0 means using GPU of number 4.\t[ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/gpu_device_manager.cc:27] InitDevice] Op Error: Failed to set current device id | Error Number: 0\t```\u5176\u4f59\u8fdb\u7a0b\u7531\u4e8eGPU\u8d44\u6e90\u5df2\u5206\u914d\u6210\u529f\uff0c\u4f1a\u6b63\u5e38\u6267\u884c\u5230\u521d\u59cb\u5316`NCCL`\u6b65\u9aa4\uff0c\u65e5\u5fd7\u5982\u4e0b\uff1a\t```text\t[INFO] DEVICE [mindspore/ccsrc/runtime/hardware/gpu/gpu_device_context.cc:90] Initialize] Start initializing NCCL communicator for device 1\t```\u6b64\u6b65\u9aa4\u4e2d\u4f1a\u8c03\u7528`NCCL`\u63a5\u53e3`ncclCommInitRank`\uff0c\u8be5\u63a5\u53e3\u4f1a\u963b\u585e\uff0c\u76f4\u5230\u6240\u6709\u8fdb\u7a0b\u8fbe\u6210\u4e00\u81f4\u3002\u56e0\u6b64\u5982\u679c\u67d0\u8fdb\u7a0b\u6ca1\u6709\u8c03\u7528`ncclCommInitRank`\uff0c\u5219\u4f1a\u5bfc\u81f4\u8fdb\u7a0b\u963b\u585e\u3002\t\u6b64\u95ee\u9898\u6211\u4eec\u5df2\u5411`NCCL`\u793e\u533a\u53cd\u9988\uff0c\u793e\u533a\u5f00\u53d1\u8005\u6b63\u5728\u8bbe\u8ba1\u89e3\u51b3\u65b9\u6848\u4e2d\uff0c\u76ee\u524d\u6700\u65b0\u7248\u672c\u8fd8\u672a\u4fee\u590d\uff0c\u8be6\u89c1[issue\u94fe\u63a5](https://github.com/NVIDIA/nccl/issues/593#issuecomment-965939279)\u3002\t\u89e3\u51b3\u65b9\u6cd5\uff1a\u624b\u52a8`kill`\u8bad\u7ec3\u8fdb\u7a0b\uff0c\u6839\u636e\u62a5\u9519\u65e5\u5fd7\uff0c\u8bbe\u7f6e\u6b63\u786e\u7684\u5361\u53f7\u540e\uff0c\u91cd\u542f\u8bad\u7ec3\u4efb\u52a1\u3002", "GPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u573a\u666f\u4e0b\uff0c\u82e5\u67d0\u8fdb\u7a0b\u5f02\u5e38\u9000\u51fa\uff0c\u53ef\u80fd\u5bfc\u81f4\u5176\u4f59\u8fdb\u7a0b\u963b\u585e\u95ee\u9898\u3002": "\u6b64\u573a\u666f\u4e0b\uff0c\u5f02\u5e38\u8fdb\u7a0b\u7531\u4e8e\u5404\u79cd\u95ee\u9898\u9000\u51fa\uff0c\u5176\u4f59\u8fdb\u7a0b\u7531\u4e8eGPU\u8d44\u6e90\u5df2\u5206\u914d\u6210\u529f\uff0c\u4f1a\u6b63\u5e38\u6267\u884c\u5230\u521d\u59cb\u5316`NCCL`\u6b65\u9aa4\uff0c\u65e5\u5fd7\u5982\u4e0b\uff1a\t```text\t[INFO] DEVICE [mindspore/ccsrc/runtime/hardware/gpu/gpu_device_context.cc:90] Initialize] Start initializing NCCL communicator for device 1\t```\u6b64\u6b65\u9aa4\u4e2d\u4f1a\u8c03\u7528`NCCL`\u63a5\u53e3`ncclCommInitRank`\uff0c\u8be5\u63a5\u53e3\u4f1a\u963b\u585e\uff0c\u76f4\u5230\u6240\u6709\u8fdb\u7a0b\u8fbe\u6210\u4e00\u81f4\u3002\u56e0\u6b64\u5982\u679c\u67d0\u8fdb\u7a0b\u6ca1\u6709\u8c03\u7528`ncclCommInitRank`\uff0c\u5219\u4f1a\u5bfc\u81f4\u8fdb\u7a0b\u963b\u585e\u3002\t\u6b64\u95ee\u9898\u6211\u4eec\u5df2\u5411`NCCL`\u793e\u533a\u53cd\u9988\uff0c\u793e\u533a\u5f00\u53d1\u8005\u6b63\u5728\u8bbe\u8ba1\u89e3\u51b3\u65b9\u6848\u4e2d\uff0c\u76ee\u524d\u6700\u65b0\u7248\u672c\u8fd8\u672a\u4fee\u590d\uff0c\u8be6\u89c1[issue\u94fe\u63a5](https://github.com/NVIDIA/nccl/issues/593#issuecomment-965939279)\u3002\t\u89e3\u51b3\u65b9\u6cd5\uff1a\u624b\u52a8`kill`\u8bad\u7ec3\u8fdb\u7a0b\u540e\u91cd\u542f\u8bad\u7ec3\u4efb\u52a1\u3002", "\u5728\u6267\u884cGPU\u5355\u673a\u5355\u5361\u7684\u811a\u672c\u65f6\uff0c\u4e0d\u4f7f\u7528mpirun\u542f\u52a8\u8fdb\u7a0b\u65f6\uff0c\u8c03\u7528mindspore.communication.init\u65b9\u6cd5\u53ef\u80fd\u4f1a\u62a5\u9519\uff0c\u5bfc\u81f4\u6267\u884c\u5931\u8d25\uff0c\u8be5\u5982\u4f55\u5904\u7406\uff1f": "```text\t[CRITICAL] DISTRIBUTED [mindspore/ccsrc/distributed/cluster/cluster_context.cc:130] InitNodeRole] Role name is invalid...\t```\u5728\u7528\u6237\u4e0d\u4f7f\u7528`mpirun`\u542f\u52a8\u8fdb\u7a0b\uff0c\u4f46\u662f\u4f9d\u7136\u8c03\u7528\u4e86`init()`\u65b9\u6cd5\u7684\u60c5\u51b5\u4e0b\uff0cMindSpore\u8981\u6c42\u7528\u6237\u6309\u7167[\u4e0d\u4f9d\u8d56OpenMPI\u8fdb\u884c\u8bad\u7ec3](https://www.mindspore.cn/tutorials/experts/zh-CN/master/parallel/train_gpu.html#\u4e0d\u4f9d\u8d56openmpi\u8fdb\u884c\u8bad\u7ec3)\u914d\u7f6e\u82e5\u5e72\u73af\u5883\u53d8\u91cf\u5e76\u8fdb\u884c\u6821\u9a8c\uff0c\u82e5\u6ca1\u6709\u914d\u7f6e\uff0cMindSpore\u4f1a\u7ed9\u51fa\u4ee5\u4e0a\u62a5\u9519\u63d0\u793a\u3002\u56e0\u6b64\u5efa\u8bae\u53ea\u6709\u5728\u6267\u884c\u5206\u5e03\u5f0f\u8bad\u7ec3\u65f6\u8c03\u7528`mindspore.communication.init`\uff0c\u5e76\u5728\u4e0d\u4f7f\u7528`mpirun`\u7684\u573a\u666f\u4e0b\uff0c\u6839\u636e\u6587\u6863\u914d\u7f6e\u6b63\u786e\u7684\u73af\u5883\u53d8\u91cf\u4ee5\u542f\u52a8\u5206\u5e03\u5f0f\u8bad\u7ec3\u3002", "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0c\u63d0\u793a\u7531\u4e8eMPI_Allgather\u5931\u8d25\u3002": "```text\tpml_ucx.c:175 Error: Failed to receive UCX worker address: Not found (-13)\tpml_ucx.c:452 Error: Failed to resolve UCX endpoint for rank X\t```\u6b64\u95ee\u9898\u662f`OpenMPI`\u5728Host\u4fa7\u901a\u4fe1\u65f6\uff0c\u65e0\u6cd5\u548c\u5bf9\u7aef\u5730\u5740\u8fdb\u884c\u901a\u4fe1\uff0c\u4e00\u822c\u662f\u673a\u5668\u4e4b\u95f4\u7684\u7f51\u5361\u914d\u7f6e\u4e0d\u540c\u5bfc\u81f4\u7684\uff0c\u53ef\u4ee5\u901a\u8fc7\u624b\u52a8\u8bbe\u7f6e\u7f51\u5361\u540d\u6216\u8005\u5b50\u7f51\u7684\u65b9\u5f0f\u89e3\u51b3\uff1a\t```text\tmpirun -n process_num --mca btl tcp --mca btl_tcp_if_include eth0 ./run.sh\t```\u4ee5\u4e0a\u6307\u4ee4\u542f\u52a8\u4e86`process_num`\u4e2a`run.sh`\u8fdb\u7a0b\uff0c\u5e76\u4e14\u9009\u62e9Host\u4fa7\u901a\u4fe1\u65b9\u5f0f\u4e3a`tcp`\uff0c\u7f51\u5361\u9009\u62e9\u4e86`eth0`\uff0c\u8fd9\u6837\u5c31\u80fd\u4fdd\u8bc1\u5728\u6bcf\u53f0\u673a\u5668\u4e0a\u4f7f\u7528\u7684\u7f51\u5361\u76f8\u540c\uff0c\u8fdb\u800c\u89e3\u51b3\u901a\u4fe1\u5f02\u5e38\u95ee\u9898\u3002\t\u8fd8\u53ef\u4ee5\u9009\u62e9\u5b50\u7f51\u6765\u8fdb\u884c\u5339\u914d\uff1a\t```text\tmpirun -n process_num --mca btl tcp --mca btl_tcp_if_include 192.168.1.0/24 ./run.sh\t```\u5b50\u7f51\u8303\u56f4\u9700\u8981\u5305\u62ec\u6240\u6709\u673a\u5668\u6240\u7528\u7684IP\u5730\u5740\u3002", "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u5206\u5e03\u5f0f\u8bad\u7ec3\u65f6\uff0c\u5355\u673a\u591a\u5361\u8bad\u7ec3\u6b63\u5e38\uff0c\u4f46\u5728\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0c\u67d0\u4e9b\u673a\u5668\u63d0\u793aGPU device id\u8bbe\u7f6e\u5931\u8d25\u3002": "```text\t[ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/cuda_driver.cc:245] SetDevice] SetDevice for id:7 failed\uff0c ret[101]\uff0c invalid device ordinal. Please make sure that the 'device_id' set in context is in the range:[0\uff0c total number of GPU). If the environment variable 'CUDA_VISIBLE_DEVICES' is set\uff0c the total number of GPU will be the number set in the environment variable 'CUDA_VISIBLE_DEVICES'. For example\uff0c if export CUDA_VISIBLE_DEVICES=4\uff0c5\uff0c6\uff0c the 'device_id' can be 0\uff0c1\uff0c2 at the moment\uff0c 'device_id' starts from 0\uff0c and 'device_id'=0 means using GPU of number 4.\t[ERROR] DEVICE [mindspore/ccsrc/runtime/device/gpu/gpu_device_manager.cc:27] InitDevice] Op Error: Failed to set current device id | Error Number: 0\t```\u5728\u591a\u673a\u573a\u666f\u4e0b\uff0c\u5404\u8fdb\u7a0b\u5361\u53f7\u9700\u8981\u901a\u8fc7\u5728Host\u4fa7`AllGather` `HOSTNAME`\u540e\u8ba1\u7b97\u5f97\u5230\uff0c\u5982\u679c\u673a\u5668\u95f4\u6709\u4f7f\u7528\u76f8\u540c\u7684`HOSTNAME`\uff0c\u5219\u8fdb\u7a0b\u5361\u53f7\u4f1a\u8ba1\u7b97\u51fa\u9519\uff0c\u5bfc\u81f4\u5361\u53f7\u8d8a\u754c\u800c\u8bbe\u7f6e\u5931\u8d25\u3002\u53ef\u4ee5\u5728\u6267\u884c\u811a\u672c\u4e2d\u8bbe\u7f6e\u6bcf\u53f0\u673a\u5668\u7684HOSTNAME\u4e3a\u5404\u81ea\u7684IP\u5730\u5740\u6765\u89e3\u51b3\uff1a\t```text\texport HOSTNAME=node_ip_address\t```", "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0cNCCL\u62a5\u9519\u63d0\u793a\u7f51\u7edc\u4e0d\u901a\u3002": "```text\tinclude/socket.h:403 NCCL WARN Connect to XXX failed: Network is unreachable\t```\u6b64\u95ee\u9898\u662f`NCCL`\u5728Host\u4fa7\u540c\u6b65\u8fdb\u7a0b\u4fe1\u606f\u6216\u8005\u521d\u59cb\u5316\u901a\u4fe1\u57df\u65f6\uff0c\u65e0\u6cd5\u548c\u5bf9\u7aef\u5730\u5740\u8fdb\u884c\u901a\u4fe1\uff0c\u4e00\u822c\u662f\u673a\u5668\u4e4b\u95f4\u7684\u7f51\u5361\u914d\u7f6e\u4e0d\u540c\u5bfc\u81f4\u7684\uff0c\u53ef\u4ee5\u901a\u8fc7\u8bbe\u7f6e`NCCL`\u73af\u5883\u53d8\u91cf`NCCL_SOCKET_IFNAME`\uff0c\u8fdb\u884c\u7f51\u5361\u9009\u62e9\uff1a\t```text\texport NCCL_SOCKET_IFNAME=eth\t```\u4ee5\u4e0a\u6307\u4ee4\u8bbe\u7f6e\u4e86`NCCL`\u5728Host\u4fa7\u9009\u62e9\u7f51\u5361\u540d\u4e2d\u5e26\u6709`eth`\u7684\u7f51\u5361\u8fdb\u884c\u901a\u4fe1\u3002", "\u591a\u673a\u591a\u5361\u9009\u62e9\u7279\u5b9a\u540d\u79f0\u7684RDMA\u7f51\u5361(\u901a\u8fc7NCCL_SOCKET_IFNAME\u8bbe\u7f6e)\u901a\u4fe1\u540e\uff0c\u8bad\u7ec3\u4ecd\u7136\u62a5\u9519\uff1a": "```text\tmisc/ibvwrap.cc:284 NCCL WARN Call to ibv_modify_qp failed with error Invalid argument\t...\tinclude/socket.h:403 NCCL WARN Connect to XXX failed: Connection refused\t```\u4e00\u822c\u6b64\u95ee\u9898\u662f\u591a\u673a\u4e4b\u95f4RDMA\u7f51\u5361\u914d\u7f6e\u5b58\u5728\u5dee\u5f02\uff0c\u9700\u8981\u5177\u4f53\u60c5\u51b5\u5177\u4f53\u5206\u6790\u3002\u4f46\u5e38\u89c1\u539f\u56e0\u662f\u5b58\u5728\u67d0\u4e9b\u4e3b\u673a\u7f51\u5361\u5b58\u5728IB\u534f\u8bae\u548cRoCE\u534f\u8bae\u540c\u65f6\u5b58\u5728\u7684\u60c5\u51b5\uff0c\u53ef\u80fd\u51fa\u73b0\u8fde\u63a5\u5efa\u7acb\u5931\u8d25\u7684\u60c5\u51b5\u3002\u89e3\u51b3\u65b9\u6848\uff1a\t\u9700\u8981\u4f7f\u7528\u4ee5\u4e0b\u6307\u4ee4\u6307\u5b9a\u4f7f\u7528\u7684RDMA\u7f51\u5361\u540d\u4e3aib\u5f00\u5934\uff1a\t```text\texport NCCL_IB_HCA=ib\t```", "\u5355\u673a\u591a\u5361\u8bad\u7ec3\u80fd\u591f\u6210\u529f\uff0c\u4f46\u662f\u6269\u5c55\u811a\u672c\u5230\u591a\u673a\u591a\u5361\u540e\uff0c\u5176\u4ed6\u4e3b\u673a\u63d0\u793a\u5404\u7c7b\u62a5\u9519\uff1a": "\u62a5\u9519\u5185\u5bb9\u6709\u591a\u79cd\uff0c\u4e0b\u9762\u662f\u51e0\u79cd\u5178\u578b\u7684\u62a5\u9519\uff0c\u53ef\u80fd\u6709\uff1a\t1.\u5df2\u7ecf\u5b89\u88c5\u7684whl\u5305\u627e\u4e0d\u5230\u3002\t2.IB\u7f51\u5361\u901a\u4fe1\u5931\u8d25\u3002\t3.Cuda\u5e93\u52a0\u8f7d\u5931\u8d25\u3002\t\u8fd9\u4e9b\u95ee\u9898\uff0c\u90fd\u662f\u7531\u4e8e\u5728`mpirun`\u542f\u52a8\u5176\u4ed6\u4e3b\u673a\u65f6\uff0c\u5176\u4ed6\u4e3b\u673a\u7684\u73af\u5883\u53d8\u91cf(\u5305\u62ecNCCL\u7684\u7f51\u5361\u9009\u62e9\u914d\u7f6e)\u6ca1\u6709\u4e0e\u672c\u673a\u540c\u6b65\uff0c\u5bfc\u81f4\u4e86\u5355\u673a\u591a\u5361\u6b63\u5e38\u6267\u884c\u800c\u591a\u673a\u591a\u5361\u5931\u8d25\u7684\u73b0\u8c61\u3002\u89e3\u51b3\u65b9\u6cd5\u662f\u901a\u8fc7mpirun\u7684-x\u9009\u9879\uff0c\u5bfc\u51fa\u7279\u5b9a\u7684\u73af\u5883\u53d8\u91cf\uff1a\t```text\tmpirun --hostfile /path/to/hostfile -n 64 -x PYTHONPATH -x GLOG_v -x LD_LIBRARY_PATH -x NCCL_SOCKET_IFNAME -x NCCL_IB_HCA -x NCCL_DEBUG=INFO python train.py\t```\u4ee5\u4e0a\u6307\u4ee4\u5bfc\u51fa\u4e86\u5728\u672c\u673a\u5df2\u7ecf\u8bbe\u7f6e\u7684\u4e00\u4e9b\u73af\u5883\u53d8\u91cf\u5230\u5176\u4ed6\u4e3b\u673a\uff0c\u4fdd\u8bc1\u4e86\u5728\u6267\u884c\u8bad\u7ec3\u811a\u672c\u524d\u6240\u6709\u4e3b\u673a\u73af\u5883\u53d8\u91cf\u4fdd\u6301\u4e00\u81f4\uff0c\u8fbe\u5230\u591a\u673a\u591a\u5361\u8bad\u7ec3\u76ee\u6807\u3002", "\u5bfc\u51faMindIR\u683c\u5f0f\u7684\u65f6\u5019\uff0c`input=np.random.uniform(...)`\u662f\u4e0d\u662f\u56fa\u5b9a\u683c\u5f0f\uff1f": "\u4e0d\u662f\u56fa\u5b9a\u683c\u5f0f\u7684\uff0c\u8fd9\u4e00\u6b65\u64cd\u4f5c\u662f\u4e3a\u4e86\u521b\u5efa\u4e00\u4e2a\u8f93\u5165\uff0c\u4ee5\u4fbf\u4e8e\u6784\u5efa\u7f51\u7edc\u7ed3\u6784\u3002`export`\u91cc\u53ea\u8981\u4f20\u5165\u6b63\u786e\u7684`shape`\u5373\u53ef\uff0c\u4f7f\u7528`np.ones`\u548c`np.zeros`\u521b\u5efa\u90fd\u662f\u53ef\u4ee5\u7684\u3002", "MindSpore\u73b0\u652f\u6301\u76f4\u63a5\u8bfb\u53d6\u54ea\u4e9b\u5176\u4ed6\u6846\u67b6\u7684\u6a21\u578b\u548c\u54ea\u4e9b\u683c\u5f0f\u5462\uff1f\u6bd4\u5982PyTorch\u4e0b\u8bad\u7ec3\u5f97\u5230\u7684pth\u6a21\u578b\u53ef\u4ee5\u52a0\u8f7d\u5230MindSpore\u6846\u67b6\u4e0b\u4f7f\u7528\u5417\uff1f": " MindSpore\u91c7\u7528Protobuf\u5b58\u50a8\u8bad\u7ec3\u53c2\u6570\uff0c\u65e0\u6cd5\u76f4\u63a5\u8bfb\u53d6\u5176\u4ed6\u6846\u67b6\u7684\u6a21\u578b\u3002\u5bf9\u4e8e\u6a21\u578b\u6587\u4ef6\u672c\u8d28\u4fdd\u5b58\u7684\u5c31\u662f\u53c2\u6570\u548c\u5bf9\u5e94\u7684\u503c\uff0c\u53ef\u4ee5\u7528\u5176\u4ed6\u6846\u67b6\u7684API\u5c06\u53c2\u6570\u8bfb\u53d6\u51fa\u6765\u4e4b\u540e\uff0c\u62ff\u5230\u53c2\u6570\u7684\u952e\u503c\u5bf9\uff0c\u7136\u540e\u518d\u52a0\u8f7d\u5230MindSpore\u4e2d\u4f7f\u7528\u3002\u6bd4\u5982\u60f3\u7528\u5176\u4ed6\u6846\u67b6\u8bad\u7ec3\u597d\u7684ckpt\u6587\u4ef6\uff0c\u53ef\u4ee5\u5148\u628a\u53c2\u6570\u8bfb\u53d6\u51fa\u6765\uff0c\u518d\u8c03\u7528MindSpore\u7684`save_checkpoint`\u63a5\u53e3\uff0c\u5c31\u53ef\u4ee5\u4fdd\u5b58\u6210MindSpore\u53ef\u4ee5\u8bfb\u53d6\u7684ckpt\u6587\u4ef6\u683c\u5f0f\u4e86\u3002", "\u5728\u4f7f\u7528ckpt\u6216\u5bfc\u51fa\u6a21\u578b\u7684\u8fc7\u7a0b\u4e2d\uff0c\u62a5Protobuf\u5185\u5b58\u9650\u5236\u9519\u8bef\uff0c\u5982\u4f55\u5904\u7406\uff1f": "\u5f53\u5355\u6761Protobuf\u6570\u636e\u8fc7\u5927\u65f6\uff0c\u56e0\u4e3aProtobuf\u81ea\u8eab\u5bf9\u6570\u636e\u6d41\u5927\u5c0f\u7684\u9650\u5236\uff0c\u4f1a\u62a5\u51fa\u5185\u5b58\u9650\u5236\u7684\u9519\u8bef\u3002\u8fd9\u65f6\u53ef\u901a\u8fc7\u8bbe\u7f6e\u73af\u5883\u53d8\u91cf`PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python`\u89e3\u9664\u9650\u5236\u3002", "PyNative\u6a21\u5f0f\u548cGraph\u6a21\u5f0f\u7684\u533a\u522b\uff1f": "\u901a\u8fc7\u4e0b\u9762\u56db\u4e2a\u65b9\u9762\u8fdb\u884c\u5bf9\u6bd4\uff1a\t- \u7f51\u7edc\u6267\u884c\uff1a\u4e24\u4e2a\u6a21\u5f0f\u4f7f\u7528\u7684\u7b97\u5b50\u662f\u4e00\u81f4\u7684\uff0c\u56e0\u6b64\u76f8\u540c\u7684\u7f51\u7edc\u548c\u7b97\u5b50\uff0c\u5206\u522b\u5728\u4e24\u4e2a\u6a21\u5f0f\u4e0b\u6267\u884c\u65f6\uff0c\u7cbe\u5ea6\u6548\u679c\u662f\u4e00\u81f4\u7684\u3002\u7531\u4e8eGraph\u6a21\u5f0f\u8fd0\u7528\u4e86\u56fe\u4f18\u5316\u3001\u8ba1\u7b97\u56fe\u6574\u56fe\u4e0b\u6c89\u7b49\u6280\u672f\uff0cGraph\u6a21\u5f0f\u6267\u884c\u7f51\u7edc\u7684\u6027\u80fd\u548c\u6548\u7387\u66f4\u9ad8\uff1b\t\t- \u573a\u666f\u4f7f\u7528\uff1aGraph\u6a21\u5f0f\u9700\u8981\u4e00\u5f00\u59cb\u5c31\u6784\u5efa\u597d\u7f51\u7edc\u7ed3\u6784\uff0c\u7136\u540e\u6846\u67b6\u505a\u6574\u56fe\u4f18\u5316\u548c\u6267\u884c\uff0c\u6bd4\u8f83\u9002\u5408\u7f51\u7edc\u56fa\u5b9a\u6ca1\u6709\u53d8\u5316\uff0c\u4e14\u9700\u8981\u9ad8\u6027\u80fd\u7684\u573a\u666f\uff1b\t\t- \u4e0d\u540c\u786c\u4ef6\uff08`Ascend`\u3001`GPU`\u548c`CPU`\uff09\u8d44\u6e90\uff1a\u90fd\u652f\u6301\u8fd9\u4e24\u79cd\u6a21\u5f0f\uff1b\t\t- \u4ee3\u7801\u8c03\u8bd5\uff1a\u7531\u4e8ePyNative\u6a21\u5f0f\u662f\u9010\u884c\u6267\u884c\u7b97\u5b50\uff0c\u7528\u6237\u53ef\u4ee5\u76f4\u63a5\u8c03\u8bd5Python\u4ee3\u7801\uff0c\u5728\u4ee3\u7801\u4e2d\u4efb\u610f\u4f4d\u7f6e\u6253\u65ad\u70b9\u67e5\u770b\u5bf9\u5e94\u7b97\u5b50\u7684\u8f93\u51fa\u6216\u6267\u884c\u7ed3\u679c\u3002\u800cGraph\u6a21\u5f0f\u7531\u4e8e\u5728\u6784\u9020\u51fd\u6570\u91cc\u53ea\u662f\u5b8c\u6210\u7f51\u7edc\u6784\u9020\uff0c\u5b9e\u9645\u6ca1\u6709\u6267\u884c\uff0c\u56e0\u6b64\u5728`construct`\u51fd\u6570\u91cc\u6253\u65ad\u70b9\u65e0\u6cd5\u83b7\u53d6\u5bf9\u5e94\u7b97\u5b50\u7684\u8f93\u51fa\uff0c\u53ea\u80fd\u5148\u6307\u5b9a\u7b97\u5b50\u8fdb\u884c\u6253\u5370\uff0c\u7136\u540e\u5728\u7f51\u7edc\u6267\u884c\u5b8c\u6210\u540e\u67e5\u770b\u8f93\u51fa\u7ed3\u679c\u3002", "\u4f7f\u7528MindSpore\u5728GPU\u4e0a\u8bad\u7ec3\u7684\u7f51\u7edc\u811a\u672c\u53ef\u4ee5\u4e0d\u505a\u4fee\u6539\u76f4\u63a5\u5728Ascend\u4e0a\u8fdb\u884c\u8bad\u7ec3\u4e48\uff1f": "\u53ef\u4ee5\u7684\uff0cMindSpore\u9762\u5411Ascend/GPU/CPU\u63d0\u4f9b\u7edf\u4e00\u7684API\uff0c\u5728\u7b97\u5b50\u652f\u6301\u7684\u524d\u63d0\u4e0b\uff0c\u7f51\u7edc\u811a\u672c\u53ef\u4ee5\u4e0d\u505a\u4fee\u6539\u76f4\u63a5\u8de8\u5e73\u53f0\u8fd0\u884c\u3002", "\u4e00\u4e2a\u73af\u5883\u4e2d\u5982\u679c\u65e2\u5b89\u88c5\u4e86MindSpore\uff0c\u53c8\u5b89\u88c5\u4e86PyTorch\uff0c\u662f\u5426\u5728\u4e00\u4e2apython\u6587\u4ef6\u4e2d\u53ef\u4ee5\u6df7\u7528\u4e24\u4e2a\u6846\u67b6\u7684\u8bed\u6cd5\u5462\uff1f": "\u53ef\u4ee5\u5728\u4e00\u4e2apython\u6587\u4ef6\u4e2d\u6df7\u7528\u4e24\u4e2a\u6846\u67b6\u7684\u3002\u8981\u6ce8\u610f\u7c7b\u578b\u95f4\u7684\u533a\u522b\u3002\u4f8b\u5982\u4e24\u4e2a\u6846\u67b6\u521b\u5efa\u7684Tensor\u7c7b\u578b\u662f\u4e0d\u540c\u7684\uff0c\u4f46\u5bf9\u4e8epython\u7684\u57fa\u7840\u7c7b\u578b\u90fd\u662f\u901a\u7528\u7684\u3002", "MindSpore\u53ef\u4ee5\u8bfb\u53d6TensorFlow\u7684ckpt\u6587\u4ef6\u5417\uff1f": "MindSpore\u7684`ckpt`\u548cTensorFlow\u7684`ckpt`\u683c\u5f0f\u662f\u4e0d\u901a\u7528\u7684\uff0c\u867d\u7136\u90fd\u662f\u4f7f\u7528`Protobuf`\u534f\u8bae\uff0c\u4f46\u662f`proto`\u7684\u5b9a\u4e49\u662f\u4e0d\u540c\u7684\u3002\u5f53\u524dMindSpore\u4e0d\u652f\u6301\u8bfb\u53d6TensorFlow\u6216PyTorch\u7684`ckpt`\u6587\u4ef6\u3002", "\u7528MindSpore\u8bad\u7ec3\u51fa\u7684\u6a21\u578b\u5982\u4f55\u5728Ascend 310\u4e0a\u4f7f\u7528\uff1f\u53ef\u4ee5\u8f6c\u6362\u6210\u9002\u7528\u4e8eHiLens Kit\u7528\u7684\u5417\uff1f": "Ascend 310\u9700\u8981\u8fd0\u884c\u4e13\u7528\u7684OM\u6a21\u578b\uff0c\u5148\u4f7f\u7528MindSpore\u5bfc\u51faONNX\u6216AIR\u6a21\u578b\uff0c\u518d\u8f6c\u5316\u4e3aAscend 310\u652f\u6301\u7684OM\u6a21\u578b\u3002\u5177\u4f53\u53ef\u53c2\u8003[\u591a\u5e73\u53f0\u63a8\u7406](https://www.mindspore.cn/tutorials/experts/zh-CN/master/infer/ascend_310_mindir.html)\u3002\u53ef\u4ee5\uff0cHiLens Kit\u662f\u4ee5Ascend 310\u4e3a\u63a8\u7406\u6838\u5fc3\uff0c\u6240\u4ee5\u524d\u540e\u4e24\u4e2a\u95ee\u9898\u672c\u8d28\u4e0a\u662f\u4e00\u6837\u7684\uff0c\u9700\u8981\u8f6c\u6362\u4e3aOM\u6a21\u578b.", "**Q:MindSpore\u53ea\u80fd\u5728\u534e\u4e3a\u81ea\u5df1\u7684`Ascend`\u4e0a\u8dd1\u4e48\uff1f": "MindSpore\u540c\u65f6\u652f\u6301\u534e\u4e3a\u81ea\u5df1\u7684`Ascend`\u3001`GPU`\u4e0e`CPU`\uff0c\u662f\u652f\u6301\u5f02\u6784\u7b97\u529b\u7684\u3002", "MindSpore\u5728Ascend 310\u4e0a\u662f\u5426\u53ef\u4ee5\u8f6cAIR\u6a21\u578b\uff1f": "Ascend 310\u4e0d\u80fd\u5bfc\u51faAIR\uff0c\u9700\u8981\u5728Ascend 910\u52a0\u8f7d\u8bad\u7ec3\u597d\u7684checkpoint\u540e\uff0c\u5bfc\u51faAIR\uff0c\u7136\u540e\u5728Ascend 310\u8f6c\u6210OM\u6a21\u578b\u8fdb\u884c\u63a8\u7406\u3002Ascend 910\u7684\u5b89\u88c5\u65b9\u6cd5\u53ef\u4ee5\u53c2\u8003\u5b98\u7f51MindSpore[\u5b89\u88c5\u6307\u5357](https://www.mindspore.cn/install)\u3002", "MindSpore\u5bf9\u5bfc\u51fa\u3001\u5bfc\u5165\u6a21\u578b\u7684\u5355\u4e2aTensor\u8f93\u5165\u5927\u5c0f\u6709\u4ec0\u4e48\u9650\u5236\uff1f": "\u7531\u4e8eProtobuf\u7684\u786c\u4ef6\u9650\u5236\uff0c\u5bfc\u51faAIR\u3001ONNX\u683c\u5f0f\u65f6\uff0c\u6a21\u578b\u53c2\u6570\u5927\u5c0f\u4e0d\u80fd\u8d85\u8fc72G\uff1b\u5bfc\u51faMINDIR\u683c\u5f0f\u65f6\uff0c\u6a21\u578b\u53c2\u6570\u5927\u5c0f\u6ca1\u6709\u9650\u5236\uff0cMindSpore\u4e0d\u652f\u6301\u5bfc\u5165AIR\u3001ONNX\u683c\u5f0f\uff0c\u53ea\u652f\u6301MINDIR\uff0c\u5bfc\u5165\u5927\u5c0f\u7684\u9650\u5236\u4e0e\u5bfc\u51fa\u4e00\u81f4\u3002", "\u5b89\u88c5\u8fd0\u884cMindSpore\u65f6\uff0c\u662f\u5426\u8981\u6c42\u5e73\u53f0\u6709GPU\u8ba1\u7b97\u5355\u5143\uff1f\u9700\u8981\u4ec0\u4e48\u786c\u4ef6\u652f\u6301\uff1f": "MindSpore\u5f53\u524d\u652f\u6301CPU/GPU/Ascend\u3002\u76ee\u524d\u7b14\u8bb0\u672c\u7535\u8111\u6216\u8005\u6709GPU\u7684\u73af\u5883\uff0c\u90fd\u53ef\u4ee5\u901a\u8fc7Docker\u955c\u50cf\u6765\u4f7f\u7528\u3002\u5f53\u524dMindSpore Model Zoo\u4e2d\u6709\u90e8\u5206\u6a21\u578b\u5df2\u7ecf\u652f\u6301GPU\u7684\u8bad\u7ec3\u548c\u63a8\u7406\uff0c\u5176\u4ed6\u6a21\u578b\u4e5f\u5728\u4e0d\u65ad\u5730\u8fdb\u884c\u5b8c\u5584\u3002\u5728\u5206\u5e03\u5f0f\u5e76\u884c\u8bad\u7ec3\u65b9\u9762\uff0cMindSpore\u5f53\u524d\u652f\u6301GPU\u591a\u5361\u8bad\u7ec3\u3002\u4f60\u53ef\u4ee5\u901a\u8fc7\u9879\u76ee[Release note](https://gitee.com/mindspore/mindspore/blob/master/RELEASE.md#)\u83b7\u53d6\u6700\u65b0\u4fe1\u606f\u3002", "\u9488\u5bf9\u5f02\u6784\u8ba1\u7b97\u5355\u5143\u7684\u652f\u6301\uff0cMindSpore\u6709\u4ec0\u4e48\u8ba1\u5212\uff1f": "MindSpore\u63d0\u4f9b\u4e86\u53ef\u63d2\u62d4\u5f0f\u7684\u8bbe\u5907\u7ba1\u7406\u63a5\u53e3\uff0c\u5176\u4ed6\u8ba1\u7b97\u5355\u5143\uff08\u6bd4\u5982FPGA\uff09\u53ef\u5feb\u901f\u7075\u6d3b\u5730\u5b9e\u73b0\u4e0eMindSpore\u7684\u5bf9\u63a5\uff0c\u6b22\u8fce\u60a8\u53c2\u4e0e\u793e\u533a\u8fdb\u884c\u5f02\u6784\u8ba1\u7b97\u540e\u7aef\u7684\u5f00\u53d1\u5de5\u4f5c\u3002", "MindSpore\u4e0eModelArts\u662f\u4ec0\u4e48\u5173\u7cfb\uff0c\u5728ModelArts\u4e2d\u80fd\u4f7f\u7528MindSpore\u5417\uff1f": "ModelArts\u662f\u534e\u4e3a\u516c\u6709\u4e91\u7ebf\u4e0a\u8bad\u7ec3\u53ca\u63a8\u7406\u5e73\u53f0\uff0cMindSpore\u662f\u534e\u4e3a\u6df1\u5ea6\u5b66\u4e60\u6846\u67b6\u3002", "\u6700\u8fd1\u51fa\u6765\u7684taichi\u7f16\u7a0b\u8bed\u8a00\u6709Python\u6269\u5c55\uff0c\u7c7b\u4f3c`import taichi as ti`\u5c31\u80fd\u76f4\u63a5\u7528\u4e86\uff0cMindSpore\u662f\u5426\u4e5f\u652f\u6301\uff1f": "MindSpore\u652f\u6301Python\u539f\u751f\u8868\u8fbe\uff0c`import mindspore`\u76f8\u5173\u5305\u5373\u53ef\u4f7f\u7528\u3002", "\u8bf7\u95eeMindSpore\u652f\u6301\u68af\u5ea6\u622a\u65ad\u5417\uff1f": "\u652f\u6301\uff0c\u53ef\u4ee5\u53c2\u8003[\u68af\u5ea6\u622a\u65ad\u7684\u5b9a\u4e49\u548c\u4f7f\u7528](https://gitee.com/mindspore/models/blob/master/official/nlp/transformer/src/transformer_for_train.py#L35)\u3002", "MindSpore\u7684IR\u8bbe\u8ba1\u7406\u5ff5\u662f\u4ec0\u4e48\uff1f": "\u51fd\u6570\u5f0f: \u4e00\u5207\u7686\u51fd\u6570\uff0c\u6613\u4e8e\u5fae\u5206\u5b9e\u73b0\uff1b\u65e0\u526f\u4f5c\u7528\uff0c\u6613\u4e8e\u5b9e\u73b0\u81ea\u52a8\u5e76\u884c\u5316\u5206\u6790\u3002`JIT`\u7f16\u8bd1\u80fd\u529b: \u56fe\u5f62IR\uff0c\u63a7\u5236\u6d41\u4f9d\u8d56\u548c\u6570\u636e\u6d41\u5408\u4e00\uff0c\u5e73\u8861\u901a\u7528\u6027/\u6613\u7528\u6027\u3002\u56fe\u5f62\u5b8c\u5907\u7684IR: \u66f4\u591a\u7684\u8f6c\u6362`Python`\u7075\u6d3b\u8bed\u6cd5\uff0c\u5305\u62ec\u9012\u5f52\u7b49\u3002", "MindSpore\u5e76\u884c\u6a21\u578b\u8bad\u7ec3\u7684\u4f18\u52bf\u548c\u7279\u8272\u6709\u54ea\u4e9b\uff1f": "MindSpore\u5206\u5e03\u5f0f\u8bad\u7ec3\u9664\u4e86\u652f\u6301\u6570\u636e\u5e76\u884c\uff0c\u8fd8\u652f\u6301\u7b97\u5b50\u7ea7\u6a21\u578b\u5e76\u884c\uff0c\u53ef\u4ee5\u5bf9\u7b97\u5b50\u8f93\u5165tensor\u8fdb\u884c\u5207\u5206\u5e76\u884c\u3002\u5728\u6b64\u57fa\u7840\u4e0a\u652f\u6301\u81ea\u52a8\u5e76\u884c\uff0c\u7528\u6237\u53ea\u9700\u8981\u5199\u5355\u5361\u811a\u672c\uff0c\u5c31\u80fd\u81ea\u52a8\u5207\u5206\u5230\u591a\u4e2a\u8282\u70b9\u5e76\u884c\u6267\u884c\u3002", "MindSpore\u5728\u8bed\u4e49\u534f\u540c\u548c\u5904\u7406\u4e0a\u662f\u5982\u4f55\u5b9e\u73b0\u7684\uff1f\u662f\u5426\u5229\u7528\u5f53\u524d\u5b66\u672f\u754c\u6d41\u884c\u7684FCA\u7406\u8bba\uff1f": "MindSpore\u6846\u67b6\u672c\u8eab\u5e76\u4e0d\u9700\u8981\u652f\u6301FCA\u3002\u5bf9\u4e8e\u8bed\u4e49\u7c7b\u6a21\u578b\uff0c\u7528\u6237\u53ef\u4ee5\u8c03\u7528\u7b2c\u4e09\u65b9\u7684\u5de5\u5177\u5728\u6570\u636e\u9884\u5904\u7406\u9636\u6bb5\u505aFCA\u6570\u5b66\u5206\u6790\u3002MindSpore\u672c\u8eab\u652f\u6301Python\u8bed\u8a00\uff0c`import FCA`\u76f8\u5173\u5305\u5373\u53ef\u4f7f\u7528\u3002", "\u5f53\u524d\u5728\u4e91\u4e0aMindSpore\u7684\u8bad\u7ec3\u548c\u63a8\u7406\u529f\u80fd\u662f\u6bd4\u8f83\u5b8c\u5907\u7684\uff0c\u81f3\u4e8e\u8fb9\u7aef\u573a\u666f\uff08\u5c24\u5176\u662f\u7ec8\u7aef\u8bbe\u5907\uff09MindSpore\u6709\u4ec0\u4e48\u8ba1\u5212\uff1f": "MindSpore\u662f\u7aef\u8fb9\u4e91\u7edf\u4e00\u7684\u8bad\u7ec3\u548c\u63a8\u7406\u6846\u67b6\uff0c\u652f\u6301\u5c06\u4e91\u4fa7\u8bad\u7ec3\u7684\u6a21\u578b\u5bfc\u51fa\u5230Ascend AI\u5904\u7406\u5668\u548c\u7ec8\u7aef\u8bbe\u5907\u8fdb\u884c\u63a8\u7406\u3002\u5f53\u524d\u63a8\u7406\u9636\u6bb5\u652f\u6301\u7684\u4f18\u5316\u5305\u62ec\u91cf\u5316\u3001\u7b97\u5b50\u878d\u5408\u3001\u5185\u5b58\u590d\u7528\u7b49\u3002", "MindSpore\u81ea\u52a8\u5e76\u884c\u652f\u6301\u60c5\u51b5\u5982\u4f55\uff1f": "\u81ea\u52a8\u5e76\u884c\u7279\u6027\u5bf9CPU GPU\u7684\u652f\u6301\u8fd8\u5728\u5b8c\u5584\u4e2d\u3002\u63a8\u8350\u7528\u6237\u5728Ascend 910 AI\u5904\u7406\u5668\u4e0a\u4f7f\u7528\u81ea\u52a8\u5e76\u884c\uff0c\u53ef\u4ee5\u5173\u6ce8\u5f00\u6e90\u793e\u533a\uff0c\u7533\u8bf7MindSpore\u5f00\u53d1\u8005\u4f53\u9a8c\u73af\u5883\u8fdb\u884c\u8bd5\u7528\u3002", "MindSpore\u6709\u6ca1\u6709\u7c7b\u4f3c\u57fa\u4e8eTensorFlow\u5b9e\u73b0\u7684\u5bf9\u8c61\u68c0\u6d4b\u7b97\u6cd5\u7684\u6a21\u5757\uff1f": "TensorFlow\u7684\u5bf9\u8c61\u68c0\u6d4bPipeline\u63a5\u53e3\u5c5e\u4e8eTensorFlow Model\u6a21\u5757\u3002\u5f85MindSpore\u68c0\u6d4b\u7c7b\u6a21\u578b\u5b8c\u5907\u540e\uff0c\u4f1a\u63d0\u4f9b\u7c7b\u4f3c\u7684Pipeline\u63a5\u53e3\u3002", "\u4f7f\u7528PyNative\u6a21\u5f0f\u80fd\u591f\u8fdb\u884c\u8fc1\u79fb\u5b66\u4e60\uff1f": "PyNative\u6a21\u5f0f\u662f\u517c\u5bb9\u8fc1\u79fb\u5b66\u4e60\u7684\u3002", "MindSpore\u4ed3\u5e93\u4e2d\u7684[ModelZoo](https://gitee.com/mindspore/models/blob/master/README_CN.md#)\u548c\u6607\u817e\u5b98\u7f51\u7684[ModelZoo](https://www.hiascend.com/software/modelzoo)\u6709\u4ec0\u4e48\u5173\u7cfb\uff1f": "MindSpore\u7684ModelZoo\u4e3b\u8981\u63d0\u4f9bMindSpore\u6846\u67b6\u5b9e\u73b0\u7684\u6a21\u578b\uff0c\u540c\u65f6\u5305\u62ec\u4e86Ascend/GPU/CPU/Mobile\u591a\u79cd\u8bbe\u5907\u7684\u652f\u6301\u3002\u6607\u817e\u7684ModelZoo\u4e3b\u8981\u63d0\u4f9b\u8fd0\u884c\u4e8eAscend\u52a0\u901f\u82af\u7247\u4e0a\u7684\u6a21\u578b\uff0c\u5305\u62ec\u4e86MindSpore/PyTorch/TensorFlow/Caffe\u7b49\u591a\u79cd\u6846\u67b6\u7684\u652f\u6301\u3002\u53ef\u4ee5\u53c2\u8003\u5bf9\u5e94\u7684[Gitee\u4ed3\u5e93](https://gitee.com/ascend/modelzoo)\t\u5176\u4e2dMindSpore+Ascend\u7684\u7ec4\u5408\u662f\u6709\u91cd\u5408\u7684\uff0c\u8fd9\u90e8\u5206\u6a21\u578b\u4f1a\u4ee5MindSpore\u7684ModelZoo\u4e3a\u4e3b\u8981\u7248\u672c\uff0c\u5b9a\u671f\u5411\u6607\u817eModelZoo\u53d1\u5e03\u3002", "Ascend\u4e0eNPU\u662f\u4ec0\u4e48\u5173\u7cfb\uff1f": "NPU\u6307\u9488\u5bf9\u795e\u7ecf\u7f51\u7edc\u7b97\u6cd5\u7684\u4e13\u7528\u5904\u7406\u5668\uff0c\u4e0d\u540c\u516c\u53f8\u63a8\u51fa\u7684NPU\u67b6\u6784\u5404\u5f02\uff0cAscend\u662f\u57fa\u4e8e\u534e\u4e3a\u516c\u53f8\u81ea\u7814\u7684\u8fbe\u82ac\u5947\u67b6\u6784\u7684NPU\u3002", "\u8bf7\u95ee\u4f7f\u7528MindSpore\u5982\u4f55\u5b9e\u73b0\u591a\u5c3a\u5ea6\u8bad\u7ec3\uff1f": "\u5728\u591a\u5c3a\u5ea6\u8bad\u7ec3\u8fc7\u7a0b\u4e2d\uff0c\u4f7f\u7528\u4e0d\u540c`shape`\u8c03\u7528`Cell`\u5bf9\u8c61\u7684\u65f6\u5019\uff0c\u4f1a\u81ea\u52a8\u6839\u636e\u4e0d\u540c`shape`\u7f16\u8bd1\u5e76\u8c03\u7528\u4e0d\u540c\u7684\u56fe\uff0c\u4ece\u800c\u5b9e\u73b0\u591a\u5c3a\u5ea6\u7684\u8bad\u7ec3\u3002\u8981\u6ce8\u610f\u591a\u5c3a\u5ea6\u8bad\u7ec3\u53ea\u652f\u6301\u975e\u6570\u636e\u4e0b\u6c89\u6a21\u5f0f\uff0c\u4e0d\u80fd\u652f\u6301\u6570\u636e\u4e0b\u6c89\u7684\u8bad\u7ec3\u65b9\u5f0f\u3002\u53ef\u4ee5\u53c2\u8003[yolov3](https://gitee.com/mindspore/models/tree/master/official/cv/yolov3_darknet53)\u7684\u591a\u5c3a\u5ea6\u8bad\u7ec3\u5b9e\u73b0\u3002", "\u5982\u679cMindSpore\u7684`requires_grad=False`\u7684`tensor`\u8f6c\u5316\u4e3a`numpy`\u7c7b\u578b\u8fdb\u884c\u5904\u7406\u7136\u540e\u518d\u8f6c\u5316\u4f1a`tensor`\uff0c\u4f1a\u5bf9\u8ba1\u7b97\u56fe\u548c\u53cd\u5411\u4f20\u64ad\u6709\u5f71\u54cd\u5417\uff1f": "\u5728PyNative\u6a21\u5f0f\u4e0b\uff0c\u5982\u679c\u4e2d\u95f4\u4f7f\u7528`numpy`\u8ba1\u7b97\uff0c\u4f1a\u5bfc\u81f4\u68af\u5ea6\u4f20\u9012\u4e2d\u65ad\uff0c`requires_grad=False`\u7684\u573a\u666f\u4e0b\uff0c\u5982\u679c\u8be5`tensor`\u7684\u53cd\u5411\u4f20\u64ad\u4e0d\u4f20\u7ed9\u5176\u4ed6\u53c2\u6570\u4f7f\u7528\uff0c\u662f\u6ca1\u6709\u5f71\u54cd\u7684\uff1b\u5982\u679c`requires_grad=True`\u7684\u573a\u666f\u4e0b\uff0c\u662f\u6709\u5f71\u54cd\u7684\u3002", "\u8bf7\u95ee\u600e\u6837\u5b9e\u73b0\u7c7b\u4f3c`torch.nn.functional.linear()`\u90a3\u6837\u80fd\u591f\u5bf9\u5168\u8fde\u63a5\u5c42`weight`\u3001`bias`\u8fdb\u884c\u4fee\u6539\uff0c\u5e94\u8be5\u5982\u4f55\u64cd\u4f5c\uff1f": "MindSpore\u4e0e`torch.nn.functional.linear()`\u529f\u80fd\u6700\u63a5\u8fd1\u7684\u63a5\u53e3\u5c31\u662f`nn.Dense`\u4e86\u3002`nn.Dense`\u80fd\u6307\u5b9a`weight`\u548c`bias`\u7684\u521d\u59cb\u503c\uff0c\u540e\u7eed\u7684\u53d8\u5316\u662f\u7531\u4f18\u5316\u5668\u81ea\u52a8\u66f4\u65b0\u7684\u3002\u8bad\u7ec3\u8fc7\u7a0b\u4e2d\uff0c\u7528\u6237\u4e0d\u9700\u8981\u4e3b\u52a8\u4fee\u6539\u8fd9\u4e24\u4e2a\u53c2\u6570\u7684\u503c\u3002", "\u4f7f\u7528MindSpore\u5728\u6a21\u578b\u4fdd\u5b58\u540e\u751f\u6210\u7684`.meta`\u6587\u4ef6\u4f5c\u7528\u662f\u4ec0\u4e48\uff0c\u53ef\u4ee5\u7528`.meta`\u6587\u4ef6\u5bfc\u5165\u56fe\u7ed3\u6784\u5417\uff1f": "\u8fd9\u91cc\u7684`.meta`\u6587\u4ef6\u662f\u7f16\u8bd1\u597d\u7684\u56fe\u7ed3\u6784\uff0c\u4f46\u662f\u76ee\u524d\u5e76\u4e0d\u652f\u6301\u76f4\u63a5\u5bfc\u5165\u8fd9\u79cd\u7ed3\u6784\u3002\u5982\u679c\u4e0d\u77e5\u9053\u56fe\u7ed3\u6784\u7684\u60c5\u51b5\u4e0b\u60f3\u8981\u5bfc\u5165\u7f51\u7edc\uff0c\u8fd8\u662f\u9700\u8981\u7528MindIR\u683c\u5f0f\u7684\u6587\u4ef6\u3002", "\u8bf7\u95ee`yolov4-tiny-3l.weights`\u6a21\u578b\u6587\u4ef6\u53ef\u4ee5\u76f4\u63a5\u8f6c\u6362\u6210MindSpore\u6a21\u578b\u5417\uff1f": "\u4e0d\u80fd\u7684\uff0c\u9700\u8981\u628a\u5176\u4ed6\u6846\u67b6\u8bad\u7ec3\u597d\u7684\u53c2\u6570\u8f6c\u6362\u6210MindSpore\u7684\u683c\u5f0f\uff0c\u624d\u80fd\u8f6c\u6210MindSpore\u7684\u6a21\u578b\u3002", "\u4f7f\u7528MindSpore\u8fdb\u884c`model.train`\u7684\u65f6\u5019\u8fdb\u884c\u4e86\u5982\u4e0b\u8bbe\u7f6e\uff0c\u4e3a\u4ec0\u4e48\u4f1a\u62a5\u9519\u5462\uff1f": "```python\tmodel.train(1\uff0c dataset\uff0c callbacks=LossMonitor(1)\uff0c dataset_sink_mode=True)\tmodel.train(1\uff0c dataset\uff0c callbacks=LossMonitor(1)\uff0c dataset_sink_mode=False)\t```\u56e0\u4e3a\u5728\u5df2\u7ecf\u8bbe\u7f6e\u4e3a\u4e0b\u6c89\u6a21\u5f0f\u7684\u60c5\u51b5\u4e0b\uff0c\u5c31\u4e0d\u80fd\u518d\u8bbe\u7f6e\u4e3a\u975e\u4e0b\u6c89\u4e86\uff0c\u662f\u8fd0\u884c\u673a\u5236\u4e0a\u7684\u9650\u5236\u3002", "\u4f7f\u7528MindSpore\u8bad\u7ec3\u6a21\u578b\u5728`eval`\u9636\u6bb5\uff0c\u9700\u8981\u6ce8\u610f\u4ec0\u4e48\uff1f\u80fd\u591f\u76f4\u63a5\u52a0\u8f7d\u7f51\u7edc\u548c\u53c2\u6570\u5417\uff1f\u9700\u8981\u5728Model\u4e2d\u4f7f\u7528\u4f18\u5316\u5668\u5417\uff1f": "\u5728`eval`\u9636\u6bb5\u4e3b\u8981\u770b\u9700\u8981\u4ec0\u4e48\uff0c\u6bd4\u5982\u56fe\u50cf\u5206\u7c7b\u4efb\u52a1`eval`\u7f51\u7edc\u7684\u8f93\u51fa\u662f\u5404\u4e2a\u7c7b\u7684\u6982\u7387\u503c\uff0c\u4e0e\u5bf9\u5e94\u6807\u7b7e\u8ba1\u7b97`acc`\u3002\t\u5927\u591a\u6570\u60c5\u51b5\u662f\u53ef\u4ee5\u76f4\u63a5\u590d\u7528\u8bad\u7ec3\u7684\u7f51\u7edc\u548c\u53c2\u6570\u7684\uff0c\u9700\u8981\u6ce8\u610f\u7684\u662f\u9700\u8981\u8bbe\u7f6e\u63a8\u7406\u6a21\u5f0f\u3002\t```python\tnet.set_train(False)\t```\u5728eval\u9636\u6bb5\u4e0d\u9700\u8981\u4f18\u5316\u5668\uff0c\u4f46\u662f\u9700\u8981\u4f7f\u7528MindSpore\u7684`model.eval`\u63a5\u53e3\u7684\u8bdd\u9700\u8981\u914d\u7f6e\u4e00\u4e0b`loss function`\uff0c\u5982\uff1a\t```python\t# \u5b9a\u4e49\u6a21\u578b\tmodel = Model(net\uff0c loss_fn=loss\uff0c metrics={'top_1_accuracy'\uff0c 'top_5_accuracy'})\t# \u8bc4\u4f30\u6a21\u578b\tres = model.eval(dataset)\t```", "\u5982\u4f55\u4f7f\u7528SGD\u91cc\u7684`param_group`\u6765\u5b9e\u73b0\u5b66\u4e60\u7387\u7684\u8870\u51cf\uff1f": "\u5982\u679c\u9700\u8981\u6309\u7167`epoch`\u6765\u53d8\u5316\uff0c\u53ef\u4ee5\u4f7f\u7528[Dynamic LR](https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.html#dynamic-lr\u51fd\u6570)\uff0c\u628a\u5176\u4e2d\u7684`step_per_epoch`\u8bbe\u7f6e\u6210`step_size`\uff0c\u5982\u679c\u9700\u8981\u6309\u7167`step`\u6765\u53d8\u5316\uff0c\u53ef\u4ee5\u628a\u5176\u4e2d\u7684`step_per_epoch`\u8bbe\u7f6e\u62101\uff0c\u4e5f\u53ef\u4ee5\u7528[LearningRateSchedule](https://mindspore.cn/docs/zh-CN/master/api_python/mindspore.nn.html#learningrateschedule)\u3002", "MindSpore\u5982\u4f55\u8fdb\u884c\u53c2\u6570\uff08\u5982dropout\u503c\uff09\u4fee\u6539\uff1f": "\u5728\u6784\u9020\u7f51\u7edc\u7684\u65f6\u5019\u53ef\u4ee5\u901a\u8fc7 `if self.training: x = dropput(x)`\uff0c\u63a8\u7406\u65f6\uff0c\u6267\u884c\u524d\u8bbe\u7f6e`network.set_train(mode_false)`\uff0c\u5c31\u53ef\u4ee5\u4e0d\u4f7f\u7528dropout\uff0c\u8bad\u7ec3\u65f6\u8bbe\u7f6e\u4e3aTrue\u5c31\u53ef\u4ee5\u4f7f\u7528dropout\u3002", "\u5982\u4f55\u67e5\u770b\u6a21\u578b\u53c2\u6570\u91cf\uff1f": "\u53ef\u4ee5\u76f4\u63a5\u52a0\u8f7dCheckPoint\u7edf\u8ba1\uff0c\u53ef\u80fd\u989d\u5916\u7edf\u8ba1\u4e86\u52a8\u91cf\u548coptimizer\u4e2d\u7684\u53d8\u91cf\uff0c\u9700\u8981\u8fc7\u6ee4\u4e0b\u76f8\u5173\u53d8\u91cf\u3002\t\u60a8\u53ef\u4ee5\u53c2\u8003\u5982\u4e0b\u63a5\u53e3\u7edf\u8ba1\u7f51\u7edc\u53c2\u6570\u91cf:\t```python\tdef count_params(net):\t \"\"\"Count number of parameters in the network\t Args:\t net (mindspore.nn.Cell): Mindspore network instance\t Returns:\t total_params (int): Total number of trainable params\t \"\"\"\t total_params = 0\t for param in net.trainable_params():\t total_params += np.prod(param.shape)\t return total_params\t```\u5177\u4f53[\u811a\u672c\u94fe\u63a5](https://gitee.com/mindspore/models/blob/master/research/cv/tinynet/src/utils.py)\u3002", "\u5982\u4f55\u5728\u8bad\u7ec3\u8fc7\u7a0b\u4e2d\u76d1\u63a7`loss`\u5728\u6700\u4f4e\u7684\u65f6\u5019\u5e76\u4fdd\u5b58\u8bad\u7ec3\u53c2\u6570\uff1f": "\u53ef\u4ee5\u81ea\u5b9a\u4e49\u4e00\u4e2a`Callback`\u3002\u53c2\u8003`ModelCheckpoint`\u7684\u5199\u6cd5\uff0c\u6b64\u5916\u518d\u589e\u52a0\u5224\u65ad`loss`\u7684\u903b\u8f91:\t```python\tclass EarlyStop(Callback):\t def __init__(self):\t self.loss = None\t def step_end(self\uff0c run_context):\t loss = ****(get current loss)\t if (self.loss == None or loss < self.loss):\t self.loss = loss\t # do save ckpt\t```", "\u4f7f\u7528`nn.Conv2d`\u65f6\uff0c\u600e\u6837\u83b7\u53d6\u671f\u671b\u5927\u5c0f\u7684`feature map`\uff1f": "`Conv2d\u00a0shape`\u63a8\u5bfc\u65b9\u6cd5\u53ef\u4ee5[\u53c2\u8003\u8fd9\u91cc](https://www.mindspore.cn/docs/zh-CN/master/api_python/nn/mindspore.nn.Conv2d.html#mindspore.nn.Conv2d)\uff0c`Conv2d`\u7684`pad_mode`\u6539\u6210`same`\uff0c\u6216\u8005\u53ef\u4ee5\u6839\u636e`Conv2d\u00a0shape`\u63a8\u5bfc\u516c\u5f0f\u81ea\u884c\u8ba1\u7b97`pad`\uff0c\u60f3\u8981\u4f7f\u5f97`shape`\u4e0d\u53d8\uff0c\u4e00\u822cpad\u4e3a`(kernel_size-1)//2`\u3002", "\u4f7f\u7528MindSpore\u53ef\u4ee5\u81ea\u5b9a\u4e49\u4e00\u4e2a\u53ef\u4ee5\u8fd4\u56de\u591a\u4e2a\u503c\u7684loss\u51fd\u6570\uff1f": "\u81ea\u5b9a\u4e49`loss function`\u540e\u8fd8\u9700\u81ea\u5b9a\u4e49`TrainOneStepCell`\uff0c\u5b9e\u73b0\u68af\u5ea6\u8ba1\u7b97\u65f6`sens`\u7684\u4e2a\u6570\u548c`network`\u7684\u8f93\u51fa\u4e2a\u6570\u76f8\u540c\u3002\u5177\u4f53\u53ef\u53c2\u8003:\t```python\tnet = Net()\tloss_fn = MyLoss()\tloss_with_net = MyWithLossCell(net\uff0c loss_fn)\ttrain_net = MyTrainOneStepCell(loss_with_net\uff0c optim)\tmodel = Model(net=train_net\uff0c loss_fn=None\uff0c optimizer=None)\t```", "MindSpore\u5982\u4f55\u5b9e\u73b0\u65e9\u505c\u529f\u80fd\uff1f": "\u53ef\u4ee5\u81ea\u5b9a\u4e49`callback`\u65b9\u6cd5\u5b9e\u73b0\u65e9\u505c\u529f\u80fd\u3002\t\u4f8b\u5b50: \u5f53loss\u964d\u5230\u4e00\u5b9a\u6570\u503c\u540e\uff0c\u505c\u6b62\u8bad\u7ec3\u3002\t```python\tclass EarlyStop(Callback):\t def __init__(self\uff0c control_loss=1):\t super(EarlyStop\uff0c self).__init__()\t self._control_loss = control_loss\t\t def step_end(self\uff0c run_context):\t cb_params = run_context.original_args()\t loss = cb_params.net_outputs\t if loss.asnumpy() < self._control_loss:\t # Stop training\t run_context._stop_requested = True\t\tstop_cb = EarlyStop(control_loss=1)\tmodel.train(epoch_size\uff0c ds_train\uff0c callbacks=[stop_cb])\t```", "\u6a21\u578b\u5df2\u7ecf\u8bad\u7ec3\u597d\uff0c\u5982\u4f55\u5c06\u6a21\u578b\u7684\u8f93\u51fa\u7ed3\u679c\u4fdd\u5b58\u4e3a\u6587\u672c\u6216\u8005`npy`\u7684\u683c\u5f0f\uff1f": "\u60a8\u597d\uff0c\u6211\u4eec\u7f51\u7edc\u7684\u8f93\u51fa\u4e3a`Tensor`\uff0c\u9700\u8981\u4f7f\u7528`asnumpy()`\u65b9\u6cd5\u5c06`Tensor`\u8f6c\u6362\u4e3a`numpy`\uff0c\u518d\u8fdb\u884c\u4e0b\u4e00\u6b65\u4fdd\u5b58\u3002\u5177\u4f53\u53ef\u53c2\u8003:\t```python\tout = net(x)\tnp.save(\"output.npy\"\uff0c out.asnumpy())\t```", "\u7f13\u5b58\u670d\u52a1\u5668\u5f02\u5e38\u5173\u95ed\u5982\u4f55\u5904\u7406\uff1f": "\u7f13\u5b58\u670d\u52a1\u5668\u4f7f\u7528\u8fc7\u7a0b\u4e2d\uff0c\u4f1a\u8fdb\u884cIPC\u5171\u4eab\u5185\u5b58\u548csocket\u6587\u4ef6\u7b49\u7cfb\u7edf\u8d44\u6e90\u7684\u5206\u914d\u3002\u82e5\u5141\u8bb8\u6ea2\u51fa\uff0c\u5728\u78c1\u76d8\u7a7a\u95f4\u8fd8\u4f1a\u5b58\u5728\u6ea2\u51fa\u7684\u6570\u636e\u6587\u4ef6\u3002\u4e00\u822c\u60c5\u51b5\u4e0b\uff0c\u5982\u679c\u901a\u8fc7`cache_admin --stop`\u547d\u4ee4\u6b63\u5e38\u5173\u95ed\u670d\u52a1\u5668\uff0c\u8fd9\u4e9b\u8d44\u6e90\u5c06\u4f1a\u88ab\u81ea\u52a8\u6e05\u7406\u3002\t\u4f46\u5982\u679c\u7f13\u5b58\u670d\u52a1\u5668\u88ab\u5f02\u5e38\u5173\u95ed\uff0c\u4f8b\u5982\u7f13\u5b58\u670d\u52a1\u8fdb\u7a0b\u88ab\u6740\u7b49\uff0c\u7528\u6237\u9700\u8981\u9996\u5148\u5c1d\u8bd5\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668\uff0c\u82e5\u542f\u52a8\u5931\u8d25\uff0c\u5219\u5e94\u8be5\u4f9d\u7167\u4ee5\u4e0b\u6b65\u9aa4\u624b\u52a8\u6e05\u7406\u7cfb\u7edf\u8d44\u6e90:\t- \u5220\u9664IPC\u8d44\u6e90\u3002\t\t 1. \u68c0\u67e5\u662f\u5426\u6709IPC\u5171\u4eab\u5185\u5b58\u6b8b\u7559\u3002\t\t \u4e00\u822c\u60c5\u51b5\u4e0b\uff0c\u7cfb\u7edf\u4f1a\u4e3a\u7f13\u5b58\u670d\u52a1\u5206\u914d4GB\u7684\u5171\u4eab\u5185\u5b58\u3002\u901a\u8fc7\u4ee5\u4e0b\u547d\u4ee4\u53ef\u4ee5\u67e5\u770b\u7cfb\u7edf\u4e2d\u7684\u5171\u4eab\u5185\u5b58\u5757\u4f7f\u7528\u60c5\u51b5\u3002\t\t ```text\t $ ipcs -m\t ------ Shared Memory Segments --------\t key shmid owner perms bytes nattch status\t 0x61020024 15532037 root 666 4294967296 1\t ```\t\t \u5176\u4e2d\uff0c`shmid`\u4e3a\u5171\u4eab\u5185\u5b58\u5757id\uff0c`bytes`\u4e3a\u5171\u4eab\u5185\u5b58\u5757\u7684\u5927\u5c0f\uff0c`nattch`\u4e3a\u94fe\u63a5\u5230\u8be5\u5171\u4eab\u5185\u5b58\u5757\u7684\u8fdb\u7a0b\u6570\u91cf\u3002`nattch`\u4e0d\u4e3a0\u8868\u793a\u4ecd\u6709\u8fdb\u7a0b\u4f7f\u7528\u8be5\u5171\u4eab\u5185\u5b58\u5757\u3002\u5728\u5220\u9664\u5171\u4eab\u5185\u5b58\u524d\uff0c\u9700\u8981\u505c\u6b62\u4f7f\u7528\u8be5\u5185\u5b58\u5757\u7684\u6240\u6709\u8fdb\u7a0b\u3002\t\t 2. \u5220\u9664IPC\u5171\u4eab\u5185\u5b58\u3002\t\t \u627e\u5230\u5bf9\u5e94\u7684\u5171\u4eab\u5185\u5b58id\uff0c\u5e76\u901a\u8fc7\u4ee5\u4e0b\u547d\u4ee4\u5220\u9664\u3002\t\t ```text\t ipcrm -m {shmid}\t ```\t\t- \u5220\u9664socket\u6587\u4ef6\u3002\t\t \u4e00\u822c\u60c5\u51b5\u4e0b\uff0csocket\u6587\u4ef6\u4f4d\u4e8e`/tmp/mindspore/cache`\u3002\u8fdb\u5165\u6587\u4ef6\u5939\uff0c\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\u5220\u9664socket\u6587\u4ef6\u3002\t\t ```text\t rm cache_server_p{port_number}\t ```\t\t \u5176\u4e2d`port_number`\u4e3a\u7528\u6237\u521b\u5efa\u7f13\u5b58\u670d\u52a1\u5668\u65f6\u6307\u5b9a\u7684\u7aef\u53e3\u53f7\uff0c\u9ed8\u8ba4\u4e3a50052\u3002\t\t- \u5220\u9664\u6ea2\u51fa\u5230\u78c1\u76d8\u7a7a\u95f4\u7684\u6570\u636e\u6587\u4ef6\u3002\t\t \u8fdb\u5165\u542f\u7528\u7f13\u5b58\u670d\u52a1\u5668\u65f6\u6307\u5b9a\u7684\u6ea2\u51fa\u6570\u636e\u8def\u5f84\u3002\u901a\u5e38\uff0c\u9ed8\u8ba4\u6ea2\u51fa\u8def\u5f84\u4e3a`/tmp/mindspore/cache`\u3002\u627e\u5230\u8def\u5f84\u4e0b\u5bf9\u5e94\u7684\u6570\u636e\u6587\u4ef6\u5939\u5e76\u9010\u4e00\u5220\u9664\u3002", "\u901a\u8fc7Hub\u53ef\u4ee5\u4f7f\u7528GPU\u52a0\u8f7d`vgg16`\u6a21\u578b\u4ee5\u53ca\u662f\u5426\u53ef\u4ee5\u505a\u8fc1\u79fb\u6a21\u578b\u5417\uff1f": "\u8bf7\u624b\u52a8\u4fee\u6539\u5982\u4e0b\u4e24\u5904\u53c2\u6570\u5373\u53ef:\t```python\t# \u589e\u52a0**kwargs\u53c2\u6570: \u5982\u4e0b\tdef vgg16(num_classes=1000\uff0c args=None\uff0c phase=\"train\"\uff0c **kwargs):\t``````python\t# \u589e\u52a0**kwargs\u53c2\u6570: \u5982\u4e0b\tnet = Vgg(cfg['16']\uff0c num_classes=num_classes\uff0c args=args\uff0c batch_norm=args.batch_norm\uff0c phase=phase\uff0c **kwargs)\t```", "\u5982\u4f55\u5f97\u5230VGG\u6a21\u578b\u4e2d\u95f4\u5c42\u7279\u5f81\uff1f": "\u4f60\u597d\uff0c\u83b7\u53d6\u7f51\u7edc\u4e2d\u95f4\u5c42\u7684\u7279\u5f81\uff0c\u5176\u5b9e\u8ddf\u5177\u4f53\u6846\u67b6\u6ca1\u6709\u592a\u5927\u5173\u7cfb\u4e86\u3002`torchvison`\u91cc\u5b9a\u4e49\u7684`vgg`\u6a21\u578b\uff0c\u53ef\u4ee5\u901a\u8fc7`features`\u5b57\u6bb5\u83b7\u53d6\"\u4e2d\u95f4\u5c42\u7279\u5f81\"\uff0c`torchvison`\u7684`vgg`\u6e90\u7801\u5982\u4e0b:\t```python\tclass VGG(nn.Module):\t\t def __init__(self\uff0c features\uff0c num_classes=1000\uff0c init_weights=True):\t super(VGG\uff0c self).__init__()\t self.features = features\t self.avgpool = nn.AdaptiveAvgPool2d((7\uff0c 7))\t```\u5728MindSpore\u7684ModelZoo\u91cc\u5b9a\u4e49\u7684`vgg16`\uff0c\u53ef\u4ee5\u901a\u8fc7`layers`\u5b57\u6bb5\u83b7\u53d6\uff0c\u5982\u4e0b:\t```python\tnetwork = vgg16()\tprint(network.layers)\t```", "\u4f7f\u7528MindSpore\u8fdb\u884c\u6a21\u578b\u8bad\u7ec3\u65f6\uff0c`CTCLoss`\u7684\u8f93\u5165\u53c2\u6570\u6709\u56db\u4e2a: `inputs`\uff0c `labels_indices`\uff0c `labels_values`\uff0c `sequence_length`\uff0c\u5982\u4f55\u4f7f\u7528`CTCLoss`\u8fdb\u884c\u8bad\u7ec3\uff1f": "\u5b9a\u4e49\u7684`model.train`\u63a5\u53e3\u91cc\u63a5\u6536\u7684`dataset`\u53ef\u4ee5\u662f\u591a\u4e2a\u6570\u636e\u7ec4\u6210\uff0c\u5f62\u5982(`data1`\uff0c `data2`\uff0c `data3`\uff0c ...)\uff0c\u6240\u4ee5`dataset`\u662f\u53ef\u4ee5\u5305\u542b`inputs`\uff0c`labels_indices`\uff0c`labels_values`\uff0c`sequence_length`\u7684\u4fe1\u606f\u7684\u3002\u53ea\u9700\u8981\u5b9a\u4e49\u597d\u76f8\u5e94\u5f62\u5f0f\u7684`dataset`\uff0c\u4f20\u5165`model.train`\u91cc\u5c31\u53ef\u4ee5\u3002\u5177\u4f53\u7684\u53ef\u4ee5\u4e86\u89e3\u4e0b\u76f8\u5e94\u7684[\u6570\u636e\u5904\u7406\u63a5\u53e3](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/dataset.html)", "\u6a21\u578b\u8f6c\u79fb\u65f6\u5982\u4f55\u628aPyTorch\u7684\u6743\u91cd\u52a0\u8f7d\u5230MindSpore\u4e2d\uff1f": "\u9996\u5148\u8f93\u5165PyTorch\u7684`pth`\u6587\u4ef6\uff0c\u4ee5`ResNet-18`\u4e3a\u4f8b\uff0cMindSpore\u7684\u7f51\u7edc\u7ed3\u6784\u548cPyTorch\u4fdd\u6301\u4e00\u81f4\uff0c\u8f6c\u5b8c\u4e4b\u540e\u53ef\u76f4\u63a5\u52a0\u8f7d\u8fdb\u7f51\u7edc\uff0c\u8fd9\u8fb9\u53c2\u6570\u53ea\u7528\u5230`BN`\u548c`Conv2D`\uff0c\u82e5\u6709\u5176\u4ed6\u5c42`ms`\u548cPyTorch\u540d\u79f0\u4e0d\u4e00\u81f4\uff0c\u9700\u8981\u540c\u6837\u7684\u4fee\u6539\u540d\u79f0\u3002", "MindSpore\u6709\u54ea\u4e9b\u73b0\u6210\u7684\u63a8\u8350\u7c7b\u6216\u751f\u6210\u7c7b\u7f51\u7edc\u6216\u6a21\u578b\u53ef\u7528\uff1f": "\u76ee\u524d\u6b63\u5728\u5f00\u53d1Wide & Deep\u3001DeepFM\u3001NCF\u7b49\u63a8\u8350\u7c7b\u6a21\u578b\uff0cNLP\u9886\u57df\u5df2\u7ecf\u652f\u6301Bert_NEZHA\uff0c\u6b63\u5728\u5f00\u53d1MASS\u7b49\u6a21\u578b\uff0c\u7528\u6237\u53ef\u6839\u636e\u573a\u666f\u9700\u8981\u6539\u9020\u4e3a\u751f\u6210\u7c7b\u7f51\u7edc\uff0c\u53ef\u4ee5\u5173\u6ce8[MindSpore ModelZoo](https://gitee.com/mindspore/models/blob/master/README_CN.md#)\u3002", "\u5982\u4f55\u4f7f\u7528MindSpore\u62df\u5408$f(x)=a \\times sin(x)+b$\u8fd9\u7c7b\u51fd\u6570\uff1f": "\u4ee5\u4e0b\u62df\u5408\u6848\u4f8b\u662f\u57fa\u4e8eMindSpore\u7ebf\u6027\u62df\u5408\u5b98\u65b9\u6848\u4f8b\u6539\u7f16\u800c\u6210\u3002\t```python\t# The fitting function is: f(x)=2*sin(x)+3.\timport numpy as np\tfrom mindspore import dataset as ds\tfrom mindspore.common.initializer import Normal\tfrom mindspore import nn\uff0c Model\uff0c set_context\uff0c GRAPH_MODE\tfrom mindspore.train.callback import LossMonitor\t\tset_context(mode=GRAPH_MODE\uff0c device_target=\"CPU\")\t\t def get_data(num\uff0c w=2.0\uff0c b=3.0):\t # f(x)=w * sin(x) + b\t # f(x)=2 * sin(x) +3\t for i in range(num):\t x = np.random.uniform(-np.pi\uff0c np.pi)\t noise = np.random.normal(0\uff0c 1)\t y = w * np.sin(x) + b + noise\t yield np.array([np.sin(x)]).astype(np.float32)\uff0c np.array([y]).astype(np.float32)\t\tdef create_dataset(num_data\uff0c batch_size=16\uff0c repeat_size=1):\t input_data = ds.GeneratorDataset(list(get_data(num_data))\uff0c column_names=['data'\uff0c'label'])\t input_data = input_data.batch(batch_size)\t input_data = input_data.repeat(repeat_size)\t return input_data\t\tclass LinearNet(nn.Cell):\t def __init__(self):\t super(LinearNet\uff0c self).__init__()\t self.fc = nn.Dense(1\uff0c 1\uff0c Normal(0.02)\uff0c Normal(0.02))\t\t def construct(self\uff0c x):\t x = self.fc(x)\t return x\t\tif __name__ == \"__main__\":\t num_data = 1600\t batch_size = 16\t repeat_size = 1\t lr = 0.005\t momentum = 0.9\t\t net = LinearNet()\t net_loss = nn.loss.MSELoss()\t opt = nn.Momentum(net.trainable_params()\uff0c lr\uff0c momentum)\t model = Model(net\uff0c net_loss\uff0c opt)\t\t ds_train = create_dataset(num_data\uff0c batch_size=batch_size\uff0c repeat_size=repeat_size)\t\t model.train(1\uff0c ds_train\uff0c callbacks=LossMonitor()\uff0c dataset_sink_mode=False)\t\t print(net.trainable_params()[0]\uff0c \"\\n%s\" % net.trainable_params()[1])\t```", "\u5982\u4f55\u4f7f\u7528MindSpore\u62df\u5408$f(x)=ax^2+bx+c$\u8fd9\u7c7b\u7684\u4e8c\u6b21\u51fd\u6570\uff1f": "\u4ee5\u4e0b\u4ee3\u7801\u5f15\u7528\u81eaMindSpore\u7684\u5b98\u65b9\u6559\u7a0b\u7684[\u4ee3\u7801\u4ed3](https://gitee.com/mindspore/docs/blob/master/docs/sample_code/linear_regression.py)\t\u5728\u4ee5\u4e0b\u51e0\u5904\u4fee\u6539\u5373\u53ef\u5f88\u597d\u7684\u62df\u5408$f(x)=ax^2+bx+c$:\t1. \u6570\u636e\u96c6\u751f\u6210\u3002\t2. \u62df\u5408\u7f51\u7edc\u3002\t3. \u4f18\u5316\u5668\u3002\t\u4fee\u6539\u7684\u8be6\u7ec6\u4fe1\u606f\u5982\u4e0b\uff0c\u9644\u5e26\u89e3\u91ca\u3002\t```python\t# Since the selected optimizer does not support CPU\uff0c so the training computing platform is changed to GPU\uff0c which requires readers to install the corresponding GPU version of MindSpore.\tcontext.set_context(mode=context.GRAPH_MODE\uff0c device_target=\"GPU\")\t\t# Assuming that the function to be fitted this time is f(x)=2x^2+3x+4\uff0c the data generation function is modified as follows:\tdef get_data(num\uff0c a=2.0\uff0c b=3.0 \uff0cc = 4):\t for i in range(num):\t x = np.random.uniform(-10.0\uff0c 10.0)\t noise = np.random.normal(0\uff0c 1)\t # The y value is generated by the fitting target function ax^2+bx+c.\t y = x * x * a + x * b + c + noise\t # When a*x^2+b*x+c is fitted\uff0c a and b are weight parameters and c is offset parameter bias. The training data corresponding to the two weights are x^2 and x respectively\uff0c so the dataset generation mode is changed as follows:\t yield np.array([x*x\uff0c x]).astype(np.float32)\uff0c np.array([y]).astype(np.float32)\t\tdef create_dataset(num_data\uff0c batch_size=16\uff0c repeat_size=1):\t input_data = ds.GeneratorDataset(list(get_data(num_data))\uff0c column_names=['data'\uff0c'label'])\t input_data = input_data.batch(batch_size)\t input_data = input_data.repeat(repeat_size)\t return input_data\t\tclass LinearNet(nn.Cell):\t def __init__(self):\t super(LinearNet\uff0c self).__init__()\t # Because the full join function inputs two training parameters\uff0c the input value is changed to 2\uff0c the first Nomral(0.02) will automatically assign random weights to the input two parameters\uff0c and the second Normal is the random bias.\t self.fc = nn.Dense(2\uff0c 1\uff0c Normal(0.02)\uff0c Normal(0.02))\t\t def construct(self\uff0c x):\t x = self.fc(x)\t return x\t\tif __name__ == \"__main__\":\t num_data = 1600\t batch_size = 16\t repeat_size = 1\t lr = 0.005\t momentum = 0.9\t\t net = LinearNet()\t net_loss = nn.loss.MSELoss()\t # RMSProp optimalizer with better effect is selected for quadratic function fitting\uff0c Currently\uff0c Ascend and GPU computing platforms are supported.\t opt = nn.RMSProp(net.trainable_params()\uff0c learning_rate=0.1)\t model = Model(net\uff0c net_loss\uff0c opt)\t\t ds_train = create_dataset(num_data\uff0c batch_size=batch_size\uff0c repeat_size=repeat_size)\t model.train(1\uff0c ds_train\uff0c callbacks=LossMonitor()\uff0c dataset_sink_mode=False)\t\t print(net.trainable_params()[0]\uff0c \"\\n%s\" % net.trainable_params()[1])\t```", "`mindspore/tests`\u4e0b\u600e\u6837\u6267\u884c\u5355\u4e2a`ut`\u7528\u4f8b\uff1f": "`ut`\u7528\u4f8b\u901a\u5e38\u9700\u8981\u57fa\u4e8edebug\u7248\u672c\u7684MindSpore\u5305\uff0c\u5b98\u7f51\u5e76\u6ca1\u6709\u63d0\u4f9b\u3002\u53ef\u4ee5\u57fa\u4e8e\u6e90\u7801\u4f7f\u7528`sh build.sh`\u7f16\u8bd1\uff0c\u7136\u540e\u901a\u8fc7`pytest`\u6307\u4ee4\u6267\u884c\uff0cdebug\u6a21\u5f0f\u7f16\u5305\u4e0d\u4f9d\u8d56\u540e\u7aef\u3002\u7f16\u8bd1\u9009\u9879`sh build.sh -t on`\uff0c\u7528\u4f8b\u6267\u884c\u53ef\u4ee5\u53c2\u8003`tests/runtest.sh`\u811a\u672c\u3002", "\u5728Ascend\u5e73\u53f0\u4e0a\uff0c\u6267\u884c\u7528\u4f8b\u6709\u65f6\u5019\u4f1a\u62a5\u9519`run task error`\uff0c\u5982\u4f55\u83b7\u53d6\u66f4\u8be6\u7ec6\u7684\u65e5\u5fd7\u5e2e\u52a9\u95ee\u9898\u5b9a\u4f4d\uff1f": "\u4f7f\u7528msnpureport\u5de5\u5177\u8bbe\u7f6edevice\u4fa7\u65e5\u5fd7\u7ea7\u522b\uff0c\u5de5\u5177\u4f4d\u7f6e\u5728: `/usr/local/Ascend/latest/driver/tools/msnpureport`\u3002\t- \u5168\u5c40\u7ea7\u522b:\t```bash\t/usr/local/Ascend/latest/driver/tools/msnpureport -g info\t```- \u6a21\u5757\u7ea7\u522b:\t```bash\t/usr/local/Ascend/latest/driver/tools/msnpureport -m SLOG:error\t````- Event\u7ea7\u522b:\t```bash\t/usr/local/Ascend/latest/driver/tools/msnpureport -e disable/enable\t```- \u591adevice id\u7ea7\u522b:\t```bash\t/usr/local/Ascend/latest/driver/tools/msnpureport -d 1 -g warning\t```\u5047\u8bbedeviceID\u7684\u53d6\u503c\u8303\u56f4\u662f[0-7]\uff0c`device0`-`device3`\u548c`device4`-`device7`\u5206\u522b\u5728\u4e00\u4e2aos\u4e0a\u3002\u5176\u4e2d`device0`-`device3`\u5171\u7528\u4e00\u4e2a\u65e5\u5fd7\u914d\u7f6e\u6587\u4ef6\uff1b`device4`-`device7`\u5171\u7528\u4e00\u4e2a\u914d\u7f6e\u6587\u4ef6\u3002\u5982\u679c\u4fee\u6539\u4e86`device0`-`device3`\u4e2d\u7684\u4efb\u610f\u4e00\u4e2a\u65e5\u5fd7\u7ea7\u522b\uff0c\u5176\u4ed6`device`\u7684\u65e5\u5fd7\u7ea7\u522b\u4e5f\u4f1a\u88ab\u4fee\u6539\u3002\u5982\u679c\u4fee\u6539\u4e86`device4`-`device7`\u4e2d\u7684\u4efb\u610f\u4e00\u4e2a\u65e5\u5fd7\u7ea7\u522b\uff0c\u5176\u4ed6device\u7684\u65e5\u5fd7\u7ea7\u522b\u4e5f\u4f1a\u88ab\u4fee\u6539\u3002\t`Driver`\u5305\u5b89\u88c5\u4ee5\u540e\uff08\u5047\u8bbe\u5b89\u88c5\u8def\u5f84\u4e3a/usr/local/HiAI\uff0c\u5728Windows\u73af\u5883\u4e0b\uff0c`msnpureport.exe`\u6267\u884c\u6587\u4ef6\u5728C:\\ProgramFiles\\Huawei\\Ascend\\Driver\\tools\\\u76ee\u5f55\u4e0b\uff09\uff0c\u5047\u8bbe\u7528\u6237\u5728/home/shihangbo/\u76ee\u5f55\u4e0b\u76f4\u63a5\u6267\u884c\u547d\u4ee4\u884c\uff0c\u5219Device\u4fa7\u65e5\u5fd7\u88ab\u5bfc\u51fa\u5230\u5f53\u524d\u76ee\u5f55\u4e0b\uff0c\u5e76\u4ee5\u65f6\u95f4\u6233\u547d\u540d\u6587\u4ef6\u5939\u8fdb\u884c\u5b58\u653e\u3002", "\u4f7f\u7528Ascend\u5e73\u53f0\u6267\u884c\u8bad\u7ec3\u8fc7\u7a0b\uff0c\u51fa\u73b0\u62a5\u9519: `Out of Memory!!! total[3212254720] (dynamic[0] memory poll[524288000]) malloc[32611480064] failed!` \u5982\u4f55\u89e3\u51b3\uff1f": "\u6b64\u95ee\u9898\u5c5e\u4e8e\u5185\u5b58\u5360\u7528\u8fc7\u591a\u5bfc\u81f4\u7684\u5185\u5b58\u4e0d\u591f\u95ee\u9898\uff0c\u53ef\u80fd\u539f\u56e0\u6709\u4e24\u79cd:\t- `batch_size`\u7684\u503c\u8bbe\u7f6e\u8fc7\u5927\u3002\u89e3\u51b3\u529e\u6cd5: \u5c06`batch_size`\u7684\u503c\u8bbe\u7f6e\u51cf\u5c0f\u3002\t- \u5f15\u5165\u4e86\u5f02\u5e38\u5927\u7684`Parameter`\uff0c\u4f8b\u5982\u5355\u4e2a\u6570\u636eshape\u4e3a[640\uff0c1024\uff0c80\uff0c81]\uff0c\u6570\u636e\u7c7b\u578b\u4e3afloat32\uff0c\u5355\u4e2a\u6570\u636e\u5927\u5c0f\u8d85\u8fc715G\uff0c\u8fd9\u6837\u5dee\u4e0d\u591a\u5927\u5c0f\u7684\u4e24\u4e2a\u6570\u636e\u76f8\u52a0\u65f6\uff0c\u5360\u7528\u5185\u5b58\u8d85\u8fc73*15G\uff0c\u5bb9\u6613\u9020\u6210`Out of Memory`\u3002\u89e3\u51b3\u529e\u6cd5: \u68c0\u67e5\u53c2\u6570\u7684`shape`\uff0c\u5982\u679c\u5f02\u5e38\u8fc7\u5927\uff0c\u51cf\u5c11shape\u3002\t- \u5982\u679c\u4ee5\u4e0a\u64cd\u4f5c\u8fd8\u662f\u672a\u80fd\u89e3\u51b3\uff0c\u53ef\u4ee5\u4e0a[\u5b98\u65b9\u8bba\u575b](https://bbs.huaweicloud.com/forum/forum-1076-1.html)\u53d1\u5e16\u63d0\u51fa\u95ee\u9898\uff0c\u5c06\u4f1a\u6709\u4e13\u95e8\u7684\u6280\u672f\u4eba\u5458\u5e2e\u52a9\u89e3\u51b3\u3002", "\u5982\u4f55\u5728\u8bad\u7ec3\u795e\u7ecf\u7f51\u7edc\u8fc7\u7a0b\u4e2d\u5bf9\u8ba1\u7b97\u635f\u5931\u7684\u8d85\u53c2\u6570\u8fdb\u884c\u6539\u53d8\uff1f": "\u60a8\u597d\uff0c\u5f88\u62b1\u6b49\u6682\u65f6\u8fd8\u672a\u6709\u8fd9\u6837\u7684\u529f\u80fd\u3002\u76ee\u524d\u53ea\u80fd\u901a\u8fc7\u8bad\u7ec3-->\u91cd\u65b0\u5b9a\u4e49\u4f18\u5316\u5668-->\u8bad\u7ec3\uff0c\u8fd9\u6837\u7684\u8fc7\u7a0b\u5bfb\u627e\u8f83\u4f18\u7684\u8d85\u53c2\u6570\u3002", "\u8fd0\u884c\u5e94\u7528\u65f6\u62a5\u9519`error while loading shared libraries: libge_compiler.so: cannot open shared object file: No such file or directory`\u600e\u4e48\u529e\uff1f": "\u5b89\u88c5MindSpore\u6240\u4f9d\u8d56\u7684Ascend 310 AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u65f6\uff0c`CANN`\u5305\u4e0d\u80fd\u5b89\u88c5`nnrt`\u7248\u672c\uff0c\u800c\u662f\u9700\u8981\u5b89\u88c5\u529f\u80fd\u5b8c\u6574\u7684`toolkit`\u7248\u672c\u3002", "MindSpore\u4ee3\u7801\u91cc\u9762\u7684model_zoo/official/cv/resnet/train.py\u4e2dcontext.set_ps_context(enable_ps=True)\u4e3a\u4ec0\u4e48\u4e00\u5b9a\u8981\u5728init\u4e4b\u524d\u8bbe\u7f6e": "MindSpore Ascend\u6a21\u5f0f\u4e0b\uff0c\u5982\u679c\u5148\u8c03\u7528init\uff0c\u90a3\u4e48\u4f1a\u4e3a\u6240\u6709\u7684\u8fdb\u7a0b\u90fd\u5206\u914d\u5361\uff0c\u4f46\u662fparameter server\u8bad\u7ec3\u6a21\u5f0f\u4e0bserver\u662f\u4e0d\u9700\u8981\u5206\u914d\u5361\u7684\uff0c\u90a3\u4e48worker\u548cserver\u5c31\u4f1a\u53bb\u4f7f\u7528\u540c\u4e00\u5757\u5361\uff0c\u5bfc\u81f4\u4f1a\u62a5\u9519: HCCL dependent tsd is not open\u3002", "\u5728CPU ARM\u5e73\u53f0\u4e0a\u8fdb\u884cresnet50\u8bad\u7ec3\uff0c\u5185\u5b58\u6301\u7eed\u589e\u957f\u600e\u4e48\u529e\uff1f": "\u5728CPU ARM\u4e0a\u8fdb\u884cresnet50\u8bad\u7ec3\u65f6\uff0c\u90e8\u5206\u7b97\u5b50\u7684\u5b9e\u73b0\u662f\u57fa\u4e8eoneDNN\u5e93\uff0coneDNN\u5e93\u4e2d\u662f\u57fa\u4e8elibgomp\u5e93\u5b9e\u73b0\u591a\u7ebf\u7a0b\u5e76\u884c\uff0c\u5f53\u524dlibgomp\u5b58\u5728\u591a\u4e2a\u5e76\u884c\u57df\u914d\u7f6e\u7684\u7ebf\u7a0b\u6570\u4e0d\u540c\u65f6\u6709\u5185\u5b58\u5360\u7528\u6301\u7eed\u589e\u957f\u7684\u95ee\u9898\u3002\u53ef\u901a\u8fc7\u5168\u5c40\u914d\u7f6e\u7edf\u4e00\u7684\u7ebf\u7a0b\u6570\u6765\u63a7\u5236\u5185\u5b58\u7684\u6301\u7eed\u589e\u957f\u3002\u518d\u7efc\u5408\u6027\u80fd\u4e0a\u7684\u8003\u8651\uff0c\u5efa\u8bae\u7edf\u4e00\u914d\u7f6e\u4e3a\u7269\u7406\u6838\u6570\u76841/4\uff0c\u6bd4\u5982`export OMP_NUM_THREADS=32`\u3002", "\u4e3a\u4ec0\u4e48\u5728Ascend\u5e73\u53f0\u6267\u884c\u6a21\u578b\u65f6\u62a5\u6d41\u8d85\u9650\u7684\u9519\u8bef\uff1f": "\u6d41\u8868\u793a\u4e00\u4e2a\u64cd\u4f5c\u961f\u5217\uff0c\u540c\u4e00\u6761\u6d41\u4e0a\u7684\u4efb\u52a1\u6309\u5e8f\u4e32\u884c\u6267\u884c\uff0c\u4e0d\u540c\u6d41\u4e4b\u95f4\u53ef\u4ee5\u5e76\u884c\u6267\u884c\u3002\u7f51\u7edc\u4e2d\u7684\u5404\u79cd\u64cd\u4f5c\u4f1a\u751f\u6210Task\u5e76\u88ab\u5206\u914d\u5230\u6d41\u4e0a\uff0c\u4ee5\u63a7\u5236\u4efb\u52a1\u6267\u884c\u7684\u5e76\u53d1\u65b9\u5f0f\u3002\u7531\u4e8eAscend\u5e73\u53f0\u5bf9\u540c\u4e00\u6761\u6d41\u4e0a\u7684\u7684\u4efb\u52a1\u6570\u5b58\u5728\u9650\u5236\uff0c\u8d85\u9650\u7684\u4efb\u52a1\u4f1a\u5206\u914d\u65b0\u6d41\uff0c\u4e14MindSpore\u6846\u67b6\u7684\u591a\u79cd\u5e76\u884c\u65b9\u5f0f\u4e5f\u4f1a\u5206\u914d\u65b0\u6d41\uff0c\u4f8b\u5982\u901a\u4fe1\u7b97\u5b50\u5e76\u884c\uff0c\u56e0\u6b64\u5f53\u5206\u914d\u6d41\u7684\u6570\u76ee\u8d85\u8fc7Ascend\u5e73\u53f0\u7684\u8d44\u6e90\u9650\u5236\u5c31\u4f1a\u62a5\u6d41\u8d85\u9650\u7684\u9519\u8bef\u3002\u53c2\u8003\u89e3\u51b3\u65b9\u6848\uff1a\t- \u51cf\u5c0f\u7f51\u7edc\u6a21\u578b\u89c4\u6a21\t\t- \u51cf\u5c11\u7f51\u7edc\u4e2d\u901a\u4fe1\u7b97\u5b50\u7684\u4f7f\u7528\t\t- \u51cf\u5c11\u7f51\u7edc\u4e2d\u7684\u6761\u4ef6\u63a7\u5236\u8bed\u53e5", "\u5728Ascend\u5e73\u53f0\u4e0a\uff0c\u65e5\u5fd7\u4e2d\u51fa\u73b0\u62a5\u9519\u201cAscend error occurred\uff0c error message:\u201d\u4e14\u8ddf\u968f\u4e86\u4e00\u4e2a\u9519\u8bef\u7801\uff0c\u5982\u201cE40011\u201d\uff0c\u5982\u4f55\u67e5\u627e\u51fa\u73b0\u9519\u8bef\u7801\u7684\u539f\u56e0\uff1f": "\u5f53\u51fa\u73b0\u201cAscend error occurred\uff0c error message:\u201d\u65f6\uff0c\u8bf4\u660e\u6607\u817eCANN\u76f8\u5173\u6a21\u5757\u51fa\u73b0\u5f02\u5e38\uff0c\u4e0a\u62a5\u4e86\u9519\u8bef\u65e5\u5fd7\u3002\t\u6b64\u65f6\u9519\u8bef\u7801\u540e\u6709\u5f02\u5e38\u7684\u9519\u8bef\u4fe1\u606f\u3002\u5982\u679c\u9700\u8981\u8be5\u5f02\u5e38\u66f4\u8be6\u7ec6\u7684\u53ef\u80fd\u539f\u56e0\u548c\u5904\u7406\u65b9\u6cd5\uff0c\u8bf7\u53c2\u8003\u5bf9\u5e94\u6607\u817e\u7248\u672c\u6587\u6863\u7684\u300aError Code\u6545\u969c\u5904\u7406\u300b\u90e8\u5206\uff0c\u5982[\u6607\u817eCANN\u793e\u533a\u7248(5.0.3 alpha 002)(\u8bad\u7ec3) Error Code\u6545\u969c\u5904\u7406](https://support.huaweicloud.com/trouble-cann503alpha2training/atlaspd_15_0001.html)\u3002", "\u8bad\u7ec3nlp\u7c7b\u7f51\u7edc\uff0c\u5f53\u4f7f\u7528\u7b2c\u4e09\u65b9\u7ec4\u4ef6gensim\u65f6\uff0c\u53ef\u80fd\u4f1a\u62a5\u9519: ValueError\uff0c\u5982\u4f55\u89e3\u51b3\uff1f": "\u4ee5\u4e0b\u4e3a\u62a5\u9519\u4fe1\u606f:\t```bash\t>>> import gensim\tTraceback (most recent call last):\t File \"\"\uff0c line 1\uff0c in \t File \"/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/__init__.py\"\uff0c line 11\uff0c in \t from gensim import parsing\uff0c corpora\uff0c matutils\uff0c interfaces\uff0c models\uff0c similarities\uff0c utils # noqa:F401\t File \"/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/corpora/__init__.py\"\uff0c line 6\uff0c in \t from .indexedcorpus import IndexedCorpus # noqa:F401 must appear before the other classes\t File \"/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/corpora/indexedcorpus.py\"\uff0c line 14\uff0c in \t from gensim import interfaces\uff0c utils\t File \"/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/interfaces.py\"\uff0c line 19\uff0c in \t from gensim import utils\uff0c matutils\t File \"/home/miniconda3/envs/ci39_cj/lib/python3.9/site-packages/gensim/matutils.py\"\uff0c line 1024\uff0c in \t from gensim._matutils import logsumexp\uff0c mean_absolute_difference\uff0c dirichlet_expectation\t File \"gensim/_matutils.pyx\"\uff0c line 1\uff0c in init gensim._matutils\tValueError: numpy.ndarray size changed\uff0c may indicate binary incompatibility. Expected 88 from C header\uff0c got 80 from PyObject\t```\u62a5\u9519\u539f\u56e0\u8bf7\u53c2\u8003[gensim](https://github.com/RaRe-Technologies/gensim/issues/3095)\u5b98\u7f51\uff0c\u6216\u8005[numpy](https://github.com/numpy/numpy/issues/18709)\u5b98\u7f51:\t\u89e3\u51b3\u65b9\u6848:\t\u65b9\u6cd5\u4e00: \u91cd\u65b0\u5b89\u88c5numpy\u53cagensim\uff0c \u6267\u884c\u547d\u4ee4: `pip uninstall gensim numpy -y && pip install numpy gensim` \uff1b\t\u65b9\u6cd5\u4e8c: \u5982\u679c\u8fd8\u662f\u6709\u95ee\u9898\uff0c\u8bf7\u5220\u9664wheel\u5b89\u88c5\u5305\u7684\u7f13\u5b58\u6587\u4ef6\uff0c\u7136\u540e\u6267\u884c\u65b9\u6cd5\u4e00\uff08wheel\u5b89\u88c5\u5305\u7f13\u5b58\u76ee\u5f55\u4e3a: `~/.cache/pip/wheels`\uff09\u3002", "\u8fd0\u884c\u6587\u6863\u793a\u4f8b\u4ee3\u7801\u7684\u8fc7\u7a0b\u4e2d\uff0c\u9047\u5230`matplotlib.pyplot.show()`\u6216`plt.show()`\u65e0\u6cd5\u6267\u884c\u600e\u4e48\u5904\u7406\uff1f": "\u9996\u5148\u786e\u8ba4\u662f\u5426\u5b89\u88c5`matplotlib`\uff0c\u5982\u679c\u6ca1\u6709\u5b89\u88c5\uff0c\u53ef\u4ee5\u5728\u547d\u4ee4\u884c\u4e2d\u6267\u884c`pip install matplotlib`\u8fdb\u884c\u5b89\u88c5\u3002\t\u5176\u6b21\u7531\u4e8e`matplotlib.pyplot.show()`\u7684\u4f5c\u7528\u662f\u4ee5\u56fe\u5f62\u5316\u65b9\u5f0f\u5c55\u793a\uff0c\u6240\u4ee5\u9700\u8981\u8fd0\u884c\u7cfb\u7edf\u652f\u6301\u56fe\u5f62\u5c55\u793a\u529f\u80fd\uff0c\u5982\u679c\u7cfb\u7edf\u4e0d\u80fd\u652f\u6301\u56fe\u5f62\u5c55\u793a\uff0c\u9700\u8981\u5c06\u8be5\t\u56fe\u5f62\u5c55\u793a\u7684\u547d\u4ee4\u884c\u6ce8\u91ca\u540e\u518d\u8fd0\u884c\uff0c\u4e0d\u5f71\u54cd\u6574\u4f53\u4ee3\u7801\u7684\u8fd0\u884c\u7ed3\u679c\u3002", "\u4f7f\u7528\u6587\u6863\u4e2d\u63d0\u4f9b\u7684\u5728\u7ebf\u8fd0\u884c\u65f6\uff0c\u9047\u5230\u8fd0\u884c\u5931\u8d25\u8be5\u5982\u4f55\u5904\u7406\uff1f": "\u9700\u8981\u786e\u8ba4\u6709\u505a\u4ee5\u4e0b\u51c6\u5907\u5de5\u4f5c\u3002\t- \u9996\u5148\uff0c\u9700\u8981\u901a\u8fc7\u534e\u4e3a\u4e91\u8d26\u53f7\u767b\u5f55ModelArts\u3002\t- \u5176\u6b21\uff0c\u6ce8\u610f\u6559\u7a0b\u6587\u6863\u7684\u6807\u7b7e\u4e2d\u5217\u4e3e\u7684\u786c\u4ef6\u73af\u5883\uff0c\u4ee5\u53ca\u6837\u4f8b\u4ee3\u7801\u4e2d\u914d\u7f6e\u7684\u786c\u4ef6\u73af\u5883\uff0c\u662fAscend\u3001GPU\u8fd8\u662fCPU\uff0c\u7531\u4e8e\u767b\u5f55\u540e\u9ed8\u8ba4\u4f7f\u7528\u7684\u786c\u4ef6\u73af\u5883\u662fCPU\uff0cAscend\u73af\u5883\u548cGPU\u73af\u5883\u9700\u8981\u7528\u6237\u624b\u52a8\u70b9\u51fb\u5207\u6362\u3002\t- \u6700\u540e\uff0c\u786e\u4fdd\u5f53\u524d`Kernel`\u4e3aMindSpore\u3002\t\u5b8c\u6210\u4e0a\u8ff0\u6b65\u9aa4\u540e\uff0c\u5c31\u53ef\u4ee5\u8fd0\u884c\u6587\u6863\u4e86\u3002\t\u5177\u4f53\u7684\u64cd\u4f5c\u8fc7\u7a0b\u53ef\u4ee5\u53c2\u8003[\u57fa\u4e8eModelArts\u5728\u7ebf\u4f53\u9a8cMindSpore](https://bbs.huaweicloud.com/forum/thread-168982-1-1.html)\u3002", "\u9759\u6001\u56fe\u4e0b\u4f7f\u7528\u9664\u6cd5\u7ed3\u679c\u672a\u62a5\u9519\uff0c\u52a8\u6001\u56fe\u4e0b\u4f7f\u7528\u9664\u6cd5\u7ed3\u679c\u5374\u62a5\u9519\uff1f": "\u5728\u9759\u6001\u56fe\u6a21\u5f0f\u4e0b\uff0c\u7531\u4e8e\u4f7f\u7528\u7684\u662f\u9759\u6001\u7f16\u8bd1\uff0c\u5bf9\u4e8e\u7b97\u5b50\u8f93\u51fa\u7ed3\u679c\u7684\u6570\u636e\u7c7b\u578b\u662f\u5728\u56fe\u7f16\u8bd1\u9636\u6bb5\u786e\u5b9a\u7684\u3002\t\u4f8b\u5982\u5982\u4e0b\u4ee3\u7801\u5728\u9759\u6001\u56fe\u6a21\u5f0f\u4e0b\u6267\u884c\uff0c\u8f93\u5165\u6570\u636e\u7684\u7c7b\u578b\u90fd\u4e3aint\u7c7b\u578b\uff0c\u6839\u636e\u9759\u6001\u56fe\u7f16\u8bd1\uff0c\u5176\u8f93\u51fa\u7ed3\u679c\u4e5f\u662fint\u7c7b\u578b\u3002\t```python\tfrom mindspore import set_context\uff0c GRAPH_MODE\tfrom mindspore import nn\t\tset_context(mode=GRAPH_MODE\uff0c device_target=\"CPU\")\t\tclass MyTest(nn.Cell):\t def __init__(self):\t super(MyTest\uff0c self).__init__()\t\t def construct(self\uff0c x\uff0c y):\t return x / y\tx = 16\ty = 4\tnet = MyTest()\toutput = net(x\uff0c y)\tprint(output\uff0c type(output))\t```\u8f93\u51fa\u7ed3\u679c\uff1a\t```text\t4 \t```\u4fee\u6539\u6267\u884c\u6a21\u5f0f\uff0c\u5c06GRAPH_MODE\u4fee\u6539\u6210PYNATIVE_MODE\uff0c\u7531\u4e8e\u5728\u52a8\u6001\u56fe\u6a21\u5f0f\u4e0b\u4f7f\u7528\u7684Python\u8bed\u6cd5\u6267\u884c\uff0cPython\u8bed\u6cd5\u5bf9\u4efb\u610f\u9664\u6cd5\u8f93\u51fa\u7684\u7c7b\u578b\u90fd\u662ffloat\u7c7b\u578b\uff0c\u56e0\u6b64\u6267\u884c\u7ed3\u679c\u5982\u4e0b\uff1a\t```text\t4.0 \t```\u56e0\u6b64\u5728\u540e\u7eed\u7b97\u5b50\u660e\u786e\u9700\u8981\u4f7f\u7528int\u7684\u573a\u666f\u4e0b\uff0c\u5efa\u8bae\u4f7f\u7528Python\u7684\u6574\u9664\u7b26\u53f7`//`\u3002", "\u5728Ascend310\u786c\u4ef6\u5e73\u53f0\u5b89\u88c5\u4e86MindSpore1.3\u7248\u672c\uff0c\u8fd0\u884cmindspore_serving\u4e2d\u7684`add_model.py`\u6837\u4f8b\u51fa\u73b0\u62a5\u9519\uff1f": "Ascend310\u4e0a\u652f\u6301\u6a21\u578b\u5bfc\u51fa\u3001Serving\u63a8\u7406\uff0c\u4f46\u662f\u4e0d\u652f\u6301MindSpore\u524d\u7aefPython\u811a\u672c\u76f4\u63a5\u63a8\u7406\uff0c`add`\u6837\u4f8b\u4e2d\u5bfc\u51fa\u6a21\u578b\u591a\u4e86MindSpore\u524d\u7aefPython\u811a\u672c\u76f4\u63a5\u63a8\u7406\u7684\u4ee3\u7801\uff0c\u5728Ascend310\u573a\u666f\u6ce8\u91ca\u6389\u5373\u53ef\u3002\t```python\tdef export_net():\t \"\"\"Export add net of 2x2 + 2x2\uff0c and copy output model `tensor_add.mindir` to directory ../add/1\"\"\"\t x = np.ones([2\uff0c 2]).astype(np.float32)\t y = np.ones([2\uff0c 2]).astype(np.float32)\t add = Net()\t # MindSpore\u524d\u7aefPython\u811a\u672c\u76f4\u63a5\u63a8\u7406\uff0c310\u6ce8\u91ca\u6389\t # output = add(ms.Tensor(x)\uff0c ms.Tensor(y))\t ms.export(add\uff0c ms.Tensor(x)\uff0c ms.Tensor(y)\uff0c file_name='tensor_add'\uff0c file_format='MINDIR')\t dst_dir = '../add/1'\t try:\t os.mkdir(dst_dir)\t except OSError:\t pass\t\t dst_file = os.path.join(dst_dir\uff0c 'tensor_add.mindir')\t copyfile('tensor_add.mindir'\uff0c dst_file)\t print(\"copy tensor_add.mindir to \" + dst_dir + \" success\")\t\t print(x)\t print(y)\t # print(output.asnumpy())\u3002\t```", "\u7f16\u8bd1\u5e94\u7528\u65f6\u62a5\u9519`/usr/bin/ld: warning: libxxx.so\uff0c needed by libmindspore.so\uff0c not found`\u600e\u4e48\u529e\uff1f": "\u5bfb\u627e\u7f3a\u5c11\u7684\u52a8\u6001\u5e93\u6587\u4ef6\u6240\u5728\u76ee\u5f55\uff0c\u6dfb\u52a0\u8be5\u8def\u5f84\u5230\u73af\u5883\u53d8\u91cf`LD_LIBRARY_PATH`\u4e2d\uff0c\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\u53c2\u8003[Ascend 310 AI\u5904\u7406\u5668\u4e0a\u4f7f\u7528MindIR\u6a21\u578b\u8fdb\u884c\u63a8\u7406#\u7f16\u8bd1\u63a8\u7406\u4ee3\u7801](https://www.mindspore.cn/tutorials/experts/zh-CN/master/infer/ascend_310_mindir.html#\u7f16\u8bd1\u63a8\u7406\u4ee3\u7801)\u3002", "\u4f7f\u7528\u6607\u817e310\u8fdb\u884c\u63a8\u7406\u7684\u65f6\u5019\u600e\u4e48\u8bbe\u7f6e\u9ad8\u7cbe\u5ea6\u6216\u8005\u9ad8\u6027\u80fd\u6a21\u5f0f\uff1f": "\u5728\u63a8\u7406\u4ee3\u7801\u4e2d\u901a\u8fc7Ascend310DeviceInfo\u4e2d\u7684SetPrecisionMode\u63a5\u53e3\u8fdb\u884c\u8bbe\u7f6e\uff0c\u53ef\u9009\uff1aforce_fp16\u3001allow_fp32_to_fp16\u3001must_keep_origin_dtype\uff0callow_mix_precision\u3002\u9ed8\u8ba4\u503c\u4e3aforce_fp16\uff0c\u6307\u7684\u5c31\u662f\u9ad8\u6027\u80fd\u6a21\u5f0f\u3002\u9ad8\u7cbe\u5ea6\u6a21\u5f0f\u53ef\u8bbe\u7f6e\u4e3aallow_fp32_to_fp16\u6216must_keep_origin_dtype\u3002", "AIPP\u6587\u4ef6\u600e\u4e48\u914d\u7f6e\uff1f": "AIPP\uff08Artificial Intelligence Pre-Processing\uff09AI\u9884\u5904\u7406\uff0c\u7528\u4e8e\u5728AI Core\u4e0a\u5b8c\u6210\u56fe\u50cf\u9884\u5904\u7406\uff0c\u5305\u62ec\u6539\u53d8\u56fe\u50cf\u5c3a\u5bf8\u3001\u8272\u57df\u8f6c\u6362\uff08\u8f6c\u6362\u56fe\u50cf\u683c\u5f0f\uff09\u3001\u51cf\u5747\u503c/\u4e58\u7cfb\u6570\uff08\u6539\u53d8\u56fe\u50cf\u50cf\u7d20\uff09\uff0c\u6570\u636e\u5904\u7406\u4e4b\u540e\u518d\u8fdb\u884c\u771f\u6b63\u7684\u6a21\u578b\u63a8\u7406\u3002\u76f8\u5173\u7684\u914d\u7f6e\u4ecb\u7ecd\u6bd4\u8f83\u590d\u6742\uff0c\u53ef\u4ee5\u53c2\u8003[ATC\u5de5\u5177\u7684AIPP\u4f7f\u80fd\u7ae0\u8282](https://support.huaweicloud.com/atctool-cann502alpha3infer/atlasatc_16_0015.html)\u3002", "\u600e\u4e48\u8bbe\u7f6e\u6607\u817e310\u63a8\u7406\u8fc7\u7a0b\u4e2d\u7684\u65e5\u5fd7\u7ea7\u522b\uff1f": "\u901a\u8fc7ASCEND_GLOBAL_LOG_LEVEL\u6765\u8bbe\u7f6e\uff0c0\uff1aDEBUG\u7ea7\u522b\uff1b1\uff1aINFO\u7ea7\u522b\uff1b2\uff1aWARNING\u7ea7\u522b\uff1b3\uff1aERROR\u7ea7\u522b\uff1b4\uff1aNULL\u7ea7\u522b\uff0c\u4e0d\u8f93\u51fa\u65e5\u5fd7\uff1b\u5176\u4ed6\u503c\u4e3a\u975e\u6cd5\u503c\u3002\u914d\u7f6e\u793a\u4f8b\uff1aexport ASCEND_GLOBAL_LOG_LEVEL=1\u3002\u5982\u679c\u63a8\u7406\u8fc7\u7a0b\u4e2d\u51fa\u73b0\u9519\u8bef\u53ef\u901a\u8fc7\u4fee\u6539\u65e5\u5fd7\u7ea7\u522b\u6765\u83b7\u53d6\u66f4\u8be6\u7ec6\u7684\u65e5\u5fd7\u4fe1\u606f\u3002", "\u5b89\u88c5MindSpore\u7248\u672c: GPU\u3001CUDA 10.1\u30010.5.0-beta\uff0c\u51fa\u73b0\u95ee\u9898: `cannot open shared object file:No such file or directory`\u3002": "\u4ece\u62a5\u9519\u60c5\u51b5\u6765\u770b\uff0c\u662fcuBLAS\u5e93\u6ca1\u6709\u627e\u5230\u3002\u4e00\u822c\u7684\u60c5\u51b5\u4e0b\u662fcuBLAS\u5e93\u6ca1\u6709\u5b89\u88c5\uff0c\u6216\u8005\u662f\u56e0\u4e3a\u6ca1\u6709\u52a0\u5165\u5230\u73af\u5883\u53d8\u91cf\u4e2d\u53bb\u3002\u901a\u5e38cuBLAS\u662f\u968f\u7740CUDA\u4ee5\u53ca\u9a71\u52a8\u4e00\u8d77\u5b89\u88c5\u7684\uff0c\u786e\u8ba4\u5b89\u88c5\u540e\u628acuBLAS\u6240\u5728\u7684\u76ee\u5f55\u52a0\u5165`LD_LIBRARY_PATH`\u73af\u5883\u53d8\u91cf\u4e2d\u5373\u53ef\u3002", "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519: `ERROR: mindspore_{VERSION}.whl is not a supported wheel on this platform`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "pip\u4f1a\u901a\u8fc7wheel\u5b89\u88c5\u5305\u7684\u6587\u4ef6\u540d\u6765\u5224\u65ad\u8be5\u5b89\u88c5\u5305\u662f\u5426\u4e0e\u5f53\u524dPython\u73af\u5883\u517c\u5bb9\uff0c\u4f8b\u5982\u5b89\u88c5mindspore_ascend-1.2.0-cp37-cp37m-linux_aarch64.whl\u65f6\uff0cpip\u4f1a\u68c0\u67e5:\t1. \u5f53\u524dpython\u73af\u5883\u4e3a3.7.x\u7248\u672c\t2. \u5f53\u524d\u64cd\u4f5c\u7cfb\u7edf\u4e3aLinux\t3. \u64cd\u4f5c\u7cfb\u7edf\u67b6\u6784\u4e3aarm64\t\u56e0\u6b64\uff0c\u5982\u679c\u51fa\u73b0 `is not a supported wheel on this platform` \u95ee\u9898\uff0c\u8bf7\u68c0\u67e5\u5f53\u524d\u73af\u5883\u662f\u5426\u6ee1\u8db3MindSpore\u5b89\u88c5\u8981\u6c42\uff0c\u4ee5\u53ca\u8be5MindSpore\u5b89\u88c5\u5305\u7248\u672c\u662f\u5426\u6b63\u786e\u3002", "macOS\u7cfb\u7edf\u6e90\u7801\u7f16\u8bd1\u540e\u4f7f\u7528pip\u5b89\u88c5\u62a5\u9519: `ERROR: mindspore-{VERSION}.whl is not a supported wheel on this platform`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u9996\u5148\u68c0\u67e5output\u76ee\u5f55\u4e0b\u7f16\u8bd1\u5f97\u5230\u7684\u5b89\u88c5\u5305\u540d\uff0c\u7c7b\u4f3cmindspore-1.6.0-cp37-cp37m-macosx_11_1_x84_64.whl\u3002\u5305\u540d\u4e2d\u201c11_1\u201d\u7684\u610f\u601d\u662f\u7f16\u8bd1\u65f6\u4f7f\u7528\u7684SDK\u7248\u672c\u662f11.1\u3002\u5982\u679c\u4f7f\u7528\u7684SDK\u7248\u672c\u4e3a11.x\uff0c\u5219\u53ef\u80fd\u662f\u56e0\u4e3a\u7f16\u8bd1\u65f6\u4f7f\u7528\u7684SDK\u7248\u672c\u8fc7\u9ad8\u5bfc\u81f4\u65e0\u6cd5\u5b89\u88c5\u3002\t\u89e3\u51b3\u65b9\u6cd5\u4e00\uff1a\u53ef\u4ee5\u91cd\u547d\u540d\u5b89\u88c5\u5305\u540e\u518d\u5c1d\u8bd5\u5b89\u88c5\uff0c\u4f8b\u5982\u5c06\u4e0a\u8ff0\u5b89\u88c5\u5305\u91cd\u547d\u540d\u4e3amindspore-1.6.0-cp37-cp37m-macosx_10_15_x84_64.whl\u3002\t\u89e3\u51b3\u65b9\u6cd5\u4e8c\uff1a\u5728\u6e90\u7801\u7f16\u8bd1\u524d\uff0c\u8bbe\u7f6e\u73af\u5883\u53d8\u91cf`MACOSX_DEPOLYMENT_TARGET`\u4e3a`10.15`\u5e76\u91cd\u65b0\u7f16\u8bd1\u3002", "arm64\u67b6\u6784\u7684macOS\u7cfb\u7edf\u4f7f\u7528pip\u5b89\u88c5SciPy\u4f9d\u8d56\u5e93\u65f6\u62a5\u9519\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "SciPy\u5f53\u524d\u6ca1\u6709\u5bf9\u5e94macOS\u7cfb\u7edfarm64\u67b6\u6784\u7684whl\u5305\uff0c\u53ef\u4ee5\u4f7f\u7528\u7b2c\u4e09\u65b9\u7f16\u8bd1\u7684whl\u5305\u8fdb\u884c\u5b89\u88c5\u3002\u6267\u884c\u5982\u4e0b\u547d\u4ee4\u5148\u5b89\u88c5SciPy\uff0c\u518d\u91cd\u65b0\u5b89\u88c5MindSpore\u3002\t```bash\tpip install --pre -i https://pypi.anaconda.org/scipy-wheels-nightly/simple scipy\t```", "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519: `SSL:CERTIFICATE_VERIFY_FATLED`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u5728pip\u5b89\u88c5\u547d\u4ee4\u540e\u6dfb\u52a0\u53c2\u6570 `--trusted-host=ms-release.obs.cn-north-4.myhuaweicloud.com`\u91cd\u8bd5\u5373\u53ef\u3002", "MindSpore\u5bf9Protobuf\u7248\u672c\u662f\u5426\u6709\u7279\u522b\u8981\u6c42\uff1f": "MindSpore\u9ed8\u8ba4\u5b89\u88c5Protobuf\u76843.13.0\u7248\u672c\uff0c\u5982\u679c\u4e0d\u662f\u8be5\u7248\u672c\uff0c\u5728\u4f7f\u7528pytest\u6d4b\u8bd5\u4ee3\u7801\u65f6\u65e5\u5fd7\u4e2d\u4f1a\u4ea7\u751f\u5f88\u591a\u544a\u8b66\uff0c\u5efa\u8bae\u60a8\u4f7f\u7528\u547d\u4ee4`pip install protobuf==3.13.0`\u91cd\u65b0\u5b89\u88c53.13.0\u7248\u672c\u3002", "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519`ProxyError(Cannot connect to proxy)`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u6b64\u95ee\u9898\u4e00\u822c\u662f\u4ee3\u7406\u914d\u7f6e\u95ee\u9898\uff0cUbuntu\u73af\u5883\u4e0b\u53ef\u901a\u8fc7`export http_proxy={your_proxy}`\u8bbe\u7f6e\u4ee3\u7406\uff1bWindows\u73af\u5883\u53ef\u4ee5\u5728cmd\u4e2d\u901a\u8fc7`set http_proxy={your_proxy}`\u8fdb\u884c\u4ee3\u7406\u8bbe\u7f6e\u3002", "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u63d0\u793a\u9519\u8bef\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u8bf7\u6267\u884c`pip -V`\u67e5\u770b\u662f\u5426\u7ed1\u5b9a\u4e86Python3.7+\u3002\u5982\u679c\u7ed1\u5b9a\u7684\u7248\u672c\u4e0d\u5bf9\uff0c\u5efa\u8bae\u4f7f\u7528`python3.7 -m pip install`\u4ee3\u66ff`pip install`\u547d\u4ee4\u3002", "\u4f7f\u7528pip\u5b89\u88c5\u4f9d\u8d56\u5e93\u65f6\u63d0\u793a`No matching distribution found for XXX`\u9519\u8bef\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u8bf7\u6267\u884c`pip config list`\uff0c\u67e5\u770b\u5f53\u524d\u8f6f\u4ef6\u5e93\u7d22\u5f15\u8def\u5f84`index-url`\u3002\u67d0\u4e9b\u60c5\u51b5\u4e0b\uff0c\u8f6f\u4ef6\u5e93\u7d22\u5f15\u4f1a\u51fa\u73b0\u66f4\u65b0\u6ede\u540e\uff0c\u53ef\u5c1d\u8bd5\u8bbe\u7f6e\u5176\u5b83\u8f6f\u4ef6\u5e93\u7d22\u5f15\u8def\u5f84\u3002", "MindSpore\u7f51\u7ad9\u5b89\u88c5\u9875\u9762\u627e\u4e0d\u5230MindInsight\u548cMindArmour\u7684whl\u5305\uff0c\u65e0\u6cd5\u5b89\u88c5\u600e\u4e48\u529e\uff1f": "\u60a8\u53ef\u4ee5\u4ece[MindSpore\u7f51\u7ad9\u4e0b\u8f7d\u5730\u5740](https://www.mindspore.cn/versions)\u4e0b\u8f7dwhl\u5305\uff0c\u901a\u8fc7`pip install`\u547d\u4ee4\u8fdb\u884c\u5b89\u88c5\u3002", "MindSpore\u662f\u5426\u652f\u6301Nvidia GPU\u72ec\u7acb\u663e\u5361+Windows\u64cd\u4f5c\u7cfb\u7edf\u7684\u4e2a\u4eba\u7535\u8111\uff1f": "\u76ee\u524dMindSpore\u652f\u6301\u7684\u60c5\u51b5\u662fGPU+Linux\u4e0eCPU+Windows\u7684\u7ec4\u5408\u914d\u7f6e\uff0cWindows+GPU\u7684\u652f\u6301\u8fd8\u5728\u5f00\u53d1\u4e2d\u3002\t\u5982\u679c\u5e0c\u671b\u5728GPU+Windows\u7684\u73af\u5883\u4e0a\u8fd0\u884c\uff0c\u53ef\u4ee5\u5c1d\u8bd5\u4f7f\u7528WSL+docker\u7684\u65b9\u5f0f\uff0c\u64cd\u4f5c\u601d\u8def:\t1. \u4ee5WSL\u65b9\u5f0f\u5b89\u88c5\u8d77Ubuntu18.04\uff0c\u53c2\u8003\u3002\t2. \u5b89\u88c5\u652f\u6301WSL\u7684Nvidia\u9a71\u52a8\u4ee5\u53ca\u5728WSL\u8fd0\u884c\u5bb9\u5668\u7684\u73af\u5883\u90e8\u7f72\uff0c\u53c2\u8003\u3002\t\t > \u7531\u4e8eCUDA on WSL\u8fd8\u662f\u9884\u89c8\u7279\u6027\uff0c\u6ce8\u610f\u53c2\u8003\u94fe\u63a5\u91cc\u5bf9Windows\u7248\u672c\u8981\u6c42\u7684\u8bf4\u660e\uff0c\u7248\u672c\u4e0d\u591f\u7684\u9700\u8981\u505a\u5347\u7ea7\u3002\t3. \u53c2\u8003\uff0c\u53d6MindSpore-GPU\u955c\u50cf\u3002\u5982\u53d6MindSpore1.0.0\u7248\u672c\u5bb9\u5668\uff0c\u5728WSL Ubuntu18.04\u4e2d\u6267\u884c`docker pull mindspore/mindspore-gpu:1.0.0`\u8fd0\u884c\u5bb9\u5668:\t\t ```docker\t docker run -it --runtime=nvidia mindspore/mindspore-gpu:1.0.0 /bin/bash\t ```\u8be6\u7ec6\u6b65\u9aa4\u53ef\u4ee5\u53c2\u8003\u793e\u533a\u63d0\u4f9b\u7684\u5b9e\u8df5[\u5f20\u5c0f\u767d\u6559\u4f60\u5b89\u88c5Windows10\u7684GPU\u9a71\u52a8\uff08CUDA\u548ccuDNN\uff09](https://bbs.huaweicloud.com/blogs/212446)\u3002\t\u5728\u6b64\u611f\u8c22\u793e\u533a\u6210\u5458[\u5f20\u8f89](https://bbs.huaweicloud.com/community/usersnew/id_1552550689252345)\u7684\u5206\u4eab\u3002", "Ascend\u786c\u4ef6\u5e73\u53f0\uff0c\u5728\u4e2a\u4eba\u7684Conda\u73af\u5883\u4e2d\uff0c\u6709\u65f6\u5019\u51fa\u73b0\u62a5\u9519RuntimeError: json.exception.parse_error.101 parse error at line 1\uff0c column 1: syntax error while parsing value - invalid literal; last read: 'T'\uff0c\u8be5\u600e\u4e48\u5904\u7406\uff1f": "\u51fa\u73b0\u8fd9\u79cd\u7c7b\u578b\u7684\u62a5\u9519\uff0c\u5927\u6982\u7387\u662frun\u5305\u66f4\u65b0\u540e\u4e2a\u4eba\u7684Conda\u73af\u5883\u4e2d\u6ca1\u6709\u66f4\u65b0te\u6216topi\u6216hccl\u5de5\u5177\u5305\uff0c\u53ef\u4ee5\u5c06\u5f53\u524dConda\u73af\u5883\u4e2d\u7684\u4e0a\u8ff0\u51e0\u4e2a\u5de5\u5177\u5305\u5378\u8f7d\uff0c\u7136\u540e\u4f7f\u7528\u5982\u4e0b\u547d\u4ee4\u518d\u91cd\u65b0\u5b89\u88c5: `pip install /usr/local/Ascend/ascend-toolkit/latest/fwkacllib/lib64/{te/topi/hccl}-{version}-py3-none-any.whl`\u3002", "pip\u540c\u65f6\u5b89\u88c5MindSpore CPU\u548cGPU\u7248\u672c\uff0cimport\u65f6\u62a5\u9519 `cannot import name\u00a0'context' from 'mindspore'`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "MindSpore\u4e0d\u540c\u7248\u672c\u7684\u5b89\u88c5\u76ee\u5f55\u540d\u540c\u4e3a`mindspore`\uff0c\u5b89\u88c5\u5728\u540c\u4e00\u4e2aPython\u73af\u5883\u53ef\u80fd\u4ea7\u751f\u76ee\u5f55\u76f8\u4e92\u8986\u76d6\u95ee\u9898\uff0c\u5bfc\u81f4\u65e0\u6cd5\u4f7f\u7528\uff0c\u5982\u679c\u9700\u8981\u4f7f\u7528\u591a\u5e73\u53f0\u7248\u672c\u7684MindSpore\u65f6\uff08\u4f8b\u5982\u540c\u65f6\u4f7f\u7528CPU\u548cGPU\u7248\u672c\uff09\uff0c\u8bf7\u5148\u5378\u8f7d\u5176\u4ed6\u7248\u672c\u518d\u5b89\u88c5\u65b0\u7248\u672c\u3002", "\u5728ARM\u67b6\u6784\u7684\u73af\u5883\u4e0a\u4f7f\u7528pip\u5b89\u88c5MindSpore\u65f6\u62a5\u9519: `Could not find a version that satisfies the requirement`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u5927\u6982\u7387\u662f\u56e0\u4e3apip\u7248\u672c\u4f4e\u4e8e19.3\uff0c\u65e0\u6cd5\u8bc6\u522b`manylinux2014`\u6807\u7b7e\uff0c\u5bfc\u81f4pip install\u9636\u6bb5\u4e0b\u8f7d\u4e86\u9519\u8bef\u7248\u672c\u7684`numpy`\u6216`scipy`\u7b49python\u8f6f\u4ef6\u5305\uff0c\u8fdb\u800c\u5f15\u53d1\u4e86\u65e0\u6cd5\u627e\u5230\u6784\u5efa\u4f9d\u8d56\u7684\u95ee\u9898\uff0c\u8bf7\u6267\u884c`pip install --upgrade pip`\u5c06\u73af\u5883\u4e2d\u7684pip\u5347\u7ea7\u523019.3\u4ee5\u4e0a\uff0c\u91cd\u65b0\u5b89\u88c5MindSpore\u3002", "pip\u5b89\u88c5MindSpore\u65f6\uff0c\u62a5\u9519 `Running setup.py install for pillow: finished with status 'error' ... The headers or library files could not be found for jpeg\uff0c ...`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "MindSpore\u4f9d\u8d56\u4e09\u65b9\u5e93`pillow`\u8fdb\u884c\u90e8\u5206\u7684\u6570\u636e\u5904\u7406\u64cd\u4f5c\uff0c\u800c`pillow`\u9700\u8981\u4f9d\u8d56\u73af\u5883\u4e0a\u5df2\u7ecf\u5b89\u88c5`libjpeg`\u5e93\uff0c\u4ee5Ubuntu\u73af\u5883\u4e3a\u4f8b\uff0c\u53ef\u4ee5\u4f7f\u7528`sudo apt-get install libjpeg8-dev`\u6765\u5b89\u88c5`libjpeg`\u5e93\uff0c\u7136\u540e\u518d\u5b89\u88c5MindSpore\u3002", "\u7f16\u8bd1\u65f6`bash -p`\u65b9\u5f0f\u548c `bash -e`\u65b9\u5f0f\u7684\u533a\u522b\uff1f": "MindSpore Serving\u7684\u7f16\u8bd1\u548c\u8fd0\u884c\u4f9d\u8d56MindSpore\uff0cServing\u63d0\u4f9b\u4e24\u79cd\u7f16\u8bd1\u65b9\u5f0f: \u4e00\u79cd\u6307\u5b9a\u5df2\u5b89\u88c5\u7684MindSpore\u8def\u5f84\uff0c\u5373`bash -p {python site-packages}/mindspore/lib`\uff0c\u907f\u514d\u7f16\u8bd1Serving\u65f6\u518d\u7f16\u8bd1MindSpore\uff1b\u53e6\u4e00\u79cd\uff0c\u7f16\u8bd1Serving\u65f6\uff0c\u7f16\u8bd1\u914d\u5957\u7684MindSpore\uff0cServing\u4f1a\u5c06`-e`\u3001`-V`\u548c`-j`\u9009\u9879\u900f\u4f20\u7ed9MindSpore\u3002\t\u6bd4\u5982\uff0c\u5728Serving\u76ee\u5f55\u4e0b\uff0c`bash -e ascend -V 910 -j32`:\t- \u9996\u5148\u5c06\u4f1a\u4ee5`bash -e ascend -V 910 -j32`\u65b9\u5f0f\u7f16\u8bd1`third_party/mindspore`\u76ee\u5f55\u4e0b\u7684MindSpore\uff1b\t- \u5176\u6b21\uff0c\u7f16\u8bd1\u811a\u672c\u5c06MindSpore\u7f16\u8bd1\u7ed3\u679c\u4f5c\u4e3aServing\u7684\u7f16\u8bd1\u4f9d\u8d56\u3002", "\u5728Linux\u4e2d\u5df2\u7ecf\u5b89\u88c5\u4e86\u4ea4\u53c9\u7f16\u8bd1\u5de5\u5177\uff0c\u4f46\u662f\u7f16\u8bd1\u547d\u4ee4\u8981\u600e\u4e48\u5199\u5462\uff1f": "arm64\u7248\u672c\u7f16\u8bd1: `bash build.sh -I arm64`\uff1barm32\u7248\u672c\u7f16\u8bd1: `bash build.sh -I arm32`\uff1b\u6ce8\u610f\u8981\u5148\u8bbe\u7f6e\u73af\u5883\u53d8\u91cf\uff0c\u6307\u5b9aAndroid NDK\u8def\u5f84: `export ANDROID_NDK=/path/to/android-ndk`\uff0c\u7f16\u8bd1\u6210\u529f\u540e\uff0c\u5728output\u76ee\u5f55\u53ef\u4ee5\u627e\u5230\u7f16\u8bd1\u51fa\u7684\u5305\u3002", "MindSpore\u5b89\u88c5: \u7248\u672c0.6.0-beta + Ascend 910 + Ubuntu_aarch64 + Python3.7.5\uff0c\u624b\u52a8\u4e0b\u8f7d\u5bf9\u5e94\u7248\u672c\u7684whl\u5305\uff0c\u7f16\u8bd1\u5e76\u5b89\u88c5gmp6.1.2\u3002\u5176\u4ed6Python\u5e93\u4f9d\u8d56\u5df2\u7ecf\u5b89\u88c5\u5b8c\u6210\uff0c\u6267\u884c\u6837\u4f8b\u5931\u8d25\uff0c\u62a5\u9519\u663e\u793a\u627e\u4e0d\u5230so\u6587\u4ef6\u3002": "`libdatatransfer.so`\u52a8\u6001\u5e93\u662f`fwkacllib/lib64`\u76ee\u5f55\u4e0b\u7684\uff0c\u8bf7\u5148\u5728`/usr/local`\u76ee\u5f55\u67e5\u627e\u5230\u8fd9\u4e2a\u5e93\u6240\u5728\u7684\u8def\u5f84\uff0c\u7136\u540e\u628a\u8fd9\u4e2a\u8def\u5f84\u52a0\u5230`LD_LIBRARY_PATH`\u73af\u5883\u53d8\u91cf\u4e2d\uff0c\u786e\u8ba4\u8bbe\u7f6e\u751f\u6548\u540e\uff0c\u518d\u6267\u884c\u3002", "\u6e90\u7801\u7f16\u8bd1MindSpore\u8fc7\u7a0b\u65f6\u95f4\u8fc7\u957f\uff0c\u6216\u65f6\u5e38\u4e2d\u65ad\u8be5\u600e\u4e48\u529e\uff1f": "MindSpore\u901a\u8fc7submodule\u673a\u5236\u5f15\u5165\u7b2c\u4e09\u65b9\u4f9d\u8d56\u5305\uff0c\u5176\u4e2d`Protobuf`\u4f9d\u8d56\u5305\uff08v3.13.0\uff09\u4e0b\u8f7d\u901f\u5ea6\u4e0d\u7a33\u5b9a\uff0c\u5efa\u8bae\u60a8\u63d0\u524d\u8fdb\u884c\u5305\u7f13\u5b58\u3002", "\u5982\u4f55\u6539\u53d8\u7b2c\u4e09\u65b9\u4f9d\u8d56\u5e93\u5b89\u88c5\u8def\u5f84\uff1f": "\u7b2c\u4e09\u65b9\u4f9d\u8d56\u5e93\u7684\u5305\u9ed8\u8ba4\u5b89\u88c5\u5728build/mindspore/.mslib\u76ee\u5f55\u4e0b\uff0c\u53ef\u4ee5\u8bbe\u7f6e\u73af\u5883\u53d8\u91cfMSLIBS_CACHE_PATH\u6765\u6539\u53d8\u5b89\u88c5\u76ee\u5f55\uff0c\u6bd4\u5982 `export MSLIBS_CACHE_PATH = ~/.mslib`\u3002", "MindSpore\u8981\u6c42\u7684\u914d\u5957\u8f6f\u4ef6\u7248\u672c\u4e0eUbuntu\u9ed8\u8ba4\u7248\u672c\u4e0d\u4e00\u81f4\u600e\u4e48\u529e\uff1f": "\u5f53\u524dMindSpore\u53ea\u63d0\u4f9b\u7248\u672c\u914d\u5957\u5173\u7cfb\uff0c\u9700\u8981\u60a8\u624b\u52a8\u8fdb\u884c\u914d\u5957\u8f6f\u4ef6\u7684\u5b89\u88c5\u5347\u7ea7\u3002\uff08**\u6ce8\u660e**: MindSpore\u8981\u6c42Python3.7.5\u548cgcc7.3\uff0cUbuntu 16.04\u9ed8\u8ba4\u4e3aPython3.5\u548cgcc5\uff0cUbuntu 18.04\u9ed8\u8ba4\u81ea\u5e26Python3.7.3\u548cgcc7.4\uff09\u3002", "\u6267\u884c\u7528\u4f8b\u62a5\u9519`No module named 'mindpore.version'`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u5f53\u6709\u8fd9\u79cd\u62a5\u9519\u65f6\uff0c\u6709\u53ef\u80fd\u662f\u5728\u521b\u5efa\u4e86\u548cMindSpore\u5b89\u88c5\u5305\u76f8\u540c\u540d\u5b57\u7684\u8def\u5f84\u4e2d\u6267\u884c\u7528\u4f8b\uff0c\u5bfc\u81f4Python\u5bfc\u5165\u5305\u7684\u65f6\u5019\u4f18\u5148\u627e\u5230\u4e86\u5f53\u524d\u76ee\u5f55\u4e0b\uff0c\u800c\u5f53\u524d\u76ee\u5f55\u6ca1\u6709version.py\u8fd9\u4e2a\u6587\u4ef6\u3002\u89e3\u51b3\u65b9\u6cd5\u5c31\u662f\u76ee\u5f55\u91cd\u547d\u540d\u6216\u8005\u5411\u4e0a\u9000\u51fa\u4e00\u7ea7\u6216\u8005\u591a\u7ea7\u76ee\u5f55\u3002", "\u6e90\u7801\u7f16\u8bd1\u65f6\uff0c\u62a5\u9519`MD5 does not match`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u8fd9\u79cd\u62a5\u9519\u53ef\u80fd\u662f\u5728\u7f16\u8bd1\u7684\u65f6\u5019\u7531\u4e8e\u7f51\u7edc\u95ee\u9898\u5bfc\u81f4\u4e00\u4e9b\u7b2c\u4e09\u65b9\u5e93\u4e0b\u8f7d\u4e2d\u65ad\uff0c\u4e4b\u540e\u91cd\u65b0\u7f16\u8bd1\u7684\u65f6\u5019\uff0c\u8be5\u6587\u4ef6\u5df2\u7ecf\u5b58\u5728\u4f46\u662f\u4e0d\u5b8c\u6574\uff0c\u5728\u6821\u9a8cMD5\u7684\u65f6\u5019\u5931\u8d25\u3002\u89e3\u51b3\u65b9\u6cd5\u662f: \u5220\u9664.mslib\u7f13\u5b58\u8def\u5f84\u4e2d\u7684\u76f8\u5173\u7b2c\u4e09\u65b9\u5e93\uff0c\u7136\u540e\u91cd\u65b0\u7f16\u8bd1\u3002", "\u73af\u5883\u4e0a\u5b89\u88c5\u4e86Python3.7.5\uff0c\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\u6b63\u786e\uff0c\u7f16\u8bd1MindSpore\u65f6\u4ecd\u7136\u62a5\u9519`Python3 not found`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u53ef\u80fd\u662f\u56e0\u4e3a\u5f53\u524d\u73af\u5883\u4e0a\u7684Python\u672a\u5305\u542b\u52a8\u6001\u5e93\u3002\u7f16\u8bd1MindSpore\u9700\u8981\u52a8\u6001\u94fe\u63a5Python\u5e93\uff0c\u56e0\u6b64\u9700\u8981\u4f7f\u7528\u5f00\u542f\u52a8\u6001\u5e93\u7f16\u8bd1\u9009\u9879\u7684Python3.7.5\uff0c\u5373\u5728\u6e90\u7801\u7f16\u8bd1Python\u65f6\u4f7f\u7528`./configure --enable-shared`\u547d\u4ee4\u3002", "\u7f16\u8bd1\u5931\u8d25\u540e\uff0c\u5e94\u8be5\u6e05\u7406\u54ea\u4e9b\u8def\u5f84\u4ee5\u786e\u4fdd\u4e0a\u6b21\u5931\u8d25\u7684\u7f16\u8bd1\u7ed3\u679c\u4e0d\u4f1a\u5f71\u54cd\u5230\u4e0b\u4e00\u6b21\u7f16\u8bd1\uff1f": "\u5728\u7f16\u8bd1MindSpore\u65f6\uff0c\u5982\u679c:\t1. \u7b2c\u4e09\u65b9\u7ec4\u4ef6\u4e0b\u8f7d\u6216\u7f16\u8bd1\u5931\u8d25\uff0c\u4f8b\u5982icu4c\u7684patch\u52a8\u4f5c\u5931\u8d25\u8fd4\u56de\u9519\u8bef\u4fe1\u606f`Cmake Error at cmake/utils.cmake:301 (message): Failed patch:`\uff0c\u5219\u8fdb\u5165\u7f16\u8bd1\u76ee\u5f55\u4e0b\u7684`build/mindspore/.mslib`\u76ee\u5f55\uff0c\u6216\u7531`MSLIBS_CACHE_PATH`\u73af\u5883\u53d8\u91cf\u6307\u5b9a\u7684\u7b2c\u4e09\u65b9\u8f6f\u4ef6\u5b89\u88c5\u76ee\u5f55\uff0c\u5e76\u5220\u9664\u5176\u4e2d\u7684\u5bf9\u5e94\u8f6f\u4ef6\u3002\t\t2. \u5176\u4ed6\u9636\u6bb5\u7f16\u8bd1\u5931\u8d25\uff0c\u6216\u6253\u7b97\u5220\u9664\u4e0a\u4e00\u6b21\u7f16\u8bd1\u7ed3\u679c\uff0c\u5b8c\u5168\u91cd\u65b0\u7f16\u8bd1\u65f6\uff0c\u76f4\u63a5\u5220\u9664`build`\u76ee\u5f55\u5373\u53ef\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\uff0c\u6253\u5f00CMakeError.txt\u63d0\u793apthread\u627e\u4e0d\u5230\u600e\u4e48\u529e\uff1f": "\u771f\u6b63\u7684\u5931\u8d25\u539f\u56e0\u4f1a\u4f53\u73b0\u5728\u6253\u5c4f\u7684\u65e5\u5fd7\u91cc\uff0cCMakeError.txt\u65e0\u53c2\u8003\u4ef7\u503c\uff0c\u8bf7\u5bfb\u627e\u6253\u5c4f\u65e5\u5fd7\u4e2d\u7684\u7b2c\u4e00\u4e2a\u62a5\u9519\u3002", "\u7f16\u8bd1\u6210\u529f\u540e\uff0c\u8fd0\u884c\u65f6\u62a5\u9519`undefined reference to XXXX`\u6216`undefined symbol XXXX`\u600e\u4e48\u529e\uff1f": "\u53ef\u80fd\u7684\u539f\u56e0\u6709:\t1. \u5982\u679c\u95ee\u9898\u662f`git pull`\u66f4\u65b0\u4ee3\u7801\u540e\u51fa\u73b0\uff0c\u8bf7\u5220\u9664\u6389`build`\u6587\u4ef6\u5939\uff0c\u6392\u9664\u524d\u6b21\u6784\u5efa\u7684\u5f71\u54cd\u3002\t\t2. \u5982\u679c\u95ee\u9898\u662f\u4fee\u6539\u4ee3\u7801\u540e\u51fa\u73b0\uff0c\u53ef\u4ee5\u4f7f\u7528`c++filt XXXX`\u67e5\u770b\u8be5\u7b26\u53f7\u7684\u610f\u4e49\uff0c\u6709\u53ef\u80fd\u662f\u51fd\u6570\u672a\u5b9e\u73b0\u3001\u865a\u51fd\u6570\u672a\u5b9e\u73b0\u3001\u4f9d\u8d56\u672a\u94fe\u63a5\u7b49\u539f\u56e0\u5f15\u8d77\u3002\t\t3. \u5982\u679c\u95ee\u9898\u53d1\u751f\u5728Ascend\u5e73\u53f0\uff0c\u6392\u9664\u4e0a\u8ff0\u539f\u56e0\u540e\uff0c\u5f88\u53ef\u80fd\u662f\u7531\u4e8eMindSpore\u7248\u672c\u4e0eCANN\u7248\u672c\u4e0d\u5339\u914d\u5f15\u8d77\u7684\uff0c\u7248\u672c\u5339\u914d\u5173\u7cfb\u53c2\u8003[\u5b89\u88c5\u8bf4\u660e](https://www.mindspore.cn/install)\u3002", "\u5982\u4f55\u5378\u8f7dMindSpore\uff1f": "\u9996\u5148\u8bf7\u786e\u5b9aMindSpore\u7684\u5168\u79f0\uff0c\u4f8b\u5982gpu\u7248\u672c\u7684MindSpore\uff0c\u53ef\u4ee5\u6267\u884c\u547d\u4ee4`pip uninstall mindspore-gpu`\u8fdb\u884c\u5378\u8f7d\u3002", "\u4e00\u4e9b\u5e38\u7528\u7684\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\uff0c\u5728\u65b0\u542f\u52a8\u7684\u7ec8\u7aef\u7a97\u53e3\u4e2d\u9700\u8981\u91cd\u65b0\u8bbe\u7f6e\uff0c\u5bb9\u6613\u5fd8\u8bb0\u5e94\u8be5\u600e\u4e48\u529e\uff1f": "\u5e38\u7528\u7684\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\u5199\u5165\u5230`~/.bash_profile` \u6216 `~/.bashrc`\u4e2d\uff0c\u53ef\u8ba9\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\u5728\u65b0\u542f\u52a8\u7684\u7ec8\u7aef\u7a97\u53e3\u4e2d\u7acb\u5373\u751f\u6548\u3002", "\u4f7f\u7528GPU\u7248\u672cMindSpore\u65f6\uff0c\u5982\u4f55\u8bbe\u7f6e`DEVICE_ID`\u73af\u5883\u53d8\u91cf": "MindSpore GPU\u6a21\u5f0f\u4e00\u822c\u65e0\u9700\u8bbe\u7f6e`DEVICE_ID`\u73af\u5883\u53d8\u91cf\uff0cMindSpore\u4f1a\u6839\u636ecuda\u73af\u5883\u53d8\u91cf`CUDA_VISIBLE_DEVICES`\uff0c\u81ea\u52a8\u9009\u62e9\u53ef\u89c1\u7684GPU\u8bbe\u5907\u3002\u8bbe\u7f6e`CUDA_VISIBLE_DEVICES`\u73af\u5883\u53d8\u91cf\u540e\uff0c\u5219`DEVICE_ID`\u73af\u5883\u53d8\u91cf\u4ee3\u8868\u53ef\u89c1GPU\u8bbe\u5907\u7684\u4e0b\u6807:\t- \u6267\u884c`export CUDA_VISIBLE_DEVICES=1\uff0c3\uff0c5`\u540e\uff0c`DEVICE_ID`\u5e94\u5f53\u88ab\u8bbe\u7f6e\u4e3a`0`\uff0c`1`\u6216`2`\uff0c\u82e5\u8bbe\u7f6e\u4e3a`3`\u53ca\u4ee5\u4e0a\uff0cMindSpore\u4f1a\u7531\u4e8e\u8bbe\u5907ID\u4e0d\u5408\u6cd5\u800c\u8fd0\u884c\u5931\u8d25\u3002", "\u8fd0\u884c\u5e94\u7528\u65f6\u51fa\u73b0`ModuleNotFoundError: No module named 'te'`\u600e\u4e48\u529e\uff1f": "\u9996\u5148\u786e\u8ba4\u73af\u5883\u5b89\u88c5\u662f\u5426\u6b63\u786e\uff0c`te`\u3001`topi`\u7b49whl\u5305\u662f\u5426\u6b63\u786e\u5b89\u88c5\u3002\u5982\u679c\u7528\u6237\u73af\u5883\u4e2d\u6709\u591a\u4e2aPython\u7248\u672c\uff0c\u5982Conda\u865a\u62df\u73af\u5883\u4e2d\uff0c\u9700`ldd name_of_your_executable_app`\u786e\u8ba4\u5e94\u7528\u6240\u94fe\u63a5\u7684`libpython3.so`\u662f\u5426\u4e0e\u5f53\u524dPython\u8def\u5f84\u4e00\u81f4\uff0c\u5982\u679c\u4e0d\u4e00\u81f4\u9700\u8981\u8c03\u6574\u73af\u5883\u53d8\u91cf`LD_LIBRARY_PATH`\u987a\u5e8f\uff0c\u4f8b\u5982\t```bash\texport LD_LIBRARY_PATH=`python -c \"import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))\"`:$LD_LIBRARY_PATH\t```\u5c06\u5f53\u524d\u7684`python`\u547d\u4ee4\u5bf9\u5e94\u7a0b\u5e8f\u7684\u8fd0\u884c\u5e93\u8def\u5f84\u52a0\u5165\u5230`LD_LIBRARY_PATH`\u7684\u6700\u524d\u9762\u3002", "\u8fd0\u884c\u5e94\u7528\u65f6\u51fa\u73b0`error while loading shared libraries: libpython3.so: cannot open shared object file: No such file or directory`\u600e\u4e48\u529e\uff1f": "\u8be5\u62a5\u9519\u901a\u5e38\u51fa\u73b0\u5728\u88c5\u6709\u591a\u4e2aPython\u7248\u672c\u7684\u73af\u5883\u4e2d\uff0c\u9996\u5148\u786e\u8ba4Python\u7684`lib`\u76ee\u5f55\u662f\u5426\u5728\u73af\u5883\u53d8\u91cf`LD_LIBRARY_PATH`\u4e2d\uff0c\u53ef\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\u8fdb\u884c\u8bbe\u7f6e\uff1a\t```bash\texport LD_LIBRARY_PATH=`python -c \"import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))\"`:$LD_LIBRARY_PATH\t```\u53e6\u5916\u5982\u679c\u5728Conda\u865a\u62df\u73af\u5883\u4e2d\uff0cPython 3.7.6\u4ee5\u4e0b\u7248\u672c\u4e0d\u542b\u8be5\u52a8\u6001\u5e93\uff0c\u53ef\u4ee5\u6267\u884c\u547d\u4ee4\u5347\u7ea7Conda\u4e2dPython\u7684\u7248\u672c\uff0c\u5982\uff1a`conda install python=3.7.11`\u3002", "Ascend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u4e0e\u5176\u4ed6\u4f9d\u8d56\u8f6f\u4ef6\u5df2\u5b89\u88c5\uff0c\u4f46\u662f\u6267\u884cMindSpore\u65f6\u63d0\u793a`Cannot open shared objectfile: No such file or directory`\u8be5\u600e\u4e48\u529e\uff1f": "\u5e38\u89c1\u539f\u56e0\u6709\u4e24\u79cd: Ascend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u6216\u56fa\u4ef6/\u9a71\u52a8\u5305\u7248\u672c\u4e0d\u6b63\u786e\uff0c\u6216\u6ca1\u6709\u5b89\u88c5\u5728\u9ed8\u8ba4\u4f4d\u7f6e\u4e14\u672a\u914d\u7f6e\u76f8\u5e94\u7684\u73af\u5883\u53d8\u91cf\u3002\t1. \u6253\u5f00Ascend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u5b89\u88c5\u76ee\u5f55\uff0c\u9ed8\u8ba4`/usr/local/Ascend`\u4e0b\uff0c\u5404\u4e2a\u5b50\u76ee\u5f55\u4e2d\u7684`version.info`\u6587\u4ef6\uff0c\u89c2\u5bdf\u5176\u7248\u672c\u53f7\u662f\u5426\u4e0e\u5f53\u524d\u4f7f\u7528\u7684MindSpore\u7248\u672c\u4e00\u76f4\uff0c\u53c2\u7167[\u5b89\u88c5\u9875\u9762](https://www.mindspore.cn/install/)\u4e2d\u5173\u4e8eAscend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u7248\u672c\u7684\u63cf\u8ff0\u3002\u5982\u679c\u7248\u672c\u4e0d\u914d\u5957\uff0c\u8bf7\u66f4\u6362\u8f6f\u4ef6\u5305\u6216MindSpore\u7248\u672c\u3002\t\t2. \u68c0\u67e5Ascend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u4e0e\u5176\u4ed6\u4f9d\u8d56\u8f6f\u4ef6\u662f\u5426\u5b89\u88c5\u5728\u9ed8\u8ba4\u4f4d\u7f6e\uff0cMindSpore\u4f1a\u5c1d\u8bd5\u4ece\u9ed8\u8ba4\u5b89\u88c5\u4f4d\u7f6e`/usr/local/Ascend`\u81ea\u52a8\u52a0\u8f7d\uff0c\u5982\u679c\u5c06Ascend\u8f6f\u4ef6\u5305\u5b89\u88c5\u5728\u81ea\u5b9a\u4e49\u4f4d\u7f6e\uff0c\u8bf7\u53c2\u7167[\u5b89\u88c5\u9875\u9762](https://www.mindspore.cn/install/)\u9875\u9762\u7684\u5b89\u88c5\u6307\u5357\u4e00\u680f\u8bbe\u7f6e\u73af\u5883\u53d8\u91cf\u3002\u5982\u679c\u5c06\u5176\u4ed6\u4f9d\u8d56\u8f6f\u4ef6\u5b89\u88c5\u5728\u81ea\u5b9a\u4e49\u4f4d\u7f6e\uff0c\u8bf7\u6839\u636e\u5176\u4f4d\u7f6e\u5173\u7cfb\u8bbe\u7f6e`LD_LIBRARY_PATH`\u73af\u5883\u53d8\u91cf\u3002", "MindSpore\u7684GPU\u7248\u672c\u5bf9\u8bbe\u5907\u7684\u8ba1\u7b97\u80fd\u529b\u6709\u9650\u5236\u5417\uff1f": "\u76ee\u524dMindSpore\u4ec5\u652f\u6301\u8ba1\u7b97\u80fd\u529b\u5927\u4e8e5.3\u7684\u8bbe\u5907\u3002", "\u4e2a\u4eba\u7535\u8111CPU\u73af\u5883\u5b89\u88c5MindSpore\u540e\u9a8c\u8bc1\u4ee3\u7801\u65f6\u62a5\u9519: `the pointer[session] is null`\uff0c\u5177\u4f53\u4ee3\u7801\u5982\u4e0b\uff0c\u8be5\u5982\u4f55\u9a8c\u8bc1\u662f\u5426\u5b89\u88c5\u6210\u529f\u5462\uff1f": "```python\timport numpy as np\tfrom mindspore import Tensor\uff0c set_context\timport mindspore.ops as ops\t\tset_context(device_target=\"Ascend\")\tx = Tensor(np.ones([1\uff0c3\uff0c3\uff0c4]).astype(np.float32))\ty = Tensor(np.ones([1\uff0c3\uff0c3\uff0c4]).astype(np.float32))\tprint(ops.add(x\uff0cy))\t```\u9a8c\u8bc1\u5b89\u88c5\u662f\u5426\u6210\u529f\uff0c\u53ef\u4ee5\u53c2\u7167\u5bf9\u5e94\u7248\u672c\u7684\u5b89\u88c5\u6307\u5357\u9875\u9762\u4e2d `\u9a8c\u8bc1\u662f\u5426\u6210\u529f\u5b89\u88c5` \u6bb5\u843d\u7684\u63cf\u8ff0\uff1a\t```bash\tpython -c \"import mindspore;mindspore.run_check()\"\t```\u5982\u679c\u8f93\u51fa\uff1a\t```text\tMindSpore version: \u7248\u672c\u53f7\tThe result of multiplication calculation is correct\uff0c MindSpore has been installed successfully!\t```\u8bf4\u660eMindSpore\u5b89\u88c5\u6210\u529f\u4e86\u3002", "`Linux`\u5e73\u53f0\u4e0b\u6267\u884c\u7528\u4f8b\u7684\u65f6\u5019\u4f1a\u62a5\u9519`sh:1:python:not found`\u6216\u8005\u7531\u4e8e\u94fe\u63a5\u5230\u4e86Python2.7\u7684\u7248\u672c\u4e2d\u800c\u62a5\u9519`No module named mindspore._extends.remote`\uff0c\u8be5\u600e\u4e48\u5904\u7406\uff1f": "\u9047\u5230\u7c7b\u4f3c\u7684\u95ee\u9898\uff0c\u5927\u591a\u662f\u7531\u4e8ePython\u7684\u73af\u5883\u95ee\u9898\uff0c\u53ef\u4ee5\u901a\u8fc7\u5982\u4e0b\u65b9\u5f0f\u68c0\u67e5Python\u73af\u5883\u662f\u5426\u662fMindSpore\u8fd0\u884c\u65f6\u6240\u9700\u8981\u7684\u73af\u5883\u3002\t- \u5728\u7ec8\u7aef\u7a97\u53e3\u4e2d\u8f93\u5165`python`\uff0c\u68c0\u67e5\u4ee5\u4e0b\u8fdb\u5165Python\u4ea4\u4e92\u73af\u5883\u4e2d\u7684\u7248\u672c\u4fe1\u606f\uff0c\u5982\u679c\u76f4\u63a5\u62a5\u9519\u5219\u662f\u6ca1\u6709Python\u7684\u8f6f\u8fde\u63a5\uff1b\u5982\u679c\u8fdb\u5165\u7684\u662f\u975ePython3.7\u7248\u672c\u7684\u73af\u5883\uff0c\u5219\u5f53\u524dPython\u73af\u5883\u4e0d\u662fMindSpore\u8fd0\u884c\u6240\u9700\u8981\u7684\u3002\t- \u6267\u884c`sudo ln -sf /usr/bin/python3.7.x /usr/bin/python`\u521b\u5efaPython\u7684\u8f6f\u8fde\u63a5\uff0c\u7136\u540e\u518d\u68c0\u67e5\u6267\u884c\u3002", "\u5728\u811a\u672c\u4e2d`import mindspore`\u4e4b\u524dimport\u4e86\u5176\u4ed6\u4e09\u65b9\u5e93\uff0c\u63d0\u793a\u5982\u4e0b\u9519\u8bef(`/{your_path}/libgomp.so.1: cannot allocate memory in static TLS block`)\u8be5\u600e\u4e48\u89e3\u51b3?": "\u4e0a\u8ff0\u95ee\u9898\u8f83\u4e3a\u5e38\u89c1\uff0c\u5f53\u524d\u6709\u4e24\u79cd\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6cd5\uff0c\u53ef\u4efb\u9009\u5176\u4e00:\t- \u4ea4\u6362import\u7684\u987a\u5e8f\uff0c\u5148`import mindspore`\u518dimport\u5176\u4ed6\u4e09\u65b9\u5e93\u3002\t- \u6267\u884c\u7a0b\u5e8f\u4e4b\u524d\u5148\u6dfb\u52a0\u73af\u5883\u53d8\u91cf\uff08`export LD_PRELOAD=/{your_path}/libgomp.so.1`\uff09\uff0c\u5176\u4e2d`{your_path}`\u662f\u4e0a\u8ff0\u62a5\u9519\u63d0\u793a\u7684\u8def\u5f84\u3002", "mindspore\u548cgmp\u90fd\u5df2\u7ecf\u901a\u8fc7\u6e90\u7801\u7f16\u8bd1\u5b89\u88c5\u540e\uff0c\u5728\u811a\u672c\u4e2d\u6267\u884c`import mindspore`\uff0c\t\u63d0\u793a\u5982\u4e0b\u9519\u8bef(`ImportError: libgmpxx.so: cannot open shared object file: No such file or directory`)\u8be5\u600e\u4e48\u89e3\u51b3?": "\u4e0a\u8ff0\u95ee\u9898\u7684\u539f\u56e0\u662f\u5728\u7f16\u8bd1\u5b89\u88c5gmp\u5e93\u7684\u65f6\u5019\u6ca1\u6709\u8bbe\u7f6e`--enable-cxx`\uff0c\u6b63\u786e\u7684gmp\u7f16\u8bd1\u5b89\u88c5\u65b9\u5f0f\u5982\u4e0b\uff08\u5047\u8bbe\u5df2\u7ecf\u4e0b\u8f7d\u4e86gmp6.1.2\u5b89\u88c5\u5305\uff09\uff1a\t```bash\t$cd gmp-6.1.2\t$./configure --enable-cxx\t$make\t$make check\t$sudo make install\t```", "\u8fd0\u884cMindSpore\u65f6\u51fa\u73b0\u544a\u8b66 `UserWarning: The value of the smallest subnormal for type is zero.` \u5e94\u8be5\u600e\u4e48\u89e3\u51b3\uff1f": "\u4e0a\u8ff0\u95ee\u9898\u51fa\u73b0\u5728\u5b89\u88c5\u4e86\u8f83\u65b0\u7248\u672c\u7684numpy(>=1.22.0)\u7248\u672c\u7684ARM python3.9\u73af\u5883\u4e0a\u3002\u544a\u8b66\u6765\u81eanumpy\u800c\u975eMindSpore\u3002\u5982\u679c\u544a\u8b66\u5f71\u54cd\u5230\u4e86\u4ee3\u7801\u7684\u6b63\u5e38\u8c03\u6d4b\uff0c\u53ef\u4ee5\u8003\u8651\u624b\u52a8\u5b89\u88c5\u8f83\u4f4e\u7248\u672c\u7684numpy(<=1.21.2)\u6765\u89c4\u907f\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201c'self.xx' should be defined in the class '__init__' function.\u201d\u600e\u4e48\u529e\uff1f": "\u5982\u679c\u5728`construct`\u51fd\u6570\u91cc\uff0c\u60f3\u5bf9\u7c7b\u6210\u5458`self.xx`\u8d4b\u503c\uff0c\u90a3\u4e48`self.xx`\u5fc5\u987b\u5df2\u7ecf\u5728`__init__`\u51fd\u6570\u4e2d\u88ab\u5b9a\u4e49\u4e3a[Parameter]()\u7c7b\u578b\uff0c\u5176\u4ed6\u7c7b\u578b\u5219\u4e0d\u652f\u6301\u3002\u5c40\u90e8\u53d8\u91cf`xx`\u4e0d\u53d7\u8fd9\u4e2a\u9650\u5236\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThis comparator 'AnyValue' is not supported. For statement 'is'\uff0c only support compare with 'None'\uff0c 'False' or 'True'\u201d\u600e\u4e48\u529e\uff1f": "\u5bf9\u4e8e\u8bed\u6cd5`is` \u6216 `is not`\u800c\u8a00\uff0c\u5f53\u524d`MindSpore`\u4ec5\u652f\u6301\u4e0e`True`\u3001`False`\u548c`None`\u7684\u6bd4\u8f83\u3002\u6682\u4e0d\u652f\u6301\u5176\u4ed6\u7c7b\u578b\uff0c\u5982\u5b57\u7b26\u4e32\u7b49\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cMindSpore does not support comparison with operators more than one now\uff0c ops size =2\u201d\u600e\u4e48\u529e\uff1f": "\u5bf9\u4e8e\u6bd4\u8f83\u8bed\u53e5\uff0c`MindSpore`\u6700\u591a\u652f\u6301\u4e00\u4e2a\u64cd\u4f5c\u6570\u3002\u4f8b\u5982\u4e0d\u652f\u6301\u8bed\u53e5`1 < x < 3`\uff0c\u8bf7\u4f7f\u7528`1 < x and x < 3`\u7684\u65b9\u5f0f\u4ee3\u66ff\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cTypeError: The function construct need 1 positional argument and 0 default argument\uff0c but provided 2\u201d\u600e\u4e48\u529e\uff1f": "\u7f51\u7edc\u7684\u5b9e\u4f8b\u88ab\u8c03\u7528\u65f6\uff0c\u4f1a\u6267\u884c`construct`\u65b9\u6cd5\uff0c\u7136\u540e\u4f1a\u68c0\u67e5`construct`\u65b9\u6cd5\u9700\u8981\u7684\u53c2\u6570\u4e2a\u6570\u548c\u5b9e\u9645\u4f20\u5165\u7684\u53c2\u6570\u4e2a\u6570\uff0c\u5982\u679c\u4e0d\u4e00\u81f4\u5219\u4f1a\u629b\u51fa\u4ee5\u4e0a\u5f02\u5e38\u3002\t\u8bf7\u68c0\u67e5\u811a\u672c\u4e2d\u8c03\u7528\u7f51\u7edc\u5b9e\u4f8b\u65f6\u4f20\u5165\u7684\u53c2\u6570\u4e2a\u6570\uff0c\u548c\u5b9a\u4e49\u7684\u7f51\u7edc\u4e2d`construct`\u51fd\u6570\u9700\u8981\u7684\u53c2\u6570\u4e2a\u6570\u662f\u5426\u4e00\u81f4\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cType Join Failed\u201d\u6216\u201cShape Join Failed\u201d\u600e\u4e48\u529e\uff1f": "\u5728\u524d\u7aef\u7f16\u8bd1\u7684\u63a8\u7406\u9636\u6bb5\uff0c\u4f1a\u5bf9\u8282\u70b9\u7684\u62bd\u8c61\u7c7b\u578b(\u5305\u542b`type`\u3001`shape`\u7b49)\u8fdb\u884c\u63a8\u5bfc\uff0c\u5e38\u89c1\u62bd\u8c61\u7c7b\u578b\u5305\u62ec`AbstractScalar`\u3001`AbstractTensor`\u3001`AbstractFunction`\u3001`AbstractTuple`\u3001`AbstractList`\u7b49\u3002\u5728\u4e00\u4e9b\u573a\u666f\u6bd4\u5982\u591a\u5206\u652f\u573a\u666f\uff0c\u4f1a\u5bf9\u4e0d\u540c\u5206\u652f\u8fd4\u56de\u503c\u7684\u62bd\u8c61\u7c7b\u578b\u8fdb\u884c`join`\u5408\u5e76\uff0c\u63a8\u5bfc\u51fa\u8fd4\u56de\u7ed3\u679c\u7684\u62bd\u8c61\u7c7b\u578b\u3002\u5982\u679c\u62bd\u8c61\u7c7b\u578b\u4e0d\u5339\u914d\uff0c\u6216\u8005`type`/`shape`\u4e0d\u4e00\u81f4\uff0c\u5219\u4f1a\u629b\u51fa\u4ee5\u4e0a\u5f02\u5e38\u3002\t\u5f53\u51fa\u73b0\u7c7b\u4f3c\u201cType Join Failed: dtype1 = Float32\uff0c dtype2 = Float16\u201d\u7684\u62a5\u9519\u65f6\uff0c\u8bf4\u660e\u6570\u636e\u7c7b\u578b\u4e0d\u4e00\u81f4\uff0c\u5bfc\u81f4\u62bd\u8c61\u7c7b\u578b\u5408\u5e76\u5931\u8d25\u3002\u6839\u636e\u63d0\u4f9b\u7684\u6570\u636e\u7c7b\u578b\u548c\u4ee3\u7801\u884c\u4fe1\u606f\uff0c\u53ef\u4ee5\u5feb\u901f\u5b9a\u4f4d\u51fa\u9519\u8303\u56f4\u3002\u6b64\u5916\uff0c\u62a5\u9519\u4fe1\u606f\u4e2d\u63d0\u4f9b\u4e86\u5177\u4f53\u7684\u62bd\u8c61\u7c7b\u578b\u4fe1\u606f\u3001\u8282\u70b9\u4fe1\u606f\uff0c\u53ef\u4ee5\u901a\u8fc7`analyze_fail.dat`\u6587\u4ef6\u67e5\u770bMindIR\u4fe1\u606f\uff0c\u5b9a\u4f4d\u89e3\u51b3\u95ee\u9898\u3002\u5173\u4e8eMindIR\u7684\u5177\u4f53\u4ecb\u7ecd\uff0c\u53ef\u4ee5\u53c2\u8003[MindSpore IR\uff08MindIR\uff09](https://www.mindspore.cn/docs/zh-CN/master/design/mindir.html)\u3002\u4ee3\u7801\u6837\u4f8b\u5982\u4e0b:\t```python\timport numpy as np\timport mindspore as ms\timport mindspore.ops as ops\tfrom mindspore import nn\uff0c Tensor\uff0c set_context\uff0c GRAPH_MODE\t\tset_context(mode=GRAPH_MODE)\tclass Net(nn.Cell):\t def __init__(self):\t super().__init__()\t self.relu = ops.ReLU()\t self.cast = ops.Cast()\t\t def construct(self\uff0c x\uff0c a\uff0c b):\t if a > b: # if\u7684\u4e24\u4e2a\u5206\u652f\u8fd4\u56de\u503c\u7684type\u4e0d\u4e00\u81f4\t return self.relu(x) # shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c dtype:Float32\t else:\t return self.cast(self.relu(x)\uff0c ms.float16) # shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c dtype:Float16\t\tinput_x = Tensor(np.random.rand(2\uff0c 3\uff0c 4\uff0c 5).astype(np.float32))\tinput_a = Tensor(2\uff0c ms.float32)\tinput_b = Tensor(6\uff0c ms.float32)\tnet = Net()\tout_me = net(input_x\uff0c input_a\uff0c input_b)\t```\u6267\u884c\u7ed3\u679c\u5982\u4e0b:\t```text\tTypeError: Cannot join the return values of different branches\uff0c perhaps you need to make them equal.\tType Join Failed: dtype1 = Float32\uff0c dtype2 = Float16.\tFor more details\uff0c please refer to the FAQ at https://www.mindspore.cn\tThe abstract type of the return value of the current branch is AbstractTensor(shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c element: AbstractScalar(Type: Float16\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x55b9f289d090\uff0c value: AnyValue)\uff0c and that of the previous branch is AbstractTensor(shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x55b9f289d090\uff0c value: AnyValue).\tThe node is construct.6:[CNode]13{[0]: construct.6:[CNode]12{[0]: ValueNode Switch\uff0c [1]: [CNode]11\uff0c [2]: ValueNode \u2713construct.4\uff0c [3]: ValueNode \u2717construct.5}}\uff0c true branch: \u2713construct.4\uff0c false branch: \u2717construct.5\tThe function call stack:\tIn file test.py(14)/ if a > b:\t\tThe function call stack (See file 'analyze_fail.dat' for more details):\t# 0 In file test.py(14)\t if a > b:\t ^\t```\u5f53\u51fa\u73b0\u7c7b\u4f3c\u201cShape Join Failed: shape1 = (2\uff0c 3\uff0c 4\uff0c 5)\uff0c shape2 = ()\u201d\u7684\u62a5\u9519\u65f6\uff0c\u8bf4\u660e`shape`\u4e0d\u4e00\u81f4\uff0c\u5bfc\u81f4\u62bd\u8c61\u7c7b\u578b\u5408\u5e76\u5931\u8d25\u3002\u4ee3\u7801\u6837\u4f8b\u5982\u4e0b:\t```python\timport numpy as np\timport mindspore as ms\timport mindspore.ops as ops\tfrom mindspore import nn\uff0c Tensor\uff0c set_context\uff0c GRAPH_MODE\t\tset_context(mode=GRAPH_MODE)\tclass Net(nn.Cell):\t def __init__(self):\t super().__init__()\t self.relu = ops.ReLU()\t self.reducesum = ops.ReduceSum()\t\t def construct(self\uff0c x\uff0c a\uff0c b):\t if a > b: # if\u7684\u4e24\u4e2a\u5206\u652f\u8fd4\u56de\u503c\u7684shape\u4e0d\u4e00\u81f4\t return self.relu(x) # shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c dtype:Float32\t else:\t return self.reducesum(x) # shape:()\uff0c dype: Float32\t\tinput_x = Tensor(np.random.rand(2\uff0c 3\uff0c 4\uff0c 5).astype(np.float32))\tinput_a = Tensor(2\uff0c ms.float32)\tinput_b = Tensor(6\uff0c ms.float32)\tnet = Net()\tout = net(input_x\uff0c input_a\uff0c input_b)\t``````text\tValueError: Cannot join the return values of different branches\uff0c perhaps you need to make them equal.\tShape Join Failed: shape1 = (2\uff0c 3\uff0c 4\uff0c 5)\uff0c shape2 = ().\tFor more details\uff0c please refer to the FAQ at https://www.mindspore.cn\tThe abstract type of the return value of the current branch is AbstractTensor(shape: ()\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x55658aa9b090\uff0c value: AnyValue)\uff0c and that of the previous branch is AbstractTensor(shape: (2\uff0c 3\uff0c 4\uff0c 5)\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x55658aa9b090\uff0c value: AnyValue).\tThe node is construct.6:[CNode]13{[0]: construct.6:[CNode]12{[0]: ValueNode Switch\uff0c [1]: [CNode]11\uff0c [2]: ValueNode \u2713construct.4\uff0c [3]: ValueNode \u2717construct.5}}\uff0c true branch: \u2713construct.4\uff0c false branch: \u2717construct.5\tThe function call stack:\tIn file test.py(14)/ if a > b:\t\tThe function call stack (See file 'analyze_fail.dat' for more details):\t# 0 In file test.py(14)\t if a > b:\t ^\t```\u5f53\u51fa\u73b0\u5982\u201cType Join Failed: abstract type AbstractTensor can not join with AbstractTuple\u201d\u7684\u62a5\u9519\u65f6\uff0c\u8bf4\u660e\u62bd\u8c61\u7c7b\u578b\u4e0d\u5339\u914d\uff0c\u5bfc\u81f4\u62bd\u8c61\u7c7b\u578b\u5408\u5e76\u5931\u8d25\uff0c\u4ee3\u7801\u6837\u4f8b\u5982\u4e0b\uff1a\t```python\timport mindspore.ops as ops\tfrom mindspore import Tensor\uff0c ms_function\t\tx = Tensor([1.0])\ty = Tensor([2.0])\tgrad = ops.GradOperation(get_by_list=False\uff0c sens_param=True)\tsens = 1.0\t\tdef test_net(a\uff0c b):\t return a\uff0c b\t\t@ms_function()\tdef join_fail():\t sens_i = ops.Fill()(ops.DType()(x)\uff0c ops.Shape()(x)\uff0c sens) # sens_i \u662f\u4e00\u4e2a\u6807\u91cfshape: (1)\uff0c dtype:Float64\uff0c value:1.0\t # sens_i = (sens_i\uff0c sens_i)\t a = grad(test_net)(x\uff0c y\uff0c sens_i) # \u5bf9\u8f93\u51fa\u7c7b\u578b\u4e3atuple(Tensor\uff0c Tensor)\u7684test_net\u6c42\u68af\u5ea6\u9700\u8981sens_i\u7684\u7c7b\u578b\u540c\u8f93\u51fa\u4fdd\u6301\u4e00\u81f4\uff0c\u4f46sens_i\u662f\u4e2aTensor; \u5728grad\u524d\u8bbe\u7f6esens_i = (sens_i\uff0c sens_i)\u53ef\u4ee5\u4fee\u590d\u95ee\u9898\u3002\t return a\t\tjoin_fail()\t```\u6267\u884c\u7ed3\u679c\u5982\u4e0b\uff1a\t```text\tTypeError: Type Join Failed: abstract type AbstractTensor cannot join with AbstractTuple.\tFor more details\uff0c please refer to the FAQ at https://www.mindspore.cn.\tThis: AbstractTensor(shape: (1)\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x56458a351ad0\uff0c value: Tensor(shape=[1]\uff0c dtype=Float32\uff0c value=[ 1.00000000e+00]))\uff0c other: AbstractTuple{element[0]: AbstractTensor(shape: (1)\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x564583e3fa90\uff0c value: Tensor(shape=[1]\uff0c dtype=Float32\uff0c value=[ 1.00000000e+00]))\uff0c element[1]: AbstractTensor(shape: (1)\uff0c element: AbstractScalar(Type: Float32\uff0c Value: AnyValue\uff0c Shape: NoShape)\uff0c value_ptr: 0x564583cb00b0\uff0c value: Tensor(shape=[1]\uff0c dtype=Float32\uff0c value=[ 2.00000000e+00]))\uff0c sequence_nodes: {test_net.3:[CNode]4{[0]: ValueNode MakeTuple\uff0c [1]: a\uff0c [2]: b}\uff0c elements_use_flags: {ptr: 0x5645cbc500c0\uff0c value: [const vector][1\uff0c 1]}}}\tThe function call stack (See file 'analyze_fail.dat' for more details):\t# 0 In file test.py(16)\t a = grad(test_net)(x\uff0c y\uff0c sens_i)\t ^\t```", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThe params of function 'bprop' of Primitive or Cell requires the forward inputs as well as the 'out' and 'dout'\u201d\u600e\u4e48\u529e\uff1f": "\u7528\u6237\u81ea\u5b9a\u4e49\u7684Cell\u7684\u53cd\u5411\u4f20\u64ad\u51fd\u6570`bprop`\uff0c\u5b83\u7684\u8f93\u5165\u9700\u8981\u5305\u542b\u6b63\u5411\u7f51\u7edc\u7684\u8f93\u5165\uff0c\u4ee5\u53ca`out`\u548c`dout`\uff0c\u4f8b\u5982\uff1a\t```python\tclass BpropUserDefinedNet(nn.Cell):\t def __init__(self):\t super(BpropUserDefinedNet\uff0c self).__init__()\t self.zeros_like = P.ZerosLike()\t\t def construct(self\uff0c x\uff0c y):\t return x + y\t\t def bprop(self\uff0c x\uff0c y\uff0c out\uff0c dout):\t return self.zeros_like(out)\uff0c self.zeros_like(out)\t```", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThere isn't any branch that can be evaluated\u201d\u600e\u4e48\u529e\uff1f": "\u5f53\u51fa\u73b0There isn't any branch that can be evaluated \u65f6\uff0c\u8bf4\u660e\u4ee3\u7801\u4e2d\u53ef\u80fd\u51fa\u73b0\u4e86\u65e0\u7a77\u9012\u5f52\u6216\u8005\u65f6\u6b7b\u5faa\u73af\uff0c\u5bfc\u81f4if\u6761\u4ef6\u7684\u6bcf\u4e00\u4e2a\u5206\u652f\u90fd\u65e0\u6cd5\u63a8\u5bfc\u51fa\u6b63\u786e\u7684\u7c7b\u578b\u548c\u7ef4\u5ea6\u4fe1\u606f\u3002\t\u4f8b\u5982\u4ee3\u7801\t```python\tfrom mindspore import Tensor\uff0c ms_function\uff0c set_context\uff0c GRAPH_MODE\tfrom mindspore import dtype as mstype\tZERO = Tensor([0]\uff0c mstype.int32)\tONE = Tensor([1]\uff0c mstype.int32)\t@ms_function\tdef f(x):\t y = ZERO\t if x < 0:\t y = f(x - 3)\t elif x < 3:\t y = x * f(x - 1)\t elif x < 5:\t y = x * f(x - 2)\t else:\t y = f(x - 4)\t z = y + 1\t return z\t\tdef test_endless():\t set_context(mode=GRAPH_MODE)\t x = Tensor([5]\uff0c mstype.int32)\t f(x)\t\t```\u5176\u4e2df(x)\u7531\u4e8e\u6bcf\u4e00\u4e2aif\u5206\u652f\u90fd\u6ca1\u529e\u6cd5\u63a8\u5bfc\u51fa\u6b63\u786e\u7684\u7c7b\u578b\u4fe1\u606f\u5bfc\u81f4\u5931\u8d25\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\"Exceed function call depth limit 1000\"\u600e\u4e48\u529e\uff1f": "\u5f53\u51fa\u73b0Exceed function call depth limit 1000 \u65f6\uff0c\u8bf4\u660e\u4ee3\u7801\u4e2d\u51fa\u73b0\u4e86\u65e0\u7a77\u9012\u5f52\u6b7b\u5faa\u73af\uff0c\u6216\u8005\u662f\u4ee3\u7801\u8fc7\u4e8e\u590d\u6742\uff0c\u7c7b\u578b\u63a8\u5bfc\u8fc7\u7a0b\u4e2d\u5bfc\u81f4\u6808\u6df1\u5ea6\u8d85\u8fc7\u8bbe\u7f6e\u7684\u6700\u5927\u6df1\u5ea6\u3002\t\u6b64\u65f6\u53ef\u4ee5\u901a\u8fc7\u8bbe\u7f6econtext.set_context(max_call_depth = value)\u8fd9\u6837\u7684\u65b9\u5f0f\u66f4\u6539\u6808\u7684\u6700\u5927\u6df1\u5ea6\uff0c\u5e76\u8003\u8651\u7b80\u5316\u4ee3\u7801\u903b\u8f91\u6216\u8005\u68c0\u67e5\u4ee3\u7801\u4e2d\u662f\u5426\u5b58\u5728\u65e0\u7a77\u9012\u5f52\u6216\u6b7b\u5faa\u73af\u3002\t\u6b64\u5916\u8bbe\u7f6emax_call_depth = value \u867d\u7136\u53ef\u4ee5\u6539\u53d8MindSpore\u7684\u9012\u5f52\u6df1\u5ea6\uff0c\u4f46\u662f\u6b64\u65f6\u4e5f\u53ef\u80fd\u4f1a\u8d85\u8fc7\u7cfb\u7edf\u6808\u7684\u6700\u5927\u6df1\u5ea6\u800c\u51fa\u73b0\u6bb5\u9519\u8bef\u3002\u6b64\u65f6\u53ef\u80fd\u8fd8\u9700\u8981\u8bbe\u7f6e\u5c06\u7cfb\u7edf\u6808\u6df1\u5ea6\u8fdb\u884c\u8bbe\u7f6e\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201ccould not get source code\u201d\u4ee5\u53ca\u201cMindspore can not compile temporary source code in terminal. Please write source code to a python file and run the file.\u201d\u662f\u4ec0\u4e48\u539f\u56e0\uff1f": "MindSpore\u7f16\u8bd1\u7f51\u7edc\u65f6\u901a\u8fc7`inspect.getsourcelines(self.fn)`\u83b7\u53d6\u7f51\u7edc\u4ee3\u7801\u6240\u5728\u7684\u6587\u4ef6\uff0c\u5982\u679c\u7f51\u7edc\u662f\u7f16\u8f91\u5728\u547d\u4ee4\u884c\u4e2d\u7684\u4e34\u65f6\u4ee3\u7801\uff0c\u90a3\u4e48\u4f1a\u51fa\u73b0\u5982\u6807\u9898\u6240\u793a\u7684\u62a5\u9519\uff0c\u9700\u8981\u5c06\u7f51\u7edc\u5199\u5728Python\u6587\u4ef6\u4e2d\u53bb\u6267\u884c\u624d\u80fd\u907f\u514d\u8be5\u9519\u8bef\u3002", "\u62a5\u9519\u63d0\u793a\u4e2d\u7684\u201cCorresponding forward node candidate:\u201d\u6216\u201cCorresponding code candidate:\u201d\u662f\u4ec0\u4e48\u610f\u601d\uff1f": "\u201cCorresponding forward node candidate:\u201d\u4e3a\u5173\u8054\u7684\u6b63\u5411\u7f51\u7edc\u4e2d\u7684\u4ee3\u7801\uff0c\u8868\u793a\u8be5\u53cd\u5411\u4f20\u64ad\u7b97\u5b50\u4e0e\u8be5\u6b63\u5411\u4ee3\u7801\u5bf9\u5e94\u3002\u201cCorresponding code candidate:\u201d\u8868\u793a\u8be5\u7b97\u5b50\u662f\u7531\u8fd9\u4e9b\u4ee3\u7801\u878d\u5408\u800c\u6765\uff0c\u5176\u4e2d\u5206\u7b26\u201c-\u201d\u7528\u4ee5\u533a\u5206\u4e0d\u540c\u7684\u4ee3\u7801\u3002\t\u4f8b\u5982\uff1a\t- \u7b97\u5b50FusionOp_BNTrainingUpdate_ReLUV2\u62a5\u9519\uff0c\u6253\u5370\u4e86\u5982\u4e0b\u7684\u4ee3\u7801\u884c\uff1a\t\t ```text\t Corresponding code candidate:\t - In file /home/workspace/mindspore/build/package/mindspore/nn/layer/normalization.py(212)/ return self.bn_train(x\uff0c/\t In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(265)/ x = self.bn1(x)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/\t In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/\t - In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(266)/ x = self.relu(x)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/\t In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/\t ```\t\t \u7b2c\u4e00\u4e2a\u5206\u9694\u7b26\u7684\u4ee3\u7801\u8c03\u7528\u6808\u6307\u5411\u4e86\u7f51\u7edc\u811a\u672c\u6587\u4ef6\u4e2d\u7b2c265\u884c\u7684\u201cx = self.bn1(x)\u201d\uff0c\u7b2c\u4e8c\u4e2a\u5206\u9694\u7b26\u7684\u4ee3\u7801\u8c03\u7528\u6808\u6307\u5411\u4e86\u7f51\u7edc\u811a\u672c\u6587\u4ef6\u4e2d\u7b2c266\u884c\u7684\u201cx = self.relu(x)\u201d\u3002\u53ef\u77e5\uff0c\u8be5\u7b97\u5b50FusionOp_BNTrainingUpdate_ReLUV2\u7531\u8fd9\u4e24\u884c\u4ee3\u7801\u878d\u5408\u800c\u6765\u3002\t\t- \u7b97\u5b50Conv2DBackpropFilter\u62a5\u9519\uff0c\u6253\u5370\u4e86\u5982\u4e0b\u7684\u4ee3\u7801\u884c\uff1a\t\t ```text\t In file /home/workspace/mindspore/build/package/mindspore/ops/_grad/grad_nn_ops.py(65)/ dw = filter_grad(dout\uff0c x\uff0c w_shape)/\t Corresponding forward node candidate:\t - In file /home/workspace/mindspore/build/package/mindspore/nn/layer/conv.py(266)/ output = self.conv2d(x\uff0c self.weight)/\t In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(149)/ out = self.conv1(x)/\t In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(195)/ x = self.a(x)/\t In file /home/workspace/mindspore/tests/st/tbe_networks/resnet.py(270)/ x = self.layer2(x)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(109)/ out = self._backbone(data)/\t In file /home/workspace/mindspore/build/package/mindspore/nn/wrap/cell_wrapper.py(356)/ loss = self.network(*inputs)/\t In file /home/workspace/mindspore/build/package/mindspore/train/dataset_helper.py(98)/ return self.network(*outputs)/\t ```\t\t \u7b2c\u4e00\u884c\u662f\u8be5\u7b97\u5b50\u7684\u76f8\u5e94\u6e90\u7801\uff0c\u8be5\u7b97\u5b50\u662f\u53cd\u5411\u7b97\u5b50\uff0c\u6545\u7531MindSpore\u5b9e\u73b0\u3002\u7b2c\u4e8c\u884c\u63d0\u793a\u6b64\u7b97\u5b50\u6709\u5173\u8054\u7684\u6b63\u5411\u8282\u70b9\uff0c\u7b2c\u56db\u884c\u5219\u6307\u5411\u4e86\u7f51\u7edc\u811a\u672c\u6587\u4ef6\u7b2c149\u884c\u7684\u201cout = self.conv1(x)\u201d\u3002\u7efc\u4e0a\u53ef\u77e5\uff0c\u7b97\u5b50Conv2DBackpropFilter\u662f\u4e00\u4e2a\u53cd\u5411\u7b97\u5b50\uff0c\u76f8\u5e94\u7684\u6b63\u5411\u8282\u70b9\u662f\u4e00\u4e2a\u5377\u79ef\u7b97\u5b50\u3002", "\u4ec0\u4e48\u662f\u201cJIT Fallback\u201d\uff1f\u7f16\u8bd1\u65f6\u62a5\u9519\u201cShould not use Python object in runtime\u201d\u600e\u4e48\u529e\uff1f": "JIT Fallback\u662f\u4ece\u9759\u6001\u56fe\u7684\u89d2\u5ea6\u51fa\u53d1\u8003\u8651\u9759\u6001\u56fe\u548c\u52a8\u6001\u56fe\u7684\u7edf\u4e00\uff0c\u5e0c\u671b\u9759\u6001\u56fe\u6a21\u5f0f\u80fd\u591f\u5c3d\u91cf\u591a\u7684\u652f\u6301\u52a8\u6001\u56fe\u6a21\u5f0f\u7684\u8bed\u6cd5\uff0c\u5176\u501f\u9274\u4e86\u4f20\u7edfJIT\u7f16\u8bd1\u7684fallback\u7684\u601d\u8def\u3002\u7f16\u8bd1\u9759\u6001\u56fe\u65f6\uff0c\u5982\u679c\u9047\u5230\u4e0d\u652f\u6301\u7684\u8bed\u6cd5\uff0c\u5c06\u4f1a\u8bb0\u5f55\u76f8\u5173\u8bed\u53e5\u5e76\u751f\u6210\u89e3\u91ca\u8282\u70b9\uff0c\u5728\u540e\u7eed\u5904\u7406\u4e2d\u5c06\u76f8\u5173\u8bed\u53e5fallback\u5230Python\u89e3\u91ca\u5668\u8fdb\u884c\u89e3\u91ca\u6267\u884c\uff0c\u4ece\u800c\u652f\u6301\u8be5\u8bed\u6cd5\u3002JIT Fallback\u7684\u73af\u5883\u53d8\u91cf\u5f00\u5173\u662f`DEV_ENV_ENABLE_FALLBACK`\uff0c\u9ed8\u8ba4\u4f7f\u7528JIT Fallback\u3002\t\u5f53\u51fa\u73b0\u201cShould not use Python object in runtime\u201d\u548c\u201cWe suppose all nodes generated by JIT Fallback would not return to outside of graph\u201d\u7684\u62a5\u9519\u4fe1\u606f\u65f6\uff0c\u8bf4\u660e\u9759\u6001\u56fe\u6a21\u5f0f\u4ee3\u7801\u4e2d\u51fa\u73b0\u4e86\u9519\u8bef\u4f7f\u7528\u8bed\u6cd5\uff0c\u751f\u6210\u7684\u89e3\u91ca\u8282\u70b9\u5728\u7f16\u8bd1\u9636\u6bb5\u65e0\u6cd5\u6b63\u5e38\u89e3\u91ca\u6267\u884c\uff0c\u4ece\u800c\u51fa\u73b0\u62a5\u9519\u3002\u5f53\u524dJIT Fallback\u6709\u6761\u4ef6\u5730\u652f\u6301Graph\u6a21\u5f0f\u7684\u90e8\u5206\u5e38\u91cf\u573a\u666f\uff0c\u540c\u65f6\u9700\u8981\u7b26\u5408MindSpore\u7684\u7f16\u7a0b\u8bed\u6cd5\uff0c\u7f16\u5199\u4ee3\u7801\u65f6\u8bf7\u53c2\u8003[\u9759\u6001\u56fe\u8bed\u6cd5\u652f\u6301](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)\u3002\t\u4f8b\u5982\uff0c\u5728\u8c03\u7528\u7b2c\u4e09\u65b9\u5e93NumPy\u65f6\uff0cJIT Fallback\u652f\u6301`np.add(x\uff0c y)`\u548c`Tensor(np.add(x\uff0c y))`\u7684\u8bed\u6cd5\uff0c\u4f46MindSpore\u4e0d\u652f\u6301NumPy\u7c7b\u578b\u7684\u8fd4\u56de\u503c\uff0c\u5c06\u4f1a\u51fa\u73b0\u62a5\u9519\u3002\u4ee3\u7801\u6837\u4f8b\u5982\u4e0b\uff1a\t```python\timport numpy as np\timport mindspore.nn as nn\tfrom mindspore import set_context\uff0c GRAPH_MODE\t\tset_context(mode=GRAPH_MODE)\t\tclass Net(nn.Cell):\t def construct(self\uff0c x\uff0c y):\t out = np.add(x\uff0c y)\t return out\t\tnet = Net()\tout = net(1\uff0c 1)\t```\u6267\u884c\u7ed3\u679c\u5982\u4e0b\uff1a\t```text\tRuntimeError: mindspore/ccsrc/pipeline/jit/validator.cc:139 ValidateValueNode] Should not use Python object in runtime\uff0c node: ValueNode InterpretedObject: '2'\t\tWe suppose all nodes generated by JIT Fallback not return to outside of graph.\t\t# In file test.py(9)\t out = np.add(x\uff0c y)\t ^\t```\u51fa\u73b0JIT Fallback\u76f8\u5173\u7684\u62a5\u9519\u65f6\uff0c\u8bf7\u6839\u636e[\u9759\u6001\u56fe\u8bed\u6cd5\u652f\u6301](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)\u4ee5\u53ca\u62a5\u9519\u4ee3\u7801\u884c\uff0c\u91cd\u65b0\u68c0\u89c6\u4ee3\u7801\u8bed\u6cd5\u5e76\u4fee\u6539\u3002\u5982\u679c\u9700\u8981\u5173\u95edJIT Fallback\uff0c\u53ef\u4ee5\u8bbe\u7f6e`export DEV_ENV_ENABLE_FALLBACK=0`\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cOperator[AddN] input(kNumberTypeBool\uff0ckNumberTypeBool) output(kNumberTypeBool) is not support. This error means the current input type is not supported\uff0c please refer to the MindSpore doc for supported types.\u201d\u600e\u4e48\u529e\uff1f": "MindSpore\u5f53\u524d\u5bf9\u6570\u636e\u7c7b\u578b\u4e3abool\u7684Tensor[\u540e\u7eed\u7b80\u79f0Tensor(bool)]\u652f\u6301\u80fd\u529b\u8f83\u5f31\uff0c\u4ec5\u6709\u5c11\u91cf\u7b97\u5b50\u652f\u6301Tensor(bool)\u7c7b\u578b\u7684\u6570\u636e\u53c2\u4e0e\u8fd0\u7b97\u3002\u82e5\u5728\u6b63\u5411\u56fe\u4e2d\u4f7f\u7528\u4e86\u652f\u6301Tensor(bool)\u7c7b\u578b\u7684\u7b97\u5b50\u4e14\u6b63\u5411\u56fe\u8bed\u6cd5\u6b63\u786e\uff0c\u7531\u4e8e\u53cd\u5411\u56fe\u6c42\u89e3\u5168\u5bfc\u6570\u4f1a\u5f15\u5165`AddN`\uff0c`AddN`\u4e0d\u652f\u6301Tensor(bool)\u7c7b\u578b\uff0c\u53cd\u5411\u56fe\u8fd0\u884c\u5c31\u4f1a\u629b\u51fa\u8be5\u5f02\u5e38\u3002\t\u4f8b\u5982\u4ee3\u7801\uff1a\t```python\tfrom mindspore import set_context\uff0c ops\uff0c ms_function\uff0c Tensor\uff0c dtype\t\tset_context(save_graphs=True\uff0c save_graphs_path='graph_path')\t\t@ms_function\tdef test_logic(x\uff0c y):\t z = x and y\t return z and x\t\tx = Tensor(True\uff0c dtype.bool_)\ty = Tensor(True\uff0c dtype.bool_)\tgrad = ops.GradOperation(get_all=True)\tgrad_net = grad(test_logic)\tout = grad_net(x\uff0c y)\t```\u4e0a\u8ff0\u4ee3\u7801\u6b63\u5411\u5904\u7406\u53ef\u4ee5\u7528\u516c\u5f0f\u8868\u793a\u4e3a\uff1a`r = f(z\uff0c x)\uff0c z = z(x\uff0c y)` \u5bf9\u5e94\u7684\u5168\u5bfc\u6570\u516c\u5f0f\u4e3a\uff1a`dr/dx = df/dz * dz/dx + df/dx`\uff0c \u51fd\u6570`f(z\uff0cx)`\u548c`z(x\uff0cy)`\u5747\u4e3a\u903b\u8f91\u8fd0\u7b97\u7b26`and`\uff1b \u6b63\u5411\u56fe\u4e2d\u7684`and`\u7b97\u5b50\u652f\u6301Tensor(bool)\u7c7b\u578b\uff0c\u53cd\u5411\u56fe\u6c42\u5168\u5bfc\u6570\u65f6\u5f15\u5165\u7684`AddN`\u4e0d\u652f\u6301Tensor(bool) \u7c7b\u578b\uff0c \u4e14\u8be5\u9519\u8bef\u65e0\u6cd5\u5bf9\u5e94\u5230\u5177\u4f53\u7684\u6b63\u5411\u4ee3\u7801\u884c\u3002\t\u6267\u884c\u7ed3\u679c\u5982\u4e0b\uff1a\t```text\tTraceback (most recent call last):\t File \"grad_fail.py\"\uff0c line 14\uff0c in \t out = grad_net(x\uff0c y)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py\"\uff0c line 307\uff0c in staging_specialize\t out = _MindsporeFunctionExecutor(func\uff0c ms_create_time\uff0c input_signature\uff0c process_obj)(*args)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py\"\uff0c line 79\uff0c in wrapper\t results = fn(*arg\uff0c **kwargs)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py\"\uff0c line 221\uff0c in __call__\t phase = self.compile(args_list\uff0c arg_names\uff0c parse_method)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py\"\uff0c line 195\uff0c in compile\t self.enable_tuple_broaden)\tTypeError: mindspore/ccsrc/runtime/device/cpu/kernel_select_cpu.cc:235 KernelNotSupportException] Operator[AddN] input(kNumberTypeBool\uff0ckNumberTypeBool) output(kNumberTypeBool) is not support. This error means the current input type is not supported\uff0c please refer to the MindSpore doc for supported types.\tTrace:\tIn file /usr/local/python3.7/lib/python3.7/site-packages/mindspore/ops/composite/multitype_ops/add_impl.py(287)/ return F.addn((x\uff0c y))/\t```\u82e5\u9047\u5230\u8fd9\u7c7b\u95ee\u9898\u8bf7\u53bb\u9664\u5bf9Tensor(bool)\u7c7b\u578b\u7684\u4f7f\u7528\uff0c\u672c\u4f8b\u4e2d\u5c06Tensor(bool)\u66ff\u6362\u4e3abool\u5373\u53ef\u89e3\u51b3\u95ee\u9898\u3002", "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cSide Effect Invalid: found unsupported syntax in graph mode\uff0c those side effect codes would be ignored:\u201d\u600e\u4e48\u529e\uff1f": "\u5982\u679c\u5728`Cell.construct`\u6216\u8005`ms_function`\u51fd\u6570\u4ee5\u53ca\u5176\u8c03\u7528\u7684\u5b50\u51fd\u6570\u91cc\uff0c\u4f7f\u7528\u4e86\u526f\u4f5c\u7528\u7b97\u5b50\uff0c\u5219\u8981\u6c42\u6240\u5728\u51fd\u6570\u4e0d\u80fd\u76f4\u63a5\u8fd4\u56de\u5e38\u91cf\u503c\uff0c\u5305\u62ec\u6700\u7ec8\u8fd4\u56de\u503c\u7ecf\u8fc7\u63a8\u5bfc\u662f\u5e38\u91cf\u7684\u60c5\u51b5\u3002\u7531\u4e8e\u51fd\u6570\u8fd4\u56de\u5e38\u91cf\u65f6\uff0c\u7f16\u8bd1\u5668\u4f1a\u4f18\u5148\u628a\u5e38\u91cf\u503c\u4ee5\u5916\u7684\u64cd\u4f5c\u4f18\u5316\u6389\uff0c\u5bfc\u81f4\u5176\u5b83\u64cd\u4f5c\u770b\u8d77\u6765\u65e0\u6548\u3002\u5bf9\u4e8e\u975e\u526f\u4f5c\u7528\u7684\u7b97\u5b50\u64cd\u4f5c\uff0c\u5ffd\u7565\u6389\u4e00\u822c\u4e0d\u4f1a\u5f71\u54cd\u6700\u7ec8\u7ed3\u679c\u7684\u6b63\u786e\u6027\u3002\u4f46\u662f\u5982\u679c\u5305\u542b\u4e86\u526f\u4f5c\u7528\u7b97\u5b50\u7684\u64cd\u4f5c\uff0c\u5ffd\u7565\u6389\u526f\u4f5c\u7528\u7b97\u5b50\u5f80\u5f80\u8ddf\u7528\u6237\u671f\u671b\u76f8\u5de6\u3002\u56e0\u6b64\uff0c\u5bf9\u4e8e\u51fa\u73b0\u51fd\u6570\u8fd4\u56de\u503c\u4e3a\u5e38\u91cf\uff0c\u540c\u65f6\u53c8\u5305\u542b\u526f\u4f5c\u7528\u7b97\u5b50\u64cd\u4f5c\u7684\u60c5\u51b5\uff0c\u7f16\u8bd1\u5668\u4f1a\u629b\u51fa\u5f02\u5e38\uff0c\u63d0\u793a\u7528\u6237\u4ee3\u7801\u6267\u884c\u6709\u53ef\u80fd\u65e0\u6cd5\u7b26\u5408\u9884\u671f\uff0c\u9700\u8981\u8c03\u6574\u4ee3\u7801\u5b9e\u73b0\u3002\t\u4f8b\u5982\u4ee3\u7801\uff1a\t```python\tfrom mindspore.nn import Cell\t\tclass Demo(Cell):\t def __init__(self):\t super().__init__()\t\t def construct(self\uff0c x):\t print('print here...')\t y = x[1]\t y[1] = 9\t return y\t\tx = [[1\uff0c 2\uff0c 3\uff0c 4]\uff0c [5\uff0c 6\uff0c 7\uff0c 8]]\tnet = Demo()\toutput = net(x)\tprint(output)\t```\u4e0a\u8ff0\u4ee3\u7801`y`\u7ecf\u8fc7\u63a8\u5bfc\u540e\u662f\u4e00\u4e2a\u5e38\u91cf\u503c\uff0c\u6574\u4e2a\u51fd\u6570\u53ef\u4ee5\u88ab\u4f18\u5316\u4e3a\u76f4\u63a5\u8fd4\u56de\u5e38\u91cf\u503c\u3002\u9664\u6b64\u4ee5\u5916\u7684\u64cd\u4f5c\u5168\u90e8\u88ab\u4f18\u5316\u6389\uff0c\u5305\u62ec`print('print here...')`\u4e5f\u4f1a\u5728\u7f16\u8bd1\u65f6\u88ab\u5ffd\u7565\u6389\u3002\u7531\u4e8e`print`\u7b97\u5b50\u662f\u526f\u4f5c\u7528\u7b97\u5b50\uff0c\u5176\u884c\u4e3a\u88ab\u5220\u9664\u540e\u4e0d\u7b26\u5408\u9884\u671f\uff0c\u56e0\u6b64\u7f16\u8bd1\u5668\u4f1a\u629b\u51fa\u9519\u8bef\u63d0\u793a\u7528\u6237\u3002\t\u6267\u884c\u7ed3\u679c\u5982\u4e0b\uff1a\t```text\tTraceback (most recent call last):\t File \"test_print_op.py\"\uff0c line 20\uff0c in \t output = net(x)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py\"\uff0c line 586\uff0c in __call__\t out = self.compile_and_run(*args)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py\"\uff0c line 964\uff0c in compile_and_run\t self.compile(*inputs)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/nn/cell.py\"\uff0c line 937\uff0c in compile\t _cell_graph_executor.compile(self\uff0c *inputs\uff0c phase=self.phase\uff0c auto_parallel_mode=self._auto_parallel_mode)\t File \"/usr/local/python3.7/lib/python3.7/site-packages/mindspore/common/api.py\"\uff0c line 1086\uff0c in compile\t result = self._graph_executor.compile(obj\uff0c args_list\uff0c phase\uff0c self._use_vm_mode())\tRuntimeError: mindspore/ccsrc/pipeline/jit/static_analysis/evaluator.cc:127 CheckSideEffectNodes] Side Effect Invalid: Found unsupported syntax in graph mode\uff0c those side effect codes would be ignored:\t-----\t# No. 1:\tIn file test_print_op.py(11)\t print('print here...')\t ^\t\t-----\t\tIf a function return a const value or inferred const value\uff0c the side effect node would be ignored.\tSo the codes may not run as the user's expectation\uff0c please fix it.\t\tIn this case\uff0c the const value '[[1\uff0c 2\uff0c 3\uff0c 4]\uff0c [5\uff0c 6\uff0c 7\uff0c 8]]' returns:\tIn file test_print_op.py(10)\t def construct(self\uff0c a):\t ^\t\tFor more information about this issue\uff0c please refer to https://www.mindspore.cn/search?inputValue=Side%20Effect%20Invalid\t```\u82e5\u9047\u5230\u8fd9\u7c7b\u95ee\u9898\u8bf7\u53bb\u9664\u526f\u4f5c\u7528\u7b97\u5b50\u7684\u8c03\u7528\uff0c\u6216\u8005\u4fee\u6539\u51fd\u6570\u8fd4\u56de\u503c\u4e0d\u8fd4\u56de\u5e38\u91cf\u3002", "\u5728\u4f7f\u7528`ops.concat`\u7b97\u5b50\u65f6\uff0c\u56e0\u4e3a\u6570\u636e\u89c4\u6a21\u6709\u70b9\u5927\uff0c\u5bfc\u81f4\u62a5\u9519`Error:Input and (output + workspace) num should <=192!`\uff0c\u53ef\u4ee5\u600e\u4e48\u5904\u7406\uff1f": "\u8fd9\u79cd\u62a5\u9519\uff0c\u4e3b\u8981\u4e3a`ops.concat`\u7b97\u5b50\u63d0\u793a`shape`\u8fc7\u5927\u3002\u5efa\u8bae\u5bf9`dataset`\u5bf9\u8c61\u521b\u5efa\u8fed\u4ee3\u5668\u65f6\u53ef\u8bbe\u7f6e\u8f93\u51fa\u4e3a`numpy`\uff0c \u5982\u4e0b\u8bbe\u7f6e\uff1a\t```python\tgallaryloader.create_dict_iterator(output_numpy=True)\t```\u53e6\u5916\u5728\u4e0a\u8ff0\u540e\u5904\u7406\u73af\u8282\uff08\u975e\u7f51\u7edc\u8ba1\u7b97\u8fc7\u7a0b\u4e2d\uff0c\u5373\u975e`construct`\u51fd\u6570\u91cc\u9762\uff09\uff0c\u53ef\u4ee5\u91c7\u7528`numpy`\u76f4\u63a5\u8ba1\u7b97\uff0c\u5982\u91c7\u7528`numpy.concatenate`\u4ee3\u66ff\u4e0a\u8ff0`ops.concat`\u8fdb\u884c\u8ba1\u7b97\u3002", "\u8bf7\u95ee\u5728\u9759\u6001\u56fe\u6a21\u5f0f\u7684`construct`\u51fd\u6570\u91cc\uff0c\u5982\u4f55\u628a\u4e00\u4e2a`tensor`\u4e2d\u6240\u542b\u6709\u7684\u8d1f\u6570\u503c\u5168\u90e8\u53bb\u9664\u6389\uff1f": "\u5efa\u8bae\u4f7f\u7528`ops.clip_by_value`\u63a5\u53e3\uff0c\u628a\u8d1f\u6570\u5168\u53d8\u62100\u6765\u8fdb\u884c\u8ba1\u7b97\u3002", "`TransData`\u7b97\u5b50\u7684\u529f\u80fd\u662f\u4ec0\u4e48\uff0c\u80fd\u5426\u4f18\u5316\u6027\u80fd\uff1f": "`TransData`\u7b97\u5b50\u51fa\u73b0\u7684\u573a\u666f\u662f: \u5982\u679c\u7f51\u7edc\u4e2d\u76f8\u4e92\u8fde\u63a5\u7684\u7b97\u5b50\u4f7f\u7528\u7684\u6570\u636e\u683c\u5f0f\u4e0d\u4e00\u81f4\uff08\u5982NC1HWC0\uff09\uff0c\u6846\u67b6\u5c31\u4f1a\u81ea\u52a8\u63d2\u5165`transdata`\u7b97\u5b50\u4f7f\u5176\u8f6c\u6362\u6210\u4e00\u81f4\u7684\u6570\u636e\u683c\u5f0f\uff0c\u7136\u540e\u518d\u8fdb\u884c\u8ba1\u7b97\u3002 \u534e\u4e3aAscend\u652f\u63015D\u683c\u5f0f\u8fd0\u7b97\uff0c\u901a\u8fc7`transdata`\u7b97\u5b50\u5c06\u6570\u636e\u75314D\u8f6c\u4e3a5D\u4ee5\u63d0\u5347\u6027\u80fd\u3002", "\u7b97\u5b50`Concat`\u62fc\u63a5\u5305\u542b\u591a\u4e2aTensor\u7684\u5143\u7ec4\u51fa\u9519\uff0c\u4f3c\u4e4e\u4f20\u5165\u7684`tensor list`\u5143\u7d20\u4e2a\u6570>=192\u5c31\u4f1a\u62a5\u9519\u3002\u5982\u679c\u8981`Concat`\u5305\u542b\u591a\u4e2aTensor\u7684\u5143\u7ec4\uff0c\u6709\u4ec0\u4e48\u8f83\u597d\u7684\u89e3\u51b3\u65b9\u6848\uff1f": "\u8fd9\u4e2a\u6607\u817e\u7b97\u5b50\u5e95\u5c42\u89c4\u683c\u9650\u5236\u4e00\u6b21\u62fc\u63a5\u7684Tensor\u4e2a\u6570\u4e0d\u80fd\u8d85\u8fc7192\u4e2a\uff0c\u53ef\u4ee5\u5c1d\u8bd5\u5206\u5f00\u4e24\u6b21\u8fdb\u884c\u62fc\u63a5\u3002", "\u5728\u4f7f\u7528`Conv2D`\u8fdb\u884c\u5377\u79ef\u5b9a\u4e49\u7684\u65f6\u5019\u4f7f\u7528\u5230\u4e86`group`\u7684\u53c2\u6570\uff0c`group`\u7684\u503c\u4e0d\u662f\u53ea\u9700\u8981\u4fdd\u8bc1\u53ef\u4ee5\u88ab\u8f93\u5165\u8f93\u51fa\u7684\u7ef4\u5ea6\u6574\u9664\u5373\u53ef\u4e86\u5417\uff1f`group`\u53c2\u6570\u7684\u4f20\u9012\u65b9\u5f0f\u662f\u600e\u6837\u7684\u5462\uff1f": "`Conv2D`\u7b97\u5b50\u662f\u6709\u8fd9\u4e2a\u7ea6\u675f\u6761\u4ef6\u7684: \u5f53`group`\u5927\u4e8e1\u00a0\u65f6\uff0c\u5176\u503c\u5fc5\u987b\u8981\u4e0e\u8f93\u5165\u8f93\u51fa\u7684\u901a\u9053\u6570\u76f8\u7b49\u3002\u4e0d\u8981\u4f7f\u7528`ops.Conv2D`\uff0c\u8fd9\u4e2a\u7b97\u5b50\u76ee\u524d\u4e0d\u652f\u6301`group`>1\u3002\u76ee\u524dMindSpore\u53ea\u6709`nn.Conv2D`\u63a5\u53e3\u652f\u6301\u7ec4\u5377\u79ef\uff0c\u4f46\u662f\u6709`group`\u8981\u4e0e\u8f93\u5165\u8f93\u51fa\u7684\u901a\u9053\u6570\u76f8\u7b49\u7684\u7ea6\u675f\u3002", "MindSpore\u652f\u6301\u77e9\u9635\u8f6c\u7f6e\u5417\uff1f": "\u652f\u6301\uff0c\u8bf7\u53c2\u8003`mindspore.ops.Transpose`\u7684[\u7b97\u5b50\u6559\u7a0b](https://www.mindspore.cn/docs/zh-CN/master/api_python/ops/mindspore.ops.Transpose.html#mindspore.ops.Transpose)\u3002", "\u8bf7\u95eeMindSpore\u80fd\u7b97\u7ed9\u5b9a\u4efb\u610f\u4e00\u4e2a`tensor`\u7684\u65b9\u5dee\u5417\uff1f": "mindspore\u76ee\u524d\u6682\u65e0\u53ef\u4ee5\u76f4\u63a5\u6c42\u51fa`tensor`\u65b9\u5dee\u7684\u7b97\u5b50\u6216\u63a5\u53e3\u3002\u4e0d\u8fc7MindSpore\u6709\u8db3\u591f\u591a\u7684\u5c0f\u7b97\u5b50\u53ef\u4ee5\u652f\u6301\u7528\u6237\u5b9e\u73b0\u8fd9\u6837\u7684\u64cd\u4f5c\uff0c\u4f60\u53ef\u4ee5\u53c2\u8003[class\u00a0Moments(Cell)](https://www.mindspore.cn/docs/en/master/_modules/mindspore/nn/layer/math.html#Moments)\u6765\u5b9e\u73b0\u3002", "`nn.Embedding`\u5c42\u4e0ePyTorch\u76f8\u6bd4\u7f3a\u5c11\u4e86`Padding`\u64cd\u4f5c\uff0c\u6709\u5176\u4f59\u7684\u7b97\u5b50\u53ef\u4ee5\u5b9e\u73b0\u5417\uff1f": "\u5728PyTorch\u4e2d`padding_idx`\u7684\u4f5c\u7528\u662f\u5c06embedding\u77e9\u9635\u4e2d`padding_idx`\u4f4d\u7f6e\u7684\u8bcd\u5411\u91cf\u7f6e\u4e3a0\uff0c\u5e76\u4e14\u53cd\u5411\u4f20\u64ad\u65f6\u4e0d\u4f1a\u66f4\u65b0`padding_idx`\u4f4d\u7f6e\u7684\u8bcd\u5411\u91cf\u3002\u5728MindSpore\u4e2d\uff0c\u53ef\u4ee5\u624b\u52a8\u5c06embedding\u7684`padding_idx`\u4f4d\u7f6e\u5bf9\u5e94\u7684\u6743\u91cd\u521d\u59cb\u5316\u4e3a0\uff0c\u5e76\u4e14\u5728\u8bad\u7ec3\u65f6\u901a\u8fc7`mask`\u7684\u64cd\u4f5c\uff0c\u8fc7\u6ee4\u6389`padding_idx`\u4f4d\u7f6e\u5bf9\u5e94\u7684`Loss`\u3002", "Operations\u4e2d`Tile`\u7b97\u5b50\u6267\u884c\u5230`__infer__`\u65f6`value`\u503c\u4e3a`None`\uff0c\u4e22\u5931\u4e86\u6570\u503c\u662f\u600e\u4e48\u56de\u4e8b\uff1f": "`Tile`\u7b97\u5b50\u7684`multiples input`\u5fc5\u987b\u662f\u4e00\u4e2a\u5e38\u91cf\uff08\u8be5\u503c\u4e0d\u80fd\u76f4\u63a5\u6216\u95f4\u63a5\u6765\u81ea\u4e8e\u56fe\u7684\u8f93\u5165\uff09\u3002\u5426\u5219\u6784\u56fe\u7684\u65f6\u5019\u4f1a\u62ff\u5230\u4e00\u4e2a`None`\u7684\u6570\u636e\uff0c\u56e0\u4e3a\u56fe\u7684\u8f93\u5165\u662f\u5728\u56fe\u6267\u884c\u7684\u65f6\u5019\u624d\u4f20\u4e0b\u53bb\u7684\uff0c\u6784\u56fe\u7684\u65f6\u5019\u62ff\u4e0d\u5230\u56fe\u7684\u8f93\u5165\u6570\u636e\u3002\t\u76f8\u5173\u7684\u8d44\u6599\u53ef\u4ee5\u770b[\u9759\u6001\u56fe\u8bed\u6cd5\u652f\u6301](https://www.mindspore.cn/docs/zh-CN/master/note/static_graph_syntax_support.html)\u3002", "\u4f7f\u7528conv2d\u7b97\u5b50\u5c06\u5377\u79ef\u6838\u8bbe\u7f6e\u4e3a(3\uff0c10)\uff0cTensor\u8bbe\u7f6e\u4e3a[2\uff0c2\uff0c10\uff0c10]\uff0c\u5728ModelArts\u4e0a\u5229\u7528Ascend\u8dd1\uff0c\u62a5\u9519: `FM_W+pad_left+pad_right-KW>=strideW`\uff0cCPU\u4e0b\u4e0d\u62a5\u9519\u3002": "TBE(Tensor Boost Engine)\u7b97\u5b50\u662f\u534e\u4e3a\u81ea\u7814\u7684Ascend\u7b97\u5b50\u5f00\u53d1\u5de5\u5177\uff0c\u5728TVM\u6846\u67b6\u57fa\u7840\u4e0a\u6269\u5c55\uff0c\u8fdb\u884c\u81ea\u5b9a\u4e49\u7b97\u5b50\u5f00\u53d1\u3002\u4e0a\u8ff0\u95ee\u9898\u662f\u8fd9\u4e2aTBE\u7b97\u5b50\u7684\u9650\u5236\uff0cx\u7684width\u5fc5\u987b\u5927\u4e8ekernel\u7684width\u3002CPU\u7684\u8fd9\u4e2a\u7b97\u5b50\u6ca1\u6709\u8fd9\u4e2a\u9650\u5236\uff0c\u6240\u4ee5\u4e0d\u62a5\u9519\u3002", "\u8bf7\u95eeMindSpore\u5b9e\u73b0\u4e86\u53cd\u6c60\u5316\u64cd\u4f5c\u4e86\u5417\uff1f\u7c7b\u4f3c\u4e8e`nn.MaxUnpool2d` \u8fd9\u4e2a\u53cd\u6c60\u5316\u64cd\u4f5c\uff1f": "\u76ee\u524d MindSpore \u8fd8\u6ca1\u6709\u53cd\u6c60\u5316\u76f8\u5173\u7684\u63a5\u53e3\u3002\u7528\u6237\u53ef\u4ee5\u901a\u8fc7\u81ea\u5b9a\u4e49\u7b97\u5b50\u7684\u65b9\u5f0f\u81ea\u884c\u5f00\u53d1\u7b97\u5b50\uff0c\u8be6\u60c5\u8bf7\u89c1[\u81ea\u5b9a\u4e49\u7b97\u5b50](https://www.mindspore.cn/tutorials/experts/zh-CN/master/operation/op_custom.html)\u3002", "\u4f7f\u7528ExpandDims\u7b97\u5b50\u62a5\u9519: `Pynative run op ExpandDims failed`\u3002\u5177\u4f53\u4ee3\u7801:": "```python\tcontext.set_context(mode=context.GRAPH_MODE\uff0cdevice_target='Ascend')\tinput_tensor=Tensor(np.array([[2\uff0c2]\uff0c[2\uff0c2]])\uff0cmindspore.float32)\texpand_dims=ops.ExpandDims()\toutput=expand_dims(input_tensor\uff0c0)\t```\u8fd9\u8fb9\u7684\u95ee\u9898\u662f\u9009\u62e9\u4e86Graph\u6a21\u5f0f\u5374\u4f7f\u7528\u4e86PyNative\u7684\u5199\u6cd5\uff0c\u6240\u4ee5\u5bfc\u81f4\u62a5\u9519\uff0cMindSpore\u652f\u6301\u4e24\u79cd\u8fd0\u884c\u6a21\u5f0f\uff0c\u5728\u8c03\u8bd5\u6216\u8005\u8fd0\u884c\u65b9\u9762\u505a\u4e86\u4e0d\u540c\u7684\u4f18\u5316:\t- PyNative\u6a21\u5f0f: \u4e5f\u79f0\u52a8\u6001\u56fe\u6a21\u5f0f\uff0c\u5c06\u795e\u7ecf\u7f51\u7edc\u4e2d\u7684\u5404\u4e2a\u7b97\u5b50\u9010\u4e00\u4e0b\u53d1\u6267\u884c\uff0c\u65b9\u4fbf\u7528\u6237\u7f16\u5199\u548c\u8c03\u8bd5\u795e\u7ecf\u7f51\u7edc\u6a21\u578b\u3002\t\t- Graph\u6a21\u5f0f: \u4e5f\u79f0\u9759\u6001\u56fe\u6a21\u5f0f\u6216\u8005\u56fe\u6a21\u5f0f\uff0c\u5c06\u795e\u7ecf\u7f51\u7edc\u6a21\u578b\u7f16\u8bd1\u6210\u4e00\u6574\u5f20\u56fe\uff0c\u7136\u540e\u4e0b\u53d1\u6267\u884c\u3002\u8be5\u6a21\u5f0f\u5229\u7528\u56fe\u4f18\u5316\u7b49\u6280\u672f\u63d0\u9ad8\u8fd0\u884c\u6027\u80fd\uff0c\u540c\u65f6\u6709\u52a9\u4e8e\u89c4\u6a21\u90e8\u7f72\u548c\u8de8\u5e73\u53f0\u8fd0\u884c\u3002", "Ascend\u540e\u7aef\u62a5\u9519\uff1a`AI CORE` \u548c`AI CPU`\u4e2d\u90fd\u627e\u4e0d\u5230\u6709\u6548\u7684`kernel info`\u8fd9\u4e2aKernel Select Failed\u65f6\uff0c\u5982\u4f55\u5b9a\u4f4d\uff1f": "Ascend\u540e\u7aef\uff0c\u7b97\u5b50\u6709AI CORE\u7b97\u5b50\u548cAI CPU\u7b97\u5b50\u4e4b\u5206\uff0c\u90e8\u5206\u7b97\u5b50AI CORE\u652f\u6301\uff0c\u90e8\u5206\u7b97\u5b50AI CPU\u652f\u6301\uff0c\u90e8\u5206\u7b97\u5b50\u4e24\u8005\u540c\u65f6\u652f\u6301\u3002\u6839\u636e\u62a5\u9519\u4fe1\u606f\uff1a\t1. \u5982\u679c`AI CORE`\u5019\u9009\u7b97\u5b50\u4fe1\u606f\u4e3a\u7a7a\uff0c\u5219\u53ef\u80fd\u662f\u5728\u7b97\u5b50`check support`\u9636\u6bb5\uff0c\u6240\u6709\u7684\u7b97\u5b50\u4fe1\u606f\u5747\u6821\u9a8c\u672a\u901a\u8fc7\u3002\u53ef\u4ee5\u5728\u65e5\u5fd7\u4e2d\u641c\u7d22\u5173\u952e\u5b57`CheckSupport`\u627e\u5230\u672a\u901a\u8fc7\u7684\u539f\u56e0\uff0c\u6839\u636e\u5177\u4f53\u4fe1\u606f\u4fee\u6539shape\u6216data type\uff0c \u6216\u8005\u627e\u5f00\u53d1\u4eba\u5458\u8fdb\u4e00\u6b65\u5b9a\u4f4d\uff1b\t2. \u5982\u679c`AI CPU`\u5019\u9009\u7b97\u5b50\u4fe1\u606f\u4e0d\u4e3a\u7a7a\uff0c\u6216\u8005`AI CORE`\u548c`AI CPU`\u5019\u9009\u7b97\u5b50\u4fe1\u606f\u90fd\u4e0d\u4e3a\u7a7a\uff0c\u5219\u53ef\u80fd\u662f\u7528\u6237\u7ed9\u5230\u8be5\u7b97\u5b50\u7684\u8f93\u5165\u6570\u636e\u7c7b\u578b\u4e0d\u5728\u5019\u9009\u5217\u8868\u4e2d\uff0c\u5728\u9009\u62e9\u9636\u6bb5\u88ab\u8fc7\u6ee4\u6389\u5bfc\u81f4\uff0c\u53ef\u4ee5\u6839\u636e\u5019\u9009\u5217\u8868\u5c1d\u8bd5\u4fee\u6539\u8be5\u7b97\u5b50\u7684\u8f93\u5165data type\u3002\t\u7528\u6237\u53ef\u4ee5\u53c2\u8003[\u5b98\u7f51\u6559\u7a0b](https://www.mindspore.cn/tutorials/zh-CN/master/advanced/pynative_graph/pynative.html)\u9009\u62e9\u5408\u9002\u3001\u7edf\u4e00\u7684\u6a21\u5f0f\u548c\u5199\u6cd5\u6765\u5b8c\u6210\u8bad\u7ec3\u3002", "MindSpore\u5b89\u88c5\u5b8c\u6210\uff0c\u6267\u884c\u8bad\u7ec3\u65f6\u53d1\u73b0\u7f51\u7edc\u6027\u80fd\u5f02\u5e38\uff0c\u6743\u91cd\u521d\u59cb\u5316\u8017\u65f6\u8fc7\u957f\uff0c\u600e\u4e48\u529e\uff1f": "\u53ef\u80fd\u4e0e\u73af\u5883\u4e2d\u4f7f\u7528\u4e86`scipy 1.4`\u7cfb\u5217\u7248\u672c\u6709\u5173\uff0c\u901a\u8fc7`pip list | grep scipy`\u547d\u4ee4\u53ef\u67e5\u770bscipy\u7248\u672c\uff0c\u5efa\u8bae\u6539\u6210MindSpore\u8981\u6c42\u7684`scipy`\u7248\u672c\u3002\u7248\u672c\u7b2c\u4e09\u65b9\u5e93\u4f9d\u8d56\u53ef\u4ee5\u5728`requirement.txt`\u4e2d\u67e5\u770b\u3002\t\t> \u5176\u4e2dversion\u66ff\u6362\u4e3aMindSpore\u5177\u4f53\u7684\u7248\u672c\u5206\u652f\u3002", "\u5bfc\u81f4Loss\u503c\u4e0d\u6536\u655b\u6216\u8005\u7cbe\u5ea6\u4e0d\u8fbe\u6807\u7684\u539f\u56e0\u6709\u54ea\u4e9b\u5462\uff0c\u5e94\u8be5\u600e\u6837\u5b9a\u4f4d\u8c03\u4f18\uff1f": "\u53ef\u80fd\u5bfc\u81f4Loss\u503c\u4e0d\u6536\u655b\u6216\u8005\u7cbe\u5ea6\u95ee\u9898\u7684\u539f\u56e0\u5f88\u591a\uff0c\u63a8\u8350\u53c2\u8003\u4e0b\u9762\u603b\u7ed3\uff0c\u9010\u4e00\u6392\u67e5\u95ee\u9898\u3002\t[MindSpore\u6a21\u578b\u7cbe\u5ea6\u8c03\u4f18\u5b9e\u6218\uff08\u4e00\uff09\u7cbe\u5ea6\u95ee\u9898\u7684\u5e38\u89c1\u73b0\u8c61\u3001\u539f\u56e0\u548c\u7b80\u8981\u8c03\u4f18\u601d\u8def](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=102750)\t[MindSpore\u6a21\u578b\u7cbe\u5ea6\u8c03\u4f18\u5b9e\u6218\uff08\u4e8c\uff09\u7cbe\u5ea6\u8c03\u8bd5\u8c03\u4f18\u601d\u8def](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=106624)\t[MindSpore\u6a21\u578b\u7cbe\u5ea6\u8c03\u4f18\u5b9e\u6218\uff08\u4e09\uff09\u5e38\u89c1\u7cbe\u5ea6\u95ee\u9898\u7b80\u4ecb](https://bbs.huaweicloud.com/forum/forum.php?mod=viewthread&tid=119271)", "\u8bf7\u95ee\u60f3\u52a0\u8f7dPyTorch\u9884\u8bad\u7ec3\u597d\u7684\u6a21\u578b\u7528\u4e8eMindSpore\u6a21\u578bfinetune\u6709\u4ec0\u4e48\u65b9\u6cd5\uff1f": "\u9700\u8981\u628aPyTorch\u548cMindSpore\u7684\u53c2\u6570\u8fdb\u884c\u4e00\u4e00\u5bf9\u5e94\uff0c\u56e0\u4e3a\u7f51\u7edc\u5b9a\u4e49\u7684\u7075\u6d3b\u6027\uff0c\u6240\u4ee5\u6ca1\u529e\u6cd5\u63d0\u4f9b\u7edf\u4e00\u7684\u8f6c\u5316\u811a\u672c\u3002\t\u4e00\u822c\u60c5\u51b5\u4e0b\uff0cCheckPoint\u6587\u4ef6\u4e2d\u4fdd\u5b58\u7684\u5c31\u662f\u53c2\u6570\u540d\u548c\u53c2\u6570\u503c\uff0c\u8c03\u7528\u76f8\u5e94\u6846\u67b6\u7684\u8bfb\u53d6\u63a5\u53e3\u540e\uff0c\u83b7\u53d6\u5230\u53c2\u6570\u540d\u548c\u6570\u503c\u540e\uff0c\u6309\u7167MindSpore\u683c\u5f0f\uff0c\u6784\u5efa\u51fa\u5bf9\u8c61\uff0c\u5c31\u53ef\u4ee5\u76f4\u63a5\u8c03\u7528MindSpore\u63a5\u53e3\u4fdd\u5b58\u6210MindSpore\u683c\u5f0f\u7684CheckPoint\u6587\u4ef6\u4e86\u3002\t\u5176\u4e2d\u4e3b\u8981\u7684\u5de5\u4f5c\u91cf\u4e3a\u5bf9\u6bd4\u4e0d\u540c\u6846\u67b6\u95f4\u7684parameter\u540d\u79f0\uff0c\u505a\u5230\u4e24\u4e2a\u6846\u67b6\u7684\u7f51\u7edc\u4e2d\u6240\u6709parameter name\u4e00\u4e00\u5bf9\u5e94(\u53ef\u4ee5\u4f7f\u7528\u4e00\u4e2amap\u8fdb\u884c\u6620\u5c04)\uff0c\u4e0b\u9762\u4ee3\u7801\u7684\u903b\u8f91\u8f6c\u5316parameter\u683c\u5f0f\uff0c\u4e0d\u5305\u62ec\u5bf9\u5e94parameter name\u3002\t```python\timport torch\tfrom mindspore import Tensor\uff0c save_checkpoint\t\tdef pytorch2mindspore(default_file = 'torch_resnet.pth'):\t # read pth file\t par_dict = torch.load(default_file)['state_dict']\t params_list = []\t for name in par_dict:\t param_dict = {}\t parameter = par_dict[name]\t param_dict['name'] = name\t param_dict['data'] = Tensor(parameter.numpy())\t params_list.append(param_dict)\t save_checkpoint(params_list\uff0c 'ms_resnet.ckpt')\t```", "\u600e\u4e48\u5c06PyTorch\u7684`dataset`\u8f6c\u6362\u6210MindSpore\u7684`dataset`\uff1f": "MindSpore\u548cPyTorch\u7684\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u903b\u8f91\u662f\u6bd4\u8f83\u7c7b\u4f3c\u7684\uff0c\u9700\u8981\u7528\u6237\u5148\u5b9a\u4e49\u4e00\u4e2a\u81ea\u5df1\u7684`dataset`\u7c7b\uff0c\u8be5\u7c7b\u8d1f\u8d23\u5b9a\u4e49`__init__`\uff0c`__getitem__`\uff0c`__len__`\u6765\u8bfb\u53d6\u81ea\u5df1\u7684\u6570\u636e\u96c6\uff0c\u7136\u540e\u5c06\u8be5\u7c7b\u5b9e\u4f8b\u5316\u4e3a\u4e00\u4e2a\u5bf9\u8c61\uff08\u5982: `dataset/dataset_generator`\uff09\uff0c\u6700\u540e\u5c06\u8fd9\u4e2a\u5b9e\u4f8b\u5316\u5bf9\u8c61\u4f20\u5165`GeneratorDataset`(mindspore\u7528\u6cd5)/`DataLoader`(pytorch\u7528\u6cd5)\uff0c\u81f3\u6b64\u5373\u53ef\u4ee5\u5b8c\u6210\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u52a0\u8f7d\u4e86\u3002\u800cMindSpore\u5728`GeneratorDataset`\u7684\u57fa\u7840\u4e0a\u63d0\u4f9b\u4e86\u8fdb\u4e00\u6b65\u7684`map`->`batch`\u64cd\u4f5c\uff0c\u53ef\u4ee5\u5f88\u65b9\u4fbf\u7684\u8ba9\u7528\u6237\u5728`map`\u5185\u6dfb\u52a0\u4e00\u4e9b\u5176\u4ed6\u7684\u81ea\u5b9a\u4e49\u64cd\u4f5c\uff0c\u5e76\u5c06\u5176`batch`\u8d77\u6765\u3002\t\u5bf9\u5e94\u7684MindSpore\u7684\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u52a0\u8f7d\u5982\u4e0b:\t```python\t# 1 Data enhancement\uff0cshuffle\uff0csampler.\tclass Mydata:\t def __init__(self):\t np.random.seed(58)\t self.__data = np.random.sample((5\uff0c 2))\t self.__label = np.random.sample((5\uff0c 1))\t def __getitem__(self\uff0c index):\t return (self.__data[index]\uff0c self.__label[index])\t def __len__(self):\t return len(self.__data)\tdataset_generator = Mydata()\tdataset = ds.GeneratorDataset(dataset_generator\uff0c [\"data\"\uff0c \"label\"]\uff0c shuffle=False)\t# 2 Customized data enhancement\tdataset = dataset.map(operations=pyFunc\uff0c {other_params})\t# 3 batch\tdataset = dataset.batch(batch_size\uff0c drop_remainder=True)\t```", "\u5176\u4ed6\u6846\u67b6\u7684\u811a\u672c\u6216\u8005\u6a21\u578b\u600e\u4e48\u8fc1\u79fb\u5230MindSpore\uff1f": "\u5173\u4e8e\u811a\u672c\u6216\u8005\u6a21\u578b\u8fc1\u79fb\uff0c\u53ef\u4ee5\u67e5\u8be2MindSpore\u5b98\u7f51\u4e2d\u5173\u4e8e[\u8fc1\u79fb\u811a\u672c](https://www.mindspore.cn/docs/zh-CN/master/migration_guide/migration_script.html)\u7684\u4ecb\u7ecd\u3002", "MindConverter\u8f6c\u6362TensorFlow\u811a\u672c\u62a5\u9519\u63d0\u793a`terminate called after throwing an instance of 'std::system_error'\uff0c what(): Resource temporarily unavailable\uff0c Aborted (core dumped)`": "\u8be5\u95ee\u9898\u7531TensorFlow\u5bfc\u81f4\u3002\u811a\u672c\u8f6c\u6362\u65f6\uff0c\u9700\u8981\u901a\u8fc7TensorFlow\u5e93\u52a0\u8f7dTensorFlow\u7684\u6a21\u578b\u6587\u4ef6\uff0c\u6b64\u65f6TensorFlow\u4f1a\u7533\u8bf7\u76f8\u5173\u8d44\u6e90\u8fdb\u884c\u521d\u59cb\u5316\uff0c\u82e5\u7533\u8bf7\u8d44\u6e90\u5931\u8d25\uff08\u53ef\u80fd\u7531\u4e8e\u7cfb\u7edf\u8fdb\u7a0b\u6570\u8d85\u8fc7Linux\u6700\u5927\u8fdb\u7a0b\u6570\u9650\u5236\uff09\uff0cTensorFlow C/C++\u5c42\u4f1a\u51fa\u73b0Core Dumped\u95ee\u9898\u3002\u8be6\u7ec6\u4fe1\u606f\u8bf7\u53c2\u8003TensorFlow\u5b98\u65b9ISSUE\uff0c\u5982\u4e0bISSUE\u4ec5\u4f9b\u53c2\u8003: [TF ISSUE 14885](https://github.com/tensorflow/tensorflow/issues/14885)\uff0c [TF ISSUE 37449](https://github.com/tensorflow/tensorflow/issues/37449)", "MindConverter\u662f\u5426\u53ef\u4ee5\u5728ARM\u5e73\u53f0\u8fd0\u884c\uff1f": "MindConverter\u540c\u65f6\u652f\u6301X86\u3001ARM\u5e73\u53f0\uff0c\u82e5\u5728ARM\u5e73\u53f0\u8fd0\u884c\u9700\u8981\u7528\u6237\u81ea\u884c\u5b89\u88c5\u6a21\u578b\u6240\u9700\u7684\u4f9d\u8d56\u5305\u548c\u8fd0\u884c\u73af\u5883\u3002", "\u4e3a\u4ec0\u4e48\u4f7f\u7528MindConverter\u8fdb\u884c\u6a21\u578b\u8f6c\u6362\u9700\u8981\u5f88\u957f\u65f6\u95f4\uff08\u8d85\u8fc7\u5341\u5206\u949f\uff09\uff0c\u800c\u6a21\u578b\u5e76\u4e0d\u5927\uff1f": "MindConverter\u8fdb\u884c\u8f6c\u6362\u65f6\uff0c\u9700\u8981\u4f7f\u7528Protobuf\u5bf9\u6a21\u578b\u6587\u4ef6\u8fdb\u884c\u53cd\u5e8f\u5217\u5316\uff0c\u8bf7\u786e\u4fddPython\u73af\u5883\u4e2d\u5b89\u88c5\u7684Protobuf\u91c7\u7528C++\u540e\u7aef\u5b9e\u73b0\uff0c\u68c0\u67e5\u65b9\u6cd5\u5982\u4e0b\uff0c\u82e5\u8f93\u51fa\u4e3aPython\uff0c\u5219\u9700\u8981\u5b89\u88c5\u91c7\u7528C++\u5b9e\u73b0\u7684Python Protobuf\uff08\u4e0b\u8f7dProtobuf\u6e90\u7801\u5e76\u8fdb\u5165\u6e90\u7801\u4e2d\u7684python\u5b50\u76ee\u5f55\uff0c\u4f7f\u7528python setup.py install --cpp_implementation\u8fdb\u884c\u5b89\u88c5\uff09\uff1b\u82e5\u8f93\u51fa\u4e3acpp\uff0c\u8f6c\u6362\u8fc7\u7a0b\u4ecd\u8017\u65f6\u8f83\u957f\uff0c\u8bf7\u5728\u8f6c\u6362\u524d\u4f7f\u7528\u6dfb\u52a0\u73af\u5883\u53d8\u91cf`export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp`\u3002\t```python\tfrom google.protobuf.internal import api_implementation\t\tprint(api_implementation.Type())\t```", "\u4f7f\u7528.pb\u6587\u4ef6\u8fdb\u884c\u8f6c\u6362\u65f6\uff0c\u5df2\u786e\u5b9a`model_file`\uff0c`shape`\uff0c`input_nodes`\uff0c`output_nodes`\u5747\u65e0\u8bef\uff0c\u5e76\u4e14\u73af\u5883\u4e2d\u7684\u4f9d\u8d56\u5e93\u5df2\u7ecf\u6b63\u5e38\u5b89\u88c5\uff0c\u4f46\u662f\u4ecd\u7136\u62a5\u5f02\u5e38\u4ee3\u78011000001\uff0c\u53ef\u80fd\u662f\u4ec0\u4e48\u539f\u56e0\uff1f": "\u8bf7\u68c0\u67e5\u751f\u6210\u8be5.pb\u6587\u4ef6\u6240\u4f7f\u7528\u7684TensorFlow\u7248\u672c\u4e0d\u9ad8\u4e8e\u7528\u4e8e\u8f6c\u6362\u65f6\u5b89\u88c5\u7684TensorFlow\u7248\u672c\uff0c\u907f\u514d\u7531\u4e8e\u65e7\u7248\u672cTensorFlow\u65e0\u6cd5\u89e3\u6790\u65b0\u7248\u672c\u751f\u6210\u7684.pb\u6587\u4ef6\uff0c\u800c\u5bfc\u81f4\u7684\u6a21\u578b\u6587\u4ef6\u89e3\u6790\u5931\u8d25\u3002", "\u51fa\u73b0\u62a5\u9519\u4fe1\u606f`[ERROR] MINDCONVERTER: [BaseConverterError] code: 0000000\uff0c msg: {python_home}/lib/libgomp.so.1: cannot allocate memory in static TLS block`\u65f6\uff0c\u5e94\u8be5\u600e\u4e48\u5904\u7406\uff1f": "\u8be5\u95ee\u9898\u901a\u5e38\u662f\u7531\u4e8e\u73af\u5883\u53d8\u91cf\u5bfc\u5165\u4e0d\u6b63\u786e\u5bfc\u81f4\u7684\u3002\u5efa\u8bae\u7528\u6237\u8bbe\u7f6e`export LD_PRELOAD={python_home}/lib/libgomp.so.1.0.0`\u8fd9\u4e00\u73af\u5883\u53d8\u91cf\uff0c\u7136\u540e\u91cd\u65b0\u5c1d\u8bd5\u8fdb\u884c\u8f6c\u6362\u3002"} \ No newline at end of file diff --git a/src/qaRobot/qa_api/data/resource_sentence_encode.json b/src/qaRobot/qa_api/data/resource_sentence_encode.json new file mode 100644 index 0000000000000000000000000000000000000000..3a865dceabd00c9e80fed2b1b38bbfe30eee21ed --- /dev/null +++ b/src/qaRobot/qa_api/data/resource_sentence_encode.json @@ -0,0 +1 @@ +{"\u8bf7\u95ee\u5982\u679c\u4e0d\u4f7f\u7528\u9ad8\u9636API\uff0c\u600e\u4e48\u5b9e\u73b0\u6570\u636e\u4e0b\u6c89\uff1f": [-0.06105140969157219, 0.09818746894598007, -0.0063553303480148315, 0.04693373665213585, -0.06998913735151291, -0.057647690176963806, -0.005827351473271847, -0.025780975818634033, 0.008464059792459011, 0.10721311718225479, -0.03090422786772251, -0.014680294319987297, -0.05420156195759773, 0.0059690698981285095, 0.009976699948310852, 0.10733304172754288, 0.08381339907646179, 0.09102801233530045, 0.045584507286548615, 0.030738413333892822, -0.01608492247760296, 0.023411232978105545, 0.02175281010568142, -0.07649850845336914, 0.003557523712515831, 0.1064855232834816, -0.013283747248351574, -0.00505492091178894, 0.010303864255547523, 0.06433244049549103, 0.030842479318380356, -0.001288737403228879, -0.0971868559718132, 0.028828639537096024, -0.09292692691087723, 0.03210073709487915, -0.017087433487176895, 0.16929061710834503, -0.01419132947921753, 0.0374414399266243, 0.1282440423965454, 0.05712202936410904, -0.02166624367237091, 0.07081437855958939, -0.026419956237077713, -0.06499960273504257, -0.12387310713529587, -0.07098038494586945, 0.0017020425293594599, 0.013177868910133839, -0.027473749592900276, 0.08601547032594681, -0.026165299117565155, -0.01688196137547493, -0.07772023975849152, -0.04191599786281586, 0.12533974647521973, 0.07472612708806992, -0.004319957457482815, -0.04118936136364937, 0.006244315765798092, 0.009689447470009327, -0.029933296144008636, -0.02103586122393608, -0.07437712699174881, -0.01201434712857008, -0.07389339804649353, -0.0734265074133873, -0.022890595719218254, 0.016251210123300552, -0.02390212006866932, 0.07050827890634537, -0.006628543138504028, 0.08247837424278259, 0.06754858791828156, 0.03474323824048042, -0.05025969073176384, -0.05659957975149155, -0.023421939462423325, 0.05446881800889969, -0.0018422116991132498, 0.06810760498046875, 0.021968074142932892, -0.030488383024930954, -0.05895570293068886, -0.03253711760044098, -0.07145597785711288, 0.008034629747271538, -0.05104725435376167, 0.08572924137115479, -0.024254029616713524, 0.07575394958257675, -0.09584572911262512, 0.057348206639289856, 0.10763207077980042, -0.09072592854499817, -0.005954403895884752, 0.01453147642314434, -0.1638619750738144, 0.010421323589980602, 0.10519839823246002, 0.021662596613168716, -0.04945367947220802, -0.015064561739563942, 0.0030907331965863705, -0.09614984691143036, 0.02833559364080429, 0.0005788839771412313, 0.041067153215408325, -0.0036994032561779022, 0.05399910360574722, 0.00431439932435751, -0.005308706779032946, -0.008367305621504784, -0.051278337836265564, -0.07314998656511307, -0.04485677182674408, 0.05089082196354866, -0.08323557674884796, 0.13463006913661957, 0.10368819534778595, -0.08783475309610367, -0.008348263800144196, 0.08249932527542114, -0.010530810803174973, 0.021722277626395226, 0.16161030530929565, -0.1309855580329895, -0.08485370874404907, -0.04970840737223625, 0.10573291033506393, -0.04451461136341095, 0.04981760308146477, -0.09854540228843689, -0.021868962794542313, 0.06450080871582031, -0.1226983368396759, 0.02483331598341465, -0.001028826110996306, 0.13647660613059998, 0.003020629519596696, -0.17484574019908905, 0.10567904263734818, 0.03343481943011284, 0.08289383351802826, 0.0169976819306612, -0.11885759234428406, -0.0682959333062172, -0.032089412212371826, -0.026710934937000275, 0.05790471285581589, -0.008600249886512756, 0.010718527249991894, 0.03214774653315544, -0.0513836108148098, -0.006731459870934486, 0.08906764537096024, -0.03979569301009178, 0.021099090576171875, -0.038286738097667694, -0.04300502687692642, -0.08841869235038757, 0.07523111999034882, -0.018372107297182083, -0.04125408083200455, 0.0006309839664027095, 0.012717954814434052, 0.019281072542071342, -0.01959533616900444, -0.007851245813071728, 0.011392119340598583, 0.04713870957493782, -0.01664622314274311, -0.07915946841239929, 0.034977689385414124, 0.08651527017354965, 0.04303698241710663, -0.038374025374650955, 0.027674240991473198, -0.014514349400997162, -0.004021011758595705, -0.11530694365501404, -0.07976412773132324, -0.06565406918525696, 0.0635964423418045, -0.056772541254758835, 0.030395545065402985, 0.031719379127025604, 0.12947934865951538, -0.12323198467493057, 0.021124977618455887, -0.05255497246980667, -0.003302725963294506, 0.05017787963151932, -0.020444262772798538, -0.06680101901292801, -0.04565691947937012, -0.03944551572203636, 0.005511678755283356, -0.029884537681937218, 0.05378815904259682, 0.00571697112172842, 0.016162600368261337, -0.014249930158257484, -0.03051619976758957, -0.009825233370065689, -0.08223555982112885, -0.10884904861450195, -0.038812216371297836, -0.005350264720618725, -0.004011611454188824, 0.09928254038095474, -0.0397331528365612, -0.031910043209791183, -0.08584453165531158, 0.040654972195625305, 0.08956488966941833, 0.06905051320791245, 0.13850301504135132, -0.06520094722509384, 0.05498239025473595, -0.012297888286411762, 0.017012258991599083, -0.06546349078416824, -0.034896548837423325, -0.03556116297841072, -0.006365315522998571, -0.014930831268429756, 0.07093730568885803, 0.01786404848098755, -0.14190474152565002, 0.08199427276849747, 0.03250829130411148, 0.0943908765912056, -0.07348761707544327, 0.07234823703765869, -0.11291401833295822, -0.1319352090358734, 0.01076680887490511, -0.05777567997574806, -0.022712422534823418, 0.04178353771567345, -0.11438474804162979, -0.05286434292793274, -0.06354420632123947, -0.04798994958400726, 0.12577292323112488, 0.03984174504876137, 0.019859490916132927, -0.024875245988368988, 0.049674488604068756, 0.022933227941393852, 0.026373276486992836, 0.0015728516736999154, 0.017072197049856186, 0.12248624116182327, 0.12962187826633453, -0.019765252247452736, -0.0400606133043766, 0.05743660777807236, 0.049830593168735504, -0.010514672845602036, -0.07244797796010971, 0.007577680051326752, 0.017730629071593285, 0.03795735165476799, 0.11793481558561325, -0.07027267664670944, -0.012587519362568855, -0.051875438541173935, 0.1057848334312439, 0.07976668328046799, -0.07525499910116196, 0.00019083265215158463, 0.13690556585788727, 0.04419488087296486, 0.023298827931284904, -0.03975684568285942, 0.06022545322775841, -0.047479383647441864, -0.0077557871118187904, 0.00763110164552927, 0.021152786910533905, -0.037267912179231644, 0.16332681477069855, 0.02649279125034809, 0.07333774119615555, 0.001081835012882948, 0.017660602927207947, 0.17464131116867065, -0.04539734497666359, 0.042485520243644714, -0.05479505658149719, 0.0104193901643157, 0.01692180521786213, 0.15700297057628632, -0.008210154250264168, 0.027463272213935852, 0.024694684892892838, 0.13430571556091309, -0.02840896137058735, -0.008280673064291477, 0.0578208863735199, -0.062449317425489426, 0.008908010087907314, 0.03186023607850075, -0.04523680731654167, -0.03179959952831268, 0.09714368730783463, 0.0236512441188097, 0.020469168201088905, 0.13458368182182312, 0.04610195755958557, 0.0707891657948494, -0.057954318821430206, 0.021247876808047295, -0.06610744446516037, -0.13470280170440674, 0.007613891735672951, -0.05352886766195297, 0.026587845757603645, -0.13848787546157837, 0.05187385901808739, 0.10209391266107559, 0.06588050723075867, -0.10546509176492691, 0.08241701126098633, 0.10184609144926071, -0.0037166750989854336, -0.07800312340259552, 0.0018025290919467807, 0.0243900828063488, 0.07692137360572815, 0.08343148231506348, -0.005036406219005585, -0.13314597308635712, 0.051274411380290985, 0.08310876041650772, -0.010792095214128494, 0.05471980944275856, 0.015440404415130615, -0.06816263496875763, -0.009179961867630482, -0.03688265383243561, 0.05374927818775177, -0.05439739301800728, 0.09828603267669678, 0.08554519712924957, 0.023065093904733658, 0.015140150673687458, 0.021792219951748848, -0.0008895907085388899, 0.03894145414233208, -0.06365031749010086, 0.008845089003443718, -0.18768377602100372, -0.12087471783161163, -0.012510026805102825, 0.11137814819812775, 0.039171669632196426, 0.03378033638000488, -0.1060035452246666, -0.007090914528816938, -0.08463099598884583, 0.041462138295173645, -0.021069806069135666, 0.06186802685260773, -0.04798714071512222, 0.0244746133685112, -0.04596917703747749, -0.06314363330602646, 0.044490713626146317, 0.09150605648756027, 0.019122209399938583, 0.0211187656968832, -0.04952399060130119, -0.11912769079208374, 0.08758015185594559, -0.07943899184465408, -0.06677533686161041, 0.02357153594493866, 0.06343766301870346, -0.13829293847084045, 0.04230482876300812], "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2d\u5185\u5b58\u5360\u7528\u9ad8\uff0c\u600e\u4e48\u4f18\u5316\uff1f": [-0.08786323666572571, 0.0794954001903534, 0.0025935450103133917, 0.030705543234944344, -0.08259575814008713, -0.06616544723510742, -0.0027424697764217854, 0.06070680543780327, 0.000810988072771579, 0.052207786589860916, 0.04070676118135452, -0.00382054690271616, -0.052972931414842606, -0.05171244591474533, -0.007182662840932608, 0.08998770266771317, 0.07738626003265381, 0.03960643708705902, -0.07014736533164978, 0.07870738208293915, -0.03779268637299538, 0.0010231394553557038, 0.014764117076992989, -0.0546560063958168, 0.05553564429283142, 0.06955419480800629, 0.013953104615211487, -0.02053566835820675, 0.03506888449192047, 0.04951699823141098, 0.05808662623167038, 0.010746760293841362, -0.028999432921409607, 0.061263538897037506, -0.028918806463479996, -0.040866393595933914, -0.048338308930397034, 0.08307667821645737, -0.0522456169128418, -0.02439386397600174, 0.10550148785114288, 0.01688263565301895, -0.06635286659002304, 0.046490222215652466, -0.06518521904945374, -0.05587169528007507, -0.13093790411949158, -0.0576307512819767, 0.01951812393963337, 0.054841332137584686, -0.06313679367303848, 0.05406928434967995, 0.014434884302318096, -0.028498658910393715, -0.04433758184313774, 0.019865086302161217, 0.0765063688158989, 0.017327072098851204, 0.03696390613913536, -0.05611219257116318, 0.04120967537164688, -0.023359045386314392, 0.0049272095784544945, -0.044272102415561676, -0.11216940730810165, -0.0033029941841959953, -0.08595682680606842, -0.04242002218961716, -0.015467464923858643, -0.006533017382025719, -0.055161576718091965, 0.047391388565301895, -0.01841691881418228, 0.06429966539144516, 0.0557728186249733, 0.01644514501094818, -0.025312477722764015, 0.00100849533919245, -0.030294280499219894, 0.06391920894384384, 0.05655275657773018, 0.07546786218881607, 0.018210982903838158, -0.11540316790342331, -0.06371617317199707, -0.02263520658016205, -0.06851347535848618, 0.04495695233345032, -0.09311670809984207, 0.04030502587556839, 0.01905044913291931, -0.0020576613023877144, -0.11654429882764816, 0.04138048738241196, 0.08995795994997025, -0.057805515825748444, -0.044750165194272995, -0.017893727868795395, -0.10675232857465744, -0.0015725899720564485, 0.09726953506469727, 0.014496434479951859, -0.047666311264038086, 0.023676494136452675, -0.02623547613620758, -0.05474131926894188, -0.05515522137284279, 0.023826127871870995, 0.01026790402829647, -0.01788618601858616, 0.06388479471206665, 0.006162192672491074, 0.02995104342699051, 0.017853746190667152, -0.05732760578393936, -0.039353109896183014, -0.02917608805000782, 0.030687781050801277, -0.08503979444503784, 0.10100249946117401, 0.10799849033355713, -0.07510567456483841, 0.014820822514593601, 0.0572815015912056, -0.030148327350616455, -0.005291859619319439, 0.1292354315519333, -0.15909390151500702, -0.0934806689620018, -0.02855149284005165, 0.1507302075624466, -0.08366098999977112, 0.07412205636501312, -0.17120221257209778, -0.058681339025497437, 0.0007316189585253596, -0.030398527160286903, 0.021231837570667267, -0.021418260410428047, 0.15205958485603333, 0.02105967327952385, -0.15268632769584656, 0.05943906679749489, -0.017442192882299423, 0.09965676814317703, 0.02518431469798088, -0.0864453911781311, -0.11833988130092621, -0.05285554751753807, -0.05636008083820343, 0.061252593994140625, -0.04514700546860695, -0.02763400599360466, 0.050066523253917694, -0.010402594693005085, 0.024088213220238686, 0.08631400018930435, 0.010848845355212688, -0.03064749389886856, -0.07355800271034241, -0.07829669117927551, -0.03240019455552101, 0.042812611907720566, 0.01912630721926689, -0.06500817835330963, 0.029078885912895203, -0.011485135182738304, 0.032610733062028885, -0.08383951336145401, -0.012409761548042297, 0.004240707028657198, -0.005724288057535887, -0.01105258334428072, -0.08569300174713135, 0.06138947606086731, 0.1004595011472702, 0.030706088989973068, -0.03509555757045746, -0.02610265463590622, -0.0357220396399498, 0.02668057382106781, -0.09551658481359482, -0.10473781824111938, -0.09988972544670105, 0.09811075031757355, 0.01706082932651043, 0.049440328031778336, 0.036689642816782, 0.13128562271595, -0.11325359344482422, 0.026279974728822708, 0.05562204867601395, -0.05513707920908928, 0.08720269799232483, -0.0003795251250267029, -0.059929780662059784, -0.10152095556259155, -0.005189723335206509, 0.053038131445646286, -0.05337490141391754, 0.01021881215274334, 0.006571891251951456, 0.04707234352827072, 0.017239781096577644, -0.06166556477546692, -0.00661484943702817, -0.08115353435277939, -0.1532616913318634, -0.00495476508513093, 0.019956037402153015, 0.02506955899298191, 0.1101078987121582, -0.06943511962890625, -0.06085307151079178, -0.1038321778178215, -0.006299162749201059, 0.10867480933666229, 0.06626584380865097, 0.07498221099376678, -0.05424591898918152, 0.006870299577713013, -0.05409698560833931, 0.027815205976366997, -0.08823327720165253, -0.05424891784787178, -0.03807102143764496, -0.019372638314962387, -0.0699462890625, 0.025640375912189484, 0.022418813779950142, -0.07439319044351578, 0.06734379380941391, 0.1147390604019165, 0.1977083534002304, -0.03558963164687157, 0.06135188415646553, -0.09357379376888275, -0.06529007852077484, -0.006012142635881901, -0.027594933286309242, -0.06136411428451538, 0.049110062420368195, -0.09446733444929123, -0.0425923727452755, -0.059591591358184814, 0.06757795810699463, 0.13027286529541016, 0.03038346953690052, 0.028117166832089424, -0.08784129470586777, 0.04643237218260765, 0.025699632242321968, 0.014089283533394337, -0.01436504628509283, -0.04005754366517067, 0.09568887948989868, 0.09177976846694946, 0.0005238502635620534, 0.00046728175948373973, 0.02705015428364277, 0.011882234364748001, -0.016191594302654266, -0.05523745343089104, 0.035829562693834305, -0.02963540516793728, -0.06227154657244682, 0.1150340884923935, -0.04465175420045853, 0.02492949552834034, -0.11785034090280533, 0.07469578087329865, 0.017959048971533775, -0.05200915038585663, -0.011230958625674248, 0.0847102552652359, 0.03683044761419296, 0.005044494289904833, -0.10055523365736008, 0.020369574427604675, -0.01632554642856121, -0.03933631628751755, 0.024399613961577415, -0.03587770462036133, -0.043178804218769073, 0.07405543327331543, -0.08772781491279602, 0.07372814416885376, 0.011704410426318645, 0.015432469546794891, 0.12538041174411774, -0.003253303235396743, -0.01201237179338932, -0.03603316843509674, -0.06810790300369263, 0.024910978972911835, 0.05642351508140564, 0.05065726861357689, 0.10379719734191895, 0.04916207864880562, 0.06510017067193985, -0.0031536526512354612, -0.029461238533258438, 0.03338733687996864, -0.041710250079631805, 0.0027131149545311928, -0.016123678535223007, -0.008304706774652004, -0.05354222655296326, 0.07485246658325195, 0.03585962578654289, 0.08261369168758392, 0.13393408060073853, 0.020077254623174667, 0.09303238987922668, -0.05277576670050621, 0.015460905618965626, 0.03298313543200493, -0.09527619928121567, 0.050011955201625824, -0.03735920786857605, 0.0037192380987107754, -0.06270580738782883, 0.034985221922397614, 0.09429292380809784, 0.08187848329544067, -0.06703048944473267, 0.028108594939112663, 0.08827722072601318, 0.027129556983709335, -0.05808517709374428, 0.041469182819128036, -0.025901535525918007, 0.08116532117128372, 0.14000628888607025, -0.005131504964083433, -0.135904461145401, 0.06439965963363647, 0.03216802328824997, 0.033530909568071365, 0.0684642642736435, 0.015352618880569935, -0.08709394931793213, 0.018257634714245796, -0.034719452261924744, 0.0655658096075058, -0.10006329417228699, 0.10354159027338028, 0.03631964698433876, 0.03378600999712944, -0.008664761669933796, 0.017106611281633377, -0.025891385972499847, 0.06699656695127487, -0.0381033681333065, -0.040801458060741425, -0.16416338086128235, -0.045217715203762054, 0.03895336017012596, 0.061503101140260696, -0.01775592938065529, -0.018379775807261467, -0.054311759769916534, -0.013264033012092113, -0.12590184807777405, 0.05351150035858154, -0.024916421622037888, 0.048464350402355194, -0.01207575760781765, 0.07570657134056091, -0.044859010726213455, -0.0793086588382721, 0.04858582094311714, 0.1607053428888321, 0.06456302851438522, -0.04789987951517105, -0.08746643364429474, -0.11029842495918274, 0.06844159960746765, -0.04211815446615219, -0.05482342466711998, 0.046941354870796204, 0.04305937886238098, -0.08511260151863098, -0.01688309572637081], "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2dCPU\u5360\u7528\u9ad8\uff0c\u8868\u73b0\u4e3asy\u5360\u7528\u9ad8\u800cus\u5360\u7528\u4f4e\uff0c\u600e\u4e48\u4f18\u5316\uff1f": [-0.079537034034729, 0.025950530543923378, -0.03194975107908249, -0.017010575160384178, -0.03643161058425903, -0.08140960335731506, -0.013253359124064445, 0.05179835110902786, -0.013324110768735409, 0.035891734063625336, 0.014080236665904522, 0.010867363773286343, -0.08124092221260071, -0.06601741909980774, -0.001966689946129918, 0.08626481890678406, 0.06220129877328873, 0.037669502198696136, -0.05785081908106804, 0.08528728783130646, -0.020880699157714844, 0.006954958196729422, 0.033355314284563065, -0.045846980065107346, 0.03361707180738449, 0.09897191822528839, -0.0134262815117836, -0.07112712413072586, 0.08043800294399261, 0.04613800719380379, 0.04296847805380821, 0.018432345241308212, -0.01906668394804001, 0.0648808628320694, -0.022190013900399208, -0.024088818579912186, -0.08576111495494843, 0.10545007139444351, -0.046226926147937775, -0.06226467341184616, 0.09551329165697098, -0.015945786610245705, -0.0676245391368866, 0.055165767669677734, -0.069582499563694, -0.07230262458324432, -0.0990295484662056, -0.06523186713457108, 0.02675890363752842, 0.0875905230641365, -0.07898523658514023, 0.054425109177827835, 0.027726415544748306, -0.03633991628885269, -0.04833820462226868, -0.021549750119447708, 0.0910593792796135, 0.0320199690759182, 0.04207340255379677, -0.0660388246178627, 0.04057980701327324, -0.0010353365214541554, -0.02814331091940403, -0.045537564903497696, -0.12310744822025299, -0.011963511817157269, -0.09039099514484406, -0.02967909164726734, -0.028681714087724686, 0.025215689092874527, -0.037018392235040665, 0.023300645872950554, -0.0048551904037594795, 0.060426030308008194, 0.052398860454559326, 0.03781864047050476, 0.0228562094271183, 0.005006731487810612, -0.05201437324285507, 0.0715891495347023, 0.024131495505571365, 0.07070191949605942, 0.057747796177864075, -0.08632951974868774, -0.04293809458613396, -0.030756715685129166, -0.04433055967092514, 0.012189850211143494, -0.07856442779302597, 0.07354006171226501, 0.02135099470615387, -0.015467314049601555, -0.12772008776664734, 0.07418013364076614, 0.08475908637046814, -0.0640740841627121, -0.03313565254211426, 0.01261854451149702, -0.09890038520097733, -0.008299116976559162, 0.09637771546840668, 0.011875642463564873, -0.06529536098241806, 0.03888080269098282, -0.025443920865654945, -0.0804978460073471, -0.0694233849644661, 0.0031722881831228733, -0.01931062527000904, -0.02697855979204178, 0.07827484607696533, -0.016320768743753433, 0.04551383852958679, 0.05437883734703064, -0.07075037062168121, -0.03855157643556595, -0.019962027668952942, 0.0675606057047844, -0.08555443584918976, 0.09419276565313339, 0.08338401466608047, -0.09137227386236191, -0.01223740354180336, 0.07872289419174194, -0.053137265145778656, -0.038668595254421234, 0.11810461431741714, -0.12008912861347198, -0.0910312756896019, 0.0014674643753096461, 0.1305309534072876, -0.07259628176689148, 0.07466152310371399, -0.15267857909202576, -0.10011158138513565, 0.04509282484650612, -0.05031151324510574, -0.013024725019931793, 0.002599134808406234, 0.15487627685070038, 0.01992671936750412, -0.1864902228116989, 0.030893124639987946, 0.029821572825312614, 0.10317020118236542, -0.010601865127682686, -0.11177457123994827, -0.12326441705226898, -0.06296545267105103, -0.0511123426258564, 0.03677701950073242, -0.04229113832116127, -0.043544262647628784, 0.07766677439212799, -0.026501689106225967, 0.007047893945127726, 0.08311675488948822, -0.01568560115993023, -0.0063727195374667645, -0.09354007989168167, -0.06063363328576088, -0.028139740228652954, 0.041131529957056046, -0.013515152037143707, -0.048294875770807266, 0.023923775181174278, -0.007440999615937471, 0.012540260329842567, -0.06429043412208557, 0.015980836004018784, 0.05819424241781235, -0.03178751841187477, -0.020978381857275963, -0.05258587375283241, 0.021406937390565872, 0.08071243762969971, 0.01342707872390747, -0.041052501648664474, -0.017774241045117378, -0.003635355504229665, 0.0033026309683918953, -0.0991758406162262, -0.13907943665981293, -0.114470936357975, 0.08689363300800323, 0.011746790260076523, 0.048612095415592194, 0.019886406138539314, 0.16327215731143951, -0.1432563066482544, 0.08541657030582428, 0.06684397906064987, -0.03374303877353668, 0.0921158716082573, -0.017341500148177147, -0.06977979838848114, -0.09644071757793427, -0.023285407572984695, 0.03534410893917084, -0.06550905853509903, -1.2628734111785889e-05, -0.01793108694255352, 0.07393654435873032, 0.05855045095086098, -0.02592630125582218, -0.016648419201374054, -0.12030970305204391, -0.1101122573018074, -0.01202009990811348, 0.014322437345981598, 0.01927347481250763, 0.09109598398208618, -0.06226561591029167, -0.05281570181250572, -0.0803222507238388, 0.04633632302284241, 0.11636338382959366, 0.05002262443304062, 0.05609602853655815, -0.06590534001588821, -0.02996261790394783, -0.041667819023132324, -0.013993198983371258, -0.06258273124694824, -0.09796711057424545, -0.009623431600630283, -0.015666894614696503, -0.03832215070724487, 0.034863680601119995, 0.03674447536468506, -0.054598644375801086, 0.07902872562408447, 0.0928894504904747, 0.21377341449260712, -0.05320616066455841, 0.0925665944814682, -0.06316019594669342, -0.0868886262178421, 0.004861512221395969, -0.03981655836105347, -0.040204908698797226, 0.021422524005174637, -0.07400543242692947, -0.053574223071336746, -0.07995249330997467, 0.09435395896434784, 0.1265057623386383, 0.009108239784836769, 0.03674289956688881, -0.08256624639034271, 0.041577406227588654, 0.041702672839164734, -0.0158560648560524, 0.021082481369376183, -0.02383415773510933, 0.10896395146846771, 0.089126817882061, -0.021568849682807922, 0.03716925531625748, 0.0261613167822361, 0.03048100136220455, -0.043444350361824036, -0.05190090090036392, 0.03879707306623459, -0.01164943166077137, -0.03277469426393509, 0.15618658065795898, -0.06479742377996445, 0.02480349689722061, -0.09103211760520935, 0.0939708724617958, 0.017818164080381393, -0.051889900118112564, -0.010416407138109207, 0.12283553183078766, 0.06352794170379639, 0.009072783403098583, -0.09944996237754822, 0.034105535596609116, 0.011605996638536453, -0.03446192666888237, -0.005599782802164555, -0.06829951703548431, -0.04606242850422859, 0.10954174399375916, -0.04760626703500748, 0.06102180853486061, 0.002719205105677247, 0.032425884157419205, 0.1210726723074913, -0.03904113173484802, 0.0077063776552677155, -0.03633904829621315, -0.08198019862174988, 0.003608017461374402, 0.06858242303133011, 0.05104728415608406, 0.0925208330154419, 0.016143620014190674, 0.0710965096950531, -0.006344955880194902, -0.02179981768131256, 0.030838806182146072, -0.052063796669244766, 0.019178442656993866, -0.049303699284791946, 0.02542022615671158, -0.04925665259361267, 0.09519597142934799, 0.004692979156970978, 0.08632154762744904, 0.12539315223693848, 0.022842608392238617, 0.11519043892621994, -0.05547009035944939, 0.03811502829194069, 0.024900615215301514, -0.14991016685962677, 0.046472325921058655, -0.02278813347220421, 0.008049809373915195, -0.06889090687036514, 0.008991090580821037, 0.06801554560661316, 0.09325520694255829, -0.06483639031648636, 0.04656406491994858, 0.11737582087516785, 0.025246774777770042, -0.10130564123392105, 0.04289349541068077, -0.031821247190237045, 0.07456046342849731, 0.12804734706878662, 0.0014132792130112648, -0.14204217493534088, 0.08560758084058762, -0.011270549148321152, -0.0056217689998447895, 0.0417872779071331, 0.0004947631969116628, -0.07708606868982315, 0.002964545739814639, -0.03235404193401337, 0.07453951984643936, -0.05659639835357666, 0.1270633041858673, 0.04289969801902771, 0.01894655078649521, -0.00825273897498846, 0.0511971190571785, -0.07042759656906128, 0.06171327829360962, -0.04415741190314293, -0.05084119364619255, -0.16866764426231384, -0.042770326137542725, 0.025610970333218575, 0.05453052744269371, -0.04423518478870392, -0.0035020937211811543, -0.04801720380783081, -0.0219474695622921, -0.12048961222171783, 0.016842031851410866, -0.03449253365397453, 0.06591043621301651, -0.026506468653678894, 0.06306977570056915, -0.04714452847838402, -0.11012333631515503, 0.020915433764457703, 0.16316598653793335, 0.08092451095581055, -0.05445561558008194, -0.08762098103761673, -0.15523044764995575, 0.03139682859182358, -0.016025906428694725, -0.08821870386600494, 0.06347079575061798, 0.09560807794332504, -0.0727757140994072, -0.026540370658040047], "\u5728`GeneratorDataset`\u4e2d\uff0c\u770b\u5230\u6709\u53c2\u6570`shuffle`\uff0c\u5728\u8dd1\u4efb\u52a1\u65f6\u53d1\u73b0`shuffle=True`\u548c`shuffle=False`\uff0c\u4e24\u8005\u6ca1\u6709\u533a\u522b\uff0c\u8fd9\u662f\u4e3a\u4ec0\u4e48\uff1f": [-0.04984999820590019, -0.001008558669127524, -0.009980374947190285, 0.07099857926368713, -0.08118386566638947, -0.04130234941840172, -0.049034807831048965, 0.11276443302631378, -0.032220277935266495, 0.04020838439464569, 0.0064776306971907616, -0.001753445714712143, -0.020461544394493103, 0.01958237588405609, -0.038115717470645905, 0.07881982624530792, 0.07753115892410278, -0.002281816443428397, -0.030084216967225075, 0.09853732585906982, -0.055290281772613525, 0.019862111657857895, 0.03409441187977791, -0.042528148740530014, 0.0312481801956892, 0.1511734426021576, -0.018922239542007446, 0.0164167582988739, 0.05094600096344948, 0.050400104373693466, 0.06996799260377884, 0.017596164718270302, -0.04320792853832245, 0.0788022130727768, -0.027527648955583572, -0.06595645844936371, -0.04645853862166405, 0.10737597197294235, -0.058960311114788055, -0.0020676280837506056, 0.048466283828020096, -0.053658582270145416, -0.03382282331585884, -0.004812016151845455, -0.006402788683772087, -0.07394556701183319, -0.13994252681732178, -0.03716996684670448, 0.11077699065208435, 0.03226426988840103, -0.08131857216358185, 0.05873260274529457, 0.07336485385894775, -0.021687934175133705, -0.04827943444252014, 0.02204994484782219, 0.06947976350784302, 0.008407560177147388, 0.0361613854765892, 0.03644535690546036, 0.03434840217232704, 0.07614723592996597, 0.014321772381663322, -0.03018656186759472, -0.09523610025644302, -8.869171142578125e-05, -0.04046184942126274, -0.10380380600690842, -0.024617886170744896, 0.04217556118965149, -0.051825881004333496, 0.005706125404685736, -0.017046602442860603, 0.08039224147796631, 0.0049866302870213985, 0.1909942626953125, -0.05407482013106346, -0.00029713287949562073, -0.02387302741408348, 0.03514191508293152, -0.031577128916978836, 0.05212564766407013, 0.028299886733293533, -0.03969210758805275, -0.008639276959002018, -0.024654822424054146, -0.021528007462620735, 0.07715312391519547, -0.03385917469859123, 0.08563326299190521, 0.05671205371618271, -0.05704212933778763, -0.22260746359825134, 0.06570786982774734, 0.07699151337146759, -0.047686073929071426, -0.07657879590988159, -0.04186702519655228, -0.10813945531845093, -0.048077695071697235, 0.10794015228748322, -0.07825309038162231, -0.004827491473406553, 0.0687207356095314, 0.009331663139164448, -0.15770912170410156, -0.054124362766742706, 0.0648786649107933, -0.03202265873551369, -0.001181847765110433, 0.059438273310661316, -0.01729469746351242, 0.08135905861854553, 0.03122255951166153, -0.0511617437005043, 0.03203421086072922, 0.04704440385103226, -0.09052577614784241, -0.13095732033252716, 0.15711504220962524, 0.12378404289484024, -0.04103028029203415, 0.001140741165727377, 0.12028273940086365, -0.03802042454481125, -0.07095351070165634, 0.049102794378995895, -0.10121745616197586, -0.1345948874950409, -0.02335934340953827, 0.1228039562702179, -0.11804796010255814, 0.04929789900779724, -0.07088671624660492, -0.04565044119954109, 0.11787422001361847, -0.020619826391339302, 0.016516895964741707, 0.02570773847401142, 0.059318289160728455, 0.03785870969295502, -0.12111629545688629, 0.022752169519662857, 0.012068661861121655, 0.0896315798163414, 0.005289680324494839, -0.0552850142121315, -0.1374439299106598, -0.016316421329975128, -0.07831567525863647, 0.10058096051216125, 0.018922559916973114, -0.043847113847732544, 0.02463323064148426, -0.032531119883060455, 0.007291908375918865, 0.030311163514852524, 0.031238749623298645, 0.004455676302313805, -0.14243046939373016, -0.04955187812447548, 0.025517933070659637, 0.017481721937656403, 0.011757658794522285, -0.014666161499917507, -0.024646388366818428, -0.03232593834400177, 0.011163027957081795, -0.01712292991578579, -0.018201863393187523, -0.003473597578704357, -0.05265948548913002, -0.01953614130616188, -0.01838623732328415, -0.024950115010142326, 0.014699770137667656, 0.009305227547883987, -0.087282694876194, -0.003736389335244894, -0.024292457848787308, 0.009656247682869434, -0.10811074078083038, -0.023061007261276245, -0.0976562649011612, 0.014767992310225964, 0.05930383875966072, -0.0015772549668326974, 0.05050620436668396, 0.19033391773700714, -0.08673902601003647, -0.020242424681782722, 0.05682797357439995, 0.07160329073667526, 0.11378312110900879, -0.10464902222156525, 0.017383700236678123, -0.06275127083063126, 0.027211736887693405, 0.026157433167099953, -0.04121670871973038, -0.03687627241015434, 0.08919467031955719, -0.006658552680164576, 0.016590837389230728, -0.02334440127015114, -0.004984352272003889, -0.05355900526046753, -0.12345676869153976, 0.022233683615922928, -0.011422360315918922, 0.06525295972824097, 0.06079147011041641, -0.05573509261012077, -0.0780845582485199, -0.09745397418737411, -0.006371272262185812, 0.05482761561870575, 0.11859343200922012, 0.1385788917541504, -0.05589064955711365, -0.021133247762918472, 0.009504045359790325, -0.017417702823877335, -0.17966966331005096, -0.15749524533748627, -0.031675320118665695, -0.024218538776040077, -0.08765619993209839, 0.02247452922165394, -0.038242604583501816, -0.048755329102277756, 0.046907294541597366, 0.060601167380809784, 0.21249210834503174, -0.04257809370756149, 0.10713711380958557, -0.030549826100468636, -0.02925681509077549, -0.03725651651620865, 0.006606001406908035, -0.12039460986852646, 0.09930619597434998, -0.04466206207871437, -0.058130133897066116, -0.1080588772892952, 0.08215523511171341, 0.06061176955699921, 0.01623893342912197, 0.042284686118364334, -0.03986131399869919, 0.031030938029289246, 0.04097380116581917, 0.04707998409867287, 0.04730290547013283, -0.016021203249692917, 0.03624158725142479, 0.01536426693201065, -0.031844381242990494, 0.01943923346698284, 0.016380012035369873, -0.023994898423552513, 0.03179217502474785, -0.025019854307174683, 0.05008131265640259, -0.03190949931740761, 0.018788566812872887, 0.11936245113611221, -0.019522851333022118, 0.04724565148353577, -0.10655044764280319, 0.052339404821395874, 0.04216468706727028, -0.09364175796508789, 0.05945818871259689, 0.09404774755239487, 0.09151232242584229, 0.010410461574792862, -0.1175156682729721, 0.05452479422092438, 0.052440814673900604, 0.006746673956513405, 0.10527421534061432, 0.04477807134389877, -0.020195625722408295, 0.01860169693827629, -0.1314719021320343, 0.08020076900720596, 0.006717415992170572, 0.0892711654305458, 0.08757151663303375, 0.0034195431508123875, -0.04099547490477562, -0.017373451963067055, -0.016376711428165436, 0.012551870197057724, 0.03942969813942909, 0.10281094908714294, 0.07429990917444229, -0.02134808897972107, 0.04437585920095444, -0.0222933366894722, -0.022398337721824646, 0.06862744688987732, -0.06783832609653473, -0.028642361983656883, 0.032351650297641754, -0.02421695925295353, -0.07236934453248978, 0.01788904331624508, -0.018410738557577133, 0.08491570502519608, 0.06122099980711937, 0.004057922400534153, 0.09285825490951538, -0.1266278475522995, 0.011524338275194168, -0.0156641136854887, -0.09812162816524506, 0.0072214649990201, -0.0014948572497814894, 0.02856268733739853, -0.07105393707752228, -0.009212920442223549, 0.10351021587848663, 0.04227147996425629, -0.059722159057855606, -0.018103234469890594, 0.10675623267889023, 0.05057008937001228, -0.05869884788990021, 0.027105476707220078, -0.1027609333395958, 0.04879874736070633, 0.0644475519657135, 0.07597131282091141, -0.11964748799800873, 0.05037852004170418, -0.005687221884727478, 0.019692471250891685, 0.04025927931070328, 0.053739581257104874, -0.09972172975540161, -0.012955250218510628, -0.10872820764780045, 0.07759668678045273, 0.025938138365745544, 0.07220980525016785, 0.03459843993186951, 0.07679025828838348, -0.014181672595441341, -0.029429245740175247, -0.12285146117210388, 0.008238527923822403, 0.01611134596168995, -0.015464753843843937, -0.09936746954917908, -0.030152618885040283, -0.039837561547756195, 0.010193928144872189, -0.055820900946855545, -0.03194981813430786, 0.025912975892424583, 0.02467639371752739, -0.0625576600432396, 0.006856337655335665, -0.0947364866733551, 0.017649643123149872, 0.0015254251193255186, 0.05852395296096802, -0.011267347261309624, -0.1429685354232788, 0.0978679284453392, 0.17017678916454315, 0.060745637863874435, -0.001549959764815867, -0.015337726101279259, -0.09988805651664734, 0.07590030133724213, -0.10258951038122177, -0.12644809484481812, 0.01778755895793438, 0.031016593798995018, -0.031195875257253647, -0.0017466574208810925], "\u8bf7\u95ee`Dataset`\u5982\u4f55\u628a\u4e24\u4e2a`columns`\u5408\u5e76\u6210\u4e00\u4e2a`column`\uff1f": [-0.044985003769397736, 0.09311074018478394, 0.07083114236593246, 0.06253962963819504, -0.05623108893632889, -0.07325467467308044, -0.00992592517286539, 0.07144993543624878, 0.010374469682574272, -0.036442726850509644, 0.012025490403175354, 0.022056685760617256, -0.06118563562631607, 0.018630750477313995, -0.023541688919067383, -0.02571391500532627, 0.15696801245212555, -0.010690142400562763, -0.10495202988386154, 0.08148512989282608, -0.04340735822916031, -0.019766084849834442, -0.012241796590387821, -0.029460888355970383, 0.058275625109672546, 0.019439270719885826, -0.001215841039083898, -0.021511532366275787, 0.020790236070752144, 0.12640485167503357, 0.08192121237516403, 0.022104807198047638, 0.013724692165851593, 0.04955505207180977, 0.016178598627448082, -0.08793474733829498, -0.05510639026761055, 0.07058392465114594, -0.016009636223316193, -0.057376183569431305, 0.1084396094083786, -0.015857946127653122, -0.14620830118656158, 0.11186979711055756, -0.03543977439403534, 0.026681678369641304, -0.13847890496253967, -0.028922047466039658, 0.03905539959669113, 0.07188102602958679, -0.056876786053180695, 0.09209364652633667, 0.02642645686864853, -0.04052098095417023, -0.070758156478405, -0.014227225445210934, 0.007216402795165777, -0.019923485815525055, 0.11774241179227829, 0.030718114227056503, 0.010247229598462582, -0.0038033316377550364, -0.08422024548053741, -0.1016438901424408, -0.1059545949101448, -0.06740523129701614, 0.0006051696254871786, -0.03319982811808586, -0.06384777277708054, 0.08096201717853546, -0.04968705028295517, -0.007216861005872488, -0.003445649053901434, 0.007347431033849716, 0.04642032831907272, 0.05442005768418312, -0.04944150149822235, 0.04635445028543472, -0.08899135142564774, 0.12353628873825073, 0.011547902598977089, 0.02031407132744789, 0.12583261728286743, -0.12652982771396637, -0.07835295051336288, 0.026227783411741257, -0.06813749670982361, 0.04759186878800392, -0.050225596874952316, 0.009997975081205368, 0.05739889666438103, 0.001106030773371458, -0.1784157156944275, 0.09186974167823792, 0.05093902722001076, -0.13756103813648224, -0.08476100862026215, -0.03648681566119194, -0.08126449584960938, -0.025505948811769485, 0.09797041118144989, 0.03605126589536667, -0.047413937747478485, 0.10203346610069275, 0.023534158244729042, -0.04461521655321121, -0.08309324085712433, 0.03846541419625282, -0.018007704988121986, 0.02640586346387863, 0.045632220804691315, -0.015606765635311604, 0.007379155606031418, 0.07428790628910065, -0.08430668711662292, 0.039617475122213364, -0.0862933099269867, -0.06264425069093704, -0.11051001399755478, 0.11832255125045776, 0.07758499681949615, -0.0219876728951931, -0.04013354331254959, 0.03568537160754204, 0.02500874549150467, -0.010272016748785973, 0.0635865181684494, -0.12136366963386536, -0.04067381098866463, -0.04632643237709999, 0.1695253849029541, -0.12011907249689102, 0.09369265288114548, -0.13458400964736938, -0.08767186105251312, 0.0014100512489676476, -0.015564052388072014, -0.017773913219571114, -0.04293200746178627, 0.14220218360424042, 0.04084938019514084, -0.1024075523018837, 0.007477516774088144, -0.05546688288450241, 0.048483956605196, 0.004303257446736097, -0.044865842908620834, -0.1289750337600708, -0.05394971743226051, -0.00933267641812563, 0.036058057099580765, -0.0026936614885926247, -0.027855703607201576, 0.10097836703062057, -0.021040473133325577, 0.07404100894927979, 0.07483261823654175, -0.002857636194676161, -0.05851419270038605, -0.009921982884407043, -0.028109043836593628, -0.015188336372375488, 0.04710855707526207, 0.02582279033958912, 0.03921612352132797, -0.05339563637971878, -0.038218092173337936, 0.03982139378786087, -0.09527768194675446, 0.022004384547472, 0.00710865156725049, -0.010516527108848095, -0.0311282929033041, -0.1118784099817276, -0.007389219012111425, 0.05824917554855347, 0.03323133662343025, -0.06773708015680313, -0.08900953084230423, -0.08247868716716766, 0.06613824516534805, -0.06842963397502899, -0.09037173539400101, -0.11503296345472336, 0.09229326993227005, 0.10227610915899277, 0.0015263117384165525, 0.015272947959601879, 0.040480274707078934, -0.12948134541511536, 0.011954751797020435, 0.11564461886882782, -0.05904977023601532, 0.1529431939125061, 0.03368130326271057, -0.03276926651597023, -0.07059618830680847, 0.03368901088833809, -0.005134956445544958, -0.0041995118372142315, -0.0067942216992378235, 0.05338006094098091, 0.05279799550771713, -0.0008150272187776864, -0.04886394366621971, 0.006907911971211433, -0.04831075668334961, -0.1507069617509842, 0.0329417958855629, -0.006081759463995695, 0.06014755740761757, 0.11782385408878326, -0.055926281958818436, -0.10820682346820831, -0.08228057622909546, -0.07096129655838013, 0.09049816429615021, 0.09322872012853622, 0.06723898649215698, 0.013561448082327843, -0.01512882113456726, -0.07868286222219467, 0.0481896847486496, -0.08070654422044754, -0.05078703165054321, 0.012706112116575241, -0.04203197360038757, -0.0863805040717125, 0.00640520267188549, 0.026290288195014, -0.08316002786159515, 0.0014329208061099052, 0.05987231433391571, 0.13168789446353912, -0.0016890245024114847, 0.08181970566511154, -0.10653718560934067, 0.03791939467191696, 0.09744329750537872, -0.05404088273644447, -0.11058177053928375, 0.11762841045856476, -0.06817813962697983, 0.023875512182712555, -0.06435526907444, 0.09997358918190002, 0.050534896552562714, 0.04535099118947983, -0.047284085303545, -0.06115178018808365, 0.08173150569200516, -0.024434735998511314, -0.054253704845905304, -0.09871943295001984, -0.013702577911317348, 0.04425784945487976, 0.024810247123241425, -0.020212719216942787, 0.05911202356219292, 0.061798468232154846, 0.054539985954761505, 0.004107185639441013, -0.09349396824836731, 0.03369228169322014, -0.07613812386989594, -0.018500711768865585, 0.1486947387456894, -0.004201722797006369, 0.00868254341185093, -0.12329837679862976, 0.09400498867034912, -0.00902093667536974, -0.08400681614875793, 0.02785438857972622, 0.07515361160039902, 0.06316816806793213, -0.0698634684085846, -0.13802015781402588, 0.009334572590887547, -0.0268548633903265, -0.026249254122376442, 0.022159546613693237, -0.0662902221083641, -0.044661082327365875, 0.023384494706988335, -0.02841135859489441, 0.09931039065122604, 0.01407475583255291, 0.09680254012346268, -0.0012168841203674674, -0.03856145963072777, -0.031425803899765015, -0.10809234529733658, -0.02632150612771511, -0.01733047142624855, 0.0779491662979126, 0.07032548636198044, 0.10059669613838196, -0.02701634168624878, -0.05056252330541611, 0.04800200089812279, -0.04560733586549759, 0.06343090534210205, -0.08094214648008347, 0.07984327524900436, -0.013227224349975586, -0.06454375386238098, 0.03836144134402275, 0.01881108060479164, 0.1018756702542305, 0.1022452786564827, 0.16014322638511658, 0.020362677052617073, 0.05352354049682617, -0.12324080616235733, 0.03296545147895813, 0.05334600433707237, -0.05215197429060936, 0.08623966574668884, -0.056073449552059174, 0.042826130986213684, -0.0280824713408947, -0.019886596128344536, 0.09617454558610916, 0.07634452730417252, -0.07534247636795044, -0.05947774276137352, 0.09244239330291748, 0.08316620439291, 0.0306381955742836, 0.08105610311031342, -0.10117359459400177, 0.0906326025724411, 0.14585848152637482, -0.003593027126044035, -0.13462698459625244, 0.03278041630983353, 0.0378824882209301, -0.02390032261610031, 0.053110070526599884, 0.0551457479596138, -0.09840711951255798, 0.019995028153061867, -0.05324380472302437, 0.03149019554257393, -0.14008255302906036, 0.033075086772441864, 0.0443972647190094, 0.07706835120916367, -0.019346842542290688, 0.05249457061290741, -0.06333997845649719, 0.07728277891874313, -0.03547929599881172, -0.022339388728141785, -0.15187719464302063, -0.05967937409877777, 0.05931299179792404, 0.09242071211338043, -0.008019314147531986, 0.05628463625907898, -0.03508276864886284, -0.0096239959821105, -0.05531536787748337, 0.09535935521125793, 0.028170736506581306, 0.04185660183429718, 0.00896315835416317, 0.07043885439634323, -0.020100370049476624, -0.1557193249464035, 0.07665650546550751, 0.1543269157409668, 0.060941509902477264, -0.106644406914711, -0.045812491327524185, -0.14019833505153656, 0.06683099269866943, -0.0655648335814476, -0.09873384982347488, 0.08154170215129852, 0.00399297010153532, -0.12149850279092789, 0.004282291978597641], "\u8bf7\u95ee`GeneratorDataset`\u652f\u6301`ds.PKSampler`\u91c7\u6837\u5417\uff1f": [-0.016835223883390427, 0.012838033027946949, 0.025673534721136093, 0.026478605344891548, -0.08636230230331421, -0.027503667399287224, 0.03952468931674957, 0.10988553613424301, -0.025507204234600067, 0.04872919246554375, -0.010033441707491875, 0.012038087472319603, 0.08059817552566528, 0.031671032309532166, -0.018658971413969994, -0.014822764322161674, 0.10752946138381958, -0.021238429471850395, -0.10474777966737747, 0.15619584918022156, 0.04248202592134476, 0.0381733737885952, 0.0899609923362732, -0.06782570481300354, -0.012231131084263325, 0.14934203028678894, -0.03231009840965271, 0.020438220351934433, -0.004351743031293154, 0.03858337923884392, 0.015038596466183662, 0.08485439419746399, -0.05249343812465668, -0.0006760860560461879, -0.032074667513370514, -0.03191442787647247, -0.03345119208097458, 0.11075609177350998, -0.038799162954092026, 0.0280612763017416, 0.0007686706376262009, -0.027853529900312424, -0.054168615490198135, 0.06481922417879105, -0.09158955514431, -0.0004853773571085185, -0.05716726928949356, -0.03581048175692558, 0.05087532103061676, 0.05628851056098938, -0.06935758888721466, 0.021325714886188507, 0.01557575911283493, -0.07245219498872757, -0.08800294250249863, 0.022564394399523735, 0.00914699211716652, 0.07936467975378036, 0.02829674631357193, 0.03681902959942818, -0.0015162217896431684, 0.021305955946445465, -0.07276523858308792, -0.013794705271720886, -0.12031123042106628, 0.030765965580940247, -0.046186141669750214, -0.02927315980195999, -0.026852192357182503, -0.043482836335897446, -0.0203307643532753, 0.0021228794939816, -0.034522272646427155, 0.018305888399481773, 0.002915528602898121, 0.08798931539058685, -0.0281514935195446, 0.04085250198841095, -0.07575637102127075, 0.03926274925470352, -0.05241695046424866, 0.06988900899887085, 0.044162020087242126, -0.04127686098217964, -0.07179795205593109, -0.03637124225497246, -0.02362348511815071, 0.14224733412265778, -0.04398200660943985, 0.06736217439174652, 0.055383771657943726, -0.05967104434967041, -0.15101926028728485, 0.10583838820457458, 0.06525599956512451, -0.061760470271110535, -0.02263934724032879, 0.015072690322995186, -0.17942173779010773, 0.00899464264512062, 0.11891935765743256, -0.04500503093004227, -0.04360918328166008, 0.0010622997069731355, 0.007705315947532654, -0.13597571849822998, -0.038806624710559845, 0.05807771906256676, -0.0384165458381176, 0.0038969821762293577, 0.13585232198238373, 0.01018064096570015, 0.05134172365069389, 0.066693015396595, -0.06659121066331863, 0.09986686706542969, 0.02998013235628605, -0.034072041511535645, -0.11903294920921326, 0.09810887277126312, 0.09968659281730652, 0.0065505909733474255, 0.0006897187558934093, 0.09538378566503525, 0.006697165779769421, -0.004796287510544062, 0.0909145399928093, -0.041814643889665604, -0.06667957454919815, 0.01826249435544014, 0.12754814326763153, -0.061317719519138336, 0.055199913680553436, -0.17500266432762146, -0.09048999845981598, 0.07442615181207657, -0.03564488887786865, -0.007362819276750088, 0.03266466036438942, 0.09509819000959396, 0.10421480983495712, -0.10843759775161743, 0.09403146803379059, -0.015161782503128052, 0.03200565278530121, 0.0014572989894077182, -0.0664963573217392, -0.10179688036441803, -0.010288914665579796, -0.06596361845731735, 0.1107766181230545, -0.03726249560713768, -0.07400806993246078, 0.10791824012994766, -0.05367949977517128, 0.0369422547519207, 0.05085210129618645, -0.02770867384970188, -0.053572580218315125, -0.10009348392486572, -0.004558844491839409, -0.08363160490989685, -0.03124944120645523, 0.09103438258171082, 0.0360884927213192, 0.023964235559105873, -0.05479035526514053, -0.0037775400560349226, -0.011831420473754406, -0.07277192920446396, 0.039901431649923325, -0.05111323669552803, -0.06950929015874863, -0.08995939791202545, 0.041922427713871, 0.0183696486055851, 0.05936562269926071, -0.020151643082499504, -0.001014310517348349, -0.017310120165348053, 0.06809687614440918, -0.10454805195331573, -0.08922138065099716, -0.15660013258457184, -0.01082807406783104, 0.11176711320877075, -0.014231518842279911, 0.054008081555366516, 0.11437730491161346, -0.06332229822874069, -0.03678528964519501, 0.09339714050292969, 0.0905807688832283, 0.05190318822860718, -0.04236365854740143, -0.01480829156935215, -0.035944681614637375, 0.061224937438964844, 0.07429518550634384, -0.04044546186923981, -0.038864534348249435, 0.08491156250238419, 0.006707832217216492, 0.0006639183266088367, -0.03390802815556526, -0.017612643539905548, -0.06696347892284393, -0.10116618871688843, -0.008740006946027279, -0.001685260096564889, 0.037926629185676575, 0.053203143179416656, -0.02773802913725376, -0.02824053168296814, -0.12027136981487274, -0.04914824292063713, 0.11196242272853851, 0.05448625981807709, 0.06820254027843475, -0.031199386343359947, -0.007153757847845554, -0.016293983906507492, -0.0008744539227336645, -0.12809549272060394, -0.16505208611488342, 0.00683981878682971, -0.010121666826307774, -0.08583055436611176, 0.08124813437461853, -0.00010881759226322174, 0.008624987676739693, 0.03744427114725113, 0.010242375545203686, 0.17399908602237701, 0.013691780157387257, 0.11652830988168716, -0.005227823741734028, 0.017922576516866684, 0.011183860711753368, 0.0233891811221838, -0.10179121792316437, 0.09748005121946335, -0.04398365318775177, -0.04566032811999321, -0.09678184241056442, 0.09017319977283478, 0.047187019139528275, 0.08313524723052979, 0.036724381148815155, 0.011308053508400917, -0.004102654289454222, 0.04014822840690613, 0.037878651171922684, 0.004207152407616377, -0.04957977309823036, 0.05466245114803314, 0.03513500839471817, -0.10942389070987701, 0.07624147087335587, 0.029292546212673187, 0.005109529942274094, 0.06430038809776306, -0.039817314594984055, -0.01536820363253355, 0.0364605188369751, 0.01719355769455433, 0.11803004145622253, -0.0699678286910057, 0.02529163472354412, -0.09939885139465332, 0.06517912447452545, 0.006211405619978905, -0.11037033051252365, 0.06822029501199722, 0.039721980690956116, 0.021624576300382614, -0.09384997934103012, -0.14965732395648956, 0.10080163925886154, 0.05753473937511444, 0.05109475180506706, 0.07634482532739639, 0.07243764400482178, -0.10635154694318771, 0.03943394869565964, -0.06209962069988251, -0.029674436897039413, 0.02152872458100319, 0.06873734295368195, 0.12050103396177292, -0.009470763616263866, -0.07005702704191208, -0.07645569741725922, 0.015729611739516258, 0.023005690425634384, -0.00940314494073391, 0.09917714446783066, 0.1033991351723671, -0.06184696406126022, 0.004333809018135071, -0.03538951277732849, -0.06745849549770355, 0.07687851041555405, -0.06925614178180695, -0.031556084752082825, 0.040729254484176636, -0.04669007658958435, -0.09665364772081375, 0.06065845862030983, -0.030722610652446747, 0.1017911285161972, 0.07750847935676575, 0.015490289777517319, 0.10612943023443222, -0.0014669866068288684, -0.006280367728322744, 0.04004048556089401, -0.09960184246301651, 0.0001763477921485901, -0.0561654269695282, -0.002314492594450712, -0.06225286424160004, 0.01697799190878868, 0.05197913199663162, -0.015543639659881592, -0.09151647984981537, 0.01323284488171339, 0.06056248024106026, -0.014515618793666363, 0.03896155580878258, 0.028761230409145355, -0.0533183328807354, -0.007880116812884808, 0.10829982906579971, 0.07821688055992126, -0.07978072017431259, 0.14829163253307343, 0.028219375759363174, -0.01491744164377451, 0.0618734210729599, 0.059215351939201355, -0.07973337918519974, 0.014163495041429996, -0.1174577921628952, 0.00418290589004755, -0.09388843178749084, 0.1052289828658104, 0.05124198645353317, 0.024027537554502487, 0.016109373420476913, 0.004506177268922329, -0.11548018455505371, 0.12529471516609192, -0.025583622977137566, -0.06431904435157776, -0.11068032681941986, -0.03748665750026703, 0.022856272757053375, 0.015492313541471958, -0.04770814627408981, -0.022660227492451668, 0.0367247611284256, -0.0014369635609909892, -0.0779135674238205, 0.009261537343263626, -0.09537896513938904, 0.013796016573905945, -0.037373825907707214, 0.06440471112728119, -0.026509849354624748, -0.10979914665222168, 0.1227167397737503, 0.10214053094387054, 0.046479731798172, -0.08839108049869537, -0.06924831867218018, -0.12648043036460876, 0.13628557324409485, -0.06754782050848007, -0.10061677545309067, -0.02530813217163086, 0.024873359128832817, -0.056580569595098495, 0.02441815286874771], "MindSpore\u5982\u4f55\u52a0\u8f7d\u5df2\u6709\u7684\u9884\u8bad\u7ec3\u8bcd\u5411\u91cf\uff1f": [-0.04782979190349579, 0.09116281569004059, -0.0041641127318143845, 0.026882048696279526, -0.06408067047595978, -0.02450416423380375, -0.03638805076479912, 0.08735581487417221, -0.02078082785010338, 0.06436074525117874, -0.007795331533998251, 0.008431208319962025, 0.034098125994205475, 0.03721475973725319, -0.07957089692354202, 0.060930877923965454, 0.13537608087062836, 0.05999157205224037, -0.03985116630792618, 0.046898216009140015, -0.00869663991034031, -0.039946299046278, 0.04853406175971031, -0.019521119073033333, 0.046696074306964874, 0.125141903758049, -0.01979171857237816, -0.0054363408125936985, -0.051676202565431595, 0.10139577090740204, 0.0561789870262146, 0.004758305381983519, -0.0836072638630867, -0.027721747756004333, -0.05476478859782219, -0.0737231895327568, -0.046870287507772446, 0.05223497375845909, -0.05471903458237648, -0.06404148042201996, 0.023385651409626007, 0.03366375342011452, -0.028035961091518402, 0.05738723650574684, 0.02423425391316414, -0.0555269792675972, -0.14530159533023834, -0.02132158912718296, 0.04632972925901413, 0.0017114572692662477, -0.08067016303539276, 0.06258025765419006, -0.025541706010699272, -0.015080545097589493, -0.07408444583415985, -0.020640164613723755, 0.0017258563311770558, 0.008665631525218487, 0.03290824219584465, -0.0450233593583107, -0.008568541146814823, -0.01056566834449768, -0.03620362654328346, -0.05795372650027275, -0.10179392248392105, -0.010681640356779099, -0.05944911018013954, -0.10687081515789032, -0.07275718450546265, 0.01971975341439247, -0.05723879858851433, -0.032611165195703506, -0.03747817873954773, 0.10294647514820099, 0.0779811292886734, 0.028503291308879852, -0.003651923034340143, 0.0011493056081235409, -0.009594537317752838, 0.026142355054616928, 0.016756854951381683, 0.08576874434947968, 0.038930878043174744, -0.04591570794582367, -0.04014047980308533, 0.033451542258262634, -0.023728953674435616, 0.09812746196985245, -0.030098477378487587, 0.10541167110204697, 0.024240849539637566, -0.03305499255657196, -0.14545802772045135, 0.010255007073283195, 0.07479096949100494, -0.03567502647638321, -0.06387417763471603, 0.009013209491968155, -0.16227421164512634, -0.024078473448753357, -0.0028454770799726248, 0.03171484172344208, -0.08748176693916321, 0.023075424134731293, 0.03972567245364189, -0.06765709072351456, 0.05980309471487999, -0.016069278120994568, 0.08441917598247528, 0.011123516596853733, 0.07457863539457321, 0.013335864059627056, 0.07912436127662659, 0.026760607957839966, 0.017858773469924927, 0.07007227092981339, -0.07813843339681625, -0.02137480303645134, -0.035633958876132965, 0.09731584787368774, 0.07745707035064697, -0.03625088930130005, 0.02181563898921013, -0.009991197846829891, 0.003645855700597167, -0.008502038195729256, 0.06480925530195236, -0.049496255815029144, -0.09443648159503937, -0.07354453951120377, 0.17590342462062836, -0.09163177013397217, 0.08264394104480743, -0.0922192931175232, -0.11157651245594025, 0.07370707392692566, -0.021226484328508377, 0.02344384230673313, -0.019057931378483772, 0.13972988724708557, 0.03504295274615288, -0.1270129233598709, 0.09889968484640121, -0.017288124188780785, 0.08733677864074707, 0.01802157238125801, -0.02997734397649765, -0.11566039174795151, -0.013549333438277245, -0.04947929456830025, 0.06275887042284012, -0.07781288772821426, -0.013922175392508507, 0.058026548475027084, 0.003243958344683051, 0.02451477199792862, 0.01840316131711006, -0.017409369349479675, 0.0029886937700212, -0.052152108401060104, -0.040186408907175064, 0.01545729674398899, 0.03507538139820099, -0.010717811994254589, -0.011714247055351734, -0.04235009849071503, 0.007261141203343868, -0.02355731651186943, -0.0728619322180748, 0.008655834943056107, -0.01401759497821331, 0.005839201621711254, -0.08205954730510712, -0.008001611568033695, 0.02923508547246456, -0.020857911556959152, 0.1192711889743805, -0.09873443841934204, -0.040948741137981415, -0.041897255927324295, 0.05723438411951065, -0.051496490836143494, -0.008778931573033333, -0.036088667809963226, 0.005533851217478514, -0.005712415091693401, 0.06829740852117538, 0.058802280575037, 0.12371067702770233, -0.13316911458969116, -0.023915382102131844, 0.0020824118983000517, 0.004478635266423225, 0.06381000578403473, -0.02564992569386959, 0.03730962425470352, -0.052422188222408295, -0.01560890581458807, 0.04175807908177376, 0.008380142040550709, -0.02702902816236019, 0.0281980037689209, 0.03111029416322708, -0.005444735288619995, -0.006513617001473904, 0.019759131595492363, -0.082127645611763, -0.05567869544029236, -0.0006193890003487468, -0.03270236775279045, 0.13432005047798157, 0.05814008042216301, -0.034561097621917725, -0.08011672645807266, -0.13378800451755524, 0.013643336482346058, 0.09652070701122284, 0.1022958755493164, 0.05502954125404358, -0.020326629281044006, 0.03279466927051544, -0.004922862164676189, 0.07758085429668427, -0.10074896365404129, -0.11259358376264572, -0.04338543862104416, -0.050590880215168, -0.1151016503572464, 0.016237210482358932, 0.07445692270994186, -0.1099223792552948, 0.07701776176691055, 0.06527719646692276, 0.1265876591205597, -0.02616678923368454, 0.11509771645069122, -0.011909916065633297, -0.02622847445309162, 0.04470675066113472, 0.048938069492578506, -0.09035497158765793, 0.07244312018156052, -0.09876420348882675, -0.0841883197426796, -0.05368229001760483, 0.1131133958697319, 0.11676522344350815, 0.05564291775226593, 0.0435011051595211, -0.02490663155913353, 0.0774165689945221, -0.00512488279491663, -0.10347596555948257, 0.057055942714214325, 0.0395563468337059, 0.04642665386199951, 0.10105887800455093, -0.0008977928664535284, 0.007653019856661558, 0.047092922031879425, 0.05826026201248169, 0.03266469016671181, -0.062231097370386124, 0.0005368627025745809, -0.023595547303557396, 0.0327686183154583, 0.09569217264652252, -0.03940271586179733, 0.03935885801911354, -0.13259662687778473, 0.060619331896305084, 0.06651858240365982, -0.12096425145864487, 0.01482454314827919, 0.11272890120744705, 0.046801961958408356, 0.04813813790678978, -0.18608342111110687, 0.026399198919534683, 0.05059690773487091, -0.015114782378077507, 0.019991502165794373, -0.0027296326588839293, 0.005820262711495161, 0.07784619182348251, -0.009201341308653355, 0.03664218261837959, 0.024913743138313293, 0.04348096251487732, 0.17062295973300934, -0.08582890778779984, 0.050949543714523315, -0.07016225904226303, 0.014222956262528896, -0.04015389084815979, 0.10021549463272095, 0.0746348649263382, 0.0688341036438942, 0.05455917865037918, 0.07503636926412582, -0.03953830152750015, -0.04771522805094719, 0.09440832585096359, -0.0334407277405262, -0.024578962475061417, 0.004804838914424181, -0.05743817239999771, 0.10289445519447327, 0.029923971742391586, 0.06509476900100708, 0.08719363063573837, 0.0885639488697052, 0.028039036318659782, 0.09251436591148376, -0.04634644463658333, -0.0414343997836113, 0.045759499073028564, -0.1685834378004074, 0.02500278130173683, -0.09555371850728989, -0.01407997403293848, -0.04200549051165581, 0.04532475396990776, 0.04789873585104942, 0.059070274233818054, -0.05437138304114342, 0.01926950179040432, 0.03198850527405739, 0.036423321813344955, -0.07219872623682022, 0.01222648099064827, -0.06117991358041763, 0.0636121928691864, 0.0943671241402626, 0.007685273420065641, -0.11352792382240295, 0.10288140922784805, 0.07465170323848724, -0.021236607804894447, 0.055902838706970215, 0.07198762893676758, -0.0030727102421224117, -0.0232663843780756, -0.08791829645633698, 0.06539815664291382, -0.10731764882802963, 0.07991655170917511, 0.038644518703222275, -0.047825030982494354, -0.0709034726023674, 0.08971452713012695, -0.024163121357560158, -0.027731899172067642, -0.05192773789167404, -0.01812218315899372, -0.13401177525520325, -0.06286419928073883, 0.0005709304823540151, -0.012450572103261948, 0.020953791216015816, -0.0028634569607675076, 0.017947429791092873, -0.06168217211961746, -0.03663425147533417, 0.010137259028851986, -0.08786893635988235, 0.06425701081752777, -0.08183746039867401, 0.03921590745449066, 0.04403531551361084, -0.08692435175180435, 0.09745512157678604, 0.11151060461997986, 0.026378534734249115, -0.061543650925159454, -0.07293610274791718, -0.08628025650978088, 0.05560402572154999, -0.011644377373158932, -0.05293992906808853, 0.06262754648923874, -0.011105043813586235, -0.18018049001693726, 0.05113416165113449], "\u8bf7\u95ee`c_transforms`\u548c`py_transforms`\u6709\u4ec0\u4e48\u533a\u522b\uff0c\u6bd4\u8f83\u63a8\u8350\u4f7f\u7528\u54ea\u4e2a\uff1f": [-0.05135887488722801, 0.1307331621646881, 0.054088253527879715, 0.04371124505996704, -0.10525131225585938, -0.01564575918018818, -0.0038524228148162365, -0.020421165972948074, -0.03502259775996208, 0.048153236508369446, 0.0004364321648608893, 0.01598501391708851, 0.0704384595155716, -0.04947517067193985, -0.11210495233535767, 0.14809757471084595, 0.05483756214380264, -0.006061215419322252, -0.04334194213151932, 0.00805751048028469, -0.05656418576836586, 0.14208851754665375, 0.05403457581996918, -0.09164445102214813, 0.0010522488737478852, 0.07708106935024261, 0.04750656336545944, 0.05872048810124397, 0.09831751883029938, 0.11106173694133759, 0.04964800924062729, 0.019199466332793236, -0.13257050514221191, 0.05026482418179512, -0.05767032131552696, -0.07509023696184158, -0.05803340673446655, 0.11188840866088867, -0.045949406921863556, 0.07090065628290176, 0.04711972177028656, 0.09763691574335098, -0.034734275192022324, 0.04205706715583801, 0.04178042709827423, -0.018307577818632126, -0.1419616937637329, 6.48796558380127e-05, 0.0699147954583168, -0.01774674654006958, -0.10601350665092468, 0.10466332733631134, 0.013214433565735817, -0.005230204202234745, 0.026126669719815254, 0.06000266596674919, 0.033665526658296585, -0.05376919358968735, 0.05500194430351257, 0.11169873178005219, 0.03692075237631798, 0.017875323072075844, -0.005732272285968065, -0.03196880593895912, -0.19261440634727478, 0.06530272215604782, 0.05224377661943436, -0.01733402907848358, -0.01216285303235054, -0.015008481219410896, -0.05105229467153549, 0.05880865827202797, -0.07559498399496078, 0.05988921970129013, 0.10357984900474548, 0.1147785633802414, -0.0019522806396707892, -0.0014723156346008182, -0.04654397442936897, 0.019940728321671486, -0.00637709628790617, 0.030523139983415604, 0.08782076090574265, -0.08036953955888748, -0.07488907873630524, -0.09885178506374359, -0.07960441708564758, 0.05489976704120636, -0.10667240619659424, 0.124599389731884, -0.011569647118449211, -0.0693572461605072, -0.14288489520549774, 0.06311193108558655, 0.12116125971078873, -0.04148809611797333, -0.10443685948848724, 0.0039832997135818005, -0.1595100313425064, -0.031355906277894974, 0.14613591134548187, 0.021373532712459564, 0.011798892170190811, 0.022661486640572548, 0.007453560829162598, -0.04683670401573181, 0.04169898480176926, 0.018618369475007057, -0.0716937780380249, 0.022564172744750977, 0.06913242489099503, 0.06956510990858078, 0.007839048281311989, 0.019083790481090546, 0.04609924182295799, 0.11196576058864594, 0.0655093565583229, -0.042322855442762375, -0.05354263260960579, 0.12333009392023087, 0.1227123811841011, -0.042921558022499084, 0.02741372585296631, 0.09974464774131775, 0.07322341203689575, -0.0324474461376667, 0.11874958872795105, -0.0816684290766716, -0.03035879135131836, -0.05162259191274643, 0.18711839616298676, -0.15281705558300018, -0.008936529979109764, -0.06619269400835037, -0.03937435895204544, 0.11972041428089142, -0.15087193250656128, -0.022906046360731125, 0.041081223636865616, 0.04314351826906204, 0.050547629594802856, -0.10513868182897568, 0.10949284583330154, -0.11677176505327225, 0.09940493106842041, 0.04182075336575508, -0.07797959446907043, -0.07421550899744034, -0.03973541408777237, -0.10902721434831619, 0.06065408140420914, 0.04077163338661194, 0.042539358139038086, 0.07409705966711044, -0.05230700969696045, -0.029818503186106682, -0.0017968768952414393, -0.015195809304714203, -0.06757612526416779, -0.08698756992816925, -0.052594173699617386, -0.05830056220293045, 0.04112188518047333, 0.05952999368309975, -0.03318365290760994, 0.09771939367055893, -0.060891978442668915, 0.04821537435054779, -0.010415900498628616, -0.10595445334911346, 0.018562709912657738, 0.015265921130776405, -0.04031992703676224, -0.05203818157315254, 0.024241693317890167, 0.030064783990383148, 0.06244731321930885, -0.10674901306629181, -0.023486865684390068, -0.002252364531159401, 0.06887730211019516, -0.14465224742889404, -0.05663442611694336, -0.05835338681936264, 0.013531719334423542, 0.07451581954956055, -0.02043001353740692, -0.011355118826031685, 0.17377570271492004, -0.0929158627986908, 0.05350373685359955, 0.07050594687461853, -0.025511831045150757, 0.09921033680438995, -0.006744245067238808, -0.05745191127061844, -0.07568448036909103, -0.019330313429236412, 0.027051031589508057, -0.03621409833431244, -0.015070809051394463, 0.05196221172809601, 0.04067937657237053, -0.0027565290220081806, 0.07496723532676697, -0.027709325775504112, -0.12752865254878998, -0.09000834822654724, -0.0015626611420884728, -0.01369201485067606, 0.008456818759441376, 0.03956218063831329, -0.14879898726940155, -0.022481605410575867, -0.10085585713386536, -0.10078354179859161, 0.07707572728395462, 0.03703788295388222, 0.1611437052488327, -0.022951537743210793, 0.03358194977045059, 0.012775592505931854, 0.060847967863082886, -0.06971132010221481, -0.03534731641411781, -0.0691508799791336, -0.05728663131594658, -0.062107305973768234, 0.026827624067664146, 0.05133924260735512, -0.05915477126836777, 0.07095775008201599, 0.06661038100719452, 0.10317626595497131, -0.04759858176112175, 0.1698903888463974, -0.11606550216674805, 0.043844327330589294, 0.08348079025745392, 0.016777170822024345, -0.23262286186218262, 0.09977284073829651, -0.09293089061975479, 0.011236928403377533, -0.08373305946588516, 0.13533581793308258, 0.026056954637169838, -0.00047774423728697, 0.11983496695756912, -0.0967235341668129, -0.018621940165758133, -0.06713512539863586, -0.02838265895843506, 0.07349351048469543, -0.06578343361616135, 0.05137184262275696, 0.1769404262304306, -0.002913185628131032, 0.012561947107315063, 0.07649083435535431, -0.026742368936538696, 0.03727615624666214, -0.023507466539740562, 0.017798325046896935, -0.021537337452173233, -0.030766574665904045, 0.03310836851596832, -0.09461883455514908, -0.01695883460342884, -0.00871247984468937, 0.08614866435527802, 0.01145950611680746, -0.08375269919633865, -0.027967536821961403, 0.14058293402194977, 0.04354416951537132, -0.004203581716865301, -0.09036530554294586, 0.09004087746143341, 0.0653204545378685, 0.012163812294602394, 0.0775415301322937, 0.05342891812324524, -0.07946230471134186, 0.09507287293672562, -0.028810404241085052, 0.10847332328557968, 0.01755421608686447, 0.07337093353271484, 0.09415236860513687, 0.028302980586886406, -0.015486640855669975, -0.01912553980946541, 0.007191379554569721, -0.013695664703845978, 0.10124768316745758, 0.059404488652944565, 0.06457960605621338, 0.029860876500606537, -0.016328273341059685, 0.09924845397472382, 0.00013471022248268127, 0.04949815198779106, -0.008065316826105118, -0.05019071698188782, 0.03449190780520439, -0.07737290114164352, -0.06908725947141647, -0.13507120311260223, -0.01078477781265974, -0.03431687504053116, 0.027013853192329407, -0.0021803032141178846, 0.013313221745193005, -0.018891936168074608, -0.08217155188322067, 0.07792218029499054, -0.05214185640215874, 0.08518015593290329, -0.04253515228629112, 0.026134343817830086, -0.000321708619594574, 0.01882665976881981, 0.05459321290254593, 0.01884535886347294, -0.019746262580156326, 0.00968437921255827, 0.05416608601808548, 0.06309542804956436, 0.004392954986542463, 0.03252607211470604, -0.024331433698534966, 0.07242486625909805, 0.06503038853406906, 0.032403841614723206, -0.1709509938955307, 0.163223534822464, 0.051379039883613586, 0.029533496126532555, 0.09512060135602951, 0.0723569393157959, -0.07235082983970642, -0.043210629373788834, -0.04782268404960632, 0.08074536919593811, -0.03696216642856598, 0.0385405458509922, 0.08652343600988388, -0.017378734424710274, -0.013678912073373795, 0.027040105313062668, -0.02495892345905304, 0.07442419230937958, 0.008298828266561031, -0.0954730212688446, -0.09469488263130188, -0.04105985537171364, 0.029422059655189514, 0.009027278982102871, -0.028063325211405754, -0.012023607268929482, -0.038676731288433075, 0.040127962827682495, -0.10430629551410675, 0.09055187553167343, -0.09007240831851959, 0.009081169962882996, -0.04615909606218338, 0.07480639219284058, 0.030835118144750595, -0.08065826445817947, 0.008800586685538292, 0.054985396564006805, -0.026134861633181572, -0.044751983135938644, -0.032635487616062164, -0.12995901703834534, 0.1010662242770195, -0.10965733230113983, -0.013369210995733738, 0.04411628097295761, 0.13311035931110382, -0.08280450105667114, -0.09669229388237], "\u7531\u4e8e\u6211\u4e00\u6761\u6570\u636e\u5305\u542b\u591a\u4e2a\u56fe\u50cf\uff0c\u5e76\u4e14\u6bcf\u4e2a\u56fe\u50cf\u7684\u5bbd\u9ad8\u90fd\u4e0d\u4e00\u81f4\uff0c\u9700\u8981\u5bf9\u8f6c\u6210mindrecord\u683c\u5f0f\u7684\u6570\u636e\u8fdb\u884c`map`\u64cd\u4f5c\u3002\u53ef\u662f\u6211\u4ece`record`\u8bfb\u53d6\u7684\u6570\u636e\u662f`np.ndarray`\u683c\u5f0f\u7684\u6570\u636e\uff0c\u6211\u7684\u6570\u636e\u5904\u7406\u7684`operations`\u662f\u9488\u5bf9\u56fe\u50cf\u683c\u5f0f\u7684\u3002\u6211\u5e94\u8be5\u600e\u4e48\u6837\u624d\u80fd\u5bf9\u6240\u751f\u6210\u7684mindrecord\u7684\u683c\u5f0f\u7684\u6570\u636e\u8fdb\u884c\u9884\u5904\u7406\u5462\uff1f": [-0.033625278621912, 0.04813135787844658, 0.034068260341882706, -0.023421667516231537, -0.10915752500295639, -0.024699674919247627, 0.0003217943012714386, 0.03285937383770943, 0.03847389295697212, -0.020101362839341164, -0.0083191292360425, -0.0008410622831434011, 0.00905022956430912, -0.031125329434871674, -0.06761857122182846, 0.06463121622800827, 0.10197407007217407, 0.027356624603271484, -0.05077916383743286, 0.005618326831609011, -0.006395335774868727, -0.005545126274228096, 0.10442937910556793, -0.005241032224148512, 0.03385869041085243, 0.07359074056148529, -0.04894398897886276, 0.03195349499583244, -0.012429586611688137, 0.017610374838113785, 0.045495450496673584, 0.01708861067891121, -0.08011073619127274, -0.038300059735774994, -0.0521569587290287, -0.06189575046300888, -0.0775979608297348, 0.08823304623365402, -0.0014547215541824698, -0.010271023027598858, 0.02034277655184269, 0.062376562505960464, -0.01796695962548256, 0.08772597461938858, -0.04918810725212097, -0.033276017755270004, -0.14518631994724274, 0.019864102825522423, 0.018024485558271408, 0.022780267521739006, -0.10021375864744186, 0.05368752032518387, 0.025752481073141098, 0.0096903620287776, -0.06494241207838058, -0.003229099093005061, -0.030864212661981583, 0.008052223362028599, 0.05465592443943024, 0.027191996574401855, 0.05485466495156288, -0.02509789541363716, -0.05857599154114723, -0.02398728020489216, -0.13907784223556519, 0.032135337591171265, -0.04393637925386429, -0.07712128013372421, -0.04691144824028015, 0.03639356791973114, -0.0706968903541565, -0.04448419064283371, 0.011701233685016632, 0.03644212707877159, 0.047052472829818726, 0.09309178590774536, -0.05102322995662689, 0.006523509044200182, -0.08532974123954773, 0.04253944009542465, 0.03678194433450699, 0.07439872622489929, 0.08337002247571945, -0.057964541018009186, -0.04908144846558571, -0.04311101883649826, -0.03241009637713432, 0.017723392695188522, -0.006900931242853403, 0.1321994513273239, 0.035119686275720596, -0.01895998977124691, -0.131673201918602, 0.05653968080878258, 0.008941469714045525, -0.07291994243860245, -0.08139616996049881, -0.017898976802825928, -0.1643146276473999, -0.014409656636416912, 0.012155990116298199, -0.04390377551317215, -0.04694133624434471, 0.06277351826429367, 0.007157177664339542, -0.06838741898536682, 0.04009237885475159, 0.08218185603618622, 0.022786276414990425, -0.006201871205121279, 0.08618363738059998, 0.01657872647047043, 0.0390399694442749, 0.041513703763484955, -0.006740149576216936, 0.050577837973833084, -0.07820801436901093, -0.050088152289390564, -0.05290669575333595, 0.09732826799154282, 0.12517815828323364, -0.02409079484641552, 0.02513161301612854, 0.05567549541592598, 0.017447570338845253, 0.022715363651514053, 0.05087326467037201, -0.10759829729795456, -0.04545868560671806, -0.03995097056031227, 0.2060856968164444, -0.06922128051519394, 0.07892759144306183, -0.12543584406375885, -0.07132874429225922, 0.09842943400144577, 0.012166010215878487, -0.02178335189819336, -0.03903648257255554, 0.09547706693410873, 0.0443856418132782, -0.08194945752620697, 0.10997642576694489, -0.0395117811858654, 0.084678515791893, 0.008584795519709587, -0.11377512663602829, -0.07690206170082092, -0.030078474432229996, -0.07010660320520401, 0.05418163537979126, 0.009201462380588055, -0.01857341267168522, 0.06945507228374481, -0.0009860616410151124, 0.08232218027114868, 0.058242082595825195, -0.017707154154777527, -0.0434601865708828, -0.023426737636327744, -0.05542769655585289, -0.034557707607746124, 0.027062896639108658, -0.0008912512566894293, -0.04207662120461464, 0.003306115046143532, 0.014761269092559814, 0.015455290675163269, 0.009525956586003304, -0.06170940399169922, -0.034442443400621414, -0.01121610589325428, -0.038202859461307526, -0.06508851051330566, 0.046203210949897766, 0.029889101162552834, 0.05264023691415787, -0.06576861441135406, 0.030022000893950462, -0.05487577244639397, 0.05012110620737076, -0.06461909413337708, -0.05028076469898224, -0.053524959832429886, 0.0442437008023262, 0.03805868700146675, 0.07644056528806686, 0.03312664479017258, 0.13471753895282745, -0.1404101699590683, -0.0018144658533856273, 0.04708226025104523, -0.011971298605203629, 0.05118812248110771, -0.004903679713606834, -0.009092091582715511, -0.11780530214309692, -0.017182063311338425, 0.031105689704418182, -0.01832794025540352, -0.023502837866544724, 0.07967807352542877, 0.014112953096628189, 0.00902942381799221, -0.034404270350933075, -0.04186069965362549, -0.0861024484038353, -0.06165127828717232, 0.028152111917734146, 0.0057241907343268394, 0.08826401829719543, 0.03832187503576279, 0.02353748306632042, -0.07057500630617142, -0.0921926274895668, -0.031586747616529465, 0.07237935811281204, 0.07556574791669846, 0.043451953679323196, -0.02530953660607338, -0.001208315952681005, 0.004323855973780155, 0.052004970610141754, -0.15274788439273834, -0.11751604080200195, -0.020564353093504906, -0.011996455490589142, -0.07106717675924301, -0.017156127840280533, 0.011321675032377243, -0.097817063331604, 0.05511171370744705, 0.0037414070684462786, 0.1411328762769699, -0.0031853653490543365, 0.05859765410423279, -0.011366263031959534, -0.012542368844151497, 0.10345582664012909, 0.015260109677910805, -0.09777261316776276, 0.0020482605323195457, -0.07474380731582642, 0.009077470749616623, -0.06360998749732971, 0.12050037086009979, 0.07389912754297256, 0.06404728442430496, 0.021022165194153786, -0.01042565144598484, 0.05528665706515312, -0.04133427143096924, -0.004551210906356573, 0.06772580742835999, -0.0443032868206501, 0.0865992084145546, 0.05400324612855911, -0.07180635631084442, 0.017305387184023857, 0.035534825176000595, 0.009634409099817276, 0.015132246538996696, -0.02612847089767456, -0.0006996718002483249, -0.08560304343700409, 0.0276207122951746, 0.1309930831193924, -0.05793946236371994, 0.023002831265330315, -0.07085373252630234, 0.041754670441150665, 0.04244714230298996, -0.04622709006071091, -0.004532417748123407, 0.114433154463768, 0.06760327517986298, -0.003806160995736718, -0.18713662028312683, 0.042348649352788925, 0.011544174514710903, -0.034955061972141266, 0.03730132058262825, -0.04395243152976036, -0.05169837176799774, 0.043981000781059265, -0.02804514952003956, 0.05687769502401352, -0.009325538761913776, 0.07727236300706863, 0.11703570932149887, -0.029889224097132683, -0.006650928873568773, -0.08079829066991806, 0.003214523196220398, -0.022950664162635803, 0.10719003528356552, 0.12427632510662079, 0.04467720910906792, 0.027880214154720306, 0.03591032698750496, -0.038624707609415054, -0.010316048748791218, 0.09006381034851074, -0.09140805900096893, 0.015075478702783585, -0.024495216086506844, -0.03529471158981323, 0.0575338713824749, 0.031790152192115784, -0.005344295408576727, 0.093004509806633, 0.08421987295150757, 0.05245894938707352, 0.05648065730929375, -0.14796452224254608, -0.056830476969480515, 0.0861741155385971, -0.1076696366071701, 0.04779905080795288, -0.04289189726114273, 0.014012872241437435, -0.042199041694402695, -0.011752034537494183, 0.05165349319577217, 0.07931870967149734, -0.04573095589876175, -0.022237058728933334, 0.08853533118963242, 0.0027884964365512133, -0.014621765352785587, 0.003282196121290326, -0.026697061955928802, 0.05272761359810829, 0.04957468435168266, 0.027550451457500458, -0.13334521651268005, 0.07516228407621384, 0.05205795541405678, -0.014271005988121033, -0.011677266098558903, 0.05562279000878334, -0.08479372411966324, -0.026389699429273605, -0.059678081423044205, 0.05723925679922104, -0.06294691562652588, 0.07841027528047562, -0.0031668231822550297, -0.03541310131549835, -0.05849985033273697, -0.01346563920378685, -0.0560036227107048, 0.057796377688646317, 0.009198821149766445, -0.08270759880542755, -0.1462949514389038, -0.05428043007850647, -0.03510967642068863, 0.06412498652935028, 0.004284832626581192, -0.041474997997283936, 0.0434647873044014, -0.03730151802301407, -0.05820145830512047, 0.0022606998682022095, -0.03494827449321747, 0.039829518646001816, 0.03168255463242531, 0.09628061205148697, -0.019824761897325516, -0.07194958627223969, 0.07005877792835236, 0.08880449831485748, 0.004313259851187468, -0.06286422908306122, -0.09789959341287613, -0.10868647694587708, 0.07789096236228943, -0.008805589750409126, -0.03134032338857651, 0.01022589486092329, 0.0040175700560212135, -0.1251339167356491, 0.07353425025939941], "\u6211\u7684\u81ea\u5b9a\u4e49\u56fe\u50cf\u6570\u636e\u96c6\u8f6c\u4e3amindrecord\u683c\u5f0f\u65f6\uff0c\u6211\u7684\u6570\u636e\u662f`numpy.ndarray`\u683c\u5f0f\u7684\uff0c\u4e14`shape`\u4e3a[4\uff0c100\uff0c132\uff0c3]\uff0c\u8fd9\u4e2a`shape`\u7684\u542b\u4e49\u662f\u56db\u5e45\u4e09\u901a\u9053\u7684\u5e27\uff0c\u4e14\u6bcf\u4e2a\u503c\u90fd\u57280~255\u3002\u53ef\u662f\u5f53\u6211\u67e5\u770b\u8f6c\u5316\u6210mindrecord\u7684\u683c\u5f0f\u7684\u6570\u636e\u65f6\uff0c\u53d1\u73b0\u662f`[19800]`\u7684`shape`\uff0c\u6211\u539f\u6570\u636e\u7684\u7ef4\u5ea6\u5168\u90e8\u5c55\u5f00\u6709`[158400]`\uff0c\u8bf7\u95ee\u8fd9\u662f\u4e3a\u4ec0\u4e48\uff1f": [-0.06005651876330376, 0.06631919741630554, 0.06293737888336182, 0.021202921867370605, -0.11555033177137375, -0.01149792317301035, -0.027368851006031036, 0.04238126426935196, -0.0043246448040008545, 0.0060493191704154015, 0.04838677868247032, 0.014982003718614578, 0.013510385528206825, 0.007415236905217171, -0.055326227098703384, 0.06928859651088715, 0.11307279020547867, 0.02808021381497383, -0.07507812976837158, 0.052326612174510956, -0.021031884476542473, 0.010254058986902237, 0.05773528292775154, -0.014905298128724098, 0.00659962510690093, 0.0932655930519104, -0.013212839141488075, 0.01049238070845604, 0.056338921189308167, 0.01495928131043911, 0.0538465678691864, 0.012782083824276924, -0.07427869737148285, -0.047832638025283813, -0.04203033074736595, -0.05722232162952423, -0.045351386070251465, 0.04864560812711716, -0.028158683329820633, -0.0034064704086631536, 0.051796525716781616, 0.049997828900814056, -0.05974644422531128, 0.1384679079055786, -0.038806233555078506, -0.0693468376994133, -0.12021735310554504, -0.011807521805167198, 0.020974233746528625, -0.02220461145043373, -0.11477991938591003, 0.07779186964035034, 0.01583518460392952, -0.011662926524877548, -0.07153960317373276, -0.0032489995937794447, -0.005147985182702541, -0.01722336933016777, 0.043079085648059845, 0.007595649920403957, 0.0189015194773674, 0.019851842895150185, -0.08571670204401016, -0.054179348051548004, -0.07270249724388123, -0.011120029725134373, -0.015107931569218636, -0.08071815222501755, -0.05364665389060974, -0.01367767620831728, -0.08274225890636444, -0.0141223706305027, 0.009692227467894554, 0.0358542762696743, 0.04089838266372681, 0.06803779304027557, -0.03400808945298195, -0.010344300419092178, -0.034190643578767776, 0.021000539883971214, 0.016172373667359352, 0.06781987100839615, 0.04116610437631607, -0.055191632360219955, -0.08566287159919739, -0.06849975883960724, -0.07610882818698883, 0.05878204107284546, -0.03084612637758255, 0.06676571071147919, 0.06478986144065857, -0.1034049391746521, -0.15444359183311462, 0.06748932600021362, 0.06992046535015106, -0.0517001636326313, -0.055604755878448486, 0.006841409485787153, -0.11911654472351074, 0.001923420000821352, 0.02942914143204689, 0.01705605909228325, -0.02681412361562252, 0.06943204998970032, -0.0009561699698679149, -0.059696558862924576, 0.05232516676187515, 0.06666739284992218, -0.011967834085226059, -0.02855917438864708, 0.048653773963451385, -0.014498068951070309, 0.020910274237394333, 0.05645104497671127, -0.05749940127134323, 0.04832363501191139, -0.046262476593256, -0.05372357368469238, -0.04994265362620354, 0.11887950450181961, 0.09636489301919937, -0.03525695204734802, 0.04306375980377197, 0.04160834848880768, 0.0025120230857282877, 0.019436651840806007, 0.0627344623208046, -0.11164537072181702, -0.09031285345554352, -0.05583657696843147, 0.16110126674175262, -0.11438420414924622, 0.04579785466194153, -0.13580581545829773, -0.06163287162780762, 0.08886929601430893, -0.009874909184873104, -0.012083952315151691, -0.04168969392776489, 0.12690529227256775, 0.005955320317298174, -0.07704047113656998, 0.11670513451099396, -0.05962277948856354, 0.1271262764930725, 0.03805990144610405, -0.1214081197977066, -0.03717782348394394, -0.005294067785143852, -0.08307328820228577, 0.1140332818031311, 0.02295447327196598, -0.03709467872977257, 0.10326987504959106, 0.002319145482033491, 0.052281253039836884, -0.012589601799845695, -0.013988954946398735, -0.033748023211956024, -0.037062183022499084, -0.06404836475849152, -0.011722256429493427, 0.08616819977760315, -0.01704252138733864, -0.012985065579414368, -0.015293048694729805, -0.00018322467803955078, 0.03407628461718559, -0.0392792634665966, -0.06213819608092308, -0.036250654608011246, -0.003038455732166767, -0.013276511803269386, -0.01574523374438286, 0.047944001853466034, -0.011960828676819801, 0.047500137239694595, -0.08661011606454849, -0.0234342273324728, -0.01811998523771763, 0.07225176692008972, -0.056761402636766434, -0.012509318999946117, -0.09511739760637283, 0.015908418223261833, 0.059298016130924225, 0.0673258900642395, -0.00048302763025276363, 0.1389864981174469, -0.11370443552732468, -0.008758259937167168, 0.08404938876628876, -0.02334534376859665, 0.03580465167760849, 0.025374578312039375, -0.05197636038064957, -0.10757005214691162, -0.005611863918602467, 0.01403656043112278, -0.019448602572083473, 0.01007753424346447, 0.057015158236026764, -0.000856444938108325, 0.028309118002653122, 0.0036718512419611216, -0.04458862543106079, -0.07055780291557312, -0.08624619245529175, -0.008236685767769814, -0.004996720235794783, 0.08805921673774719, 0.06192908063530922, -0.011742662638425827, -0.04887053370475769, -0.08912964165210724, -0.024877600371837616, 0.11743354797363281, 0.07157029211521149, 0.03816544637084007, -0.050704631954431534, 0.0316447950899601, 0.01348718348890543, 0.04997686669230461, -0.07327405363321304, -0.11741794645786285, -0.028005216270685196, -0.035267122089862823, -0.08910264819860458, 0.014232095330953598, 0.046079836785793304, -0.0700869932770729, 0.04575984925031662, -0.028300611302256584, 0.15592002868652344, 0.026992937549948692, 0.0764465481042862, -0.010647129267454147, 0.03409579396247864, 0.06618291139602661, 0.004384172149002552, -0.09907809644937515, 0.06300175935029984, -0.05330204218626022, -0.005109265446662903, -0.01267607044428587, 0.1257653683423996, 0.0563591867685318, 0.022847125306725502, 2.7354806661605835e-05, -0.05763819441199303, 0.07037021964788437, 0.005878617521375418, -0.06358974426984787, 0.07957462221384048, -0.0645180344581604, 0.09349764883518219, 0.08737458288669586, -0.04185165837407112, 0.030328063294291496, 0.04554017633199692, 0.0278947576880455, 0.008956882171332836, -0.026884904131293297, 0.02341800555586815, -0.0556613989174366, 0.002694094553589821, 0.0726335197687149, -0.05554765462875366, 0.004553286358714104, -0.07095519453287125, 0.105764240026474, 0.0050152880139648914, -0.08720627427101135, 0.0012503277976065874, 0.12582480907440186, 0.05447914078831673, 7.588695734739304e-05, -0.21375881135463715, 0.049347586929798126, 0.01265164278447628, -0.05252090469002724, 0.05520365387201309, -0.026262743398547173, -0.061454400420188904, 0.08832637965679169, -0.022458087652921677, 0.06903757154941559, -0.016105635091662407, 0.05576896667480469, 0.09194663166999817, -0.02560703456401825, 0.00016317516565322876, -0.08811377733945847, -0.0032509935554116964, 0.0019889783579856157, 0.11321257799863815, 0.10540300607681274, 0.06499063968658447, 0.04399152845144272, -0.014631747268140316, 0.030607920140028, -0.04062877967953682, 0.0582171231508255, -0.10009077191352844, -0.021425027400255203, -0.0021390081383287907, -0.010379642248153687, 0.06789261102676392, -0.02825530432164669, 0.0008230421808548272, 0.08549158275127411, 0.045672424137592316, 0.07778283208608627, 0.03911224380135536, -0.08608757704496384, -0.043846238404512405, 0.08097316324710846, -0.08455553650856018, 0.07662080973386765, -0.0706770196557045, -0.009784742258489132, -0.048367977142333984, -0.00880927499383688, 0.08253222703933716, 0.053515851497650146, -0.005022252444177866, 0.006147078238427639, 0.08864370733499527, 0.02312551625072956, 0.002739266026765108, 0.02568558044731617, -0.05029568821191788, 0.06319987773895264, 0.04197300970554352, 0.009344037622213364, -0.1137944757938385, 0.09979312121868134, 0.05061881244182587, -0.024745600298047066, 0.004785430617630482, 0.06233248487114906, -0.10768415033817291, -0.0008401794475503266, -0.026450319215655327, 0.08026426285505295, -0.10810916125774384, 0.07249599695205688, -0.0526646226644516, -0.02780664712190628, -0.011445428244769573, 0.04175354912877083, -0.04814901947975159, 0.08493919670581818, 0.0737927109003067, -0.07893866300582886, -0.1297263652086258, -0.051721490919589996, -0.010507182218134403, 0.042854055762290955, -0.03990289568901062, -0.026413019746541977, -0.006449142470955849, -0.018993157893419266, -0.08257641643285751, 0.05952218174934387, 0.0018471411895006895, 0.061123646795749664, 0.0267783273011446, 0.09183940291404724, -0.0025472231209278107, -0.08319135010242462, 0.04006560146808624, 0.07413037121295929, 0.04406476765871048, -0.049790602177381516, -0.07145305722951889, -0.13030560314655304, 0.08436352014541626, -0.04629238694906235, -0.06563550978899002, 0.03416408598423004, 0.02942868135869503, -0.08425459265708923, 0.03504769876599312], "\u60f3\u8981\u4fdd\u5b58\u751f\u6210\u7684\u56fe\u7247\uff0c\u4ee3\u7801\u8fd0\u884c\u5b8c\u6bd5\u4ee5\u540e\u5728\u76f8\u5e94\u76ee\u5f55\u627e\u4e0d\u5230\u56fe\u7247\u3002\u76f8\u4f3c\u7684\uff0c\u5728JupyterLab\u4e2d\u751f\u6210\u6570\u636e\u96c6\u7528\u4e8e\u8bad\u7ec3\uff0c\u8bad\u7ec3\u65f6\u53ef\u4ee5\u5728\u76f8\u5e94\u8def\u5f84\u8bfb\u53d6\u5230\u6570\u636e\uff0c\u4f46\u662f\u81ea\u5df1\u5374\u65e0\u6cd5\u5728\u8def\u5f84\u4e2d\u627e\u5230\u56fe\u7247\u6216\u6570\u636e\u96c6\uff1f": [-0.012167940847575665, 0.06977999210357666, 0.0389813669025898, 0.055134367197752, -0.07275916635990143, -0.057253435254096985, -0.01977040059864521, 0.05609503015875816, 0.01621008850634098, -0.023537341505289078, 0.017435753718018532, 0.014722738415002823, 0.01564788445830345, -0.027523599565029144, -0.020659733563661575, 0.086033895611763, 0.1029655933380127, 0.03150082752108574, -0.054324742406606674, 0.03656219318509102, -0.01332424208521843, 0.0021142601035535336, 0.05711965262889862, -0.018140871077775955, 0.0305342935025692, 0.07281949371099472, -0.01331524457782507, 0.006440732162445784, -0.03481466323137283, 0.08881942927837372, 0.05703263357281685, 0.04137333482503891, -0.035533323884010315, 0.01508224569261074, -0.09495044499635696, -0.06999005377292633, 0.01015502493828535, 0.13225692510604858, -0.05915248394012451, -0.023979976773262024, 0.07961180061101913, 0.006135236006230116, -0.03855101019144058, 0.1353442668914795, -0.02335365116596222, 0.016107499599456787, -0.14764530956745148, -0.014188221655786037, 0.027893664315342903, 0.03535451367497444, -0.06597992777824402, 0.07904316484928131, 0.03569994121789932, -0.0035383515059947968, -0.013055611401796341, 0.04014400392770767, 0.043311577290296555, 0.015105931088328362, 0.06340587139129639, 0.053947411477565765, 0.05441448092460632, -0.036903999745845795, -0.057681240141391754, 0.03509911149740219, -0.12697741389274597, 0.024332331493496895, -0.07139458507299423, -0.05886751413345337, 0.012849218212068081, 0.018009765073657036, -0.018861033022403717, -0.01778569631278515, -0.033042021095752716, 0.024340610951185226, 0.09695616364479065, 0.03405347466468811, -0.04799016937613487, -0.051698047667741776, -0.07045634835958481, 0.08401332795619965, 0.0316021628677845, 0.047370314598083496, 0.03403066471219063, -0.08754514902830124, -0.0702076405286789, -0.008340589702129364, -0.05015767738223076, 0.027983052656054497, -0.07103392481803894, 0.06070245802402496, 0.04929116368293762, -0.003937246277928352, -0.1537810117006302, 0.009920237585902214, 0.06156983971595764, -0.04613799974322319, -0.08223070949316025, -0.045195020735263824, -0.0992749035358429, -0.015528390184044838, 0.0687752515077591, 0.009699170477688313, 0.024877268821001053, 0.021120794117450714, 0.025402214378118515, -0.06679590791463852, 0.027032269164919853, 0.013892440125346184, -0.028369417414069176, 0.061045411974191666, 0.08046931773424149, 0.036427244544029236, 0.021114958450198174, 0.033680494874715805, 0.02430599182844162, 0.010198516771197319, -0.036950740963220596, -0.05257135257124901, -0.08609992265701294, 0.040954701602458954, 0.08146174997091293, -0.04531493037939072, 0.016443990170955658, 0.0771610364317894, -0.0006701814709231257, 0.017657311633229256, 0.07888836413621902, -0.12713827192783356, -0.045470625162124634, -0.046225406229496, 0.20258775353431702, -0.049107447266578674, 0.058860354125499725, -0.10986962914466858, -0.029080834239721298, 0.07224398851394653, -0.02364661730825901, -0.014931049197912216, 0.02996041253209114, 0.12155608832836151, 0.05366015434265137, -0.14032986760139465, 0.07206761837005615, -0.004303369205445051, 0.12248174101114273, 0.015658045187592506, -0.08463580161333084, -0.09128866344690323, -0.03900419920682907, -0.04371476173400879, 0.06421124935150146, -0.028269799426198006, -0.036692000925540924, 0.07223707437515259, 0.05393061414361, 0.06266067922115326, 0.04281477630138397, -0.021858327090740204, -0.03022107668220997, -0.04948979616165161, -0.06239774450659752, -0.04225143790245056, 0.043413568288087845, -0.04189149662852287, -0.01933341845870018, 0.03624336048960686, -0.013308372348546982, -0.04662647470831871, 0.011278670281171799, -0.012277469038963318, -0.03770241141319275, -0.002499526832252741, -0.06557119637727737, -0.05337399244308472, 0.05544836074113846, 0.04099532216787338, 0.06510969996452332, -0.040895331650972366, 0.03198382630944252, -0.02797546237707138, 0.06716139614582062, -0.03842242434620857, -0.04744540527462959, -0.03624682128429413, 0.013539008796215057, 0.07179033756256104, 0.06746195256710052, 0.03469959646463394, 0.15522833168506622, -0.10158887505531311, -0.015869056805968285, 0.06470118463039398, 0.022658074274659157, 0.08364179730415344, -0.003628580830991268, -0.014504712074995041, -0.08701323717832565, 0.002603140426799655, 0.04095717519521713, -0.051031578332185745, -0.0333540104329586, 0.09190835058689117, 0.03491269052028656, -0.022829027846455574, -0.05286374315619469, -0.028985876590013504, -0.07450069487094879, -0.09190830588340759, 0.002430071122944355, 0.03624214604496956, 0.06788039207458496, 0.028621822595596313, -0.07375095784664154, -0.03379252925515175, -0.08776147663593292, -0.024025099352002144, 0.12874461710453033, 0.08504368364810944, 0.08590087294578552, -0.05107124149799347, 0.013327210210263729, -0.012726184912025928, 0.03165636956691742, -0.09619078040122986, -0.10981909930706024, -0.03399045020341873, -0.005380123853683472, -0.13396938145160675, -0.024457739666104317, 0.0244133323431015, -0.029239844530820847, 0.038618430495262146, 0.011370998807251453, 0.14858922362327576, 0.014992360025644302, 0.06559987366199493, -0.043415091931819916, -0.04278517886996269, 0.05540161579847336, 0.027536988258361816, -0.12347469478845596, 0.08295854926109314, -0.10289713740348816, -0.06925339251756668, -0.046866822987794876, 0.08573009073734283, 0.10346628725528717, 0.04657399654388428, 0.010162798687815666, -0.003891090862452984, 0.03962426632642746, -0.018629416823387146, -0.021616099402308464, 0.03065473772585392, -0.013773977756500244, 0.09004233032464981, 0.07302077859640121, -0.04710569605231285, 0.03551922366023064, 0.01823360286653042, -0.029048997908830643, 0.011689149774610996, -0.03989512473344803, 0.004965757951140404, -0.04218382388353348, -0.03160678222775459, 0.09465505927801132, -0.04762665182352066, 0.08020617067813873, -0.069233238697052, 0.03805551305413246, 0.04735823720693588, 0.037615448236465454, -0.004658184014260769, 0.1526065170764923, 0.07212948799133301, -0.03732360899448395, -0.08129387348890305, 0.011083831079304218, -0.01768162101507187, -0.055007562041282654, 0.06685295701026917, -0.02198793552815914, -0.03727344423532486, 0.07122958451509476, -0.02634626440703869, 0.06644328683614731, 0.006794686894863844, 0.035057127475738525, 0.10501326620578766, 0.02513224259018898, -0.03019026853144169, -0.03432103991508484, 0.0011612535454332829, -0.05215715989470482, 0.03263579308986664, 0.05526068061590195, 0.04224162548780441, 0.05034568905830383, 0.040936410427093506, -0.010913228616118431, -0.03650595620274544, 0.09627211093902588, -0.05226616933941841, -0.001578009338118136, -0.032622285187244415, -0.04283687099814415, -0.00171897211112082, -0.001423167996108532, -0.0023785934317857027, 0.09365346282720566, 0.08436140418052673, 0.05073704943060875, 0.03720279410481453, -0.07508733868598938, -0.04009435698390007, -0.00017581507563591003, -0.08951813727617264, 0.049937471747398376, -0.04367528483271599, 0.06763212382793427, -0.11958727240562439, 0.018560804426670074, 0.06741935759782791, 0.04291388392448425, -0.010373638942837715, 0.053717240691185, 0.056901246309280396, 4.4869258999824524e-05, 0.0008564514573663473, 0.0064447373151779175, -0.034615274518728256, 0.05798802897334099, 0.1152343675494194, 0.05432555824518204, -0.11381147056818008, 0.041609156876802444, 0.06501269340515137, 0.04094621166586876, -0.03314867615699768, 0.056967463344335556, -0.07630424201488495, 0.029125798493623734, -0.05543530732393265, 0.04155061021447182, -0.07750324159860611, 0.06463093310594559, 0.0021724991966038942, -0.014069024473428726, -0.04635597765445709, -0.01609928347170353, -0.06372256577014923, 0.04876263439655304, -0.007969025522470474, -0.023105720058083534, -0.09625108540058136, -0.1297937035560608, -0.01595090702176094, 0.07634345442056656, -0.015244769863784313, 0.037924978882074356, -0.023788560181856155, -0.03859816491603851, -0.0930236428976059, 0.016613749787211418, -0.06336941570043564, 0.056137364357709885, 0.0008580998983234167, 0.07747058570384979, 0.04068927466869354, -0.08889675885438919, 0.08895385265350342, 0.0998934656381607, 0.0541057288646698, -0.054622333496809006, -0.03060387447476387, -0.07314720004796982, 0.013127574697136879, -0.01025872677564621, -0.045448947697877884, 0.08752932399511337, 0.021960696205496788, -0.09425021708011627, -0.02771572954952717], "MindSpore\u4e2d`model.train`\u7684`dataset_sink_mode`\u53c2\u6570\u8be5\u5982\u4f55\u7406\u89e3\uff1f": [-0.13429556787014008, -0.00989669468253851, -0.038941387087106705, 0.08454807102680206, -0.04009028151631355, -0.07642114162445068, -0.01930128037929535, 0.027300210669636726, 0.043832406401634216, 0.04196460545063019, -0.002502833027392626, 0.016669532284140587, -0.06867947429418564, -0.008479834534227848, -0.006827937439084053, 0.07145441323518753, 0.10559698939323425, -0.028863728046417236, -0.07666296511888504, 0.066492460668087, -0.007567468099296093, -0.009672481566667557, 0.008703701198101044, -0.014613260515034199, 0.03087719902396202, 0.1388484239578247, 0.051950275897979736, 0.015454058535397053, 0.012232654727995396, 0.005490210838615894, 0.08901657164096832, 0.054162006825208664, -0.02928372658789158, 0.0767885074019432, -0.019116006791591644, -0.07263948023319244, -0.091774582862854, 0.03640396520495415, -0.03390200808644295, -0.037361688911914825, 0.0716158077120781, 0.05149627849459648, -0.05474085360765457, 0.043056003749370575, -0.12022222578525543, -0.043741028755903244, -0.09642724692821503, -0.0499093234539032, -0.001465357723645866, 0.021195080131292343, -0.004900213330984116, 0.02121255360543728, -0.008163020946085453, -0.037722501903772354, -0.06767754256725311, -0.026913166046142578, -0.038755107671022415, -0.07704899460077286, 0.032090313732624054, -0.11332331597805023, 0.035488735884428024, 0.06695142388343811, -0.079334557056427, -0.08772674202919006, -0.12575195729732513, 0.005264010280370712, -0.07680359482765198, -0.08333107084035873, -0.09063916653394699, 0.0426618792116642, -0.07726163417100906, 0.08168558031320572, 0.05912791192531586, 0.06505119055509567, 0.06576251238584518, 0.08625513315200806, -0.02251703292131424, 0.01775486022233963, -0.027136435732245445, 0.011739208362996578, 0.007504244334995747, 0.10466848313808441, 0.04992232471704483, -0.06816759705543518, -0.03128460422158241, -0.003642408875748515, -0.07680321484804153, 0.04022408649325371, -0.011448810808360577, 0.03890126571059227, 0.03381694108247757, -0.023847319185733795, -0.17028333246707916, 0.04423099011182785, 0.07312586158514023, 0.03630385175347328, -0.042759619653224945, -0.07451149821281433, -0.18235528469085693, -0.08237418532371521, 0.03824767470359802, 0.010757757350802422, -0.042696513235569, 0.05312221497297287, -0.021522346884012222, -0.10132419317960739, -0.11365465819835663, 0.11428462713956833, 0.06810134649276733, -0.06828910112380981, 0.0902874618768692, -0.007906905375421047, 0.06786827743053436, 0.035823989659547806, -0.02859475277364254, -0.015821684151887894, -0.06055355444550514, 0.02164354734122753, -0.024111514911055565, 0.08705159276723862, 0.0815487802028656, -0.09449945390224457, 0.01590920425951481, 0.058557383716106415, 0.005376421380788088, -0.09292539209127426, 0.05086680129170418, -0.16868546605110168, -0.06260618567466736, -0.03734619542956352, 0.14779236912727356, -0.04304952546954155, 0.03673263639211655, -0.11123450100421906, -0.19428223371505737, 0.013356228359043598, 0.04080674797296524, 0.048992935568094254, -0.06537305563688278, 0.11434625834226608, 0.02566717378795147, -0.046983081847429276, 0.03970075398683548, -0.09876266121864319, 0.07559151202440262, -0.0213155634701252, -0.09105248749256134, -0.22677189111709595, -0.006781474221497774, -0.05943615734577179, 0.06587251275777817, -0.12198259681463242, -0.03031907230615616, 0.07915503531694412, -0.040093690156936646, 0.05337032675743103, 0.06141168251633644, -0.03450362756848335, 0.06254151463508606, -0.0354434959590435, -0.04558661952614784, -0.00999881885945797, -0.010397318750619888, -0.01532360166311264, -0.09188370406627655, 0.0801926925778389, 0.021660588681697845, 0.060591813176870346, -0.06051051616668701, -0.0711001604795456, 0.03460143133997917, 0.0015465539181604981, -0.009406475350260735, -0.10880963504314423, 0.04147234186530113, 0.001689898082986474, 0.05449948087334633, -0.07914279401302338, -0.006785033270716667, -0.008920984342694283, 0.01791216991841793, -0.16957855224609375, -0.10852072387933731, -0.14553329348564148, 0.11366014182567596, 0.05016695335507393, 0.0626039206981659, 0.017040088772773743, 0.1460651010274887, -0.1507485806941986, 0.0013128940481692553, 0.11722196638584137, -0.0029858113266527653, 0.05855492502450943, 0.05443622171878815, 0.002709978260099888, -0.0696655809879303, -0.022590257227420807, 0.04730360954999924, -0.04664400592446327, 0.01601174660027027, -0.007167313247919083, 0.07805314660072327, 0.051440756767988205, -0.04540141299366951, -0.03897653892636299, -0.11788641661405563, -0.11564447730779648, -0.030415114015340805, 0.013533021323382854, 0.051440972834825516, 0.09233372658491135, 0.023573243990540504, -0.08724293112754822, -0.12852843105793, -0.026344629004597664, 0.033651962876319885, 0.013348550535738468, 0.0420319028198719, -0.04392874240875244, -0.02350565977394581, 0.01200951635837555, -0.05737628787755966, -0.1478220820426941, -0.0038144364953041077, -0.013829286210238934, 0.002515570493414998, -0.06830228865146637, -0.010175482369959354, 0.013758605346083641, -0.050818976014852524, 0.04502139240503311, 0.03441091999411583, 0.06515003740787506, -0.03352342173457146, 0.07939918339252472, -0.031539611518383026, 0.03014347329735756, -0.01899172179400921, -0.014702520333230495, -0.10369545966386795, 0.08188505470752716, -0.05413800850510597, 0.042960479855537415, -0.06212019920349121, 0.1790894865989685, 0.08214307576417923, -0.0049498979933559895, 0.13638223707675934, -0.08258678019046783, 0.04394617676734924, -0.041522566229104996, 0.00327662518247962, 0.04361410066485405, -0.059851013123989105, 0.05947919934988022, 0.10800039768218994, -0.060245875269174576, -0.05019938945770264, 0.024815650656819344, -0.013760067522525787, 0.037711985409259796, -0.042901940643787384, -0.0072703235782682896, -0.06002909317612648, -0.060176800936460495, 0.09749048203229904, -0.009492209181189537, 0.051838334649801254, -0.08599545806646347, 0.006013382226228714, 0.027689287438988686, -0.04019474238157272, 0.0968610942363739, 0.07561109960079193, 0.0788661539554596, 0.0919080525636673, -0.19828081130981445, 0.04603882506489754, -0.023689260706305504, -0.018476372584700584, 0.05105941742658615, -0.043910376727581024, -0.05645877867937088, 0.07434381544589996, -0.09432502090930939, 0.024077096953988075, 0.03697320818901062, 0.036800310015678406, 0.09343786537647247, -0.03623715415596962, -0.027597423642873764, -0.05397158861160278, -0.06973559409379959, -0.026078416034579277, 0.029821190983057022, -0.002006993629038334, 0.0724610835313797, 0.0901748538017273, 0.01154833473265171, 0.037027157843112946, 0.004445288795977831, 0.055436842143535614, -0.0027288130950182676, -0.013450401835143566, 0.02383200079202652, -0.05464673787355423, 0.015590768307447433, 0.0003456324338912964, -0.008630815893411636, 0.07707119733095169, 0.11886411160230637, 0.04693464934825897, 0.14987771213054657, -0.09639573842287064, -0.031076092272996902, 0.03739660978317261, -0.12046317756175995, 0.011832489632070065, 0.024833213537931442, -0.023981565609574318, -0.058183830231428146, -0.040780965238809586, 0.051453907042741776, 0.08027148246765137, -0.053216252475976944, 0.06650043278932571, 0.06942729651927948, 0.08162196725606918, -0.018114393576979637, 0.020505525171756744, -0.06523144990205765, 0.12895765900611877, 0.07722090929746628, -0.037758491933345795, -0.15315169095993042, 0.07127943634986877, -0.014047794044017792, 0.020393934100866318, 0.024104224517941475, 0.0037573697045445442, -0.06917575001716614, 0.015637777745723724, 0.017849363386631012, 0.10539919137954712, -0.0631670132279396, 0.14393256604671478, -0.04028782993555069, -0.07223448157310486, -0.004878683481365442, 0.006990518420934677, -0.028593774884939194, 0.01922568865120411, -0.07651886343955994, -0.11359420418739319, -0.15060356259346008, -0.034104395657777786, 0.038353946059942245, 0.05539075285196304, -0.03800021484494209, -0.13045303523540497, -0.0420541986823082, -0.06115114316344261, -0.11601270735263824, 0.05485391616821289, -0.06220259517431259, 0.014556951820850372, 0.00357497064396739, 0.12380430102348328, -0.026567837223410606, -0.07508017122745514, 0.10399705171585083, 0.12837937474250793, 0.09023653715848923, -0.005864288657903671, -0.13534975051879883, -0.06065616011619568, 0.03026404231786728, -0.00911786500364542, -0.04203622043132782, 0.01175390463322401, -0.02013656497001648, -0.06759140640497208, 0.04219108819961548], "MindSpore\u80fd\u5426\u652f\u6301\u6309\u6279\u6b21\u5bf9\u4e0d\u540c\u5c3a\u5bf8\u7684\u56fe\u7247\u6570\u636e\u8fdb\u884c\u8bad\u7ec3\uff1f": [-0.00948520377278328, 0.08639589697122574, 0.03481816500425339, -0.0019391741370782256, -0.05531936138868332, -0.025440767407417297, -0.05238214507699013, 0.07381287217140198, 0.007912899367511272, 0.03175005316734314, 0.003837377531453967, 0.01539321057498455, 0.04188074916601181, 0.014982566237449646, -0.029306745156645775, 0.08909901976585388, 0.10488579422235489, 0.08053907752037048, -0.07022898644208908, 0.02122947759926319, -0.026528414338827133, -0.03993440419435501, 0.06733448803424835, 0.01630290225148201, 0.01837492361664772, 0.13533301651477814, 0.015473873354494572, 0.0013130113948136568, -0.01711392030119896, 0.10052347183227539, 0.09378094971179962, 0.01941557228565216, -0.09535586088895798, 0.026700085029006004, -0.02953859604895115, -0.03928060457110405, -0.04894997552037239, 0.07044187933206558, -0.028023261576890945, -0.033439286053180695, 0.07922127842903137, 0.01569119282066822, -0.036255840212106705, 0.11522999405860901, -0.012170071713626385, -0.005600380711257458, -0.18441730737686157, 0.049432046711444855, 0.051656220108270645, 0.012403500266373158, -0.08153222501277924, 0.05426058918237686, 0.0443028062582016, 0.005871762987226248, -0.00019749999046325684, -0.00044013370643369853, -0.0020101377740502357, 0.051195178180933, 0.029896974563598633, -0.06443918496370316, 0.04303176701068878, 0.0224904902279377, -0.047426581382751465, -0.05755480378866196, -0.11713068932294846, 0.017842551693320274, -0.07061415165662766, -0.14393551647663116, -0.00447484478354454, 0.03463973477482796, -0.03272766247391701, -0.032722849398851395, -0.04386027157306671, 0.041830457746982574, 0.10664020478725433, 0.0833621621131897, -0.03836590051651001, -0.0038414911832660437, -0.08361134678125381, -0.0074420650489628315, 0.051540568470954895, 0.0763108879327774, 0.021872324869036674, -0.06783271580934525, -0.022243835031986237, -0.027412518858909607, -0.0285990908741951, 0.10212686657905579, -0.04660862311720848, 0.06902135163545609, -0.005687527824193239, -0.011173737235367298, -0.13684579730033875, 0.05758735537528992, 0.08101964741945267, -0.020654888823628426, -0.019077563658356667, -0.08746517449617386, -0.13271990418434143, -0.009769899770617485, -0.03185472637414932, -0.007473694626241922, -0.02074422687292099, 0.08603419363498688, -0.0003223344683647156, -0.0686182752251625, 0.05691561847925186, 0.06033845990896225, 0.06344792991876602, 0.04150692746043205, 0.07244446128606796, 0.05281667038798332, 0.10825397074222565, -0.007399063557386398, 0.0017300957115367055, -0.008925745263695717, -0.08860017359256744, -0.00847526453435421, -0.05787893757224083, 0.10867881774902344, 0.10217580944299698, -0.0018290502484887838, 0.012830287218093872, 0.03127795830368996, 0.040111083537340164, -0.0166454054415226, 0.035923443734645844, -0.12637323141098022, -0.1108359545469284, -0.06977764517068863, 0.19680792093276978, -0.0645066350698471, 0.054008521139621735, -0.13053977489471436, -0.07139755040407181, 0.07083297520875931, 0.04082128778100014, 0.013215063139796257, -0.010321753099560738, 0.12874360382556915, 0.03328385204076767, -0.16366997361183167, 0.0672602578997612, -0.03201396018266678, 0.12294651567935944, 0.024659208953380585, -0.06580869853496552, -0.07722990214824677, -0.03728416562080383, -0.06748868525028229, 0.05706770718097687, 0.01951148547232151, -0.07772549241781235, 0.08767455071210861, -0.045741401612758636, 0.04272007942199707, 0.04298168420791626, -0.020841319113969803, -0.02723623625934124, -0.03342796117067337, -0.046824026852846146, -0.06534768640995026, 0.0358009934425354, -0.018891045823693275, -0.036138616502285004, 0.014472508803009987, -0.022731151431798935, -0.00642316322773695, -0.028956957161426544, -0.011907756328582764, -0.0006384196458384395, -0.009757940657436848, -0.048969369381666183, -0.01031439658254385, 0.04785201698541641, -0.007438105531036854, 0.05455809459090233, -0.06796881556510925, 0.004484680946916342, -0.0812712013721466, 0.07932078838348389, -0.05607486888766289, -0.021228104829788208, -0.008806757628917694, 0.09834156930446625, -0.0023893658071756363, 0.07707726955413818, -0.009090526029467583, 0.1536954790353775, -0.12861678004264832, -0.0013053559232503176, 0.04128481075167656, -8.267955854535103e-05, 0.07743039727210999, -0.0027528111822903156, 0.03707652911543846, -0.0881841778755188, -0.015345346182584763, 0.03631933033466339, -0.013651303015649319, -0.05230377987027168, 0.032390136271715164, -0.0011989384656772017, -0.007525382097810507, -0.007991296239197254, -0.009850388392806053, -0.09424575418233871, -0.06498564779758453, 0.027930261567234993, -0.014492827467620373, 0.12612563371658325, 0.003948202356696129, -0.026995988562703133, -0.08162976801395416, -0.10124439746141434, -0.02370389923453331, 0.1064506322145462, 0.08833779394626617, 0.04171307012438774, -0.04310185834765434, 0.0071134185418486595, 0.027828235179185867, 0.021679412573575974, -0.1283712536096573, -0.13337410986423492, -0.012781183235347271, -0.03440847992897034, -0.13916106522083282, 0.0026747744996100664, 0.059710681438446045, -0.04773532226681709, 0.08632084727287292, -0.011540074832737446, 0.11849771440029144, -0.021124787628650665, 0.09145217388868332, 0.004724303260445595, -0.031128618866205215, 0.012122717685997486, 0.054723575711250305, -0.10283516347408295, 0.04072399064898491, -0.10555285215377808, -0.024342935532331467, -0.0699826255440712, 0.1304449737071991, 0.08960471302270889, 0.08601914346218109, -0.0016556460177525878, -0.03328803926706314, 0.07941524684429169, -0.008356223814189434, 0.010947911068797112, 0.04825492948293686, -0.01602843962609768, 0.06505589187145233, 0.048708345741033554, -0.032195378094911575, 0.0047737834975123405, 0.009325260296463966, -0.018723182380199432, 0.0018730458104982972, -0.020755711942911148, 0.002498841378837824, -0.041336290538311005, 0.014971284195780754, 0.09719230234622955, -0.009320939891040325, 0.020464925095438957, -0.09447106719017029, 0.03234776109457016, 0.05139172077178955, -0.06235942989587784, 0.045990344136953354, 0.11568477004766464, 0.1025361642241478, 0.010742459446191788, -0.13093316555023193, 0.056988805532455444, 0.05533718317747116, -0.01849137805402279, 0.023353993892669678, -0.0345807708799839, 0.011794348247349262, 0.044655703008174896, 0.0025758538395166397, 0.06097264587879181, 0.04104802384972572, 0.09635767340660095, 0.11148181557655334, -0.04970131069421768, 0.004339899867773056, -0.07974281162023544, 0.012341964058578014, -0.02436315082013607, 0.04207981005311012, 0.07875367254018784, 0.01681319996714592, 0.059452567249536514, 0.06449742615222931, -0.032163605093955994, -0.03500935435295105, 0.14335301518440247, -0.07575995475053787, -0.017618419602513313, 0.03382145240902901, -0.06721043586730957, 0.10436654090881348, 0.013395112007856369, 0.010031366720795631, 0.06494106352329254, 0.09520457684993744, 0.057606182992458344, 0.0919252559542656, -0.09818414598703384, -0.011116933077573776, 0.03147011995315552, -0.13862958550453186, 0.02199532650411129, -0.0771765261888504, 0.0074591557495296, -0.06716293841600418, 0.007776341866701841, 0.09673738479614258, 0.08848516643047333, -0.08007527887821198, 0.013835903257131577, 0.06126823276281357, -0.0028303680010139942, -0.05745186656713486, 0.024230415001511574, -0.031004702672362328, 0.046614158898591995, 0.05374418944120407, -0.009916453622281551, -0.14561142027378082, 0.08411924540996552, 0.09168026596307755, 0.02503218501806259, 0.03927651792764664, 0.12887084484100342, -0.07203922420740128, -0.019361699000000954, -0.0887659341096878, 0.0886075347661972, -0.05395805835723877, 0.052585337311029434, 0.011943740770220757, -0.05221995338797569, -0.05848505347967148, 0.012925208546221256, -0.042687468230724335, 0.06375518441200256, -0.021311810240149498, -0.03372923284769058, -0.16503173112869263, -0.10041286796331406, -0.03649238497018814, 0.05866213142871857, 0.052728570997714996, -0.01885843649506569, 0.021267060190439224, -0.06653013080358505, -0.08798171579837799, -0.010355690494179726, -0.08255842328071594, 0.0942579135298729, -0.041501425206661224, 0.04611964523792267, 0.039818163961172104, -0.09065107256174088, 0.08369210362434387, 0.12175121903419495, 0.08635234832763672, -0.05819927528500557, -0.10337994992733002, -0.10187339782714844, 0.05770355463027954, -0.0318915881216526, -0.0777234137058258, 0.0675765797495842, -0.0015651906142011285, -0.14677117764949799, 0.02857557311654091], "\u4f7f\u7528MindSpore\u505a\u5206\u5272\u8bad\u7ec3\uff0c\u5fc5\u987b\u5c06\u6570\u636e\u8f6c\u4e3aMindRecord\u5417\uff1f": [-0.035270724445581436, 0.07313425093889236, 0.0167800635099411, -0.038576915860176086, -0.0761227235198021, -0.032226160168647766, -0.001399046741425991, 0.0370834581553936, 0.02433725818991661, 0.04296382516622543, -0.008120270445942879, -0.028810251504182816, 0.013223014771938324, 0.011771435849368572, -0.08606507629156113, 0.056058622896671295, 0.12377899140119553, 0.03237834945321083, -0.07337161153554916, 0.049657341092824936, -0.002211674116551876, -0.017090803012251854, 0.07814084738492966, 0.002732646418735385, 0.01437992975115776, 0.05092576891183853, -0.057491790503263474, 0.024231424555182457, 0.0006563997594639659, 0.022037670016288757, 0.06193570792675018, 0.06620482355356216, -0.03393162786960602, -0.023316675797104836, -0.05309707671403885, -0.09279146790504456, -0.10043890029191971, 0.05508644878864288, -0.005519207566976547, -0.03546661511063576, 0.019656196236610413, 0.010922983288764954, -0.0430377833545208, 0.1001068651676178, -0.0363844633102417, -0.0453701987862587, -0.12088850885629654, 0.00560783501714468, 0.0022346414625644684, -0.03402691334486008, -0.05356427654623985, 0.032855212688446045, 0.0373053140938282, -0.036854337900877, -0.08351856470108032, -0.04568116366863251, -0.017590906471014023, 0.07656033337116241, 0.055443428456783295, -0.06046590209007263, -0.00345916417427361, 0.03559403866529465, -0.09676069766283035, -0.012976656667888165, -0.12765412032604218, 0.002143785823136568, -0.03462492674589157, -0.08646460622549057, -0.03559127449989319, 0.010573146864771843, -0.06800900399684906, -0.04205462709069252, 0.016269704326987267, 0.08627253025770187, 0.040915001183748245, 0.03713412955403328, -0.060608625411987305, 0.007290665991604328, -0.08282385766506195, 0.028472496196627617, 0.03968185931444168, 0.10884455591440201, 0.04061922803521156, -0.04688055068254471, -0.13284604251384735, -0.005719204433262348, -0.038588836789131165, 0.0971098393201828, -0.006067119538784027, 0.13915804028511047, 0.05279429629445076, -0.03468794748187065, -0.13714849948883057, 0.0549948550760746, 0.041075773537158966, -0.04135021194815636, -0.02507743425667286, -0.05431581661105156, -0.14293868839740753, -0.047503624111413956, 0.01247400138527155, 0.04612651839852333, -0.06914282590150833, 0.08841797709465027, 0.031985312700271606, -0.07573463767766953, 0.06298601627349854, 0.04335225746035576, 0.06574433296918869, -0.02824682928621769, 0.05836013704538345, -0.01761547103524208, 0.08452054858207703, 0.06560149043798447, 0.04118691012263298, 0.000912572955712676, -0.11064624041318893, 0.03586363047361374, -0.028907304629683495, 0.12218284606933594, 0.07510834187269211, -0.05233294516801834, 0.0052887750789523125, 0.051484331488609314, -0.004808671772480011, 0.030162930488586426, 0.07634184509515762, -0.12138310074806213, -0.12139634042978287, -0.0960167720913887, 0.15897023677825928, -0.11198925971984863, 0.08296526968479156, -0.12690916657447815, -0.10713447630405426, 0.08625157177448273, 0.03135872632265091, 0.008618100546300411, -0.041435420513153076, 0.09233072400093079, 0.00796456914395094, -0.10724332928657532, 0.126811221241951, -0.035461731255054474, 0.07829885184764862, 0.056985385715961456, -0.07830604910850525, -0.11702260375022888, -0.02530536614358425, -0.0902637392282486, 0.06322812288999557, -0.04679160565137863, -0.056257426738739014, 0.10122991353273392, 0.02877279929816723, 0.05390600115060806, -0.014533896930515766, -0.02974037081003189, 0.012743031606078148, -0.02831890992820263, -0.015425408259034157, -0.03559042140841484, 0.010213986039161682, 0.016680851578712463, -0.04657840356230736, -0.01929508149623871, 0.07356605678796768, -0.018922965973615646, -0.03383445739746094, -0.08331193029880524, 0.0038511878810822964, -0.03355716913938522, -0.05062967911362648, 0.025935137644410133, 0.044440869241952896, -0.016260799020528793, 0.0857098251581192, -0.06554406881332397, 0.0033061010763049126, -0.09397277981042862, 0.04219750314950943, -0.07018034905195236, -0.03757200390100479, -0.12281060218811035, -0.01740998588502407, 0.026046037673950195, 0.10148470103740692, 0.020249513909220695, 0.11170683801174164, -0.16433891654014587, -0.01473107747733593, 0.06066863238811493, 0.004585128743201494, 0.021518103778362274, 0.03599138557910919, -0.0017650052905082703, -0.11376691609621048, -0.034729063510894775, 0.040481649339199066, -0.024088922888040543, -0.015298083424568176, 0.038781363517045975, 0.0420638807117939, -0.0034885003697127104, -0.04753178358078003, -0.017581673339009285, -0.06789998710155487, -0.04984906315803528, 0.014289184473454952, -0.026166711002588272, 0.07286538183689117, 0.04097938537597656, 0.011868903413414955, -0.07020318508148193, -0.07109060883522034, -0.02202632650732994, 0.13936381042003632, 0.08367811143398285, 0.018399393185973167, -0.05771248787641525, 0.028190696612000465, 0.0021409993059933186, 0.010788807645440102, -0.06689856201410294, -0.1385146528482437, -0.04329061508178711, -0.01394798792898655, -0.1275670975446701, -0.030947726219892502, 0.06361625343561172, -0.07075627148151398, 0.026899641379714012, 0.01278886292129755, 0.1644953489303589, -0.049934547394514084, 0.1793747842311859, 0.023665569722652435, -0.004970105364918709, 0.06387211382389069, 0.031645696610212326, -0.1010965034365654, 0.0524369552731514, -0.05111619830131531, -0.05815240368247032, -0.033195674419403076, 0.11580561846494675, 0.09126725047826767, 0.03530072048306465, 0.030109625309705734, -0.057096753269433975, 0.044082242995500565, 0.027759961783885956, -0.0753428190946579, 0.08445273339748383, -0.047593843191862106, 0.04297526180744171, 0.024031424894928932, -0.11454344540834427, 0.0011347117833793163, 0.05136818066239357, -0.0075663430616259575, 0.03331466019153595, -0.043306101113557816, -0.0032936662901192904, -0.083756223320961, 0.018025878816843033, 0.09568438678979874, -0.05737721920013428, 0.040525734424591064, -0.1337490975856781, 0.006256424356251955, 0.009097419679164886, -0.09791985899209976, 0.01979944109916687, 0.09987393766641617, 0.09975302964448929, 0.02325591817498207, -0.19657959043979645, 0.02312936820089817, 0.07276862859725952, -0.01890385150909424, 0.030358336865901947, -0.021770576015114784, -0.030960913747549057, 0.06982153654098511, 0.022768212482333183, 0.031432706862688065, -0.012905438430607319, 0.03900318592786789, 0.11630339920520782, -0.047793470323085785, -0.00015921518206596375, -0.08983448892831802, 0.03982407972216606, -0.033030737191438675, 0.06404435634613037, 0.08016762137413025, 0.032608404755592346, 0.015403801575303078, 0.0410858616232872, -0.007875972427427769, -0.06853245198726654, 0.10742485523223877, -0.10850425064563751, -0.056735098361968994, 0.029613833874464035, -0.04007063806056976, 0.09411948919296265, 0.009817996993660927, -0.01292563509196043, 0.10424892604351044, 0.08390292525291443, 0.012723318301141262, 0.08868203312158585, -0.06629260629415512, -0.02434997446835041, 0.05183086916804314, -0.11925423890352249, 0.029467342421412468, -0.08737099915742874, 0.04818479344248772, -0.037856318056583405, -0.0010357607388868928, 0.0720457211136818, 0.0480218306183815, -0.07847975194454193, 0.013662411831319332, 0.0831294134259224, 0.02110765501856804, -0.06640578806400299, 0.024474719539284706, -0.07206352055072784, 0.02444320358335972, 0.06456802040338516, 0.006268616765737534, -0.12006005644798279, 0.10112765431404114, 0.05861606076359749, -0.008953717537224293, 0.055097199976444244, 0.06116579473018646, -0.0603909008204937, 0.02618369087576866, -0.04017521068453789, 0.08061596751213074, -0.1026771068572998, 0.12104940414428711, -0.038237638771533966, -0.05113854631781578, -0.06642493605613708, 0.04510302469134331, -0.00937733892351389, 0.06965815275907516, 0.014067109674215317, -0.016826774924993515, -0.1672106683254242, -0.0740906149148941, -0.03140433877706528, -0.005047665908932686, -0.007475766818970442, -0.06349668651819229, -0.013233140110969543, -0.07680923491716385, -0.05686110630631447, 0.018515694886446, -0.06249365955591202, 0.08865919709205627, -0.03842365741729736, 0.1122339516878128, -0.04319629818201065, -0.047494787722826004, 0.07928645610809326, 0.12874020636081696, 0.05534963309764862, -0.07346445322036743, -0.11537114530801773, -0.11839389055967331, 0.06034809723496437, 0.013420830480754375, -0.03703828155994415, 0.05895847827196121, -0.012845010496675968, -0.11069422960281372, 0.1082114577293396], "MindSpore\u5728Ascend\u786c\u4ef6\u5e73\u53f0\u8fdb\u884c\u591a\u5361\u8bad\u7ec3\uff0c\u81ea\u5b9a\u4e49\u6570\u636e\u96c6\u5982\u4f55\u7ed9\u4e0d\u540c\u5361\u4f20\u9012\u4e0d\u540c\u6570\u636e\uff1f": [-0.0009144742507487535, 0.07773667573928833, 0.015582418069243431, 0.015281952917575836, -0.058317430317401886, -0.03183215856552124, -0.017191274091601372, 0.049472782760858536, -0.03639679402112961, 0.05448025092482567, -0.011912871152162552, 0.042292721569538116, 0.020756209269165993, 0.012540359050035477, -0.035615287721157074, 0.1154773086309433, 0.09188011288642883, 0.07428380846977234, -0.04884529486298561, 0.0035469383001327515, 0.0039812312461435795, -0.013960009440779686, 0.06975263357162476, 0.05300981178879738, 0.0043037268333137035, 0.13905905187129974, 0.06453961879014969, -0.02244368940591812, 0.008978158235549927, 0.09567633271217346, 0.08535309135913849, 0.050405677407979965, -0.12593263387680054, 0.057837069034576416, -0.013525059446692467, -0.02686399780213833, -0.019321350380778313, 0.10075186938047409, -0.010060980916023254, -0.04875651374459267, 0.09736278653144836, -0.02328541874885559, -0.029701389372348785, 0.11270856857299805, -0.011638570576906204, -0.0005868486477993429, -0.1909567266702652, 0.05209813266992569, 0.07129552215337753, 0.04715000092983246, -0.06721818447113037, 0.08130037784576416, 0.09567389637231827, -0.02026297338306904, 0.004355298820883036, 0.07415617257356644, 0.04703151434659958, 0.06060154736042023, 0.002703947015106678, -0.06079448014497757, 0.03763939440250397, -0.020781850442290306, -0.04603050649166107, -0.002810174599289894, -0.14373716711997986, 0.052688006311655045, -0.0944933071732521, -0.13755424320697784, 0.028985103592276573, 0.009824918583035469, 0.002084421692416072, -0.057656705379486084, -0.058219488710165024, 0.06166895478963852, 0.08023566752672195, 0.12696492671966553, -0.02044299803674221, 0.010919526219367981, -0.08595732599496841, 0.026056954637169838, 0.07850643247365952, 0.03971252590417862, -0.006573398131877184, -0.058004334568977356, -0.01731063798069954, -0.04027852043509483, -0.028227336704730988, 0.08011779934167862, -0.05544176697731018, 0.04978613182902336, -0.009702597744762897, 0.009193126112222672, -0.1303662657737732, 0.06345519423484802, 0.07711052894592285, -0.024728281423449516, -0.044280342757701874, -0.10933228582143784, -0.09514831006526947, -0.003916387911885977, -0.011368658393621445, -0.06326650083065033, -0.04112169146537781, 0.062332745641469955, 0.008600912988185883, -0.09776104986667633, 0.04100785776972771, 0.031769704073667526, 0.06404971331357956, 0.08068215847015381, 0.08036969602108002, 0.053679369390010834, 0.11813949793577194, -0.012453082017600536, 0.015335074625909328, 0.017133617773652077, -0.05908336862921715, -0.01846902444958687, -0.07069159299135208, 0.11417081952095032, 0.08794400095939636, -0.015131118707358837, 0.017441343516111374, 0.04937232658267021, 0.0313895083963871, -0.012394828721880913, 0.027690159156918526, -0.11849461495876312, -0.13214129209518433, -0.06800802052021027, 0.1604050099849701, -0.040116988122463226, 0.04127497971057892, -0.1277066469192505, -0.06796587258577347, 0.06056175008416176, 0.038139015436172485, -0.00886964239180088, 0.028582070022821426, 0.1505676507949829, -0.007042667828500271, -0.1893531233072281, 0.006182457786053419, -0.007833022624254227, 0.1118965893983841, 0.03525560721755028, -0.035788021981716156, -0.0932343602180481, -0.061850257217884064, -0.05884046107530594, 0.022879984229803085, 0.07142946869134903, -0.08021490275859833, 0.09984984993934631, -0.05904815346002579, 0.05390803888440132, 0.021052034571766853, -0.0017370377900078893, -0.03074760176241398, -0.04232727363705635, -0.04876287281513214, -0.08497335761785507, -0.011456439271569252, -0.011878082528710365, -0.026966428384184837, 0.027598023414611816, -0.027363382279872894, 0.007428265176713467, -0.025161083787679672, -0.0031352462247014046, -0.017750248312950134, -0.028888382017612457, -0.06568872928619385, -0.011564208194613457, 0.028077298775315285, 0.030977575108408928, 0.057542990893125534, -0.04445599392056465, 0.01843857951462269, -0.06837334483861923, 0.08972097933292389, -0.03950616344809532, -0.025735963135957718, -0.012227656319737434, 0.1282268911600113, -0.03733420744538307, 0.07033223658800125, -0.0232984721660614, 0.1090119332075119, -0.1104772761464119, 0.0273338221013546, 0.013231213204562664, 0.017201490700244904, 0.09804579615592957, -0.04638928547501564, 0.03759398311376572, -0.061809007078409195, -0.00016543082892894745, 0.02418467029929161, -0.02356145717203617, -0.06658782064914703, 0.03934559226036072, 0.005090381018817425, -0.0060867792926728725, 0.037799764424562454, 0.01547800749540329, -0.09623238444328308, -0.07112476229667664, 0.048374854028224945, -0.05344942957162857, 0.09140583872795105, -0.017334718257188797, -0.07657332718372345, -0.07805652916431427, -0.07201075553894043, 0.0032305018976330757, 0.08525843918323517, 0.1060699075460434, 0.06257031857967377, -0.04799092561006546, -0.02240593731403351, 0.02757423371076584, -0.02564968727529049, -0.16832201182842255, -0.15260590612888336, -0.009679488837718964, -0.03943156450986862, -0.09930244833230972, -0.027239521965384483, 0.049965113401412964, -0.03508846461772919, 0.0850214883685112, -0.0003981655463576317, 0.0929078608751297, -0.026587562635540962, 0.05954805016517639, -0.03155708312988281, -0.0804339349269867, -0.0036875749938189983, 0.06995172053575516, -0.06617223471403122, 0.07939265668392181, -0.09283388406038284, 0.0041742026805877686, -0.09706781804561615, 0.10136520862579346, 0.09592776745557785, 0.12172514200210571, -0.06224031001329422, -0.015325902961194515, 0.07500366121530533, 0.00800495594739914, 0.051751069724559784, -0.0020348243415355682, -0.059316493570804596, 0.07545366138219833, 0.05249973013997078, -0.060656942427158356, 0.013015934266149998, 0.01446874812245369, -0.014112858101725578, -0.02883881889283657, 0.007141818758100271, 0.01575206220149994, -0.007429087534546852, 0.006549521815031767, 0.07160435616970062, 0.004276413470506668, -0.0022559314966201782, -0.066398486495018, 0.0448320209980011, 0.05306926369667053, -0.03338340297341347, 0.035278644412755966, 0.10456548631191254, 0.11032475531101227, 0.005968019366264343, -0.07362990826368332, 0.06293758749961853, 0.046855416148900986, 0.009946104139089584, 0.03566369414329529, -0.03609107807278633, 0.011842181906104088, 0.062188077718019485, -0.00790733378380537, 0.08542412519454956, 0.04252992942929268, 0.09819985181093216, 0.10282787680625916, -0.05574220418930054, 0.016689272597432137, -0.09185712039470673, -0.002138135489076376, -0.0035771275870501995, 0.021567173302173615, 0.0744728073477745, 0.013448415324091911, 0.03978302329778671, 0.055713631212711334, -0.035267800092697144, -0.027003850787878036, 0.15118525922298431, -0.046798426657915115, -0.014728433452546597, 0.01607111655175686, -0.06213472783565521, 0.08159509301185608, 0.015789363533258438, 0.02399395778775215, 0.0772872269153595, 0.10354308784008026, 0.03271261602640152, 0.07235043495893478, -0.07356815785169601, 0.014346237294375896, 0.005006737075746059, -0.1631721407175064, 0.04647683724761009, -0.0718051865696907, -0.00270815659314394, -0.09322725236415863, -0.0002352893352508545, 0.13468721508979797, 0.0609721839427948, -0.08221321552991867, -0.011884815990924835, 0.08332361280918121, -0.01672479324042797, -0.052493903785943985, 0.029830140992999077, -0.028878483921289444, 0.02567618526518345, 0.01733475551009178, 0.000327233225107193, -0.12453318387269974, 0.0802353024482727, 0.05940961837768555, 0.018913522362709045, 0.03882910683751106, 0.1676463782787323, -0.10965320467948914, 0.009938129223883152, -0.0985584706068039, 0.10265248268842697, -0.01774040050804615, 0.07961487770080566, 0.10266691446304321, -0.008805157616734505, -0.07331151515245438, 0.002181208925321698, -0.07204926013946533, 0.09872309863567352, -0.01592421717941761, -0.04644498974084854, -0.14099225401878357, -0.08988861739635468, -0.0636996179819107, 0.06748811900615692, 0.08143965899944305, -0.018780510872602463, 0.03667832538485527, -0.05340690538287163, -0.0949215292930603, -0.01768309809267521, -0.07665742188692093, 0.08393161743879318, -0.022179484367370605, 0.06259375810623169, 0.015247330069541931, -0.08702656626701355, 0.06303509324789047, 0.14030030369758606, 0.08404587209224701, -0.0281822569668293, -0.07871191948652267, -0.11160546541213989, 0.05561838299036026, -0.0514175184071064, -0.08623342961072922, 0.10329869389533997, 0.04730326682329178, -0.14078496396541595, -0.021940143778920174], "\u5982\u4f55\u6784\u5efa\u56fe\u50cf\u7684\u591a\u6807\u7b7eMindRecord\u683c\u5f0f\u6570\u636e\u96c6\uff1f": [-0.05595802515745163, 0.051786478608846664, 0.01819109544157982, -0.018621422350406647, -0.07712550461292267, -0.013515176251530647, -0.03325367718935013, 0.07353311777114868, 0.03612641245126724, -0.021174270659685135, 0.00365540012717247, 0.023637715727090836, -0.006914257537573576, -0.01851450279355049, -0.09274861216545105, 0.05215654522180557, 0.12124304473400116, 0.05378655716776848, -0.06542611122131348, 0.022318847477436066, -0.029828863218426704, -0.024089829996228218, 0.04951951280236244, 0.017613165080547333, 0.012665718793869019, 0.06396055966615677, -0.03931695595383644, 0.02241099439561367, -0.008023756556212902, 0.03627106919884682, 0.08343467116355896, 0.02663484774529934, -0.04261581227183342, -0.06000887230038643, -0.10274042934179306, -0.07459478080272675, -0.11078766733407974, 0.052676137536764145, 0.0037757183890789747, -0.05855094641447067, 0.01731078326702118, 0.03871183842420578, -0.05649382621049881, 0.09897512197494507, -0.05380595475435257, -0.06620669364929199, -0.12696881592273712, -0.003102685557678342, 0.04589060693979263, -0.017586391419172287, -0.03810933604836464, 0.07236967235803604, 0.02769995667040348, -0.02422455884516239, -0.0945233404636383, -0.06260789185762405, -0.030295301228761673, 0.03327430784702301, 0.04094989597797394, -0.045624084770679474, -0.004747656639665365, 0.013016237877309322, -0.10031742602586746, -0.035507943481206894, -0.13598047196865082, 0.01832665503025055, -0.052912287414073944, -0.09112267196178436, -0.0525650754570961, 0.022859904915094376, -0.06608840078115463, -0.05884956195950508, 0.03567557781934738, 0.06963428854942322, 0.04715023934841156, 0.08297646790742874, -0.04665963351726532, -0.05749505013227463, -0.07865377515554428, 0.02869645692408085, 0.022454190999269485, 0.11256567388772964, 0.06112925708293915, -0.050395987927913666, -0.10135017335414886, -0.002470517996698618, -0.04070157930254936, 0.04815158247947693, 0.0005498863174580038, 0.1381489634513855, 0.057820551097393036, -0.06470073014497757, -0.13420124351978302, 0.06054706498980522, 0.018683943897485733, -0.06824886798858643, -0.058820776641368866, -0.012583046220242977, -0.14842818677425385, -0.05577026307582855, 0.014922328293323517, 0.05078665912151337, -0.08176833391189575, 0.08487165719270706, 0.015605487860739231, -0.07413432002067566, 0.055678486824035645, 0.04317529499530792, 0.036009106785058975, -0.0452909953892231, 0.09028268605470657, -0.0010415461147204041, 0.054452091455459595, 0.046189818531274796, 0.00897122174501419, 0.02127746120095253, -0.11868276447057724, 0.019155386835336685, -0.03947345167398453, 0.11295146495103836, 0.0922672376036644, -0.02920929715037346, 9.724870324134827e-05, 0.030536379665136337, -0.0004171263426542282, 0.004955750424414873, 0.08111361414194107, -0.11203901469707489, -0.11977257579565048, -0.10328498482704163, 0.19716784358024597, -0.12534314393997192, 0.07896292954683304, -0.11255357414484024, -0.09602804481983185, 0.11652279645204544, 0.0351518876850605, -0.02798243798315525, -0.040670134127140045, 0.12046754360198975, 0.017501290887594223, -0.09275780618190765, 0.1297939121723175, 0.007529552094638348, 0.11239451169967651, 0.06810777634382248, -0.09864300489425659, -0.08577835559844971, -0.04923279955983162, -0.09001754224300385, 0.0654996857047081, -0.02910214103758335, -0.03818339854478836, 0.10734512656927109, 0.03233536705374718, 0.024807631969451904, 0.020767776295542717, -0.04005521908402443, -0.013498842716217041, -0.02120249718427658, -0.04001791775226593, -0.030480924993753433, 0.001697728643193841, 0.0020016201306134462, -0.039531316608190536, -0.053674377501010895, 0.03744961693882942, 0.027273451909422874, -0.04154444485902786, -0.0867229476571083, 0.026667524129152298, -0.00437258742749691, -0.01768457517027855, 0.0042375000193715096, 0.04480070620775223, 0.025971900671720505, 0.11934314668178558, -0.09506821632385254, -0.015740517526865005, -0.07582291215658188, 0.05372966453433037, -0.02303832583129406, -0.026349691674113274, -0.11868274956941605, -0.014060531742870808, 0.03158269822597504, 0.08806727826595306, 0.027041900902986526, 0.10622458904981613, -0.17106199264526367, 0.0059797330759465694, 0.07918734848499298, -0.011591313406825066, 0.03375442326068878, -0.014263303019106388, -0.018112048506736755, -0.12618501484394073, -0.01549806073307991, 0.05470556765794754, -0.018977174535393715, -0.0051169320940971375, 0.0497388131916523, 0.016343986615538597, 0.011385021731257439, -0.02075715735554695, -0.04069974273443222, -0.1019902378320694, -0.05836142972111702, 0.021410953253507614, -0.018824202939867973, 0.09688694030046463, 0.01142490841448307, 0.01260347943753004, -0.07969993352890015, -0.06625178456306458, -0.03457382321357727, 0.12682794034481049, 0.0760667696595192, 0.048330631107091904, -0.04215190187096596, 0.025617163628339767, 0.003369881073012948, 0.05543862655758858, -0.11167073994874954, -0.10934537649154663, -0.054317548871040344, 0.007858440279960632, -0.08991813659667969, -0.004039265681058168, 0.04837682470679283, -0.07253776490688324, 0.01753723807632923, 0.002312233205884695, 0.17021414637565613, -0.028819512575864792, 0.1317971646785736, 0.018906332552433014, 0.00943366065621376, 0.07526057958602905, 0.03923926502466202, -0.08546313643455505, 0.019120775163173676, -0.09246890991926193, -0.05565051734447479, -0.023952558636665344, 0.17763547599315643, 0.0904637798666954, 0.03653297200798988, 0.027921009808778763, -0.04239744320511818, 0.06241198629140854, -0.033938512206077576, -0.039402272552251816, 0.060148924589157104, -0.03442759811878204, 0.06343820691108704, 0.06048381328582764, -0.1077292412519455, 0.012862047180533409, -0.0025393832474946976, -0.009577920660376549, 0.016463087871670723, -0.012909146025776863, 0.022570090368390083, -0.07118973881006241, 0.040319427847862244, 0.10434422641992569, -0.03936569392681122, 0.036399584263563156, -0.12178240716457367, 0.013831938616931438, 0.026173381134867668, -0.06229068711400032, -0.021768812090158463, 0.12755413353443146, 0.0908040702342987, 0.002679429017007351, -0.215660959482193, 0.021924860775470734, 0.06883678585290909, -0.0007928589475341141, 0.035867199301719666, -0.06226477026939392, -0.07344455271959305, 0.073066845536232, -0.00215518893674016, 0.02876932919025421, 0.011015599593520164, 0.05384619161486626, 0.16149041056632996, -0.040286824107170105, 0.014918752014636993, -0.07895994186401367, 0.023107348009943962, -0.030782129615545273, 0.08318578451871872, 0.09688843041658401, 0.04857780784368515, 0.010685073211789131, 0.025473223999142647, 0.002913042204454541, -0.043458566069602966, 0.09072227776050568, -0.11324158310890198, -0.035522669553756714, 0.0035632781218737364, -0.012450567446649075, 0.042565781623125076, 0.030144497752189636, -0.016544468700885773, 0.12080774456262589, 0.07803172618150711, 0.03969910740852356, 0.11447156965732574, -0.08658939599990845, -0.029042892158031464, 0.044565536081790924, -0.11368988454341888, 0.04089145362377167, -0.10114307701587677, 0.01005459576845169, -0.03471340984106064, 0.0027727712877094746, 0.058347851037979126, 0.05311821401119232, -0.05122797191143036, 0.0038033428136259317, 0.10532132536172867, 0.03400653228163719, -0.02410781942307949, -0.012320752255618572, -0.03787658363580704, 0.05093342065811157, 0.07271403074264526, 0.007063606753945351, -0.12147621810436249, 0.11767353862524033, 0.05127951130270958, -0.018709862604737282, 0.01119761262089014, 0.0460929349064827, -0.049627307802438736, -0.02166125550866127, -0.042338546365499496, 0.08176419138908386, -0.0816882997751236, 0.11164671927690506, -0.06271984428167343, -0.04486091434955597, -0.06824895739555359, 0.044056907296180725, 0.001635576132684946, 0.03120655193924904, 0.030300358310341835, -0.03726671263575554, -0.16170860826969147, -0.06450897455215454, -0.009627328254282475, 0.045648738741874695, -0.012387081049382687, -0.0699261873960495, 0.03830349072813988, -0.08014070987701416, -0.07306544482707977, 0.017517242580652237, -0.07056368887424469, 0.074042908847332, -0.029250236228108406, 0.1047448068857193, -0.009865500032901764, -0.05211940035223961, 0.0887763649225235, 0.10984982550144196, 0.025160877034068108, -0.05243219435214996, -0.1109669879078865, -0.11346898972988129, 0.05292869731783867, 0.006161489058285952, -0.01610696315765381, 0.04480312392115593, -0.022369612008333206, -0.137714222073555, 0.08109989017248154], "\u8bf7\u95ee\u81ea\u5df1\u5236\u4f5c\u7684\u9ed1\u5e95\u767d\u5b57`28*28`\u7684\u6570\u5b57\u56fe\u7247\uff0c\u4f7f\u7528MindSpore\u8bad\u7ec3\u51fa\u6765\u7684\u6a21\u578b\u505a\u9884\u6d4b\uff0c\u62a5\u9519\u63d0\u793a`wrong shape of image`\u662f\u600e\u4e48\u56de\u4e8b\uff1f": [-0.03836733475327492, 0.03023114614188671, 0.025216659530997276, 0.05128657445311546, -0.08902646601200104, -0.06272542476654053, -0.006079118233174086, 0.03164166584610939, -0.05268872529268265, 0.05363777279853821, 0.05198649317026138, 0.04966362193226814, -0.021659687161445618, 0.022740857675671577, -0.031152736395597458, 0.0505625382065773, 0.09763827919960022, 0.008997688069939613, -0.08378282189369202, -0.0008619080763310194, 0.01897132396697998, -0.04751142859458923, 0.030934778973460197, 0.021519698202610016, -0.03626500070095062, 0.09667191654443741, 0.021361278370022774, 0.020010167732834816, 0.039790861308574677, 0.06540915369987488, -0.00012793578207492828, -0.008059234358370304, -0.08012212067842484, 0.011325336992740631, -0.024335544556379318, -0.052269112318754196, -0.0023725994396954775, 0.037406470626592636, -0.04290400445461273, -0.004628127906471491, 0.0741233229637146, 0.07179420441389084, -0.025250930339097977, 0.10713069140911102, -0.044738102704286575, -0.01973719522356987, -0.13595743477344513, -0.06679533421993256, 0.0034199568908661604, 0.012009970843791962, -0.11948112398386002, 0.059306759387254715, -0.0137176513671875, -0.03697451204061508, -0.002591723343357444, 0.03274885565042496, 0.03737197071313858, -0.024496614933013916, -0.0002187490463256836, 0.01767660118639469, 0.020074106752872467, 0.049246300011873245, -0.035124149173498154, -0.03801930695772171, -0.09282512217760086, -0.00908761564642191, -0.03180563822388649, -0.051315173506736755, -0.02433737739920616, -0.0373336486518383, -0.05739830806851387, -0.027059834450483322, 0.05020003393292427, 0.044938430190086365, 0.061862580478191376, 0.021851520985364914, -0.10510137677192688, 0.02756643295288086, -0.03714355453848839, 0.03757167607545853, 0.0713827982544899, 0.09366936981678009, 0.04396931454539299, -0.06767362356185913, -0.12189249694347382, -0.04307429492473602, -0.028115779161453247, 0.034777142107486725, -0.019162386655807495, 0.022084571421146393, 0.04034579545259476, -0.07003312557935715, -0.13784079253673553, 0.027916930615901947, 0.09495678544044495, -0.04088738560676575, -0.054445892572402954, -0.041621945798397064, -0.1705770194530487, 0.034930311143398285, 0.03568585216999054, -0.010415613651275635, 0.012822146527469158, 0.058469295501708984, 0.009192886762320995, -0.05884959176182747, 0.05114743858575821, 0.06276477873325348, 0.03897455334663391, 0.02878699265420437, 0.04558950290083885, 0.04897363856434822, -0.002464402001351118, 0.06316082179546356, -0.019293157383799553, 0.0024093231186270714, -0.04192595183849335, -0.002116952557116747, -0.10153670608997345, 0.120934396982193, 0.09945301711559296, -0.03383101522922516, 0.0010350426891818643, 0.05998292565345764, 0.013213024474680424, 0.0061998735181987286, 0.08449432998895645, -0.10092081129550934, -0.10682934522628784, -0.03583544120192528, 0.15357606112957, -0.13257262110710144, 0.03023025393486023, -0.13126133382320404, -0.07479022443294525, 0.03181621432304382, -0.05184323340654373, -0.03153030946850777, 0.00055064627667889, 0.11914343386888504, 0.01788577064871788, -0.06581531465053558, 0.09709668159484863, -0.009753407910466194, 0.07482952624559402, 0.029275214299559593, -0.04994337633252144, -0.04837388917803764, -0.0231410451233387, 0.004453974310308695, 0.037752602249383926, 0.0034146548714488745, -0.007987139746546745, 0.04517333209514618, -0.011295793578028679, 0.05778063088655472, 0.005229974165558815, -0.008885019458830357, -0.040356721729040146, -0.012708141468465328, -0.0698951855301857, -0.03363735228776932, 0.08326950669288635, 0.021228719502687454, -0.012545280158519745, 0.0034934834111481905, 0.07838521897792816, -0.05375612899661064, -0.022347405552864075, -0.06144113466143608, -0.06259072571992874, 0.014335352927446365, 0.007548878900706768, -0.013777577318251133, 0.002118444535881281, -0.007747039198875427, 0.039696186780929565, -0.08292172104120255, -0.01470983773469925, -0.04545498266816139, -0.02915600687265396, -0.11921918392181396, -0.07416471838951111, -0.08972382545471191, 0.059750139713287354, 0.0214640274643898, 0.019314970821142197, 0.05525469779968262, 0.0791865661740303, -0.06671972572803497, -0.04383666813373566, 0.056842051446437836, 0.011382830329239368, 0.014235328882932663, 0.05556456744670868, -0.04486726224422455, -0.043529946357011795, -0.005781562067568302, 0.03786264732480049, -0.008658016100525856, 0.021033715456724167, 0.11199505627155304, 0.05405080318450928, 0.02119682915508747, -0.021293949335813522, -0.01021377183496952, -0.07528925687074661, -0.08389028906822205, 0.010214058682322502, -0.007956944406032562, 0.08464228361845016, 0.06156446784734726, 0.0534578338265419, -0.01756231300532818, -0.11833667010068893, -0.0018316449131816626, 0.05402988940477371, 0.05128899961709976, 0.09806732088327408, -0.061338283121585846, 0.010376401245594025, 0.016012687236070633, 0.055529236793518066, -0.07232661545276642, -0.09980572015047073, -0.021198872476816177, -0.0009703586692921817, -0.09786321222782135, 0.0009299495141021907, 0.08677535504102707, -0.04873676598072052, 0.08373771607875824, 0.0834842175245285, 0.11071093380451202, -0.03108125552535057, 0.11359187215566635, -0.025138089433312416, -0.03635313734412193, 0.09848284721374512, -0.0018695049220696092, -0.0976046770811081, 0.06644727289676666, -0.0733400285243988, -0.016696054488420486, -0.02587796375155449, 0.12828701734542847, 0.06742322444915771, 0.1226789727807045, -0.027292735874652863, -0.04855912923812866, 0.025733893737196922, -0.04707275703549385, -0.0059648542664945126, 0.0914222002029419, -0.04954449459910393, 0.05549385026097298, 0.05851620435714722, -0.014902058988809586, 0.004860597662627697, 0.04030768573284149, 0.05457961559295654, 0.035814039409160614, -0.09128475934267044, -0.0017476585926488042, -0.04881833493709564, -0.02547278441488743, 0.052966147661209106, -0.0008970531634986401, 0.01921926811337471, -0.11358575522899628, 0.05504542961716652, 0.06873859465122223, -0.07928510010242462, 0.009772678837180138, 0.1374555230140686, 0.04325780272483826, 0.037119410932064056, -0.13493435084819794, 0.0034653330221772194, 0.007645018398761749, 0.060550395399332047, 0.06411763280630112, 0.04216662049293518, 0.0015206753741949797, 0.08667437732219696, -0.00635625422000885, 0.0767221599817276, -0.031282804906368256, 0.03348434716463089, 0.10277972370386124, -0.0450085774064064, -0.027279861271381378, -0.0626772865653038, -0.03614317998290062, -0.03287245333194733, 0.08330820500850677, 0.08197641372680664, 0.058398984372615814, 0.020237427204847336, 0.05461627617478371, -0.01436682976782322, -0.03838840872049332, 0.061753444373607635, -0.0952824279665947, -0.03434866666793823, 0.04456940293312073, 0.002884575631469488, 0.08477578312158585, -0.036890655755996704, -0.021233417093753815, 0.057430386543273926, 0.08151968568563461, 0.041264764964580536, 0.06541486084461212, -0.09401602298021317, -0.02896837890148163, 0.032614875584840775, -0.10307163000106812, 0.024307960644364357, -0.09300865232944489, 0.0009697449277155101, -0.04700149968266487, -0.025320373475551605, 0.06230254843831062, 0.08531452715396881, -0.08671890199184418, 0.02998501993715763, 0.058443255722522736, -0.04498549550771713, 0.032255254685878754, -0.0009224710520356894, -0.055747050791978836, 0.08819977194070816, 0.09163980185985565, 0.007925691083073616, -0.12031616270542145, 0.043770212680101395, 0.054077886044979095, -0.042650140821933746, 0.04071357101202011, 0.058774031698703766, -0.09943578392267227, 0.022416602820158005, -0.08588680624961853, 0.05867601931095123, -0.15094292163848877, 0.07256272435188293, 0.037485271692276, -0.026943113654851913, -0.03569171577692032, 0.057815779000520706, -0.08991826325654984, 0.05815121904015541, 0.022098619490861893, -0.04239988699555397, -0.11794005334377289, -0.016887933015823364, -0.001544597209431231, 0.03707117214798927, -0.019807176664471626, -0.023398006334900856, -0.010648569092154503, -0.07605661451816559, -0.05107463151216507, 0.03261258453130722, -0.024346109479665756, 0.07824455201625824, -0.02888471446931362, 0.08603551238775253, 0.02017436921596527, -0.1295301616191864, 0.025189505890011787, 0.10542846471071243, 0.014683407731354237, -0.035285841673612595, -0.03335457667708397, -0.0874340683221817, 0.045343272387981415, -0.059900276362895966, -0.042111415416002274, 0.058989543467760086, 0.017251940444111824, -0.13449884951114655, 0.00914217159152031], "\u7b2c\u4e00\u6b21\u770b\u5230\u6709\u4e13\u95e8\u7684\u6570\u636e\u5904\u7406\u6846\u67b6\uff0c\u80fd\u4ecb\u7ecd\u4e0b\u4e48\uff1f": [-0.028155706822872162, 0.08076871931552887, 0.01961737498641014, 0.13970769941806793, -0.08991074562072754, -0.048562563955783844, -0.029807044193148613, 0.06395900249481201, -0.02520795352756977, 0.08793523907661438, 0.014995829202234745, 0.02138492465019226, 0.006567745003849268, 0.060761187225580215, -0.012434836477041245, 0.08425875008106232, 0.09023203700780869, 0.08828454464673996, 0.019846606999635696, 0.07916536927223206, 0.009170500561594963, 0.01688195951282978, -0.025614045560359955, -0.06395112723112106, -0.0029374761506915092, 0.07909363508224487, -0.02248280495405197, -0.004734296351671219, 0.05955928936600685, 0.08839482069015503, 0.07705152779817581, -0.03905900567770004, -0.1617203950881958, 0.027496546506881714, -0.07150442898273468, -0.02849343605339527, -0.03942525386810303, 0.12097911536693573, -0.036929596215486526, -0.0595480352640152, 0.16133195161819458, 0.025459427386522293, -0.06765523552894592, 0.06593989580869675, 0.0032519435044378042, -0.0996871367096901, -0.12014780938625336, -0.019869539886713028, 0.027682103216648102, 0.03670684993267059, -0.0013980036601424217, 0.1021527424454689, -0.05097508057951927, -0.03434005379676819, -0.0519244410097599, -0.03942224010825157, -0.005448471754789352, 0.017541930079460144, 0.03705045208334923, -0.01786099746823311, -0.021190578117966652, 0.02336043491959572, -0.05470333248376846, -0.0339297279715538, -0.05551406368613243, -0.05488399788737297, -0.04607024043798447, -0.11677706986665726, -0.0858844667673111, 0.020997900515794754, -0.03325064852833748, -0.031259480863809586, 0.008215276524424553, 0.09703181684017181, 0.04718140885233879, 0.11358081549406052, 0.03590287268161774, -0.07521495223045349, -0.035085637122392654, 0.018494844436645508, -0.02931460738182068, 0.02889072895050049, 0.06689510494470596, -0.033393263816833496, -0.021921608597040176, -0.005849589128047228, -0.07770073413848877, -0.015786904841661453, -0.01879718340933323, 0.06102331355214119, -0.00941596832126379, 0.05900530517101288, -0.12076445668935776, -0.006135778967291117, 0.04727817699313164, -0.09297920763492584, -0.06368814408779144, 0.02294953167438507, -0.13604353368282318, 0.009578507393598557, 0.07344670593738556, 0.05862777307629585, -0.06974378228187561, 0.018679022789001465, 0.008184770122170448, -0.13753704726696014, 0.012663164176046848, 0.010033546015620232, 0.021468723192811012, 0.02441987209022045, 0.04925813525915146, -0.06275398284196854, 0.0032072628382593393, 0.003404649905860424, 0.040831856429576874, 0.018528951331973076, -0.07317548245191574, -0.06369337439537048, -0.08611258864402771, 0.10499349236488342, 0.16867557168006897, -0.03264053165912628, 0.06896556168794632, -0.012102233245968819, 0.035646263509988785, 0.007145185489207506, 0.0990132987499237, -0.10743299871683121, -0.10073225945234299, -0.059583842754364014, 0.042328622192144394, -0.07349804043769836, 0.10293400287628174, -0.0987129658460617, -0.07946129888296127, 0.12790895998477936, -0.07421319931745529, -0.02092830464243889, 0.043750062584877014, 0.13882634043693542, 0.007854930125176907, -0.0795283168554306, 0.0786590501666069, 0.011355344206094742, 0.09037436544895172, 0.09815288335084915, -0.08288748562335968, -0.10296604037284851, 0.03190816566348076, -0.011946883983910084, 0.062103305011987686, -0.027170738205313683, 0.053532250225543976, 0.05053285136818886, 0.046332478523254395, 0.03971138969063759, 0.03727918118238449, -0.003283486934378743, 0.03444698452949524, -0.04011611267924309, -0.029910150915384293, 0.007009406574070454, 0.11316253989934921, 0.020523551851511, -0.014979989267885685, -0.0413183830678463, -0.012829508632421494, 0.03139350563287735, -0.03535093367099762, -0.021881848573684692, 0.018099473789334297, 0.10553903877735138, -0.028231924399733543, -0.032787568867206573, 0.01867387816309929, -0.06423550844192505, 0.10922843217849731, -0.08182282000780106, 0.04535574093461037, -0.010982472449541092, 0.08161826431751251, -0.0919501855969429, 0.004721625242382288, -0.08805839717388153, 0.053399860858917236, 0.016888247802853584, 0.017355769872665405, 0.054864026606082916, 0.0731998085975647, -0.14094913005828857, -0.025674477219581604, -0.05071399733424187, 0.024441897869110107, 0.09950607270002365, 0.022880136966705322, 0.03654738515615463, -0.011868463829159737, -0.03949916362762451, 0.018199892714619637, 0.02254043146967888, 0.010881769470870495, 0.039110708981752396, 0.03293852508068085, 0.0009469163487665355, 0.003139275126159191, 0.013152817264199257, -0.07905646413564682, -0.05410202592611313, -0.0294345710426569, -0.049874577671289444, 0.11223408579826355, 0.058774083852767944, -0.07765401899814606, 0.010942463763058186, -0.14246170222759247, 0.015048058703541756, 0.10331478714942932, 0.0559251643717289, 0.11584010720252991, -0.028531499207019806, -0.006973013747483492, 0.012810569256544113, 0.06333921104669571, -0.04353273659944534, -0.0033982377499341965, 0.0021076432894915342, -0.002297872444614768, -0.0415496788918972, 0.031177842989563942, 0.03838401660323143, -0.10247092694044113, 0.10955387353897095, -0.006173020228743553, 0.04899425059556961, -0.06154840812087059, 0.07242662459611893, -0.0853266566991806, -0.08624567836523056, 0.03208620846271515, 0.08315146714448929, -0.07209797203540802, 0.053039394319057465, -0.0767228826880455, 0.004231520462781191, -0.07723847031593323, 0.03469981625676155, 0.04931732639670372, 0.06676928699016571, 0.00018316134810447693, 0.041222505271434784, 0.05888186767697334, 0.04866207763552666, -0.06561587005853653, 0.023249920457601547, 0.04685710370540619, 0.11486555635929108, 0.10202033072710037, 0.02669074572622776, 0.020721757784485817, 0.057998329401016235, 0.11264321208000183, 0.023962602019309998, -0.1032109409570694, 0.04310118407011032, -0.01688273623585701, 0.03063158690929413, 0.09759052097797394, 0.006699905265122652, 0.01948309689760208, -0.056039903312921524, 0.06753377616405487, 0.09704138338565826, -0.1067178025841713, 0.04877694323658943, 0.22385890781879425, 0.04694629833102226, -0.007981376722455025, -0.09015586972236633, 0.012916517443954945, -0.031190091744065285, -0.028383314609527588, 0.04187295213341713, 0.009255215525627136, 0.04932481050491333, 0.1266571283340454, 0.01489933766424656, 0.0806981772184372, -0.002221185714006424, -0.0011517847888171673, 0.130019411444664, -0.011965368874371052, 0.05411466211080551, -0.14222106337547302, -0.007868872955441475, -0.03919702023267746, 0.13092242181301117, -0.03669031709432602, -0.01291140727698803, 0.03512983024120331, 0.035463280975818634, -0.04486079514026642, -0.05955057218670845, 0.06899714469909668, -0.07153326272964478, 0.058120716363191605, -0.029408525675535202, -0.07456974685192108, 0.056117210537195206, 0.032013311982154846, 0.04988216608762741, 0.058068424463272095, 0.1425621509552002, 0.05181952938437462, 0.04101020470261574, -0.09724896401166916, -0.1182144284248352, -0.01153384055942297, -0.10609530657529831, 0.053071074187755585, -0.06684426963329315, -0.015260029584169388, -0.1249290183186531, 0.04085421562194824, 0.06350059807300568, 0.03885192051529884, -0.02010391280055046, 0.08349030464887619, 0.09518656134605408, 0.0023308726958930492, -0.03996026888489723, 0.00039531756192445755, -0.06653641164302826, 0.1313387006521225, 0.09479592740535736, 0.06314364075660706, -0.16343076527118683, 0.07202291488647461, 0.12115081399679184, -0.13639825582504272, 0.0625554621219635, 0.04372899606823921, -0.03590933978557587, -0.04344230145215988, -0.09657161682844162, 0.03324458748102188, -0.08852124214172363, 0.03006613627076149, 0.01786564476788044, 0.025706609711050987, -0.009543479420244694, 0.08484988659620285, -0.002109923865646124, -0.023530058562755585, 0.022703811526298523, 0.01205748412758112, -0.18754766881465912, -0.09862443804740906, -0.027184871956706047, 0.07110990583896637, 0.011459707282483578, 0.014078794978559017, -0.0631282776594162, -0.04728345945477486, -0.09113188832998276, 0.06943290680646896, -0.03418784961104393, 0.041991882026195526, -0.051600731909275055, 0.06624073535203934, 0.03098602406680584, -0.06940698623657227, 0.06857217848300934, 0.08483822643756866, -0.010368731804192066, 0.030083104968070984, -0.06487013399600983, -0.0793166309595108, 0.08264829218387604, -0.06442415714263916, -0.025168132036924362, 0.09496267884969711, 0.08827409148216248, -0.15740355849266052, 0.05892535299062729], "\u7f51\u7edc\u8bad\u7ec3\u65f6\u51fa\u73b0\u62a5\u9519\u63d0\u793a\u6570\u636e\u4e0b\u53d1\u5931\u8d25\u201cTDT Push data into device Failed\u201d\uff0c\u5982\u4f55\u5b9a\u4f4d\u539f\u56e0\uff1f": [-0.01599309965968132, 0.04861721768975258, 0.04245802015066147, 0.052713438868522644, -0.04902114346623421, -0.03712586313486099, -0.01612761802971363, 0.047844987362623215, 0.03500090539455414, 0.015528885647654533, -0.018431615084409714, -0.0012765449937433004, 0.031612105667591095, -0.010144047439098358, -0.07780419290065765, 0.06574826687574387, 0.10652195662260056, -0.012207995168864727, -0.049709662795066833, 0.04350836202502251, 0.022132139652967453, 0.03856679052114487, 0.0452621690928936, -0.03732575103640556, -0.009543822146952152, 0.029030997306108475, -0.005544907413423061, 0.04251106455922127, 0.022278105840086937, 0.04580150544643402, 0.09481996297836304, -0.022511670365929604, -0.0614796057343483, -0.0467541329562664, 0.027817998081445694, -0.01347542367875576, -0.04852542653679848, 0.1150759756565094, -0.09585219621658325, 0.007129570469260216, 0.06462249159812927, 0.028386633843183517, -0.003292802022770047, 0.11010532081127167, -0.0833798423409462, -0.037592917680740356, -0.12289117276668549, 0.0329124815762043, 0.05891551077365875, 0.03365740925073624, -0.147901713848114, 0.03887630254030228, 0.04685841500759125, -0.09406118839979172, -0.07437267899513245, 0.02640552818775177, 0.055306121706962585, -0.0024904892779886723, 0.04316464439034462, 0.04436499997973442, -0.002580467378720641, 0.033670783042907715, 0.028013160452246666, -0.046071961522102356, -0.07813244313001633, -0.0003325752913951874, 0.0009054911788553, -0.1347571760416031, 0.013387494720518589, -0.02896527200937271, -0.03223874419927597, -0.03753824159502983, -0.05136386305093765, 0.024876246228814125, 0.029280245304107666, 0.0640006735920906, 0.02170529216527939, 0.08111055195331573, -0.027763061225414276, 0.05832599475979805, 0.07607383280992508, 0.033737536519765854, 0.04551471769809723, -0.04600236564874649, -0.07523257285356522, -0.00569942407310009, -0.03888702765107155, 0.0823470801115036, -0.060166895389556885, 0.03877127543091774, 0.09345182776451111, -0.10164915770292282, -0.1367855966091156, 0.0029732012189924717, 0.14827917516231537, -0.07110108435153961, -0.056763939559459686, -0.08119082450866699, -0.08624400198459625, 0.0558808408677578, -0.010338865220546722, -0.033339619636535645, -0.07788576930761337, 0.010740354657173157, 0.04514320567250252, -0.029323536902666092, 0.04159555211663246, 0.025677861645817757, 0.0034092103596776724, 0.007215956691652536, 0.07947196066379547, 0.055290237069129944, 0.05845727398991585, -0.013052431866526604, -0.07858149707317352, 0.010383914224803448, -0.09438024461269379, -0.0009951438987627625, -0.06985961645841599, 0.11782189458608627, 0.1540212482213974, -0.02525164559483528, -0.02997482940554619, 0.024583078920841217, -0.05639824643731117, -0.06024056673049927, 0.07613140344619751, -0.06480588763952255, -0.06091383472084999, -0.09252941608428955, 0.11699995398521423, -0.05243629217147827, 0.059196893125772476, -0.19450895488262177, -0.0869961827993393, -0.02011842653155327, -0.030425023287534714, 0.017041586339473724, 0.06280174851417542, 0.083077073097229, 0.051742393523454666, -0.1302635222673416, 0.03525347262620926, -0.030852295458316803, 0.03796307370066643, 0.022256802767515182, -0.01763404905796051, -0.060565728694200516, -0.05531155318021774, -0.02232329733669758, 0.10611984133720398, -0.017639154568314552, -0.02609645575284958, 0.06396922469139099, 0.02984611690044403, -0.00500732846558094, -0.07481247186660767, -0.009578289464116096, -0.031404703855514526, -0.019559325650334358, -0.017503082752227783, -0.04184380918741226, -0.022791795432567596, 0.09610210359096527, 0.01278742030262947, 0.006415668409317732, 0.005384732037782669, 0.009150775149464607, -0.007705990225076675, -0.053064242005348206, -0.05171431228518486, 0.01953277178108692, -0.00628243200480938, 0.013664152473211288, 0.044782232493162155, -0.0720844715833664, 0.014989432878792286, -0.01241995207965374, 0.0003387192264199257, -0.10801657289266586, -0.018128670752048492, -0.08848273754119873, -0.03249763324856758, -0.10009054839611053, 0.062232062220573425, 0.024688761681318283, -0.00025029294192790985, -0.003830481320619583, 0.08720209449529648, -0.11772853881120682, -0.021561002358794212, 0.061781447380781174, 0.010832189582288265, 0.10267315804958344, 0.02511121891438961, -0.04120246693491936, -0.02644125558435917, -0.02694377489387989, 0.09336491674184799, 0.04602398723363876, 0.06385468691587448, 0.05302642285823822, 0.03354255482554436, -0.0004514357715379447, -0.03497292846441269, -0.022069372236728668, -0.12706270813941956, -0.10358381271362305, -0.0074707092717289925, -0.006401157006621361, 0.04702913761138916, 0.04849942401051521, -0.009643953293561935, -0.01727706752717495, -0.14363819360733032, -0.011438991874456406, 0.09112999588251114, 0.01511416770517826, 0.09648337215185165, -0.0645703598856926, 0.06999385356903076, -0.020800219848752022, -0.004788328427821398, -0.004490455146878958, -0.07699599117040634, 0.053743377327919006, -0.01128198578953743, -0.029901349917054176, -0.01376551203429699, 0.06298059970140457, -0.10808315873146057, 0.06141611933708191, 0.03581415116786957, 0.11969289183616638, -0.07542522996664047, 0.08733828365802765, -0.04099264368414879, -0.04416809603571892, 0.06307539343833923, -0.06434674561023712, -0.015221597626805305, 0.02850329875946045, -0.08479142189025879, 0.010517304763197899, -0.07023388892412186, 0.1447896510362625, 0.09985167533159256, 0.049348536878824234, 0.02679280936717987, -0.04398930445313454, 0.07784079015254974, 0.0023349071852862835, -0.033760931342840195, -0.03147206827998161, -0.062153302133083344, 0.05839136615395546, 0.04498032107949257, -0.06247369572520256, -0.0007118104258552194, -0.04361516237258911, 0.016393205150961876, 0.05002132058143616, -0.09852265566587448, -0.015917185693979263, 0.01521138846874237, -0.012184218503534794, 0.08108361065387726, -0.023909645155072212, -0.06534207612276077, -0.06408537179231644, 0.060527246445417404, 0.0497063547372818, -0.04319924861192703, -0.01781117171049118, 0.06262551993131638, 0.05985912308096886, -0.06988462060689926, -0.1518740952014923, 0.03374795615673065, -0.034347862005233765, 0.007826878689229488, 0.030142569914460182, -0.0391872376203537, -0.0428154431283474, 0.08555051684379578, 0.03560355305671692, -0.008915023878216743, 0.014575831592082977, 0.009783781133592129, 0.14717954397201538, -0.030128005892038345, -0.04376684129238129, -0.043224453926086426, 0.022745631635189056, 0.03747302666306496, 0.031467925757169724, 0.045194294303655624, 0.08373934030532837, -0.03406468406319618, 0.06296370923519135, 0.01070559211075306, -0.08940888196229935, 0.053548891097307205, -0.05592508986592293, -0.008836117573082447, 0.008297411724925041, -0.013629546388983727, 0.002392246387898922, 0.023433947935700417, 0.06086867302656174, 0.10234451293945312, 0.13319846987724304, 0.03812461718916893, 0.09461695700883865, -0.06820952147245407, 0.017947116866707802, 0.04685625806450844, -0.1351137012243271, 0.01935935579240322, -0.08224741369485855, 0.0627579391002655, -0.022903727367520332, 0.0014955501537770033, 0.027163773775100708, 0.03757719695568085, -0.08740783482789993, 0.006852288730442524, 0.03941541910171509, 0.02130006067454815, 0.017945025116205215, 0.03166986629366875, -0.04450353980064392, 0.030125420540571213, 0.10937975347042084, 0.004889355972409248, -0.1476215422153473, 0.06937414407730103, 0.04470446705818176, 0.004093116149306297, 0.053729552775621414, 0.053112901747226715, -0.11060009896755219, 0.001344800111837685, -0.05945764109492302, 0.06765590608119965, -0.10115616768598557, 0.05672509968280792, 0.06093598157167435, 0.037303075194358826, -0.03268011286854744, -0.03861236944794655, -0.06577104330062866, 0.06855057924985886, 0.008860497735440731, -0.003591382410377264, -0.14244422316551208, -0.0969981923699379, 0.0034019742161035538, 0.05356366187334061, 0.02063760906457901, -0.027444733306765556, 0.025114567950367928, -0.059177763760089874, -0.10170971602201462, 0.08724302798509598, -0.021666251122951508, 0.03583354130387306, 0.020804446190595627, 0.10071050375699997, -0.047749899327754974, -0.10138723254203796, -0.004483988508582115, 0.12155306339263916, 0.07103461772203445, -0.12562140822410583, -0.13495688140392303, -0.10771246254444122, 0.07835420221090317, -0.0009423118899576366, -0.07589098811149597, 0.06428299844264984, 0.08420176059007645, -0.12565350532531738, -0.020632304251194], "py_transforms \u548c c_transforms \u7b97\u5b50\u80fd\u5426\u6df7\u5408\u4f7f\u7528\uff0c\u5982\u679c\u6df7\u5408\u4f7f\u7528\u5177\u4f53\u9700\u8981\u600e\u4e48\u4f7f\u7528\uff1f": [-0.04744930937886238, 0.09452599287033081, 0.11095969378948212, 0.05667925998568535, -0.07612020522356033, -0.014537850394845009, -0.03275248408317566, -0.003985812421888113, 0.018217848613858223, 0.04534398019313812, 0.001127894502133131, -0.011371762491762638, 0.07663969695568085, -0.041204553097486496, -0.0879870131611824, 0.14974965155124664, 0.0916001945734024, -0.06765790283679962, -0.06455158442258835, -0.009052569046616554, -0.025055233389139175, 0.10542381554841995, 0.048389896750450134, -0.07731493562459946, 0.008740258403122425, 0.04649034142494202, 0.062426481395959854, 0.01677260547876358, 0.10744272172451019, 0.1399635225534439, 0.08181615173816681, 0.05331302806735039, -0.13111135363578796, 0.026854563504457474, -0.0658101812005043, -0.04222695529460907, -0.041355907917022705, 0.12537583708763123, -0.018078457564115524, 0.046529971063137054, 0.00024033710360527039, 0.06943026185035706, -0.027990836650133133, 0.07286835461854935, 0.018780233338475227, 0.05570404604077339, -0.11601433157920837, 0.025507329031825066, 0.03933823108673096, 0.03638182580471039, -0.08578658849000931, 0.11082208156585693, 0.03649689629673958, 0.005827882327139378, 0.016319330781698227, 0.04464114457368851, 0.025909751653671265, -0.06354416906833649, 0.02703453227877617, 0.09430406242609024, 0.04599336162209511, 0.013307401910424232, -0.047302111983299255, -0.03402644768357277, -0.18931066989898682, 0.07473950833082199, 0.03620823100209236, -0.032662615180015564, -0.018786804750561714, 0.011209208518266678, -0.08566295355558395, 0.006376513279974461, -0.03183961659669876, 0.05893881618976593, 0.13320255279541016, 0.08810506761074066, 0.011043431237339973, 0.010426012799143791, -0.027099493891000748, 0.04446888715028763, 0.003500350285321474, 0.04814090207219124, 0.08936096727848053, -0.11172021925449371, -0.1021026074886322, -0.13468994200229645, -0.058748189359903336, 0.043793436139822006, -0.12623779475688934, 0.11464744806289673, 0.033668745309114456, -0.03879342973232269, -0.14008286595344543, 0.07853452116250992, 0.12907233834266663, -0.0707143023610115, -0.07309137284755707, 0.021712560206651688, -0.1672322005033493, -0.041604749858379364, 0.15013006329536438, 0.060308076441287994, 0.0295671746134758, 0.03925855830311775, -0.028476331382989883, -0.08381351828575134, 0.04824134334921837, 0.04383945092558861, -0.09692177921533585, 0.03200284019112587, 0.09780238568782806, 0.05175766721367836, -0.009578792378306389, 0.01344043668359518, 0.054033998399972916, 0.09425582736730576, 0.03732644394040108, -0.06595684587955475, -0.05685630440711975, 0.1197543814778328, 0.12608826160430908, -0.06467771530151367, -0.016266731545329094, 0.11473377048969269, 0.0690016895532608, -0.017089897766709328, 0.11306720972061157, -0.041727546602487564, 0.001921908464282751, -0.050563424825668335, 0.24775364995002747, -0.12097106873989105, 0.007777116727083921, -0.051418472081422806, -0.06631020456552505, 0.1135789006948471, -0.14916229248046875, -0.027174586430191994, 0.03514895588159561, 0.05982719361782074, 0.03254569321870804, -0.07904128730297089, 0.08167347311973572, -0.14988142251968384, 0.10456518083810806, 0.02866627275943756, -0.05410809814929962, -0.11073927581310272, -0.03765895590186119, -0.11272454261779785, 0.045798204839229584, 0.07570089399814606, 0.06716988980770111, 0.0684627816081047, -0.07761130481958389, -0.018919795751571655, 0.008348852396011353, -0.04673100635409355, -0.07914211601018906, -0.04447310417890549, -0.028304610401391983, -0.009741918183863163, -0.011006939224898815, 0.005296072922646999, -0.011780982837080956, 0.07433135062456131, -0.06472793221473694, 0.05560159683227539, -0.030765563249588013, -0.1083049401640892, 0.0559738464653492, 0.04168950393795967, -0.065019391477108, -0.051817018538713455, 0.0017161660362035036, 0.04609714075922966, 0.06348054856061935, -0.14629317820072174, -0.021193716675043106, -0.055466119199991226, 0.09613089263439178, -0.16632860898971558, -0.020842170342803, -0.07156916707754135, 0.013581217266619205, 0.09378402680158615, 0.0006173168076202273, -0.006178704090416431, 0.18306580185890198, -0.14476986229419708, 0.03798026219010353, 0.04485193267464638, -0.03890116512775421, 0.08733567595481873, 0.0006300843087956309, -0.0772751048207283, -0.07089546322822571, 0.031206708401441574, 0.07238021492958069, -0.07403893768787384, 0.0199198629707098, 0.029227154329419136, 0.050174061208963394, -0.02449428290128708, 0.059748828411102295, -0.06926736235618591, -0.12265448272228241, -0.08303702622652054, -0.010427484288811684, -0.0032518578227609396, 0.004989947658032179, 0.046652521938085556, -0.10822360217571259, 0.007780437823385, -0.06532658636569977, -0.09748419374227524, 0.09367018193006516, 0.022034166380763054, 0.18318818509578705, -0.004019569605588913, 0.03952150046825409, -0.01038910262286663, 0.031106699258089066, -0.11469699442386627, -0.02622251957654953, -0.06522917002439499, -0.03867403417825699, -0.1263730823993683, 0.018711064010858536, 0.05404815077781677, -0.0434434674680233, 0.05637615546584129, 0.0628759115934372, 0.09603668004274368, -0.03367666155099869, 0.15337485074996948, -0.07617941498756409, 0.0632811114192009, 0.07523892819881439, 0.029053939506411552, -0.2130756378173828, 0.10914871096611023, -0.06444688886404037, -0.0029333094134926796, -0.08362764120101929, 0.1744910180568695, 0.02338510937988758, 0.053726114332675934, 0.12861259281635284, -0.09649909287691116, -0.007951944135129452, -0.0209573432803154, -0.03934198617935181, 0.060659829527139664, -0.08859290927648544, 0.0710313692688942, 0.15116295218467712, -0.024763397872447968, 0.0800640881061554, 0.036874864250421524, -0.001791626214981079, 0.04407370835542679, -0.03207859396934509, -0.010975767858326435, -0.006215052679181099, -0.017363986000418663, 0.06579951196908951, -0.0476774126291275, 0.02796059660613537, 0.01674327626824379, 0.07354870438575745, 0.051988065242767334, -0.04925364628434181, -0.05612551420927048, 0.12883587181568146, 0.03932186961174011, -0.008558668196201324, -0.061889249831438065, 0.0531044527888298, 0.04528135433793068, -0.0019905560184270144, 0.06275008618831635, 0.014737972989678383, -0.01975463517010212, 0.06110350042581558, -0.008565272204577923, 0.09811726957559586, 0.037011466920375824, 0.0362166166305542, 0.07742363959550858, 0.03209453821182251, -0.016371216624975204, -0.03528232499957085, -0.011817834340035915, -0.026238957419991493, 0.09779297560453415, 0.10373383015394211, 0.08493531495332718, 0.007142106536775827, -0.019718242809176445, 0.06398750841617584, -0.004253143910318613, 0.05625976622104645, -0.008420949801802635, -0.04854607582092285, -0.035236939787864685, -0.08934484422206879, -0.029611263424158096, -0.09027647227048874, -0.05290914699435234, -0.007665536366403103, 0.06435560435056686, 0.03543068841099739, -0.004283297806978226, -0.01751088723540306, -0.03948798403143883, 0.10825583338737488, -0.051030296832323074, 0.0815991759300232, -0.04148297384381294, 0.04806293547153473, 0.044549621641635895, 0.043479397892951965, 0.09333241730928421, 0.00021363049745559692, -0.05217529460787773, 0.015563799068331718, 0.06829500198364258, 0.0298902727663517, 0.05872791260480881, 0.014406541362404823, 0.022920910269021988, 0.06926871836185455, 0.0915088877081871, 0.060077227652072906, -0.14310087263584137, 0.181329607963562, -0.00018758699297904968, 0.07061880826950073, 0.07634834945201874, 0.007140124216675758, -0.09295611828565598, -0.05212552845478058, -0.009246313013136387, 0.1039370596408844, -0.017151935026049614, 0.057515304535627365, 0.046211861073970795, -0.06064790114760399, -0.0441170409321785, 0.03717774152755737, -0.014802069403231144, 0.11910277605056763, 0.049402039498090744, -0.13151323795318604, -0.09029632806777954, -0.018290026113390923, 0.022238360717892647, -0.01139045786112547, -0.009144553914666176, -0.005962824448943138, -0.04991442710161209, 0.014832692220807076, -0.040196407586336136, 0.12656831741333008, -0.05460132658481598, 0.035307593643665314, -0.021494071930646896, 0.037753213196992874, 0.050153035670518875, -0.1106090322136879, 0.018632158637046814, 0.049428414553403854, 0.02707540988922119, -0.09935063868761063, -0.025160247460007668, -0.09071417152881622, 0.03947937861084938, -0.06679786741733551, 0.004117612726986408, 0.03171641379594803, 0.11450119316577911, -0.0673917606472969, -0.05132143944501877], "\u5f53\u9519\u8bef\u63d0\u793a \"The data pipeline is not a tree (i.e.\uff0c one node has 2 consumers)\" \u5e94\u8be5\u600e\u4e48\u68c0\u67e5\uff1f": [-0.05824652314186096, 0.010384777560830116, 0.041257523000240326, 0.04489555582404137, -0.05218817666172981, -0.07684969902038574, -0.03185419365763664, 0.1210826113820076, -0.03432392701506615, 0.03579004481434822, 0.03752657026052475, 0.02485307678580284, 0.021698450669646263, -0.004492273088544607, -0.08038494735956192, 0.14388832449913025, 0.11116216331720352, 0.0019790411461144686, -0.06724303960800171, 0.1281132698059082, 0.053108420222997665, 0.023619424551725388, 0.12344948947429657, 0.010820221155881882, -0.019176382571458817, 0.1452370584011078, 0.0034130464773625135, -0.05701882392168045, -0.00945871789008379, -0.0012091019889339805, 0.059614986181259155, -0.01653037965297699, -0.02581411600112915, 0.06703954190015793, 0.04811782389879227, -0.04077418893575668, -0.06992123275995255, 0.11059257388114929, -0.03250638768076897, -0.031813010573387146, 0.08250312507152557, 0.0067846812307834625, -0.0639546811580658, 0.05994396656751633, -0.13225796818733215, -0.03202022612094879, -0.07946481555700302, -0.08761201798915863, 0.04743338003754616, -0.004616043530404568, -0.04986857250332832, 0.06076691299676895, 0.06714445352554321, -0.031719207763671875, -0.04265015572309494, 0.04652998596429825, 0.020488247275352478, -0.06352391093969345, 0.010222690179944038, -0.022081011906266212, 0.021670816466212273, 0.03047245554625988, 0.026121066883206367, -0.06053086370229721, -0.017335060983896255, 0.03175721690058708, -0.08606179058551788, -0.03559837490320206, -0.008627427741885185, -0.0875123143196106, -0.028226207941770554, 0.015191198326647282, -0.015575841069221497, 0.05421169474720955, -0.004033270757645369, 0.0324859544634819, 0.045547857880592346, 0.033765293657779694, -0.03060830570757389, -0.036359600722789764, 0.004183394834399223, 0.05156458169221878, 0.038056790828704834, -0.04902246594429016, -0.10561434179544449, -0.057522986084222794, -0.03876310959458351, 0.037254780530929565, -0.09151960909366608, 0.026403527706861496, -0.04265304654836655, 0.007499130442738533, -0.16796429455280304, 0.05473165959119797, 0.12897278368473053, -0.037515752017498016, -0.09720858186483383, -0.037268806248903275, -0.20729131996631622, 0.036571748554706573, 0.04435048624873161, -0.07485095411539078, 0.02063567005097866, 0.01600653864443302, 0.116582490503788, -0.13625654578208923, -0.025326905772089958, 0.05361621826887131, -0.05151773989200592, 0.0039265756495296955, 0.051710642874240875, 0.05666518956422806, 0.07478510588407516, -0.00729477871209383, -0.06190188601613045, 0.05837193503975868, -0.01689005084335804, 0.038139499723911285, -0.11272920668125153, 0.0842813029885292, 0.12380102276802063, -0.11849308013916016, -0.020532121881842613, 0.04354792460799217, -0.05469901114702225, -0.07111664861440659, 0.09542105346918106, -0.17398478090763092, -0.050916071981191635, -0.08751719444990158, 0.026820048689842224, -0.07337748259305954, 0.051225703209638596, -0.12935787439346313, -0.15499339997768402, 0.09780429303646088, 0.010070167481899261, 0.045197900384664536, -0.008678179234266281, 0.147731751203537, 0.06789828836917877, -0.07738619297742844, 0.02470272220671177, 0.017594778910279274, 0.1333490014076233, 0.05636756122112274, -0.039246879518032074, -0.08578867465257645, 0.05193820968270302, -0.02867405116558075, 0.018641535192728043, -0.026330705732107162, -0.0212082676589489, 0.004635563585907221, -0.007243111729621887, -0.03335252031683922, 0.06411635130643845, -0.01633203588426113, -0.06988393515348434, -0.12198281288146973, -0.031630683690309525, 0.013878085650503635, 0.08839932829141617, 0.013935056515038013, -0.054505374282598495, 0.02893730252981186, 0.0025005885399878025, -0.06972454488277435, -0.025106362998485565, -0.08352936804294586, -0.09916557371616364, 0.023172494024038315, 0.04198842868208885, -0.054933324456214905, 0.059986215084791183, -0.024453453719615936, 0.07502581924200058, -0.021763985976576805, -0.05277598276734352, -0.015074238181114197, 0.08893410861492157, -0.06056489795446396, -0.019702555611729622, -0.12007394433021545, 0.05519408360123634, 0.05926576256752014, 0.027390487492084503, 0.09636274725198746, 0.07007165998220444, -0.0012430765200406313, -0.06399540603160858, 0.040579404681921005, 4.752539098262787e-06, 0.04576598107814789, 0.04139041155576706, 0.00036641955375671387, -0.027977684512734413, -0.062036119401454926, 0.024212172254920006, 0.03316068276762962, 0.06580387055873871, -0.016253946349024773, 0.00863434188067913, 0.08710196614265442, 0.008335847407579422, -0.01989521086215973, -0.06964175403118134, -0.07316389679908752, 0.012530781328678131, 0.042568057775497437, 0.07964840531349182, 0.03989427536725998, -0.023062676191329956, -0.006123410537838936, -0.13082638382911682, -0.00967072881758213, 0.06353967636823654, 0.01666128821671009, 0.0312516875565052, -0.03512878715991974, 0.07500879466533661, -0.005661494098603725, 0.030830027535557747, -0.08520587533712387, -0.11989709734916687, 0.013913454487919807, 0.02094842493534088, -0.06416311115026474, -0.05088389292359352, 0.0325714610517025, -0.01888410933315754, 0.08496677130460739, 0.05642424523830414, 0.07721016556024551, -0.05789359658956528, -0.021118197590112686, -0.014647169969975948, -0.06002119928598404, 0.00491038104519248, 0.018485136330127716, -0.0363154299557209, 0.17332349717617035, -0.11142271757125854, 0.018032964318990707, -0.062276557087898254, 0.11095833778381348, 0.03184956684708595, -0.03062044270336628, 0.02022632397711277, -0.036946043372154236, 0.02603001706302166, -0.03886459767818451, 0.05060373619198799, -0.036864884197711945, 0.026634112000465393, 0.08855409920215607, 0.12654739618301392, -0.0564667284488678, -0.1007511094212532, -0.04565475136041641, 0.0005600693984888494, 0.05224969983100891, -0.08964686840772629, -0.032619230449199677, 0.017133252695202827, -0.06163732707500458, 0.08517728745937347, -0.02446787618100643, -0.020206062123179436, -0.0845085084438324, 0.0602651908993721, 0.04225808382034302, -0.03242357820272446, 0.01081296056509018, 0.10877944529056549, 0.026076681911945343, 0.04169121012091637, -0.11921390146017075, 0.04926619678735733, 0.0502605214715004, 0.014655695296823978, 0.008180011063814163, 0.04579253867268562, -0.03877583146095276, 0.06247950717806816, -0.03798244893550873, -0.007406278047710657, 0.058286819607019424, 0.05952198803424835, 0.08402173966169357, -0.08925580978393555, -0.09863439202308655, -0.022169262170791626, 0.012113867327570915, -0.05687445402145386, 0.0395500510931015, -0.001717419596388936, 0.08455080538988113, -0.026079222559928894, 0.08708925545215607, -0.028450585901737213, -0.023163678124547005, 0.08489970862865448, -0.07038543373346329, -0.04710562527179718, 0.030794700607657433, -0.013864479959011078, 0.018451236188411713, 0.005814043339341879, -0.009165233001112938, 0.06897199898958206, 0.1048571839928627, 0.01190356258302927, 0.10180282592773438, -0.05478576570749283, -0.02465939149260521, 0.02149464376270771, -0.20287595689296722, -0.03199273347854614, -0.0456208735704422, 0.03787240758538246, -0.0637635663151741, -0.026836536824703217, 0.032866161316633224, 0.09894073754549026, -0.0757761001586914, 0.09497315436601639, 0.08122725784778595, -0.04932150989770889, 0.011292623355984688, 0.05825767666101456, -0.1255192756652832, 0.1133762001991272, 0.08221995830535889, -0.0176088809967041, -0.13399182260036469, 0.08544030785560608, 0.15542054176330566, 0.05543404817581177, 0.042582422494888306, 0.04249037802219391, -0.12811829149723053, 0.03564924746751785, -0.1003786101937294, 0.037266459316015244, -0.07168031483888626, 0.045799169689416885, 0.058477528393268585, 0.09219874441623688, 0.06350564956665039, 0.013858705759048462, -0.02923576533794403, 0.09528949111700058, -0.015150166116654873, -0.038701415061950684, -0.10268557816743851, -0.004042752552777529, -0.03392137214541435, 0.04123065248131752, -0.023889197036623955, -0.026347916573286057, 0.029478568583726883, -0.03324565663933754, -0.06662281602621078, -0.03335585072636604, -0.06767251342535019, 0.0028202207759022713, -0.06646176427602768, 0.055729880928993225, -0.030774053186178207, -0.06905821710824966, -0.018714888021349907, 0.08110179752111435, 0.03676822409033775, -0.033225491642951965, 0.012467438355088234, -0.06603945046663284, 0.0917232483625412, 0.022847311571240425, -0.03339601680636406, 0.094227634370327, 0.08763576298952103, -0.06401725858449936, -0.11123903840780258], "MindSpore\u4e2d\u548cDataloader\u5bf9\u5e94\u7684\u7b97\u5b50\u662f\u4ec0\u4e48\uff1f": [-0.07972095906734467, 0.03546098619699478, 0.028778396546840668, 0.07071204483509064, -0.03574177995324135, -0.0641462504863739, -0.049198735505342484, 0.03658954054117203, 0.036830075085163116, 0.05861210450530052, 0.005620461422950029, -0.025035252794623375, 0.04484988749027252, 0.011289959773421288, -0.034297384321689606, 0.07965531945228577, 0.1267269402742386, -0.0036566578783094883, -0.06594241410493851, 0.06648486107587814, -0.012675868347287178, -0.010742167010903358, 0.02181311324238777, -0.0388592928647995, -0.0028895693831145763, 0.09466800838708878, -0.02214018628001213, -0.011117374524474144, -0.00626002624630928, 0.05281013995409012, 0.11026306450366974, -0.07322131097316742, -0.09178492426872253, -0.011676078662276268, -0.009903213940560818, -0.06288855522871017, -0.08359205722808838, 0.1310935765504837, -0.07704297453165054, -0.05157611519098282, 0.035227615386247635, 0.024137645959854126, -0.07427998632192612, 0.031791072338819504, 0.0011618766002357006, -0.000732242944650352, -0.06456341594457626, -0.023431535810232162, -0.009739819914102554, 0.053315095603466034, -0.07358701527118683, 0.035195596516132355, 0.07345803827047348, -0.008586307056248188, -0.0690629780292511, 0.09479062259197235, 0.03902195394039154, 0.002102278871461749, 0.03822837769985199, -0.0022557564079761505, 0.03804640471935272, 0.05769050493836403, -0.08814645558595657, -0.08547909557819366, -0.09739447385072708, 0.023356253281235695, -0.05044848099350929, -0.09952688962221146, -0.05434265360236168, 0.010486847721040249, -0.14306382834911346, 0.005927010904997587, -0.025541028007864952, 0.054458074271678925, 0.06818456947803497, 0.0859108567237854, 0.04253850877285004, 0.03497986122965813, -0.026855196803808212, 0.0675770491361618, 0.054537687450647354, 0.02773766592144966, 0.027643010020256042, -0.11985846608877182, -0.13345396518707275, 0.03377027064561844, -0.018690403550863266, 0.06098303571343422, -0.04933354631066322, 0.10004857182502747, 0.03656584024429321, -0.09052122384309769, -0.10439440608024597, -0.013217802159488201, 0.07489655166864395, -0.050186894834041595, -0.04923660680651665, -0.04237665981054306, -0.08622212707996368, -0.0271297674626112, 0.02282341942191124, 0.03315308317542076, -0.030785705894231796, 0.01596394181251526, -0.010655547492206097, -0.0880630686879158, -0.02161630243062973, 0.01007758267223835, 0.020764358341693878, -0.023488542065024376, 0.0647776871919632, 0.022378135472536087, 0.005490046925842762, 0.022693103179335594, -0.01672794669866562, -0.011794771067798138, -0.01786746270954609, 0.01216156966984272, -0.0560600683093071, 0.08124879002571106, 0.090369313955307, -0.03954321891069412, 0.031600162386894226, -0.0014583339216187596, -0.007362731732428074, -0.025907469913363457, 0.13049934804439545, -0.10309218615293503, -0.05255755037069321, -0.009157311171293259, 0.09020484983921051, -0.0439935028553009, 0.09315282106399536, -0.17500177025794983, -0.1268032193183899, 0.0318605974316597, -0.07854627072811127, -0.009061879478394985, 0.028133420273661613, 0.13700883090496063, -0.00027093105018138885, -0.10940732806921005, 0.08622176945209503, -0.05372997745871544, 0.06114083155989647, 0.011200577951967716, -0.08088722825050354, -0.11471699923276901, -0.00801180861890316, -0.04431241750717163, 0.11839844286441803, -0.05863049626350403, -0.005075807683169842, 0.06394880264997482, 0.06077782064676285, 0.0310228131711483, -0.026382341980934143, -0.015482218936085701, 0.045896656811237335, -0.07888450473546982, 0.036705583333969116, 0.0010367647046223283, 0.06535111367702484, -0.003379973815754056, -0.037218932062387466, 0.022816162556409836, 0.0005610137595795095, 0.0508357398211956, -0.02430141158401966, -0.05172577127814293, 0.030939610674977303, -0.018708528950810432, 0.009425248950719833, 0.04900680109858513, -0.020775850862264633, 0.018143726512789726, 0.04948054254055023, -0.09916491061449051, 0.0016069826669991016, -0.08924258500337601, 0.020297665148973465, -0.07857885956764221, -0.0018376053776592016, -0.06630326807498932, 0.08619415760040283, 0.002163237426429987, 0.06484425812959671, 0.008092963136732578, 0.11304359138011932, -0.1180066242814064, 0.004309169482439756, -0.007887682877480984, -0.005843792576342821, 0.08346031606197357, 0.06820769608020782, -0.05474697798490524, -0.06764328479766846, -0.022784698754549026, 0.07487089931964874, 0.013073236681520939, 0.035043999552726746, 0.012781526893377304, 0.049219146370887756, 0.02638060413300991, -0.003484380431473255, 0.005061717238277197, -0.07108811289072037, -0.11164344102144241, 0.02263251133263111, -0.03336772322654724, 0.07856689393520355, 0.08910243213176727, -0.02743677794933319, -0.007149293087422848, -0.1326308250427246, -0.023687859997153282, 0.03146914765238762, 0.07572700083255768, 0.06725230813026428, -0.06636758893728256, -0.009985372424125671, 0.008420227095484734, 0.0016788451466709375, -0.1441439986228943, -0.08309593796730042, -0.03544173389673233, 0.04087846726179123, -0.08508805185556412, -0.012871448881924152, 0.076769158244133, -0.07385518401861191, 0.09621409326791763, 0.01857241429388523, 0.1233472153544426, -0.10148567706346512, 0.07393554598093033, -0.02725759707391262, -0.03485000133514404, 0.0404086709022522, -0.0003081187605857849, -0.06754174083471298, 0.07578636705875397, -0.06492115557193756, -0.016340401023626328, -0.08047270029783249, 0.15177476406097412, 0.10369998961687088, 0.025169866159558296, 0.061475612223148346, -0.08183644711971283, 0.049703873693943024, 0.0503627210855484, -0.046409495174884796, 0.03176131471991539, -0.06165184825658798, 0.06435834616422653, 0.15184235572814941, -0.0940885841846466, 0.02004138194024563, 0.014150561764836311, 0.03688964992761612, 0.02417571097612381, -0.10994567722082138, 0.018547818064689636, 0.018264973536133766, -0.009990825317800045, 0.09155172109603882, 0.010338140651583672, 0.09469571709632874, -0.11515487730503082, 0.03940781205892563, 0.08650241792201996, -0.011026609688997269, 0.012834231369197369, 0.12448319792747498, -0.00880561862140894, 0.017365077510476112, -0.1677452027797699, 0.058631934225559235, -0.013437112793326378, -0.021226942539215088, 0.014811870642006397, -0.0036499095149338245, -0.004141314420849085, 0.007369344122707844, -0.11825485527515411, 0.09526188671588898, -0.010135757736861706, -0.04818061739206314, 0.1353137344121933, -0.011132551357150078, -0.04014342650771141, -0.03062431886792183, -0.07370017468929291, 0.03542269766330719, 0.029947273433208466, 0.06344389170408249, 0.13206073641777039, 0.022859390825033188, 0.040648266673088074, 0.005533208604902029, -0.0538979098200798, 0.03276612609624863, -0.03983347490429878, -0.018895374611020088, 0.013402128592133522, 0.012986304238438606, -0.051709674298763275, 0.028871366754174232, -0.040768757462501526, 0.12037087976932526, 0.10311399400234222, 0.09525468945503235, 0.16446280479431152, -0.05157390981912613, 0.03805699571967125, 0.08746716380119324, -0.11314652860164642, 0.011113961227238178, -0.07925962656736374, 0.018290366977453232, -0.026047468185424805, -0.027603641152381897, 0.07154575735330582, 0.0326930470764637, -0.13709720969200134, -0.017668860033154488, 0.023133620619773865, 0.04309042915701866, -0.028195517137646675, 0.05469649285078049, -0.042433761060237885, 0.11270365118980408, 0.07267970591783524, 0.005432880017906427, -0.09401609003543854, 0.07502128183841705, 0.013165447860956192, -0.017602548003196716, 0.03303660824894905, -0.03638128563761711, -0.07933519035577774, 0.06514154374599457, 0.02623346634209156, 0.10672082006931305, -0.07722745835781097, 0.14629314839839935, 0.001790802925825119, 0.03468712046742439, -0.07797324657440186, 0.015138639137148857, -0.046546030789613724, 0.06391441822052002, -0.007856412790715694, -0.0950736477971077, -0.13218772411346436, -0.02742718905210495, -0.031019635498523712, 0.027020663022994995, -0.04849967733025551, -0.03251098468899727, -0.011729246005415916, -0.0798671692609787, -0.08991273492574692, 0.028076598420739174, -0.13681016862392426, 0.07968549430370331, -0.057449646294116974, 0.0926862508058548, -0.01750313490629196, -0.09701213240623474, 0.12003561854362488, 0.13463447988033295, 0.014021129347383976, -0.05756299942731857, -0.05301560088992119, -0.13088780641555786, 0.09243614971637726, 0.017520667985081673, -0.024772051721811295, 0.06560390442609787, 0.12434763461351395, -0.14891056716442108, 0.00739534106105566], "\u81ea\u5b9a\u4e49\u7684Dataset\u51fa\u73b0\u9519\u8bef\u65f6\uff0c\u5e94\u8be5\u5982\u4f55\u8c03\u8bd5\uff1f": [-0.08663881570100784, 0.05158951133489609, -0.016737131401896477, 0.06421484798192978, -0.10985340923070908, 0.00942026637494564, -0.0270756334066391, 0.1231270357966423, 0.011346750892698765, 0.02348056249320507, 0.024965928867459297, 0.02660481259226799, -0.0056482101790606976, -0.03425765782594681, -0.0555151030421257, 0.09729795157909393, 0.13256686925888062, 0.020723721012473106, -0.0651751235127449, 0.08572171628475189, -0.024487799033522606, 0.035144634544849396, -0.017383087426424026, -0.01617486961185932, 0.06157978996634483, 0.0320461131632328, 0.01512519083917141, -0.01636597327888012, 0.013398903422057629, 0.04827104136347771, 0.1167830377817154, -0.005308619234710932, -0.07571425288915634, 0.05030148848891258, 0.005010956898331642, -0.03576790541410446, -0.06096938997507095, 0.08594977855682373, -0.06124270707368851, -0.036047790199518204, 0.0696430429816246, 0.00818130187690258, -0.028660885989665985, 0.09942033886909485, -0.014190043322741985, -0.07399260997772217, -0.1373150497674942, -0.051810700446367264, 0.056449271738529205, 0.03987304866313934, -0.08497573435306549, 0.09525050222873688, -0.014018120244145393, -0.07719148695468903, -0.06750409305095673, -0.025974253192543983, -0.004987980704754591, -0.015861839056015015, 0.06235456466674805, -0.042873725295066833, -0.032165542244911194, -0.019074169918894768, 0.03783739358186722, -0.10981417447328568, -0.13212130963802338, -0.00574888288974762, -0.022309087216854095, -0.04521632194519043, -0.09696004539728165, -0.06590481847524643, -0.04374929144978523, 0.004717755597084761, -0.006340467371046543, 0.06013686954975128, 0.041155219078063965, 0.11233548820018768, -0.0402626134455204, 0.00659248186275363, -0.08540289103984833, 0.05413486063480377, -0.0014794458402320743, 0.09110750257968903, 0.03665265068411827, -0.06207212060689926, -0.05321343243122101, 0.057109855115413666, -0.04553604498505592, 0.07114164531230927, -0.03584226965904236, 0.08345960080623627, 0.03910446912050247, -0.016515573486685753, -0.16403979063034058, 0.034249499440193176, 0.0845172330737114, -0.004053222015500069, -0.04800902679562569, 0.025772877037525177, -0.13797271251678467, -0.018475299701094627, 0.05890187621116638, -0.013444477692246437, -0.09200184792280197, 0.03827815130352974, 0.026334304362535477, -0.08780527114868164, -0.007918980903923512, 0.010622411035001278, -0.005687984637916088, -0.031063197180628777, 0.03883655369281769, -0.04881729558110237, -0.016076624393463135, -0.03253869712352753, 0.031540412455797195, 0.04570570960640907, -0.09050030261278152, -0.0261958260089159, -0.0637621060013771, 0.11110678315162659, 0.09391322731971741, -0.03856537863612175, 0.03195776790380478, 0.040192048996686935, -0.044152889400720596, -0.003726752009242773, 0.07064845412969589, -0.08746981620788574, -0.16267472505569458, -0.07527713477611542, 0.17132675647735596, -0.1395227611064911, 0.10580964386463165, -0.09504714608192444, -0.13544121384620667, 0.038638755679130554, -0.054092537611722946, -0.01429661549627781, -0.0017622895538806915, 0.12214013934135437, 0.04298677295446396, -0.06920841336250305, 0.02739405632019043, -0.025863798335194588, 0.09740467369556427, 0.03282133862376213, -0.05740015208721161, -0.13148215413093567, -0.04106979817152023, -0.07844166457653046, 0.07689201831817627, -0.06739109754562378, -0.038021788001060486, 0.07450269907712936, 0.03341937065124512, 0.04854319244623184, 0.040466200560331345, -0.014982305467128754, 0.001255252631381154, -0.06895226985216141, -0.08711622655391693, -0.0033657201565802097, 0.030126074329018593, 0.046776123344898224, -0.01955953612923622, -0.00433745514601469, 0.017142735421657562, 0.03360462933778763, -0.06847073137760162, -0.0306028313934803, 0.01607036590576172, 0.010518290102481842, -0.06385396420955658, -0.027382776141166687, 0.05394195392727852, 0.011157597415149212, 0.05880850553512573, -0.10287526994943619, -0.020562781020998955, -0.0338924303650856, 0.01507115364074707, -0.09262746572494507, -0.09800852090120316, -0.108775794506073, 0.06230763718485832, 0.08459822833538055, 0.03669038042426109, 0.12103034555912018, 0.1130678728222847, -0.14157123863697052, -0.03887977451086044, 0.03062051720917225, -0.08675037324428558, 0.03140641376376152, 0.017552945762872696, -0.01418350636959076, -0.09579355269670486, -0.005405954550951719, 0.043553758412599564, -0.0131826251745224, 0.035866640508174896, 0.035029616206884384, -0.012755746953189373, 0.0238630473613739, -0.01503718551248312, -0.04306753724813461, -0.11469139158725739, -0.12752816081047058, -0.007330107036978006, -0.10989248752593994, 0.06701622158288956, 0.06929811835289001, -0.039501454681158066, -0.0650479719042778, -0.09293321520090103, -0.004410782363265753, 0.13027316331863403, 0.06807398051023483, 0.10272861272096634, -0.03369897976517677, 0.009666779078543186, -0.04068896174430847, 0.023075133562088013, -0.05339325591921806, -0.029036426916718483, 0.024628212675452232, -0.02359069138765335, -0.05004375800490379, 0.024196067824959755, 0.09956417232751846, 0.020151974633336067, 0.06675246357917786, 0.05244836211204529, 0.14609920978546143, -0.06961585581302643, 0.09476266801357269, -0.08815136551856995, -0.03670770302414894, -0.005471847485750914, -0.015583575703203678, -0.08356113731861115, 0.07146042585372925, -0.10296637564897537, -0.021831711754202843, -0.04750627651810646, 0.14566488564014435, 0.07500733435153961, 0.02396392822265625, 0.06641345471143723, -8.701533079147339e-05, 0.05270439386367798, -0.006492713466286659, -0.02062244899570942, 0.027403462678194046, -0.0031299004331231117, 0.0759824812412262, 0.052214037626981735, -0.02840539440512657, 0.05577459931373596, 0.003086299169808626, 0.05938931554555893, 0.03760068863630295, -0.10050130635499954, 0.07906092703342438, 0.04689009115099907, -0.0725761204957962, 0.07002873718738556, -0.02588227204978466, 0.05571841076016426, -0.16918228566646576, 0.03649885952472687, 0.031621236354112625, -0.06926985830068588, -0.017393801361322403, 0.08102096617221832, 0.023075519129633904, -0.010379523038864136, -0.13050958514213562, 0.02715638279914856, 0.057494260370731354, 0.020629100501537323, 0.061002954840660095, -0.031839676201343536, -0.008006974123418331, 0.07616259157657623, -0.07793086767196655, 0.04510887712240219, 0.015240902081131935, 0.02748311497271061, 0.10096029937267303, 0.01239897683262825, 0.01094883494079113, -0.08458869159221649, -0.04469000920653343, 0.0035763117484748363, 0.08660374581813812, 0.03886453062295914, 0.05006115138530731, 0.03439653664827347, 0.03308646008372307, 0.01084127463400364, -0.08784940838813782, 0.07629861682653427, -0.07889780402183533, 0.011638838797807693, -0.04086919128894806, -0.04230845719575882, 0.03365258127450943, 0.008606886491179466, 0.1495465338230133, 0.12844565510749817, 0.11228363960981369, 0.024927984923124313, 0.1471896767616272, -0.08054064214229584, -0.010118204168975353, 0.0316312350332737, -0.08409379422664642, 0.059331171214580536, -0.08839379251003265, -0.0006518251029774547, -0.008557550609111786, -0.026567969471216202, 0.04652268439531326, 0.05284373462200165, -0.08405735343694687, 0.07845588028430939, 0.07800950855016708, 0.08233568072319031, -0.036527156829833984, -0.010217281058430672, -0.09077902138233185, 0.1096123531460762, 0.12013361603021622, -0.027152426540851593, -0.15261365473270416, 0.10800173133611679, 0.05707667022943497, 0.0017744204960763454, 0.04401613399386406, 0.09518957138061523, -0.04261453449726105, 0.03289688751101494, -0.05112957954406738, 0.030652442947030067, -0.09827519953250885, 0.07315902411937714, 0.0572337731719017, -0.0023926235735416412, 0.008801493793725967, 0.09369239956140518, -0.0580362007021904, 0.01286383531987667, -0.03711055964231491, -0.025982573628425598, -0.13625121116638184, -0.058865517377853394, 0.003000950673595071, 0.02384282276034355, 0.02815253473818302, -0.008138529025018215, -0.0018661689246073365, -0.04929431527853012, -0.10049739480018616, 0.07422877103090286, -0.02516109123826027, 0.08056315779685974, -0.017135340720415115, 0.09086725860834122, -0.00874909944832325, -0.12715044617652893, 0.09568852186203003, 0.12516599893569946, 0.037477172911167145, -0.034123945981264114, -0.06438121944665909, -0.12335285544395447, 0.08006808906793594, -0.0643058493733406, -0.0923917144536972, 0.04049553722143173, 0.03448299318552017, -0.17150428891181946, -0.009562469087541103], "\u6570\u636e\u5904\u7406\u7b97\u5b50\u4e0e\u7f51\u7edc\u8ba1\u7b97\u7b97\u5b50\u80fd\u5426\u6df7\u5408\u4f7f\u7528\uff1f": [0.025563152506947517, -0.027448484674096107, 0.08377117663621902, 0.07187724858522415, -0.05217873305082321, -0.05949149280786514, -0.08390281349420547, 0.09655191749334335, 0.06696559488773346, -0.001502225873991847, 0.022233758121728897, -0.04562478885054588, 0.02967987023293972, 0.03407490998506546, 0.014373173005878925, 0.11088436096906662, 0.20979143679141998, -0.09223335236310959, -0.059909116476774216, 0.0784863755106926, 0.05787161365151405, -0.004388723522424698, -0.021075677126646042, -0.03415040299296379, 0.04018315300345421, 0.052358128130435944, 0.012757984921336174, -0.059740208089351654, 0.07640644907951355, 0.0820290818810463, 0.09621694684028625, 0.08482186496257782, -0.057863686233758926, -0.04945961758494377, -0.04261906072497368, -0.015344194136559963, -0.04726496711373329, 0.07623621076345444, -0.0034530742559581995, -0.05132873356342316, 0.049249958246946335, -0.010862954892218113, -0.05318038538098335, 0.0938904881477356, -0.028686266392469406, 0.10641995072364807, -0.08222348242998123, -0.003522649873048067, -0.02987065538764, 0.08183550834655762, -0.026534734293818474, 0.08662894368171692, 0.03046894632279873, 0.03389352187514305, -0.024777432903647423, 0.010258052498102188, 0.020769581198692322, -0.10061023384332657, 0.023568909615278244, 0.025023410096764565, -0.0019252053461968899, 0.027922019362449646, -0.08451895415782928, -0.054395534098148346, -0.08230174332857132, 0.025111040100455284, -0.06663965433835983, -0.07483354210853577, -0.01993466541171074, 0.015073379501700401, -0.08034827560186386, -0.10269477963447571, 0.050602901726961136, 0.058160312473773956, 0.0783606693148613, 0.06021595746278763, -0.06519435346126556, 0.0021783302072435617, 0.03189593926072121, 0.1238124743103981, 0.05149541795253754, 0.013469938188791275, 0.0049694497138261795, -0.11118422448635101, -0.11217468976974487, -0.08353407680988312, -0.054983798414468765, 0.07205425202846527, -0.05830742418766022, 0.047564778476953506, 0.13467276096343994, 0.06382918357849121, -0.16358456015586853, 0.017519261687994003, 0.10390349477529526, -0.0984368771314621, -0.038650114089250565, 0.02902980148792267, -0.08025164902210236, -0.07165606319904327, 0.05602683871984482, 0.07858218252658844, 0.029869727790355682, 0.06468679010868073, -0.041653119027614594, -0.19540686905384064, 0.002001603366807103, 0.022838391363620758, -0.05682682245969772, 0.0039799450896680355, 0.09443770349025726, -0.0023896237835288048, 0.021455805748701096, 0.006102575454860926, 0.022088343277573586, 0.03057551011443138, -0.05682447552680969, -0.03712085261940956, -0.014166755601763725, 0.09283769130706787, 0.04240533709526062, -0.06961924582719803, -0.007246971130371094, 0.11789626628160477, 0.05822724848985672, 0.044634632766246796, 0.09312808513641357, 0.009115957655012608, -0.061772942543029785, -0.04086412116885185, 0.1786918342113495, -0.04199040308594704, 0.1288469433784485, -0.05251539871096611, -0.11279349029064178, 0.12235698848962784, -0.08730755746364594, -0.011716732755303383, 0.004108781926333904, 0.1078455001115799, 0.034442320466041565, -0.052554868161678314, 0.0011550779454410076, -0.08047306537628174, 0.11837927997112274, 0.02742835134267807, -0.04874023422598839, -0.16054967045783997, 0.017623674124479294, -0.06533204764127731, 0.0796993225812912, 0.07666085660457611, -0.013937660492956638, 0.056028179824352264, -0.02858835458755493, 0.009336364455521107, -0.0025521954521536827, 0.03072984330356121, -0.010751328431069851, -0.045787371695041656, 0.006231994833797216, 0.045373592525720596, 0.026860076934099197, -0.0632191002368927, 0.006492931395769119, -0.04533248394727707, -0.018763195723295212, 0.0617300346493721, -0.08140137791633606, -0.07905414700508118, 0.032206736505031586, 0.07276388257741928, -0.020660825073719025, -0.027633061632514, -0.021524617448449135, 0.07807357609272003, 0.07756060361862183, -0.15214158594608307, -0.006716347765177488, -0.14151409268379211, 0.1256152093410492, -0.05983221158385277, 0.04902227595448494, -0.11201804876327515, 0.011798802763223648, 0.04476518929004669, 0.08502303808927536, 0.07424622774124146, 0.12637662887573242, -0.12799477577209473, -0.041768599301576614, -0.0063966684974730015, -0.02753642201423645, 0.09090892225503922, 0.022920511662960052, -0.04374818876385689, -0.10370823740959167, 0.0581502765417099, 0.10124942660331726, -0.07511076331138611, 0.04402412101626396, 0.04260987788438797, 0.051441632211208344, -0.008991289883852005, 0.011921370401978493, -0.028769422322511673, -0.07529281079769135, -0.07662985473871231, 0.01806638389825821, -0.017584046348929405, 0.00597221776843071, 0.07625050842761993, 0.006615847814828157, 0.010502862744033337, -0.036941371858119965, -0.013663346879184246, 0.07381468266248703, 0.05931873619556427, 0.1656825840473175, -0.011834925971925259, 0.014592353254556656, -0.010007434524595737, 0.008234464563429356, -0.13865883648395538, -0.04452484846115112, -0.0927620530128479, 0.008044980466365814, -0.13971909880638123, -0.013796385377645493, 0.05580141022801399, -0.028591252863407135, 0.025801295414566994, 0.0009065808262676001, 0.08518722653388977, -0.02649078518152237, 0.09449693560600281, -0.028113853186368942, -0.014773815870285034, -0.027861619368195534, 0.02236064150929451, -0.1067168191075325, 0.09884195774793625, 0.013892663642764091, -0.06332449615001678, -0.04491499066352844, 0.13852201402187347, 0.024397384375333786, 0.06737303733825684, 0.040494635701179504, -0.035197123885154724, 0.016662873327732086, 0.1009799912571907, -0.07097950577735901, 0.0022471193224191666, -0.07961574196815491, 0.07850867509841919, 0.07504580169916153, -0.00937903393059969, 0.11552677303552628, -0.03208155930042267, 0.0354640856385231, 0.0007161925313994288, -0.04297538846731186, 0.005688306875526905, 0.012549541890621185, 0.00037103891372680664, 0.0778144970536232, 0.0863298699259758, 0.059943776577711105, -0.05620277673006058, 0.06974557042121887, 0.0546954870223999, -0.042302586138248444, -0.04219316691160202, 0.1553540825843811, 0.03575698286294937, -0.0005696787848137319, -0.03220055252313614, -0.04338742047548294, -0.00439066207036376, -0.029659703373908997, 0.050933435559272766, -0.04036511108279228, 0.09223733842372894, 0.042628198862075806, 0.04909367486834526, 0.10027343779802322, 0.014477217569947243, 0.007578060030937195, 0.04783448204398155, 0.0826813131570816, -0.04539099335670471, -0.0625087097287178, -0.05908173322677612, 0.0027974324766546488, 0.04771115258336067, 0.09822425991296768, 0.08459620177745819, -0.011675311252474785, 0.03625047579407692, 0.015256096608936787, -0.03688947111368179, 0.05462963506579399, 0.017223695293068886, -0.040327899158000946, -0.048803940415382385, -0.04892221838235855, 0.07522136718034744, 0.03702358156442642, -0.04082290083169937, 0.07722034305334091, 0.09843260794878006, 0.0913248285651207, -0.03873984515666962, -0.1098925769329071, 0.048440780490636826, 0.09964119642972946, -0.07829631119966507, 0.036905523389577866, -0.04196300730109215, 0.09940706193447113, -0.009645535610616207, 0.0748070627450943, 0.13519059121608734, -0.005251102149486542, -0.13509948551654816, -0.009121865034103394, 0.055330097675323486, -0.016360368579626083, 0.04546394571661949, -0.008704708889126778, -0.06212436780333519, 0.10844238847494125, 0.1208408772945404, 0.0151758948341012, -0.0668550580739975, 0.09308870881795883, 0.04066058620810509, 0.05435794219374657, 0.04454968869686127, -0.01986275054514408, -0.1361650824546814, -0.008389179594814777, -0.007216713856905699, 0.04430679604411125, -0.008973863907158375, 0.08501281589269638, -0.06018646061420441, -0.04528097063302994, -0.059793226420879364, 0.07990262657403946, -0.023146312683820724, 0.07394608110189438, 0.07488511502742767, -0.05931858718395233, -0.06863880157470703, -0.031604498624801636, 0.019546983763575554, 0.07661553472280502, -0.02125779166817665, 0.015161842107772827, -0.013198231346905231, -0.07140415906906128, 0.03429846465587616, 0.12078583985567093, -0.03226250037550926, 0.09974707663059235, -0.01574293151497841, -0.011423422023653984, 0.054991938173770905, -0.11238053441047668, 0.05307120457291603, 0.10793308913707733, 0.08915266394615173, -0.11070257425308228, 0.008599882945418358, -0.0743095800280571, -0.021693319082260132, 0.013976161368191242, -0.02267466112971306, 0.09758599102497101, 0.019923165440559387, -0.042633119970560074, -0.002805609256029129], "MindRecord\u4e3a\u4f55\u4f1a\u751f\u6210.db\u6587\u4ef6\uff1f \u7f3a\u5c11.db\u6587\u4ef6\u65f6\u52a0\u8f7d\u6570\u636e\u96c6\u4f1a\u6709\u4ec0\u4e48\u62a5\u9519\uff1f": [-0.042688313871622086, 0.0683705285191536, 0.03919617459177971, 0.0312846340239048, -0.07578669488430023, -0.029309287667274475, -0.03193613514304161, 0.022072235122323036, 0.02953440696001053, 0.027113158255815506, -0.012236643582582474, 0.0218818299472332, -0.010295065119862556, -0.0021259323693811893, -0.0515734925866127, 0.039658188819885254, 0.13500197231769562, 0.04331055283546448, -0.04611367732286453, -0.006622590124607086, -0.01682295836508274, -0.02289842814207077, 0.09474531561136246, 0.03560905531048775, 0.017416873946785927, 0.005500611383467913, -0.05511147901415825, 0.04538668692111969, -0.019055621698498726, 0.03724619746208191, 0.08146045356988907, 0.01899658516049385, -0.027496861293911934, -0.004255600739270449, -0.07843220233917236, -0.11526421457529068, -0.06154391169548035, 0.11093653738498688, -0.0390339121222496, -0.008972883224487305, 0.004414134658873081, 0.014821222051978111, -0.055838748812675476, 0.08823483437299728, -0.0382191501557827, 0.004529853351414204, -0.16209082305431366, -0.018554463982582092, 0.07254882156848907, -0.038326799869537354, -0.04082702100276947, 0.0352737233042717, -0.0077510918490588665, 0.012293967418372631, -0.10828632861375809, 0.003737216116860509, -0.042172499001026154, -0.008912588469684124, 0.08762223273515701, 0.02317536622285843, 0.018306393176317215, -0.018911514431238174, -0.11675749719142914, -0.00859154760837555, -0.15329842269420624, -0.005256328731775284, -0.0513361357152462, -0.10994390398263931, -0.014887462370097637, 0.03227606788277626, -0.06439462304115295, -0.04152674600481987, 0.022904179990291595, 0.09547381848096848, 0.03610876202583313, 0.07373446971178055, -0.06968177109956741, -0.02406984008848667, -0.043813738971948624, 0.03507022187113762, 0.03385990113019943, 0.07678388804197311, 0.018498722463846207, -0.0864918902516365, -0.10928667336702347, 0.02647487446665764, -0.05098840594291687, 0.04519781097769737, -0.007305977866053581, 0.16308318078517914, 0.039845939725637436, -0.04777425527572632, -0.16501516103744507, 0.031223226338624954, 0.03605552390217781, -0.08386337012052536, -0.10293696075677872, -0.05489169806241989, -0.1210838332772255, -0.04114731028676033, 0.06320594251155853, 0.027004074305295944, -0.062208302319049835, 0.057486630976200104, 0.007244449108839035, -0.09952878952026367, 0.06742458045482635, 0.013697993010282516, 0.03677085414528847, 0.06452213227748871, 0.07371848821640015, 0.03292807564139366, 0.016259176656603813, 0.04479776322841644, 0.008950176648795605, 0.04934815689921379, -0.12324176728725433, -0.0003184378147125244, -0.04218439757823944, 0.09055203199386597, 0.06858367472887039, -0.02978251874446869, 0.005317850038409233, 0.03626066818833351, -0.001767544075846672, 0.01151219941675663, 0.11436174064874649, -0.108921118080616, -0.08466848731040955, -0.12171758711338043, 0.1483624279499054, -0.1100778803229332, 0.07169537246227264, -0.1014862135052681, -0.0560293085873127, 0.07212219387292862, 0.0037892465479671955, -0.01801525056362152, 0.012948407791554928, 0.1229262724518776, 0.016931263729929924, -0.11203630268573761, 0.08625803887844086, 0.03441633656620979, 0.0918055921792984, 0.03870095685124397, -0.07028404623270035, -0.08599275350570679, -0.003744937712326646, -0.024061229079961777, 0.08598889410495758, -0.07243550568819046, -0.011379414238035679, 0.06458279490470886, 0.0558994859457016, 0.03475058078765869, 0.016386326402425766, -0.022194435819983482, 0.01142505370080471, -0.04166760295629501, -0.003804531181231141, -0.00634718919172883, 0.0036593382246792316, 0.005936541594564915, -0.053304776549339294, -0.002646062057465315, 0.04038815572857857, 0.055348604917526245, -0.010259497910737991, -0.030730126425623894, -0.012138642370700836, 0.005289572291076183, -0.06849345564842224, -0.018427472561597824, 0.07673552632331848, 0.04701288789510727, 0.10816827416419983, -0.032971665263175964, -0.0033332754392176867, -0.09691663831472397, 0.12189949303865433, -0.030901912599802017, -0.01511042844504118, -0.0912141501903534, -0.02777709625661373, 0.03543880581855774, 0.11723364889621735, 0.06742653250694275, 0.16582641005516052, -0.18022459745407104, -0.015633653849363327, 0.0390130989253521, 0.025724491104483604, 0.0840798169374466, -0.023536376655101776, 0.017907332628965378, -0.07143814861774445, -0.02872924879193306, 0.025003615766763687, 0.00989558082073927, -0.015564044937491417, 0.08846088498830795, 0.010847840458154678, -0.023186102509498596, 5.1907263696193695e-05, -0.04484371468424797, -0.07534562051296234, -0.10474622994661331, 0.05518277734518051, 0.002937166951596737, 0.08815423399209976, 0.02945220097899437, -0.04157177731394768, -0.07281333208084106, -0.07131267338991165, -0.08722387254238129, 0.12236465513706207, 0.11406254768371582, 0.038364436477422714, -0.03285716101527214, 0.04373166710138321, -0.009591279551386833, 0.07847564667463303, -0.1432524025440216, -0.11300668865442276, -0.03600911423563957, -0.021964943036437035, -0.10726003348827362, -0.0073896716348826885, 0.05489032343029976, -0.1247149407863617, 0.03003489412367344, 0.010550335049629211, 0.18262356519699097, -0.02404462732374668, 0.14619292318820953, 0.01407645270228386, -0.0005685798241756856, 0.10318300873041153, -0.01090217288583517, -0.04523613676428795, 0.06102730706334114, -0.08154623955488205, -0.04880847409367561, -0.06779803335666656, 0.08026479184627533, 0.04825657978653908, 0.07832184433937073, -0.023067831993103027, -0.050268709659576416, 0.03733086585998535, -0.020079029724001884, -0.0466640368103981, 0.017890701070427895, 0.02091268263757229, 0.03847271949052811, 0.07411761581897736, -0.12197765707969666, -0.0069527775049209595, 0.0029282784089446068, -0.0369507297873497, 0.013716541230678558, 0.010973404161632061, 0.018939625471830368, -0.05669437721371651, 0.005985488183796406, 0.08973239362239838, -0.00348666007630527, 0.02155512198805809, -0.1136457547545433, 0.03491443768143654, 0.011399934068322182, -0.022402362897992134, -0.02771882899105549, 0.11931157112121582, 0.06001104414463043, -0.014723453670740128, -0.1625717133283615, 0.02205604687333107, 0.026008492335677147, 0.0186973474919796, 0.04080475494265556, -0.0480315163731575, -0.07880768179893494, 0.07352180778980255, -0.026746351271867752, 0.049197010695934296, 0.022460276260972023, 0.025277871638536453, 0.18560422956943512, -0.014535653404891491, -0.01312378142029047, -0.036285400390625, 0.030007824301719666, -0.04146386310458183, 0.0841333419084549, 0.09769889712333679, 0.036619339138269424, -0.06451436877250671, 0.05548443645238876, -0.0020601365249603987, -0.039209093898534775, 0.12194854021072388, -0.07561085373163223, 0.011296004988253117, 0.016897739842534065, -0.016475478187203407, 0.03336556628346443, 0.08490084111690521, -0.040027014911174774, 0.11323456466197968, 0.07275219261646271, -0.008968752808868885, 0.07755982130765915, -0.11343970894813538, -0.02332688495516777, 0.0106483930721879, -0.1247204840183258, 0.03871718421578407, -0.08262406289577484, 0.02564636990427971, -0.09024374186992645, 0.011194201186299324, 0.063640296459198, 0.05272180959582329, -0.029215959832072258, 0.014763761311769485, 0.057339683175086975, 0.07360891252756119, -0.0021003882866352797, -0.00878715980798006, -0.0883876159787178, 0.039403706789016724, 0.0619962140917778, 0.006991976872086525, -0.137128084897995, 0.07577426731586456, 0.039718229323625565, -0.00019951164722442627, -0.0016885048244148493, 0.069283127784729, -0.025282911956310272, 0.04639773443341255, -0.02442087046802044, 0.046588487923145294, -0.025760214775800705, 0.12402747571468353, -0.01002824679017067, -0.005558232311159372, -0.0660683885216713, 0.028262704610824585, -0.02360623888671398, 0.019146617501974106, 0.05229542404413223, 0.004135201219469309, -0.15346884727478027, -0.1249518170952797, -0.026522960513830185, 0.06830733269453049, -0.022969244047999382, -0.03741490840911865, 0.0383044071495533, -0.09677818417549133, -0.06495717912912369, 0.011249260976910591, -0.08879542350769043, 0.05192156508564949, 0.01510899979621172, 0.054927434772253036, 0.0016473293071612716, -0.06658139079809189, 0.08956310153007507, 0.15889981389045715, 0.01274476945400238, -0.017964310944080353, -0.10052847862243652, -0.13556571304798126, 0.01987869292497635, 0.0009593923459760845, -0.024177923798561096, 0.08601491153240204, -0.05003110691905022, -0.12075650691986084, 0.055653657764196396], "\u81ea\u5b9a\u4e49Dataset\u4e2d\u5982\u4f55\u8fdb\u884c\u56fe\u50cf\u8bfb\u53d6\u5e76\u8fdb\u884cDecode\u64cd\u4f5c\uff1f": [-0.09429565072059631, 0.05980657786130905, 0.04247324541211128, 0.0385034903883934, -0.06870641559362411, -0.08461661636829376, -0.040844645351171494, 0.09752897918224335, 0.028109490871429443, 0.05417187139391899, 0.04365086555480957, -0.01903272606432438, 0.016386721283197403, -0.03373226150870323, -0.009402615949511528, 0.07545726001262665, 0.046688660979270935, 0.01547673624008894, -0.07926802337169647, 0.03974911943078041, -0.04239865764975548, 0.00045499575207941234, 0.022330742329359055, 0.05393696948885918, 0.0721951499581337, 0.11310713738203049, 0.026259388774633408, -0.03127092495560646, -0.047093234956264496, 0.09084618091583252, 0.07765194773674011, 0.06474676728248596, -0.05241712927818298, 0.08053500950336456, -0.015549580566585064, -0.05765625834465027, -0.023446159437298775, 0.08697492629289627, -0.03783983737230301, -0.02248583547770977, 0.09383446723222733, 0.012160779908299446, -0.04384211450815201, 0.08680744469165802, -0.03184652328491211, -0.027823057025671005, -0.1954508125782013, 0.03886595368385315, 0.050367046147584915, 0.08484192937612534, -0.11758178472518921, 0.06933528184890747, 0.0748056173324585, -0.022363662719726562, -0.014099528081715107, 0.0044392370618879795, 0.03273656591773033, 0.021000929176807404, 0.02489931508898735, -0.025729255750775337, 0.04703129827976227, 0.053701743483543396, 0.02011225000023842, -0.04407794401049614, -0.13862381875514984, 0.04509788006544113, -0.07948938757181168, -0.0810764729976654, -0.021269001066684723, 0.004908605944365263, -0.08954537659883499, 0.010687625966966152, -0.05269581824541092, 0.024187402799725533, 0.0713362842798233, 0.06032072752714157, -0.0037637921050190926, 0.04432870075106621, -0.0787447988986969, 0.06068829447031021, 0.010219980031251907, 0.070453941822052, 0.035662245005369186, -0.10529118776321411, 0.005734526086598635, -0.006275750230997801, -0.05119090527296066, 0.035101987421512604, -0.06091530621051788, 0.021758079528808594, -0.019525323063135147, -0.03169194608926773, -0.13691839575767517, 0.03877948597073555, 0.08634647727012634, -0.043582890182733536, -0.00274340296164155, -0.07611411064863205, -0.1307816207408905, -0.04052427038550377, 0.038776468485593796, -0.06489177793264389, -0.07080314308404922, 0.009221701882779598, -0.013737093657255173, -0.08934152126312256, -0.07579658925533295, 0.05857329070568085, 0.0005773677839897573, 0.013766169548034668, 0.07939949631690979, 0.02142646722495556, 0.0934467613697052, -0.008619560860097408, 0.05183606967329979, -0.057971566915512085, -0.03697970137000084, -0.10579376667737961, -0.10289840400218964, 0.10628421604633331, 0.14143106341362, 0.019586332142353058, 0.06651856750249863, 0.04970609024167061, -0.009408306330442429, -0.0458030104637146, 0.059251636266708374, -0.12028980255126953, -0.1009771078824997, -0.012708407826721668, 0.1556360423564911, -0.09178852289915085, 0.026521194726228714, -0.06553752720355988, -0.04788951203227043, 0.039546187967061996, 0.0052324505522847176, 0.04270781949162483, -0.010795755311846733, 0.1694028079509735, 0.01571349799633026, -0.1618250459432602, -0.016865940764546394, -0.045120880007743835, 0.09267981350421906, 0.02560424618422985, -0.0626484677195549, -0.1696905940771103, -0.03913760930299759, -0.06317883729934692, 0.09609623998403549, -0.05982146039605141, -0.021026985719799995, 0.039278168231248856, -0.04640069603919983, 0.04129163920879364, 0.032479025423526764, -0.0002451683394610882, 0.0002238210290670395, -0.09489075094461441, -0.08019659668207169, -0.011054830625653267, 0.03859315067529678, -0.005848143249750137, -0.10986347496509552, 0.05451793596148491, 0.00287180719897151, 0.002002817578613758, -0.018215488642454147, -0.040265027433633804, -0.005397871136665344, -0.02872685343027115, -0.06402844935655594, -0.07092483341693878, 0.048955220729112625, 0.05123487114906311, 0.06221618130803108, -0.05590612068772316, -0.015212311409413815, -0.05266154557466507, 0.022877953946590424, -0.09069059044122696, -0.05725356936454773, -0.050500378012657166, 0.14593105018138885, -0.004626926500350237, 0.003822938073426485, 0.023825030773878098, 0.17122261226177216, -0.18640290200710297, -0.015517514199018478, 0.04891086742281914, -0.033569809049367905, 0.07903392612934113, -0.03518901765346527, -0.0185077041387558, -0.06084747239947319, -0.00860392116010189, 0.05356292426586151, 0.0021255468018352985, -0.03934881091117859, 0.007576670963317156, -0.040394559502601624, -0.018084922805428505, -0.03360835462808609, -0.04695921391248703, -0.0798352062702179, -0.13782940804958344, 0.010702003724873066, 0.005331980064511299, 0.09138736873865128, 0.0573933906853199, -0.07135314494371414, -0.08526232838630676, -0.0871955007314682, -0.049996934831142426, 0.048921145498752594, 0.09140820801258087, 0.07116588205099106, -0.017319370061159134, -0.02835329808294773, -0.025629425421357155, -0.018060069531202316, -0.14944328367710114, -0.10746938735246658, -0.0354638434946537, -0.014836871065199375, -0.1034332886338234, -0.04007234424352646, 0.029499385505914688, -0.06568064540624619, 0.06182494014501572, -0.016111744567751884, 0.16091765463352203, -0.02457699552178383, 0.06361207365989685, -0.08029049634933472, 0.03244440257549286, -0.00813345331698656, -0.03915707394480705, -0.11951623857021332, 0.07594814896583557, -0.10722295194864273, -0.019543148577213287, -0.12650687992572784, 0.1193821057677269, 0.09688093513250351, 0.011539744213223457, 0.06447168439626694, -0.08267613500356674, 0.05150175839662552, -0.012834540568292141, -0.005203997250646353, 0.01722547598183155, -0.056685615330934525, 0.03132617473602295, 0.04666721820831299, -0.0027202030178159475, 0.058311961591243744, -0.0036923307925462723, -0.014324991032481194, 0.026540949940681458, -0.08695513010025024, 0.05107555538415909, -0.036419764161109924, -0.09213321655988693, 0.0831780955195427, -0.013729708269238472, 0.058806777000427246, -0.10773349553346634, 0.033519770950078964, 0.0326375775039196, -0.0748477429151535, 0.04940910264849663, 0.08951354771852493, 0.0814143568277359, 0.025040099397301674, -0.08615802973508835, 0.07265036553144455, 0.03518182039260864, -0.03732079267501831, 0.06051929295063019, 0.012815935537219048, 0.041454073041677475, 0.031065871939063072, -0.11281116306781769, 0.07134035229682922, 0.050459280610084534, 0.04191620275378227, 0.07515717297792435, -0.011121237650513649, -0.013549862429499626, -0.0656881183385849, -0.04745786264538765, -0.04019512981176376, -0.002455594716593623, 0.0312220249325037, 0.08563551306724548, 0.06270015239715576, 0.029124056920409203, -0.0512956902384758, 0.016168154776096344, 0.09374447166919708, -0.0015119153540581465, 0.014534697867929935, -0.0438813753426075, -0.05921156331896782, 0.017863832414150238, 0.031676460057497025, 0.04437749832868576, 0.10287613421678543, 0.12060785293579102, 0.01701495610177517, 0.15534469485282898, -0.08607637882232666, -0.04456561803817749, 0.02412210963666439, -0.07203244417905807, 0.04463222995400429, 0.014730354771018028, 0.019237075001001358, -0.054012712091207504, -0.017831064760684967, 0.0925641804933548, 0.029066340997815132, -0.07926391065120697, 0.04775756970047951, 0.08057240396738052, 0.02790934592485428, -0.050294775515794754, 0.047986067831516266, -0.03210189938545227, 0.04475109651684761, 0.09499091655015945, 0.0062443288043141365, -0.1409999132156372, 0.013940935954451561, -0.0015164443757385015, 0.0879056453704834, 0.009752844460308552, 0.05294416472315788, -0.05752187222242355, 0.032405540347099304, -0.088210329413414, 0.09870898723602295, -0.0358734056353569, 0.10720666497945786, 0.05408893898129463, -0.00333073060028255, -0.04171881452202797, 0.010768224485218525, -0.02756025642156601, 0.03686080500483513, -0.09258446097373962, -0.019009439274668694, -0.09864284843206406, -0.03001490794122219, -0.005828940309584141, 0.040541842579841614, 0.0011737266322597861, -0.014924596063792706, 0.007147650234401226, -0.025189654901623726, -0.1290343552827835, 0.05444066971540451, -0.08077884465456009, 0.04945579171180725, 0.06770358979701996, 0.04950840771198273, -0.017198989167809486, -0.14828689396381378, 0.13592469692230225, 0.16338074207305908, 0.09208671748638153, -0.0689215436577797, -0.11288923770189285, -0.12276695668697357, 0.04140332713723183, -0.06551637500524521, -0.15685750544071198, 0.004051002208143473, -0.0166645348072052, -0.09291427582502365, 0.017020057886838913], "\u5728\u4f7f\u7528`Dataset`\u5904\u7406\u6570\u636e\u8fc7\u7a0b\u4e2d\uff0c\u62a5\u9519`RuntimeError: can't start new thread`\uff0c\u600e\u4e48\u89e3\u51b3\uff1f": [-0.06554708629846573, 0.06738997995853424, 0.044166404753923416, 0.08311057090759277, -0.062716543674469, -0.10095183551311493, -0.041022468358278275, 0.13076171278953552, 0.04167581722140312, 0.03119419887661934, 0.018862048164010048, 0.0339917354285717, -0.043047450482845306, -0.002845190232619643, -0.0411779023706913, 0.11620159447193146, 0.04969796910881996, 0.0250234417617321, -0.07571548223495483, 0.09401358664035797, 0.011211041361093521, -0.0001095188781619072, 0.046116240322589874, -0.04877805337309837, 0.031854018568992615, 0.0412796251475811, -0.005677922163158655, -0.01585339941084385, 0.04096858948469162, 0.04410417005419731, 0.11587922275066376, 0.025736264884471893, -0.03132132813334465, 0.06377305090427399, 0.004807503893971443, -0.0633053407073021, -0.09566432982683182, 0.07612420618534088, -0.056557074189186096, -0.0479155108332634, 0.06349468231201172, -0.014161143451929092, -0.09506851434707642, 0.01186901144683361, -0.08873491734266281, -0.024959921836853027, -0.13114817440509796, -0.08395752310752869, 0.027355747297406197, 0.04663319140672684, 0.011458979919552803, 0.025698628276586533, 0.04102679342031479, -0.043773386627435684, -0.08132077008485794, -0.0329679474234581, 0.018381278961896896, -0.024977121502161026, 0.0816948264837265, -0.04430430382490158, 0.05709098279476166, 0.03607457876205444, -0.018736181780695915, -0.0703190490603447, -0.09226083755493164, -0.0015859814593568444, -0.08779288083314896, -0.04683194309473038, -0.00595869543030858, 0.018008088693022728, -0.05121970921754837, 0.01242895144969225, 0.012816797941923141, 0.042811352759599686, 0.021580157801508904, 0.04936771094799042, -0.0010491531575098634, 0.04860362783074379, -0.017660830169916153, 0.0434889942407608, 0.022481489926576614, 0.07202103734016418, 0.08137273788452148, -0.0788634866476059, -0.06601931899785995, -0.021309956908226013, -0.060705143958330154, 0.06367138773202896, -0.06810583919286728, 0.008784106001257896, -0.003361914772540331, -0.04522494599223137, -0.12714098393917084, 0.04441651329398155, 0.08646011352539062, -0.03736497461795807, -0.08941178023815155, -0.03499457240104675, -0.08163439482450485, 0.00568205863237381, 0.07903313636779785, -0.01567584089934826, -0.03985846787691116, 0.021260853856801987, 0.004151599947363138, -0.09835238754749298, -0.10295161604881287, 0.019691430032253265, 0.04780976101756096, 0.011808161623775959, 0.05584648996591568, 0.012370968237519264, 0.025187650695443153, 0.026190055534243584, -0.020729713141918182, 0.006025734357535839, 0.02375471591949463, -0.0024081263691186905, -0.07212172448635101, 0.09714341163635254, 0.12520617246627808, -0.06850290298461914, 0.03354732319712639, 0.07243359088897705, 0.01619563437998295, -0.03612740337848663, 0.1346239298582077, -0.12249480187892914, -0.11155978590250015, -0.006707692518830299, 0.08388262987136841, -0.10604847967624664, 0.08164918422698975, -0.13608235120773315, -0.09953376650810242, -0.004493955057114363, 0.005333860870450735, 0.011652419343590736, -0.010669846087694168, 0.16446976363658905, 0.06280991435050964, -0.14108771085739136, 0.032242756336927414, -0.048766665160655975, 0.05189870670437813, 0.0644184872508049, -0.0806039422750473, -0.11560812592506409, -0.02125675044953823, -0.009065632708370686, 0.10504531860351562, -0.07414090633392334, -0.06082703173160553, 0.11144691705703735, 0.03629707917571068, 0.05537821352481842, 0.025984453037381172, -0.03291270136833191, 0.028299320489168167, -0.09500588476657867, -0.055612653493881226, 0.02844017930328846, 0.012356218881905079, 0.015227694064378738, -0.06679630279541016, 0.03590157628059387, -0.04140641912817955, 0.07809953391551971, -0.04325343295931816, 0.007638948503881693, -0.0023401151411235332, -0.05961233377456665, -0.02601790986955166, -0.054335638880729675, 0.062152668833732605, 0.02833857759833336, 0.0628373995423317, -0.0267794132232666, -0.03493708372116089, -0.013411585241556168, 0.022450152784585953, -0.10052027553319931, -0.05102363973855972, -0.1222987174987793, 0.08371339738368988, -0.020063143223524094, 0.03505084291100502, 0.02263687178492546, 0.09733814001083374, -0.16902707517147064, -0.011848240159451962, 0.09917032718658447, -0.013975114561617374, 0.10214336216449738, -0.016823455691337585, 0.006002126727253199, -0.06340690702199936, -0.03938665986061096, 0.032213374972343445, -0.027094729244709015, 0.019801151007413864, -0.00299350218847394, 0.046871453523635864, 0.042301155626773834, -0.025582266971468925, -0.04234609752893448, -0.06929294019937515, -0.10851175338029861, 0.020671222358942032, -0.028043106198310852, 0.01470341719686985, 0.08325554430484772, -0.126522034406662, -0.03247753903269768, -0.0859060138463974, 0.019044362008571625, 0.09989508986473083, 0.05102667957544327, 0.032816968858242035, -0.049538254737854004, -0.023326020687818527, 0.054265424609184265, -0.028226006776094437, -0.11001014709472656, -0.11260338127613068, -0.02538929507136345, -0.02787352353334427, -0.06636292487382889, -0.017766747623682022, 0.009821344166994095, -0.07635248452425003, 0.0840316116809845, 0.04458223283290863, 0.1679457724094391, 0.003709003096446395, 0.06139494106173515, -0.08124237507581711, -0.038638439029455185, 0.02455768920481205, 0.012443829327821732, -0.06186214089393616, 0.050009503960609436, -0.05247770622372627, -0.02568882890045643, -0.12487634271383286, 0.07401436567306519, 0.06993165612220764, -0.03136298432946205, 0.0011724972864612937, -0.1187078207731247, 0.0042637912556529045, 0.03491087630391121, -0.07160132378339767, -0.049194496124982834, -0.034289006143808365, 0.06956548243761063, 0.06854131817817688, -0.03396758437156677, 0.07356102764606476, -0.035074252635240555, 0.07490191608667374, 0.038285937160253525, 0.003405626630410552, 0.022549141198396683, -0.04812003672122955, -0.10830847918987274, 0.08122568577528, -0.045142412185668945, 0.0170266292989254, -0.06746772676706314, 0.022020043805241585, 0.09335435181856155, -0.04145065322518349, 0.054589468985795975, 0.07789921760559082, 0.051702313125133514, -0.015719210729002953, -0.07916919887065887, 0.04486694931983948, 0.03723742812871933, -0.05547153949737549, 0.03494422882795334, -0.03956128656864166, -0.03472258150577545, 0.01140240766108036, -0.0728798657655716, 0.0348440445959568, 0.015591486357152462, 0.03160717710852623, 0.13884682953357697, -0.030632657930254936, -0.054632727056741714, -0.028413821011781693, -0.07550664991140366, -0.02182336151599884, 0.0026952410116791725, 0.028237883001565933, 0.09637296944856644, -0.026024410501122475, -0.029422752559185028, 0.036515116691589355, -0.028850793838500977, 0.03798428177833557, -0.11310184001922607, 0.0391254760324955, 0.020399870350956917, -0.014751198701560497, -0.044568173587322235, 0.050847362726926804, 0.006550710182636976, 0.07746168971061707, 0.1461695432662964, 0.04315023124217987, 0.1387924700975418, -0.06071942299604416, -0.03525453433394432, 0.013570016250014305, -0.08700302243232727, 0.07520739734172821, -0.01912052556872368, 0.029292350634932518, -0.046045199036598206, -0.06380707770586014, 0.05182681977748871, 0.09933032095432281, -0.04087075963616371, 0.03326370567083359, 0.03742719069123268, 0.05488002300262451, -0.01824456825852394, 0.07279044389724731, -0.10746723413467407, 0.0937989354133606, 0.13269217312335968, 0.02934848517179489, -0.13259899616241455, 0.06175224855542183, -0.012668793089687824, -0.009597588330507278, 0.038572244346141815, 0.0014265505596995354, -0.09275788068771362, 0.045502036809921265, -0.05714147165417671, 0.051857322454452515, -0.03690241277217865, 0.1321481466293335, 0.03793306648731232, 0.05164703354239464, 0.018089614808559418, 0.05482840910553932, -0.0693967416882515, 0.06399115920066833, -0.01882604882121086, -0.0772714912891388, -0.15545274317264557, -0.03886687383055687, 0.025639517232775688, 0.0667724758386612, -0.0669461265206337, -0.001797584700398147, -0.04148978367447853, -0.008098870515823364, -0.1370522528886795, 0.059666093438863754, -0.03674975410103798, -0.00983572006225586, 0.015063730999827385, 0.12439551204442978, 0.0012256162008270621, -0.0767962783575058, 0.027530577033758163, 0.15237507224082947, 0.05621691793203354, -0.04985298588871956, -0.08895538747310638, -0.16364142298698425, 0.0654771625995636, -0.07075652480125427, -0.10994687676429749, 0.0574645958840847, 0.0791425108909607, -0.11045494675636292, -0.02211296185851097], "\u5728\u4f7f\u7528`GeneratorDataset`\u52a0\u8f7d\u6570\u636e\u65f6\uff0c\u62a5\u9519`RuntimeError: Failed to copy data into tensor.`\uff0c\u600e\u4e48\u89e3\u51b3\uff1f": [-0.03151198476552963, 0.016955740749835968, 0.032839927822351456, 0.04168790951371193, -0.052946895360946655, -0.020114753395318985, 0.0042244791984558105, 0.12089946866035461, -0.005365858785808086, 0.04728272557258606, -0.027154965326189995, 0.011967885307967663, 0.01294541172683239, 0.03246641159057617, -0.06334488838911057, 0.05351051688194275, 0.12982457876205444, -0.07923002541065216, -0.06158497929573059, 0.14163972437381744, 0.03907918557524681, -0.014638674445450306, 0.1164688915014267, -0.06221709027886391, 0.07156099379062653, 0.13121972978115082, -0.034644272178411484, 0.025604357942938805, 0.025482114404439926, 0.04765607416629791, 0.07436036318540573, 0.03433997929096222, -0.0801352858543396, 0.006981011480093002, -0.01083001121878624, -0.055436596274375916, -0.0702752023935318, 0.11988665163516998, -0.08875497430562973, 0.01379476860165596, -0.008571087382733822, -0.014785314910113811, -0.023667974397540092, 0.06545146554708481, -0.0352199450135231, -0.04558932036161423, -0.0843123123049736, -0.05277392268180847, 0.0615951344370842, 0.024374425411224365, -0.10680985450744629, 0.02190622314810753, 0.04417269304394722, -0.019992981106042862, -0.08649580925703049, 0.0017060546670109034, 0.015577217563986778, 0.02492307499051094, 0.024200016632676125, 0.03010164387524128, 0.01676546409726143, 0.024091573432087898, -0.019088031724095345, -0.005565458908677101, -0.05847626551985741, 0.025696411728858948, 0.00017650052905082703, -0.04589015990495682, -0.016369158402085304, 0.005632833577692509, -0.05777846276760101, -0.046598486602306366, -0.023651251569390297, 0.06477237492799759, 0.007257641293108463, 0.11705993860960007, 0.008167319931089878, 0.07224611192941666, -0.045046258717775345, -0.0009637472103349864, -0.007928191684186459, 0.08123216778039932, 0.03921673446893692, -0.012163739651441574, -0.050161439925432205, -0.026723042130470276, 0.008907784707844257, 0.09072542935609818, -0.052477624267339706, 0.05744487792253494, 0.0536007322371006, -0.07133597880601883, -0.2066674381494522, 0.07499244064092636, 0.06510289013385773, -0.03981716185808182, -0.05302996188402176, -0.024542702361941338, -0.10772765427827835, 0.03466736897826195, 0.06152796745300293, -0.04678521305322647, -0.016500789672136307, 0.023919856175780296, 0.05570787936449051, -0.1570005714893341, 0.039243098348379135, 0.07068131864070892, -0.011019322089850903, 0.027466462925076485, 0.0470164492726326, 0.0422528050839901, 0.04855867475271225, 0.02823498845100403, -0.028472062200307846, 0.10183943808078766, -0.010050348937511444, -0.0720505639910698, -0.08148692548274994, 0.1426827609539032, 0.13117319345474243, -0.03470400720834732, -0.04342898726463318, 0.10446957498788834, -0.026962842792272568, -0.003489194205030799, 0.07597915828227997, -0.04656970128417015, -0.05091023072600365, -0.03440650552511215, 0.1592654287815094, -0.058115776628255844, 0.09206491708755493, -0.11437907069921494, -0.07074985653162003, 0.05519019067287445, -0.028359130024909973, 0.0023959046229720116, -0.03127960115671158, 0.05508994311094284, 0.07484003156423569, -0.09449052065610886, 0.07358463108539581, -0.00754224369302392, 0.06356308609247208, -0.015209546312689781, -0.037310343235731125, -0.09752683341503143, -0.005966693162918091, -0.05052627995610237, 0.1042042151093483, 0.009328773245215416, -0.06653732806444168, 0.11848147213459015, -0.009172998368740082, 0.056294023990631104, 0.02585131861269474, -0.0031152416486293077, -0.07237471640110016, -0.0981622189283371, -0.0209911298006773, 0.0030704957898706198, -0.004720710683614016, 0.04168013110756874, 0.05813027173280716, -0.011838139966130257, -0.02729262411594391, -0.0036776114720851183, -0.03085099719464779, -0.027813557535409927, -0.022505957633256912, -0.06588999927043915, -0.07067816704511642, -0.03619442135095596, 0.07226154208183289, -0.049039773643016815, 0.013126889243721962, -0.0039659827016294, -0.02195713296532631, -0.005902778822928667, 0.04371517151594162, -0.08583824336528778, -0.018416447564959526, -0.10916978120803833, -0.01911621168255806, 0.05005257949233055, 0.05622844025492668, 0.06237209960818291, 0.0959116518497467, -0.060895923525094986, -0.021527770906686783, 0.09299489855766296, 0.05215722694993019, 0.11277194321155548, -0.044090673327445984, 0.02581859566271305, -0.07860992848873138, 0.050917476415634155, 0.03321265056729317, -0.01858370192348957, -0.034595098346471786, 0.05947056785225868, 0.029447421431541443, 0.045912280678749084, 0.013628290966153145, -0.057803601026535034, -0.02877845987677574, -0.10559003800153732, -0.01773007959127426, -0.05111314728856087, 0.09096255898475647, 0.044617872685194016, 0.003377041080966592, -0.023662693798542023, -0.14978566765785217, 0.031262557953596115, 0.0666683241724968, 0.09416460990905762, 0.06858492642641068, -0.040082670748233795, 0.039619170129299164, 0.03473600745201111, -0.024608496576547623, -0.1229412779211998, -0.1614958494901657, 0.034212131053209305, -0.045599110424518585, -0.050086162984371185, 0.0442793145775795, -0.016380764544010162, -0.061590392142534256, 0.07407448440790176, 0.08117464184761047, 0.1907762736082077, -0.0432206466794014, 0.11300086975097656, -0.010081890039145947, 0.005977974738925695, 0.03327237814664841, -0.035581834614276886, -0.10896370559930801, 0.06887951493263245, -0.03531022369861603, -0.032436270266771317, -0.08530857414007187, 0.09116850793361664, 0.07960334420204163, 0.0010453012073412538, 0.04825124517083168, -0.01608460210263729, 0.03825106844305992, 0.04358428716659546, -0.01116115041077137, -0.014202436432242393, -0.004912929143756628, 0.07423017919063568, 0.005339452531188726, -0.11465218663215637, 0.0471612811088562, -0.013355798088014126, 0.004158386029303074, 0.08881029486656189, -0.03639381006360054, -0.026638338342308998, -0.02504098042845726, -0.020667098462581635, 0.11925504356622696, -0.057697594165802, 0.022427303716540337, -0.07276003062725067, 0.046807993203401566, 0.0495518259704113, -0.1161491647362709, 0.050141990184783936, 0.06543859094381332, 0.054232776165008545, -0.059577826410532, -0.12083620578050613, 0.07924206554889679, 0.04720543697476387, 0.01563497632741928, 0.06582286208868027, 0.057412710040807724, -0.07773508876562119, 0.03045748360455036, -0.08891589939594269, -0.011273196898400784, -0.011001593433320522, 0.057571522891521454, 0.10253013670444489, -0.0839780792593956, -0.04980788007378578, -0.040434323251247406, 0.014834515750408173, 0.04639806970953941, 0.08237504959106445, 0.14540590345859528, 0.09746070206165314, -0.040901508182287216, 0.06617970764636993, -0.029965758323669434, -0.038849838078022, 0.0740661472082138, -0.10616269707679749, 0.00404018210247159, 0.014693109318614006, -0.07942133396863937, -0.012026281096041203, 0.015781378373503685, -0.018734386190772057, 0.06429877877235413, 0.060997217893600464, 0.003621759358793497, 0.060584038496017456, -0.08148496598005295, 0.006157024297863245, 0.05980894714593887, -0.14934071898460388, 0.014179794117808342, -0.07469144463539124, -0.00025729089975357056, 0.00683599105104804, 0.004734581336379051, 0.11138124763965607, 0.01013001799583435, -0.010744806379079819, -0.04385478049516678, 0.03122316673398018, 0.02096523717045784, 0.03360877186059952, 0.04684687405824661, -0.11348249018192291, 0.039477862417697906, 0.1121324673295021, 0.03999113291501999, -0.1133216992020607, 0.13019929826259613, 0.04654651880264282, 0.003715422935783863, 0.07883886992931366, 0.02925296500325203, -0.09146279096603394, -0.0031996502075344324, -0.12344881147146225, 0.05230644345283508, -0.02015421725809574, 0.06558073312044144, 0.08416725695133209, 0.023163383826613426, -0.016315901651978493, 0.02325054630637169, -0.13665200769901276, 0.10548706352710724, 0.01841062866151333, -0.03901549056172371, -0.09512899070978165, -0.017678240314126015, -0.028555842116475105, -0.018202243372797966, -0.054928719997406006, -0.025079261511564255, 0.03177079185843468, -0.02767001837491989, -0.010314985178411007, 0.013830632902681828, -0.03293091803789139, 0.04570506140589714, -0.008703533560037613, 0.055214185267686844, -0.0022236015647649765, -0.06661675870418549, 0.04703380912542343, 0.13995914161205292, 0.023532753810286522, -0.08520285785198212, -0.030793771147727966, -0.13241690397262573, 0.13371481001377106, -0.04974193498492241, -0.12279483675956726, -0.022859519347548485, 0.03190293908119202, -0.08500349521636963, -0.032701775431632996], "\u8fdb\u884cHCCL\u5206\u5e03\u5f0f\u8bad\u7ec3\u51fa\u9519\uff1a`Init plugin so failed\uff0c ret = 1343225860`\uff1f": [0.022896798327565193, 0.10211371630430222, -0.02586350031197071, 0.03575641289353371, -0.07054975628852844, -0.0383886843919754, 0.025365125387907028, 0.08403801172971725, -0.011220861226320267, 0.06141830235719681, 0.003970989491790533, -0.008486209437251091, 0.059087470173835754, -0.01016952469944954, -0.0608844980597496, 0.0673217922449112, 0.1317180097103119, -0.02892659604549408, -0.03796877712011337, 0.01590406894683838, -0.03310016170144081, 0.018586447462439537, 0.04580957442522049, -0.042456816881895065, 0.03998221457004547, 0.08291875571012497, -0.06091678887605667, 8.210539817810059e-06, 0.01954227313399315, 0.11089577525854111, 0.07960748672485352, 0.03535408899188042, -0.08670814335346222, 0.07627296447753906, -0.07582063227891922, 0.006594905164092779, 0.0030986007768660784, 0.12416763603687286, -0.011759800836443901, -0.003076071385294199, 0.05353376269340515, 0.02740584686398506, -0.02320755645632744, 0.11182424426078796, 0.017170511186122894, 0.0009579674224369228, -0.17615172266960144, 0.05411407724022865, 0.09215880930423737, 0.03813442587852478, -0.14479458332061768, 0.0033948272466659546, 0.04007590562105179, -0.06640417873859406, -0.01494082622230053, -0.02024887502193451, 0.059316862374544144, 0.012759275734424591, 0.0682753324508667, -0.003922727890312672, -0.08510709553956985, -0.02913033217191696, 0.0689551830291748, 0.019650381058454514, -0.10081308335065842, -0.02521643601357937, -0.08962859958410263, -0.06753669679164886, -0.027806086465716362, -0.07148247212171555, -0.06292175501585007, 0.01393992267549038, -0.007526063825935125, 0.010130014270544052, 0.01964988373219967, 0.006748277693986893, -0.09174244850873947, 0.071262888610363, -0.049947548657655716, 0.03329690545797348, 0.04149530827999115, 0.06216864287853241, -0.0330950990319252, -0.09784853458404541, 0.015664607286453247, -0.05606326833367348, -0.04817298427224159, 0.027343744412064552, -0.09513033181428909, 0.08326099067926407, -0.025833886116743088, 0.01619674265384674, -0.1919998824596405, 0.08625511825084686, 0.07939306646585464, -0.03218584135174751, 0.0250988882035017, 0.015909863635897636, -0.1676725596189499, 0.01856374740600586, 0.04895315691828728, -0.056719712913036346, -0.09157980978488922, 0.038159459829330444, 0.03363680839538574, -0.08012069761753082, 0.03112703189253807, 0.05615273490548134, 0.019309841096401215, 0.03979376703500748, 0.040789972990751266, 0.028313936665654182, 0.08772380650043488, -0.0013656198279932141, 0.02705204486846924, 0.030205700546503067, -0.0424431711435318, -0.048654280602931976, -0.014248542487621307, 0.1333119124174118, 0.0880255401134491, -0.05237771198153496, 0.004656527191400528, 0.06973042339086533, 0.056035883724689484, -0.01095735002309084, 0.06442676484584808, -0.053299084305763245, -0.11093433946371078, -0.09372478723526001, 0.1923513263463974, -0.05008041113615036, 0.10278315842151642, -0.1086886078119278, 0.00959639623761177, 0.06272722035646439, -0.06302099674940109, 0.008889022283256054, 0.01608557440340519, 0.11273109912872314, 0.04022454470396042, -0.18142075836658478, 0.018871653825044632, -0.046404656022787094, 0.09531434625387192, -0.001916640903800726, -0.09889160841703415, -0.204316645860672, -0.05620628967881203, 0.001538268057629466, 0.08641140908002853, -0.033408161252737045, -0.0792093276977539, 0.03875117748975754, -0.051702357828617096, 0.10909420251846313, 0.010558844543993473, 0.03329797834157944, -0.06463303416967392, 0.010907704010605812, -0.11630836129188538, -0.04791070148348808, 0.022726217284798622, 0.05318138003349304, -0.023025885224342346, 0.11439873278141022, 0.029194999486207962, 0.0012524069752544165, 0.008248833008110523, -0.05795951187610626, -0.059896644204854965, -0.012199281714856625, -0.09406370669603348, -0.0653301551938057, 0.016350600868463516, -0.005406978540122509, -0.0063110049813985825, -0.09700312465429306, -0.018847309052944183, -0.0340120904147625, 0.0979042649269104, -0.13694828748703003, -0.10841783136129379, -0.024138297885656357, 0.10805362462997437, 0.03861437737941742, -0.05676233768463135, 0.08845198899507523, 0.180230051279068, -0.10716552287340164, -0.0062642889097332954, -3.2767653465270996e-05, -0.005450267344713211, 0.040307074785232544, 0.03642234578728676, -0.02810068614780903, -0.049054261296987534, -0.04538324475288391, 0.03207666426897049, 0.005060364957898855, -0.008488007821142673, 0.08522055298089981, -0.022279616445302963, 0.05644240975379944, -0.014290550723671913, -0.07473216950893402, -0.09715062379837036, -0.12131547927856445, 0.03546358644962311, -0.04811710864305496, 0.08321692794561386, -0.003945024684071541, -0.030168935656547546, -0.06731875985860825, -0.12427079677581787, -0.026067638769745827, 0.10438283532857895, 0.08144816756248474, 0.12883421778678894, -0.04915773496031761, 0.03003009222447872, -0.02264545112848282, 0.00668442714959383, -0.05972905457019806, -0.07390492409467697, 0.010102403350174427, -0.07392232120037079, -0.09990408271551132, 0.0002929382026195526, 0.12096784263849258, -0.06758297979831696, 0.06842319667339325, 0.0016351067461073399, 0.1173713356256485, -0.03474533557891846, 0.07196652889251709, -0.08606861531734467, -0.012671943753957748, -0.05094581097364426, -0.024131862446665764, -0.09099750965833664, 0.10373002290725708, -0.07089145481586456, -0.09584428369998932, -0.10968048870563507, 0.07566895335912704, 0.08701817691326141, 0.02640327252447605, 0.04911261424422264, -0.004103238694369793, 0.0550973042845726, 0.02529597282409668, 0.018933454528450966, 0.011309945955872536, -0.027661196887493134, 0.065464086830616, 0.019162092357873917, -0.07527381926774979, 0.023993736132979393, 0.057390619069337845, -0.045551612973213196, 0.04704541340470314, -0.12258452922105789, 0.027143433690071106, 0.004200098570436239, -0.04457802325487137, 0.05674203485250473, -0.03360966965556145, -0.07786771655082703, -0.08645687252283096, 0.04871353134512901, 0.0598989799618721, -0.10339373350143433, -0.004786151461303234, 0.06893245875835419, 0.0956302061676979, 0.0054265763610601425, -0.057144369930028915, -0.015919465571641922, 0.005207497160881758, -0.0036602900363504887, 0.05227885767817497, 0.042220547795295715, -0.0049751438200473785, 0.05717017501592636, 0.009861701168119907, 0.044180404394865036, 0.0018489598296582699, 0.03889560326933861, 0.14235113561153412, -0.010155283845961094, 6.957724690437317e-05, -0.013637693598866463, -0.03244258835911751, -0.042749371379613876, 0.05941105633974075, 0.0021821672562509775, -0.010953389108181, 0.01673158071935177, 0.10229779779911041, -0.0221701730042696, -0.06381035596132278, 0.08414843678474426, -0.042710766196250916, -0.00789649598300457, 0.017322871834039688, -0.04016505181789398, 0.045283664017915726, 0.00537237199023366, 0.10169803351163864, 0.044803086668252945, 0.02155553176999092, 0.044052012264728546, 0.09693758189678192, -0.0950208231806755, -0.04004363343119621, 0.053267378360033035, -0.09427174180746078, 0.061686933040618896, -0.03955455124378204, 0.023186884820461273, -0.07249464839696884, 0.007704647723585367, 0.05720822885632515, 0.08593375980854034, -0.025849711149930954, 0.013407823629677296, 0.0651036947965622, 0.04290470853447914, -0.014313969761133194, 0.03636681288480759, -0.044604964554309845, 0.08560684323310852, 0.08626700937747955, -0.024045148864388466, -0.14416436851024628, 0.08984920382499695, 0.027685634791851044, 0.06230982765555382, 0.06832659244537354, 0.06679916381835938, -0.11437965929508209, 0.00012233387678861618, -0.15106923878192902, 0.047837261110544205, -0.08927074074745178, -0.006448466330766678, 0.0811581239104271, -0.0327099971473217, 0.056875843554735184, 0.04600764438509941, -0.0748290866613388, 0.037099070847034454, -0.009887181222438812, -0.01495513878762722, -0.10631673038005829, -0.09789806604385376, -0.03524210304021835, 0.027390364557504654, 0.08046290278434753, -0.0024540747981518507, -0.03209853544831276, 0.006720805075019598, -0.1023753434419632, 0.07813958823680878, 0.0018956889398396015, 0.0665576383471489, -0.015256340615451336, 0.03473591059446335, 0.01486792042851448, -0.16100436449050903, 0.08661966025829315, 0.10788296908140182, 0.1116064041852951, -0.022764893248677254, -0.06976690143346786, -0.062056735157966614, 0.05078510567545891, -0.0951487272977829, -0.15208277106285095, -0.04118185117840767, 0.04690028354525566, -0.11344251036643982, -0.024670738726854324], "MindSpore\u6267\u884cGPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u62a5\u9519\u5982\u4e0b\uff0c\u5982\u4f55\u89e3\u51b3:": [0.0023245769552886486, -0.0027062976732850075, -0.0062539600767195225, 0.025119615718722343, -0.004181519150733948, -0.02775762975215912, -0.003411797573789954, 0.03409732133150101, -0.05391433462500572, 0.010214991867542267, 0.049618955701589584, 0.039932455867528915, -0.004235175438225269, 0.0413983054459095, -0.0056462655775249004, 0.029087260365486145, 0.034764185547828674, -0.02982126921415329, -0.04343598335981369, 0.021835852414369583, -0.062379829585552216, 0.044278256595134735, 0.060607943683862686, 0.05078619346022606, 0.07085705548524857, 0.022537382319569588, -0.11077886819839478, 0.01937102898955345, -0.008191627450287342, 0.07129137217998505, 0.026361485943198204, 0.08702412247657776, -0.10620119422674179, 0.04554145038127899, 0.027075104415416718, -0.03553056716918945, -0.05600162222981453, 0.11630138754844666, -0.031205441802740097, -0.023602943867444992, 0.008456379175186157, -0.010895046405494213, -0.049161579459905624, 0.09938324242830276, 0.0069126589223742485, -0.03853543847799301, -0.0894983559846878, 0.0512847900390625, 0.06654847413301468, 0.017954600974917412, -0.10657517611980438, 0.03621917590498924, -0.07176516205072403, 0.03964414447546005, -0.04711813107132912, -0.028884170576930046, -0.054335903376340866, -0.0026040279772132635, 0.04460816830396652, 0.025191407650709152, -0.02277899533510208, 0.06501740217208862, -0.05425868183374405, 0.03983985632658005, -0.09081931412220001, -0.018608197569847107, -0.051785655319690704, -0.07960966974496841, 0.008124369196593761, 0.08263696730136871, -0.07785825431346893, 0.04102208465337753, -0.033797141164541245, 0.051341522485017776, 0.05558828264474869, 0.010872319340705872, -0.04458882659673691, 0.06131088361144066, -0.08579576015472412, 0.015964318066835403, -0.015268880873918533, 0.05449223518371582, 0.052702177315950394, -0.06792467087507248, 0.007391793187707663, -0.026553303003311157, -0.10461365431547165, 0.09236869215965271, -0.07634466886520386, 0.07435733079910278, -0.04338604211807251, -0.009017549455165863, -0.1363397091627121, 0.07344495505094528, 0.05535372346639633, -0.017084307968616486, -0.007277915254235268, -0.08989942818880081, -0.10518468171358109, -0.029339104890823364, -0.02458425611257553, 0.051411308348178864, -0.03160397708415985, 0.06834974139928818, -0.025323787704110146, -0.13492579758167267, 0.060203831642866135, 0.05214361473917961, 0.029842350631952286, 0.027455419301986694, 0.02848970703780651, 0.00041290000081062317, 0.07008334994316101, 0.016119334846735, -0.0006863808957859874, -0.04364451766014099, -0.09021908789873123, -0.09476382285356522, -0.06342311203479767, 0.09563308954238892, 0.13769036531448364, -0.0018387471791356802, 0.014171519316732883, 0.06718350201845169, 0.06252017617225647, 0.019128305837512016, 0.047343507409095764, -0.06945695728063583, -0.07955316454172134, -0.06525754183530807, 0.10458386689424515, -0.04771061986684799, 0.12709428369998932, -0.1190805435180664, -0.11206505447626114, 0.08159974217414856, -0.06353256851434708, -0.0024234382435679436, -0.07676494121551514, 0.04679596424102783, 0.023853667080402374, -0.06638940423727036, -0.012292272411286831, -0.07310006022453308, 0.10216214507818222, 0.03749724477529526, -0.0906425416469574, -0.17633916437625885, 0.012678606435656548, -0.025747224688529968, 0.11940553784370422, 0.0025814310647547245, -0.018896974623203278, 0.09506592154502869, -0.011300865560770035, 0.07375851273536682, -0.12563295662403107, -0.015278264880180359, -0.05086188018321991, -0.009188264608383179, -0.05134591460227966, 0.01637374795973301, 0.015584074892103672, -0.03243666887283325, 0.04893205314874649, 0.015485025011003017, 0.0409822016954422, -0.05723690986633301, -0.0482979416847229, -0.09199179708957672, -0.0030744108371436596, 0.05711799114942551, -0.07385987043380737, 0.020152313634753227, 0.02264978550374508, -0.045899271965026855, 0.024711936712265015, -0.07710752636194229, -0.017377957701683044, -0.07858514785766602, 0.08361071348190308, -0.14232076704502106, -0.03105001151561737, -0.07857926189899445, 0.11002018302679062, 0.008842173963785172, 0.03287573531270027, 0.008363529108464718, 0.1466306746006012, -0.21255919337272644, -0.018062463030219078, 0.028495047241449356, 0.0967174544930458, 0.07282578200101852, 0.08839826285839081, -0.025347238406538963, -0.07578306645154953, -0.050013598054647446, 0.0035123550333082676, 0.09031528234481812, -0.058430109173059464, 0.0023915795609354973, -0.0001844707876443863, 0.04947535693645477, -0.04330816864967346, -0.012504072859883308, -0.0541483610868454, -0.12532642483711243, -0.022468574345111847, -0.1140589788556099, 0.11998917907476425, 0.009905848652124405, -0.05787071958184242, -0.07336901128292084, -0.14365576207637787, 0.03656813129782677, 0.08484131097793579, 0.11205089092254639, 0.014189939014613628, -0.02380972169339657, 0.020596344023942947, -0.03253279998898506, 0.014254222624003887, -0.04712521657347679, -0.16308295726776123, 0.06269720941781998, -0.09000273048877716, -0.1223791241645813, -0.009861004538834095, 0.14729949831962585, -0.044189464300870895, 0.1309707760810852, -0.02566586807370186, 0.05263566970825195, -0.019089216366410255, 0.08286742120981216, 0.0035052639432251453, -0.05046142265200615, 0.02559332363307476, 0.07312638312578201, -0.15491051971912384, -0.030801892280578613, -0.08713887631893158, -0.050495125353336334, -0.04585219919681549, 0.016684312373399734, 0.08314123749732971, 0.0076864114962518215, 0.03371787071228027, -0.06500037014484406, 0.0302700474858284, 0.02987612970173359, -0.03434073179960251, 0.12735404074192047, 0.029368942603468895, 0.00632281182333827, 0.031184976920485497, -0.0466388538479805, 0.046357445418834686, 0.0572785884141922, 0.03571021929383278, 0.0653422474861145, -0.062151335179805756, -0.0032143034040927887, -0.06292939186096191, -0.02177874930202961, 0.08205834031105042, -0.0286363884806633, 0.06595542281866074, -0.06360172480344772, 0.01608687825500965, 0.03819917142391205, -0.07482879608869553, 0.04447931796312332, 0.14363572001457214, 0.07430532574653625, -0.09286293387413025, -0.11250899732112885, 0.0920683890581131, 0.051885779947042465, -0.006568504963070154, 0.049124158918857574, 0.018811151385307312, 0.05849062651395798, 0.09636760503053665, -0.020338449627161026, 0.07931148260831833, 0.051593221724033356, 0.0027882906142622232, 0.027458475902676582, -0.06362483650445938, -0.02784462459385395, -0.05389612168073654, 0.05128594860434532, -0.05712597817182541, 0.0745009109377861, 0.05195162817835808, -0.015858562663197517, -0.012958560138940811, 0.09911373257637024, -0.061259932816028595, -0.02646959014236927, 0.07001364231109619, -0.09861449152231216, -0.010471949353814125, -0.0055558704771101475, -0.06475057452917099, 0.1091519370675087, -0.041057292371988297, -0.015790719538927078, 0.15792042016983032, 0.07497935742139816, 0.05657017230987549, 0.10048510134220123, -0.14386551082134247, -0.0766134113073349, 0.06444721668958664, -0.14718958735466003, 0.08501840382814407, -0.04491150379180908, 0.054024748504161835, -0.07884077727794647, -0.01567673869431019, 0.07245361804962158, 0.0940215066075325, 0.02009524777531624, 0.034299299120903015, 0.015538133680820465, 0.02401129901409149, -0.038065697997808456, 0.02291310951113701, -0.045096319168806076, 0.024777250364422798, 0.025100408121943474, -0.01614772155880928, -0.1763285994529724, 0.11037570983171463, 0.11261484771966934, 0.01896234229207039, -0.017484355717897415, 0.09568855166435242, -0.07393697649240494, -0.026976387947797775, -0.0963326022028923, 0.08767453581094742, -0.044852036982774734, 0.0648563876748085, 0.04352518916130066, -0.08915134519338608, -0.08395890146493912, 0.028389571234583855, -0.050305288285017014, 0.03157813474535942, -0.016646437346935272, -0.0025108105037361383, -0.1469230055809021, -0.13434207439422607, -0.016889333724975586, 0.047526031732559204, -0.00010082870721817017, -0.02519294247031212, -0.031649570912122726, -0.1388597935438156, -0.06990619748830795, 0.021597199141979218, -0.05076140910387039, 0.03840591385960579, 0.0011589820496737957, 0.08350978791713715, -0.0343814380466938, -0.15071415901184082, 0.17201407253742218, 0.11629059910774231, 0.08624997735023499, -0.06132621318101883, -0.15531297028064728, -0.17278891801834106, 0.07334478199481964, 0.020106295123696327, -0.08302952349185944, 0.053587429225444794, 0.08002446591854095, -0.0780959278345108, 0.10624079406261444], "GPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u573a\u666f\u4e0b\uff0c\u82e5\u9519\u8bef\u8bbe\u7f6e\u73af\u5883\u53d8\u91cfCUDA_VISIBLE_DEVICES\u7684\u4e2a\u6570\u5c0f\u4e8e\u6267\u884c\u7684\u8fdb\u7a0b\u6570\u65f6\uff0c\u53ef\u80fd\u5bfc\u81f4\u8fdb\u7a0b\u963b\u585e\u95ee\u9898\u3002": [-0.02078324370086193, -0.00917508453130722, 0.011251823976635933, 0.0323515385389328, -0.042524777352809906, -0.01759437844157219, -0.024735430255532265, 0.005861444398760796, -0.0894533321261406, -0.047258708626031876, 0.10358584672212601, 0.014583537355065346, -0.01779763586819172, -0.06147119402885437, -0.06199290230870247, 0.06728863716125488, 0.08039219677448273, -0.08118599653244019, -0.03180669993162155, -0.016128068789839745, -0.05454453453421593, 0.06293540447950363, 0.007075888104736805, 0.018780149519443512, 0.0717104896903038, 0.029474502429366112, -0.034451767802238464, 0.019084930419921875, 0.01797918602824211, 0.13552524149417877, 0.054748404771089554, 0.10413529723882675, -0.1401561200618744, 0.031623147428035736, 0.034857019782066345, -0.09297381341457367, -0.06818276643753052, 0.11611966043710709, -0.07118939608335495, -0.027984194457530975, 0.04028794914484024, 0.03891647979617119, -0.12158624827861786, 0.09040342271327972, 0.006111376453191042, -0.0014604850439354777, -0.07885011285543442, 0.02962159365415573, 0.025013858452439308, -0.0272027887403965, -0.13621342182159424, 0.001894665416330099, -0.03526563569903374, 0.011367244645953178, -0.01390056498348713, -0.040050208568573, 0.018122293055057526, -0.03599033132195473, 0.03206731006503105, 0.09671460092067719, 0.0196844395250082, 0.06252691894769669, 0.03438612446188927, 0.09181441366672516, -0.08517052233219147, -0.014258041977882385, 0.03797883540391922, -0.027476418763399124, -0.03365205228328705, 0.05471699312329292, -0.11364634335041046, 0.042249493300914764, -0.058931998908519745, 0.0015088829677551985, 0.08236535638570786, -7.613096386194229e-05, 0.008775977417826653, 0.0697825700044632, -0.1022295132279396, 0.014836917631328106, -0.014088836498558521, 0.027334855869412422, 0.0697162002325058, -0.12755124270915985, 0.0024769515730440617, -0.09875757247209549, -0.1025359034538269, 0.03799421340227127, -0.09706001728773117, 0.01568653993308544, 0.00878856796771288, -0.09883397817611694, -0.14918987452983856, 0.035857800394296646, -0.01647331565618515, -0.06932112574577332, -0.01318682637065649, -0.06147588789463043, -0.047905925661325455, 0.024709006771445274, 0.02093823254108429, 0.04720604047179222, -0.0065909638069570065, 0.11866216361522675, -0.01178792305290699, -0.056469615548849106, 0.08684898912906647, 0.06774640828371048, -0.06144890561699867, 0.05071864277124405, 0.023845819756388664, 0.018552342429757118, -0.00437864288687706, -0.018026184290647507, 0.027700800448656082, 0.019253358244895935, -0.030679108574986458, -0.10593366622924805, -0.01770874671638012, 0.10118301957845688, 0.16038988530635834, 0.005127955228090286, 0.002137489151209593, 0.025379322469234467, -0.007251326460391283, 0.020053092390298843, 0.028752490878105164, -0.030096421018242836, 0.008311808109283447, -0.0530095137655735, 0.10687869042158127, -0.06183605268597603, 0.04935197904706001, -0.1271141618490219, -0.04599830508232117, 0.061785005033016205, -0.093093141913414, -0.021829569712281227, 0.002398288808763027, 0.07264229655265808, 0.008527524769306183, -0.032242197543382645, -0.03908132016658783, -0.06345704942941666, 0.13177837431430817, 0.018708309158682823, -0.11238958686590195, -0.14531521499156952, 0.018509933724999428, -0.024056805297732353, 0.12694382667541504, -0.03829517588019371, 0.02554578334093094, 0.10277269780635834, 0.10187001526355743, 0.046147432178258896, -0.13065014779567719, 0.015382706187665462, -0.08391813933849335, -0.01490909792482853, -0.10286017507314682, 0.016843630000948906, 0.021618541330099106, -0.029863212257623672, 0.08540068566799164, 0.016669778153300285, -0.048884376883506775, -0.02209586836397648, -0.06621526181697845, -0.0881059393286705, -0.0222073495388031, 0.04366568475961685, -0.05201953276991844, -0.031045954674482346, 0.003023529425263405, -0.058976251631975174, -0.025524282827973366, -0.030659742653369904, -0.04620260000228882, -0.10941056907176971, 0.027993611991405487, -0.11260828375816345, -0.044599659740924835, -0.11662626266479492, 0.02598532661795616, 0.011393357068300247, 0.02692064270377159, 0.040277838706970215, 0.10811445862054825, -0.16698306798934937, -0.006144920364022255, 0.06377097964286804, 0.08150868117809296, 0.09526652842760086, 0.037532929331064224, -0.032501835376024246, -0.06781372427940369, -0.013101636432111263, 0.04125050827860832, 0.05763501673936844, -0.048560645431280136, 0.02903580106794834, 0.07541075348854065, 0.03702084347605705, -0.05280553922057152, 0.04830598086118698, -0.08974245935678482, -0.17125210165977478, 0.02806209772825241, -0.09524081647396088, 0.15505990386009216, -0.05860626697540283, -0.1453118920326233, -0.05748000368475914, -0.1775878369808197, 0.05034499615430832, 0.05392540246248245, 0.03448638692498207, 0.06293945759534836, 0.013567356392741203, 0.03117736428976059, -0.04353717714548111, 0.04128611832857132, -0.022354163229465485, -0.11868501454591751, 0.09452446550130844, -0.0794936791062355, -0.06889401376247406, -0.029201623052358627, 0.14234665036201477, -0.03980865702033043, 0.09885663539171219, 0.04179508239030838, 0.08174589276313782, -0.034419652074575424, 0.0646219551563263, -0.019566034898161888, -0.00615270109847188, 0.02664513699710369, 0.059662774205207825, -0.08271938562393188, 0.005674588028341532, -0.07235875725746155, 0.023461584001779556, -0.004891810938715935, 0.014637964777648449, 0.06334532797336578, 0.026793040335178375, -0.01203321572393179, -0.11033425480127335, 0.001099865883588791, 0.019072407856583595, 0.002186922589316964, 0.04222097247838974, 0.046077340841293335, 0.06133221834897995, 0.043228864669799805, -0.02785833366215229, -0.0106796994805336, 0.010342173278331757, 0.009633785113692284, 0.023947374895215034, -0.03607229143381119, -0.022570112720131874, -0.07119835913181305, -0.051485564559698105, 0.13688738644123077, -0.024459049105644226, 0.09016531705856323, -0.06764541566371918, 0.0295487679541111, 0.005423499271273613, -0.0520058274269104, -0.03822992742061615, 0.14221441745758057, 0.03714314475655556, -0.050299033522605896, -0.13731998205184937, 0.08474244177341461, 0.026357930153608322, 0.005187027156352997, 0.08703387528657913, 0.046511534601449966, 0.04092451557517052, 0.07940977811813354, -0.04549707472324371, 0.10427439212799072, 0.021980667486786842, 0.022993970662355423, 0.08719280362129211, -0.029057251289486885, 0.008244222961366177, -0.04793313145637512, -0.0033298947382718325, 0.03696298599243164, 0.10016032308340073, 0.10378321260213852, 0.002241766545921564, -0.0015401167329400778, 0.01704653725028038, -0.05945637449622154, -0.01667107455432415, -0.030082685872912407, -0.05753117799758911, -0.03932897001504898, -0.0806669145822525, -0.03083616867661476, 0.06541943550109863, -0.07550384104251862, -0.054283663630485535, 0.14189890027046204, 0.07145722210407257, 0.05672454088926315, -0.010713137686252594, -0.09422684460878372, -0.10679829120635986, 0.05484289675951004, -0.08625439554452896, 0.07913137972354889, -0.05683626979589462, 0.02576455846428871, -0.06322763860225677, 0.034485433250665665, 0.03925876319408417, 0.019094716757535934, 0.10496269166469574, 0.06371788680553436, 0.06127104163169861, 0.04664411395788193, 0.0037792378570884466, -0.006869042292237282, -0.08261040598154068, 0.021275585517287254, 0.14129149913787842, -0.026663023978471756, -0.17039743065834045, 0.14363133907318115, 0.1405065655708313, -0.03381091728806496, -0.05362220108509064, 0.07043900340795517, -0.06897091120481491, 0.00531434454023838, -0.04312407225370407, 0.07024878263473511, -0.14005476236343384, 0.05732797086238861, 0.0308365598320961, -0.05580054596066475, -0.013384757563471794, -0.01436820812523365, -0.0668058693408966, 0.009762492030858994, -0.039290521293878555, -0.03522318974137306, -0.13537244498729706, -0.10418453812599182, 0.01003505289554596, 0.06266618520021439, -0.02895868383347988, -0.022160867229104042, -0.02954685315489769, -0.0964849516749382, -0.08268985152244568, 0.029850851744413376, -0.027108890935778618, 0.057816945016384125, -0.008007640950381756, 0.045147113502025604, 0.019418172538280487, -0.14221039414405823, 0.04701295867562294, 0.1598360240459442, 0.028107544407248497, -0.07077403366565704, -0.14818702638149261, -0.1654272973537445, 0.020602360367774963, -0.03623593598604202, -0.039211563766002655, 0.10214857012033463, 0.060147691518068314, -0.03397024795413017, 0.09728927910327911], "GPU\u5206\u5e03\u5f0f\u8bad\u7ec3\u573a\u666f\u4e0b\uff0c\u82e5\u67d0\u8fdb\u7a0b\u5f02\u5e38\u9000\u51fa\uff0c\u53ef\u80fd\u5bfc\u81f4\u5176\u4f59\u8fdb\u7a0b\u963b\u585e\u95ee\u9898\u3002": [0.004335935227572918, -0.03370478004217148, -0.02250796929001808, 0.06388933956623077, -0.0015517385909333825, 0.007267656270414591, 0.033156994730234146, 0.050698354840278625, -0.06828009337186813, -0.033930327743291855, 0.08878052234649658, 0.05623558536171913, -0.010641534812748432, -0.015533873811364174, -0.03794621303677559, 0.04815623164176941, 0.05859259143471718, -0.0552728995680809, -0.023496979847550392, 0.04682620242238045, -0.05337149277329445, 0.06140124052762985, 0.0331185944378376, 0.03232770785689354, 0.044179804623126984, -0.013831491582095623, -0.09023919701576233, 0.016688592731952667, 0.048754602670669556, 0.05095687881112099, 0.04325367882847786, 0.07358929514884949, -0.10628216713666916, 0.05825109779834747, 0.0423760861158371, -0.05351274088025093, -0.05283249169588089, 0.10961568355560303, -0.03353184834122658, -0.027659794315695763, 0.03238746151328087, -0.015008311718702316, -0.0995108038187027, 0.11123514175415039, 0.022022288292646408, -0.036887604743242264, -0.05891674384474754, 0.005241716746240854, 0.04589962214231491, 0.012129795737564564, -0.10089720040559769, 0.003966109361499548, -0.10671823471784592, 0.024256298318505287, -0.05745084956288338, -0.0406058207154274, -0.052211612462997437, -0.013116028159856796, 0.07021822035312653, 0.055934883654117584, -0.03827806934714317, 0.032896678894758224, 0.024943500757217407, 0.06202438473701477, -0.08297142386436462, -0.045458242297172546, -0.033381689339876175, -0.0157247893512249, -0.002825625240802765, 0.020209401845932007, -0.035170529037714005, 0.04108845442533493, -0.03219210356473923, 0.0718284547328949, 0.023242641240358353, 0.02046162262558937, -0.05152487754821777, 0.04513266682624817, -0.08082225918769836, -0.015209328383207321, -0.02269693836569786, 0.06459429115056992, 0.06801560521125793, -0.1105729267001152, -0.0016040285117924213, -0.033581435680389404, -0.12307767570018768, 0.06216920167207718, -0.11054451763629913, 0.0765523910522461, 0.007919929921627045, -0.028021857142448425, -0.16880641877651215, 0.03531135246157646, 0.06116916239261627, -0.020504018291831017, -0.0327579565346241, -0.03737541288137436, -0.06257803738117218, 0.005676863249391317, 0.03065934032201767, 0.05667026340961456, -0.013385815545916557, 0.07228145748376846, -0.021562226116657257, -0.1303115338087082, 0.0697745829820633, 0.06461083889007568, -0.037999220192432404, 0.023463625460863113, -0.011234687641263008, -0.02126138284802437, -0.008776307106018066, -5.0902366638183594e-05, -0.006387417204678059, -0.02898462489247322, -0.06533791124820709, -0.10389560461044312, -0.05133894085884094, 0.08822754770517349, 0.1389739066362381, -0.04235662519931793, 0.008594377897679806, 0.06482315063476562, 0.02056068181991577, 0.030414467677474022, 0.0684635117650032, -0.03269309923052788, -0.07798901945352554, -0.061853546649217606, 0.10425339639186859, -0.04837043583393097, 0.13187114894390106, -0.11203746497631073, -0.11094959080219269, 0.07598311454057693, -0.13550983369350433, -0.03299378231167793, -0.061316173523664474, 0.024940596893429756, 0.02091435343027115, -0.00048615035484544933, -0.022509094327688217, -0.06670995056629181, 0.1169668585062027, 0.028535671532154083, -0.11658112704753876, -0.18524599075317383, 0.0461258739233017, -0.053258441388607025, 0.10686443001031876, -0.010944516398012638, -0.025723537430167198, 0.11785052716732025, 0.04969587177038193, 0.06965440511703491, -0.1273087114095688, 0.010646156966686249, -0.04620631784200668, -0.04698517918586731, -0.0797124058008194, 0.043656617403030396, 0.030624229460954666, -0.035133518278598785, 0.05952311307191849, 0.01864343136548996, 0.052322547882795334, -0.02963733673095703, -0.0808439701795578, -0.08459249883890152, -0.015069653280079365, 0.07825557887554169, -0.0499223992228508, -0.01850144937634468, 0.014742095954716206, -0.03876301646232605, 0.020199421793222427, -0.08129961043596268, -0.0161909069865942, -0.06405895203351974, 0.05440768226981163, -0.16198289394378662, -0.042615413665771484, -0.11399812996387482, 0.07348881661891937, 0.071556456387043, 0.03658836707472801, 0.05679834634065628, 0.12311100959777832, -0.1567608118057251, 0.0014206403866410255, 0.018495868891477585, 0.09767285734415054, 0.05693216621875763, 0.09108348190784454, -0.07063155621290207, -0.1299586296081543, -0.030673127621412277, 0.015504462644457817, 0.05996593460440636, -0.014893429353833199, 0.01891554892063141, 0.05411335825920105, 0.052483752369880676, -0.04912953078746796, -0.013909495435655117, -0.06571090966463089, -0.17050981521606445, -0.011062461882829666, -0.14250580966472626, 0.0584590844810009, 0.004786663223057985, -0.0975416824221611, -0.017015662044286728, -0.1393214762210846, 0.04982585087418556, 0.12915372848510742, 0.09522227197885513, 0.05302610248327255, -0.024734342470765114, 0.03576963394880295, -0.026852093636989594, 0.005346023477613926, -0.003473871387541294, -0.10920936614274979, 0.07597029954195023, -0.08142100274562836, -0.098683200776577, 0.0008251926046796143, 0.1756294071674347, -0.0035910005681216717, 0.14955386519432068, 0.0024705412797629833, 0.06327293813228607, -0.032955337315797806, 0.06373567879199982, -0.031253788620233536, -0.082451231777668, 0.001148860901594162, 0.0788859948515892, -0.1438923180103302, -0.01863807439804077, -0.063667431473732, -0.04919371381402016, -0.019500676542520523, 0.00420617638155818, 0.06023963540792465, 0.013229954056441784, 0.03774720057845116, -0.07007794082164764, -0.014021724462509155, 0.012784943915903568, -0.014798559248447418, 0.12386849522590637, 0.0777183324098587, 0.0431973822414875, 0.01436461228877306, -0.03963645175099373, 0.07060221582651138, 0.021955274045467377, 0.04072841629385948, 0.04569259285926819, -0.05942796170711517, 0.003161781234666705, -0.008403649553656578, -0.06179836764931679, 0.08601884543895721, -0.026630064472556114, 0.07764604687690735, -0.06836161017417908, 0.03283938765525818, 0.027496393769979477, -0.06815595924854279, -0.02080501616001129, 0.13261978328227997, 0.029808830469846725, -0.11851082742214203, -0.07546178996562958, 0.06107991188764572, 0.017824845388531685, 0.02937678061425686, 0.07133977860212326, 0.03578363358974457, 0.05149582028388977, 0.09185824543237686, -0.03398198261857033, 0.07727394998073578, 0.04494234547019005, 0.02430795133113861, 0.0048994030803442, 0.01112326793372631, -0.04166803136467934, -0.05036597326397896, 0.010574630461633205, -0.03850116580724716, 0.0897660031914711, 0.04957028105854988, -0.03538835048675537, -0.022440291941165924, 0.07982029765844345, -0.0256250761449337, -0.07459451258182526, 0.019701315090060234, -0.07986005395650864, -0.0044081201776862144, -0.04258501157164574, -0.011643866077065468, 0.09058964252471924, -0.08217227458953857, 0.02059963159263134, 0.1617564857006073, 0.08022531121969223, 0.047296956181526184, 0.06292092800140381, -0.11672505736351013, -0.07030939310789108, 0.03697038069367409, -0.10484173148870468, 0.1035887822508812, -0.03814820200204849, 0.06921995431184769, -0.06527753174304962, 0.010228869505226612, 0.062019798904657364, 0.09231656789779663, 0.06122006103396416, 0.0887439176440239, 0.027990445494651794, 0.038666583597660065, 0.005638452246785164, -0.002583892783150077, -0.10098711401224136, 0.03844819217920303, 0.0987330973148346, -0.021178103983402252, -0.17819486558437347, 0.13121087849140167, 0.12461771070957184, -0.009662503376603127, -0.005146420560777187, 0.08257170021533966, -0.12005838006734848, -0.00872408039867878, -0.08576774597167969, 0.02189215086400509, -0.09406617283821106, 0.039574749767780304, 0.03514469042420387, -0.08003760129213333, -0.00956791639328003, 0.056612174957990646, -0.08656985312700272, 0.03559916466474533, 0.015975667163729668, -0.004197150934487581, -0.11434454470872879, -0.10922501236200333, 0.010061420500278473, 0.06160074472427368, -0.03067687340080738, 0.010245601646602154, -0.050092894583940506, -0.13697104156017303, -0.06582748889923096, 0.06477387249469757, 0.007536388002336025, 0.058002691715955734, -0.006101427134126425, 0.06969523429870605, -0.025006303563714027, -0.16693027317523956, 0.0886523500084877, 0.1208033561706543, 0.05230109393596649, -0.05179199203848839, -0.11406853795051575, -0.17566516995429993, 0.0880282074213028, 0.014463855884969234, -0.09202977269887924, 0.09944088757038116, 0.08159283548593521, -0.05589759722352028, 0.05914733186364174], "\u5728\u6267\u884cGPU\u5355\u673a\u5355\u5361\u7684\u811a\u672c\u65f6\uff0c\u4e0d\u4f7f\u7528mpirun\u542f\u52a8\u8fdb\u7a0b\u65f6\uff0c\u8c03\u7528mindspore.communication.init\u65b9\u6cd5\u53ef\u80fd\u4f1a\u62a5\u9519\uff0c\u5bfc\u81f4\u6267\u884c\u5931\u8d25\uff0c\u8be5\u5982\u4f55\u5904\u7406\uff1f": [0.00026988983154296875, 0.006000219378620386, 0.03400392085313797, 0.04313291609287262, -0.008407088927924633, -0.031891144812107086, 0.0014921030960977077, 0.06452886015176773, -0.051227230578660965, -0.06057027727365494, 0.03646453842520714, 0.02453901432454586, 0.005353984422981739, 0.017960410565137863, -0.0008889248128980398, 0.01405593752861023, 0.06696747243404388, -0.029399709776043892, -0.06659386307001114, -0.000646754982881248, -0.0560007318854332, 0.01348258089274168, 0.045068707317113876, 0.03394857421517372, 0.021099131554365158, 0.04485942795872688, -0.10453104972839355, 0.023007091134786606, 0.009337090887129307, 0.09555363655090332, 0.046665843576192856, 0.036669716238975525, -0.08902478963136673, 0.025723403319716454, 0.015244951471686363, -0.037388287484645844, -0.028845304623246193, 0.1111459881067276, -0.04771985858678818, -0.04830756038427353, 0.011301296763122082, -0.011508531868457794, -0.072113037109375, 0.10883928835391998, -0.024378199130296707, -0.03031228668987751, -0.14183612167835236, 0.06144561991095543, 0.06734630465507507, 0.05052472651004791, -0.12927037477493286, 0.04135654866695404, -0.0008016636711545289, 0.01173059269785881, -0.019326142966747284, 0.018942687660455704, -0.010397964157164097, -0.004908365663141012, 0.04060661420226097, 0.031727563589811325, 0.023865243420004845, 0.02193484641611576, -0.040475331246852875, 0.020226215943694115, -0.10994069278240204, -0.007381973788142204, -0.036077145487070084, -0.08992088586091995, -0.009776709601283073, 0.04073181748390198, -0.046808164566755295, -0.004912167321890593, -0.034820616245269775, 0.010019011795520782, 0.05496842786669731, 0.009833106771111488, -0.02233213558793068, 0.04454328119754791, -0.10420507192611694, -0.0061369179747998714, 0.033434875309467316, 0.03484272211790085, 0.03682352229952812, -0.1075359582901001, -0.0011361162178218365, -0.05791383236646652, -0.08235099911689758, 0.0768144279718399, -0.0788872241973877, 0.09020283818244934, -0.01652463525533676, -0.034807708114385605, -0.15026415884494781, 0.059197429567575455, 0.07123361527919769, -0.00969020463526249, -0.02863297238945961, -0.07035256177186966, -0.10910052061080933, -0.014022399671375751, -0.005162020213901997, 0.00429511396214366, -0.0008939241524785757, 0.05728785693645477, -0.0027449587360024452, -0.10508648306131363, -0.0014484961284324527, 0.05493498221039772, 0.0175991989672184, 0.045130982995033264, 0.04581832140684128, 0.027586858719587326, 0.0718761682510376, 0.011336328461766243, -0.016296418383717537, -0.0182242002338171, -0.07390086352825165, -0.10234548151493073, -0.05512666702270508, 0.06748224049806595, 0.1482357382774353, -0.01391778327524662, 0.004636645782738924, 0.03326302394270897, 0.06974786520004272, 0.0031274082139134407, 0.04245666041970253, -0.08194942027330399, -0.05755747854709625, -0.071261927485466, 0.16032060980796814, -0.022096015512943268, 0.10018554329872131, -0.12796853482723236, -0.0731554850935936, 0.08148860931396484, -0.04126562923192978, -0.04320528358221054, -0.04430175572633743, 0.12105823308229446, 0.03069804236292839, -0.12167970091104507, 0.013742323033511639, -0.07823313027620316, 0.1350320428609848, 0.039654579013586044, -0.10261903703212738, -0.15977947413921356, 0.006420311518013477, -0.05594118684530258, 0.10129952430725098, 0.004483850672841072, -0.02292361855506897, 0.0736188217997551, -0.002930472604930401, 0.04763885214924812, -0.05428176000714302, 0.010908516123890877, -0.048552289605140686, -0.018089767545461655, -0.07820487022399902, -0.02671264111995697, 0.025960061699151993, -0.017530594021081924, 0.007655917201191187, 0.05442465841770172, 0.05033975839614868, -0.019909774884581566, -0.03951582312583923, -0.06842084974050522, -0.01564517244696617, 0.029309513047337532, -0.04282480105757713, -0.03183417022228241, 0.042139533907175064, 0.0046796672977507114, 0.01681521348655224, -0.06256649643182755, -0.0035503776744008064, -0.09547019749879837, 0.08758622407913208, -0.12907160818576813, -0.04806516319513321, -0.06263646483421326, 0.11734997481107712, 0.016539879143238068, 0.013499230146408081, 0.02073938213288784, 0.17564892768859863, -0.1362410932779312, 0.02578013204038143, 0.07774488627910614, 0.09798286855220795, 0.07972736656665802, 0.045132894068956375, -0.05778142064809799, -0.08613117039203644, -0.007565275765955448, 0.018378732725977898, 0.039294999092817307, -0.037703774869441986, 0.02879120595753193, 0.009420269168913364, 0.03250318765640259, -0.05238936468958855, -0.05416799709200859, -0.07260163128376007, -0.14072930812835693, 0.01825946569442749, -0.043090157210826874, 0.12198138982057571, -0.006302925292402506, -0.07982701063156128, -0.03687030076980591, -0.11479601263999939, -0.033793993294239044, 0.10784736275672913, 0.08463723957538605, 0.050237707793712616, -0.016934078186750412, 0.017625734210014343, -0.01083154696971178, 0.03482744097709656, -0.08331483602523804, -0.1306723803281784, 0.030896134674549103, -0.06259917467832565, -0.12567712366580963, -0.017680134624242783, 0.11827042698860168, -0.07171101868152618, 0.12670573592185974, -0.007171792909502983, 0.08256827294826508, -0.017402665689587593, 0.042223408818244934, 0.005596880801022053, -0.01892472244799137, 0.036120638251304626, 0.0804375633597374, -0.16140393912792206, 0.04884294420480728, -0.09971898794174194, -0.04548408463597298, -0.06509760022163391, 0.029776092618703842, 0.0735161155462265, 0.03286393731832504, 0.02644454501569271, -0.06476864218711853, 0.03465631231665611, -0.008938441053032875, 0.010490696877241135, 0.06190416216850281, 0.02033287286758423, 0.07818339765071869, 0.02622150257229805, -0.03187589347362518, 0.06574996560811996, 0.03143812716007233, 0.008153555914759636, 0.009667865931987762, -0.01860298216342926, 0.009304121136665344, -0.04441807046532631, -0.03467822074890137, 0.08659407496452332, -0.023823369294404984, 0.027351506054401398, -0.05070130527019501, 0.04002904146909714, 0.006952293217182159, -0.029872098937630653, -0.01726590469479561, 0.13637708127498627, 0.07400872558355331, -0.06596963852643967, -0.1128552258014679, 0.07465734332799911, 0.007035831455141306, -0.014304721727967262, 0.03407701104879379, -0.004583692643791437, 0.037716906517744064, 0.06033287197351456, -0.018256349489092827, 0.054063472896814346, 0.05143889784812927, 0.027834070846438408, 0.057689033448696136, -0.03751661628484726, -0.032446689903736115, -0.025693994015455246, 0.0329449437558651, -0.05212325602769852, 0.04548857361078262, 0.04514653980731964, -0.005192639771848917, 0.007659954950213432, 0.08888611197471619, -0.051943495869636536, -0.04607178270816803, 0.06686882674694061, -0.08730725944042206, -0.021522333845496178, -0.01288490742444992, -0.05230007320642471, 0.05575660988688469, -0.04238351434469223, -0.029001273214817047, 0.1276683509349823, 0.058902814984321594, 0.059350211173295975, 0.08638595044612885, -0.10529777407646179, -0.04577719420194626, 0.0616801492869854, -0.14541572332382202, 0.048711832612752914, -0.03981117159128189, 0.02009018510580063, -0.08344654738903046, 0.0020770549308508635, 0.0509050115942955, 0.08811693638563156, 0.00990956649184227, 0.05941188335418701, 0.02786407060921192, 0.015497367829084396, -0.016327491030097008, 0.027001243084669113, -0.0558374747633934, 0.028279997408390045, 0.059657469391822815, 0.01381455734372139, -0.19931843876838684, 0.09598638862371445, 0.10854912549257278, 0.026259448379278183, -0.023262307047843933, 0.07505683600902557, -0.07905140519142151, -0.023444952443242073, -0.09831724315881729, 0.11017030477523804, -0.0658261701464653, 0.0575135163962841, 0.03937648981809616, -0.07834728062152863, -0.03774799779057503, -0.004335425328463316, -0.04148571193218231, 0.061208777129650116, 0.0023898081853985786, -0.0247886274009943, -0.10868111997842789, -0.1068907380104065, 0.0145293939858675, 0.060538507997989655, -0.0026296968571841717, -0.011521048843860626, -0.008481178432703018, -0.11692629754543304, -0.07086468487977982, 0.04186917096376419, -0.03530041128396988, 0.02017313987016678, 7.360801100730896e-05, 0.024088138714432716, 0.001903789583593607, -0.173919677734375, 0.1258111149072647, 0.10313848406076431, 0.06932411342859268, -0.06060381978750229, -0.09442133456468582, -0.1421658843755722, 0.04026973992586136, -0.021750537678599358, -0.039668891578912735, 0.08132371306419373, 0.058526378124952316, -0.05645257979631424, 0.03812643513083458], "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0c\u63d0\u793a\u7531\u4e8eMPI_Allgather\u5931\u8d25\u3002": [-0.046817563474178314, 0.029652580618858337, 0.018133504316210747, 0.02572399564087391, -0.0460861474275589, -0.061796024441719055, 0.024661561474204063, 0.006269317120313644, -0.06500609964132309, -0.02282791957259178, -0.06171475350856781, 0.019813353195786476, -2.4303793907165527e-05, -0.025174159556627274, -0.07144831120967865, -0.011056488379836082, 0.11252927780151367, -0.017950251698493958, -0.03231360763311386, 0.004647359251976013, 0.017508042976260185, 0.012986944988369942, 0.05491529405117035, -0.01742786541581154, -0.02839081920683384, 0.10610263794660568, -0.05407203361392021, -0.049001868814229965, 0.0027650264091789722, 0.06207946315407753, 0.07308067381381989, 0.004957898054271936, -0.06980209797620773, 0.04501061514019966, -0.02927030436694622, -0.04136195778846741, -0.06577766686677933, 0.11456778645515442, -0.05091128498315811, -0.05869271233677864, 0.038100164383649826, -0.01781027391552925, -0.06516750156879425, 0.054972678422927856, -0.06353665888309479, 0.0005667190416716039, -0.13142338395118713, -0.011155256070196629, 0.03786733001470566, 0.07699596136808395, -0.08386325091123581, 0.07108163088560104, 0.039136629551649094, -0.033323418349027634, -0.005666694603860378, 0.026025822386145592, 0.020314611494541168, 0.0594748854637146, 0.03238794952630997, -0.024379737675189972, 0.00799801666289568, -0.009172286838293076, -0.08108143508434296, -0.03125957399606705, -0.08930354565382004, -0.0040055252611637115, -0.043804578483104706, -0.04331546649336815, -0.018018711358308792, 0.02242298424243927, -0.06843895465135574, -0.07593532651662827, 0.03201567754149437, -0.0016745984321460128, 0.047328732907772064, 0.061742667108774185, -0.01884310320019722, 0.02226930297911167, -0.07963541895151138, 0.0411558635532856, 0.05952142924070358, 0.009741869755089283, 0.05448349192738533, -0.10497847199440002, -0.01773865893483162, -0.08887504041194916, 0.00724637508392334, 0.047321006655693054, -0.06188248470425606, 0.07612477988004684, -0.005568367429077625, -0.05543835461139679, -0.13526079058647156, 0.043205052614212036, 0.062338292598724365, -0.011063790880143642, -0.047154877334833145, -0.00691012479364872, -0.07946015149354935, 0.004098524805158377, 0.1014617308974266, -0.0141685139387846, -0.04406239837408066, 0.006162602454423904, 0.05540521442890167, -0.06605195999145508, -0.02362094260752201, 0.014051632024347782, 0.07105540484189987, 0.008343818597495556, 0.019443318247795105, 0.06492215394973755, 0.07473325729370117, 0.0004875575832556933, -0.0417276993393898, -0.0051168277859687805, -0.006959488149732351, -0.0597086101770401, -0.1439414918422699, 0.09083964675664902, 0.12690843641757965, 0.02246653102338314, 0.017850084230303764, 0.07909214496612549, 0.05191373825073242, -0.02072891592979431, 0.007388431113213301, -0.10349739342927933, -0.04042937234044075, -0.029963387176394463, 0.07580884546041489, -0.04390639439225197, 0.07816905528306961, -0.12267675995826721, -0.10770229995250702, 0.08791399747133255, -0.06677314639091492, -0.08382108807563782, 0.03954121097922325, 0.2088690549135208, 0.09984548389911652, -0.1601426750421524, 0.07998275756835938, -0.02414069138467312, 0.07257118821144104, 0.08215859532356262, -0.0673036128282547, -0.10067487508058548, 0.02566506341099739, -0.025965413078665733, 0.12530109286308289, -0.07443026453256607, -0.010124456137418747, 0.12458185851573944, -0.10123239457607269, 0.021311841905117035, -0.029738113284111023, 0.026989849284291267, 0.014604461379349232, -0.03264576569199562, -0.025174926966428757, -0.02885505184531212, 0.02036861889064312, 0.009324664250016212, -0.05393834784626961, 0.06350947916507721, 0.05776572972536087, 0.0013118155766278505, -0.0016573447501286864, -0.07158598303794861, -0.02113492414355278, -0.07053104043006897, -0.05034086853265762, -0.037200164049863815, -0.000333164818584919, 0.055514704436063766, 0.08604052662849426, -0.08347956836223602, 0.03084804117679596, -0.0967540591955185, 0.017199674621224403, -0.07246045768260956, -0.0854247510433197, -0.039773814380168915, 0.06446964293718338, 0.013816393911838531, -0.014114564284682274, 0.022434046491980553, 0.08989474922418594, -0.14568808674812317, 0.004686274565756321, 0.07108113169670105, 0.09118835628032684, 0.03676198050379753, -0.04648303985595703, -0.09050272405147552, -0.025359798222780228, 0.0572986826300621, 0.05657018721103668, -0.057497404515743256, 0.004992413800209761, 0.07496345788240433, 0.013598731718957424, 0.04539594426751137, 0.01808934286236763, -0.01883649080991745, -0.09624118357896805, -0.09445788711309433, 0.006422846578061581, 0.041412293910980225, 0.117738738656044, -0.014108709059655666, -0.08006429672241211, -0.01154294516891241, -0.1197195053100586, 0.03687780722975731, 0.07012222707271576, 0.08480197191238403, 0.06887703388929367, -0.010202804580330849, -0.04569264128804207, 0.06158562749624252, -0.02459554746747017, -0.05144505575299263, -0.07952183485031128, -0.04276331141591072, -0.03320416063070297, -0.09856894612312317, -0.011987856589257717, 0.1257447749376297, -0.019000893458724022, 0.10120777040719986, 0.04053458198904991, 0.08175981789827347, -0.010319668799638748, -0.010924619622528553, 0.017300738021731377, 0.00039288774132728577, 0.07265554368495941, 0.06882678717374802, -0.12137418985366821, 0.09723497182130814, -0.09239235520362854, -0.024745386093854904, -0.06203876808285713, 0.018251970410346985, 0.0928083136677742, 0.02451680228114128, 0.04618555307388306, -0.060900021344423294, 0.029212892055511475, -0.014186296612024307, -0.011629018001258373, 0.0690671056509018, -0.04819989204406738, 0.025764312595129013, 0.029209058731794357, -0.033209532499313354, 0.06874968111515045, 0.007194953970611095, -0.025023382157087326, -0.07702811062335968, -0.053424425423145294, -0.022352244704961777, 0.027851924300193787, -0.03450548276305199, 0.08788255602121353, -0.042072221636772156, -0.015849461778998375, -0.08776452392339706, 0.053054336458444595, 0.001568735227920115, -0.06854437291622162, -0.03921458497643471, 0.16865086555480957, 0.05099137872457504, -0.0546034500002861, -0.10489529371261597, 0.08073243498802185, -0.03606066107749939, 0.03420684114098549, 0.058081671595573425, 0.038017697632312775, -0.025810958817601204, 0.0845867246389389, -0.08921770006418228, 0.04987974837422371, -0.08515609800815582, 0.060603559017181396, 0.11347810178995132, 0.032550014555454254, -0.03600824251770973, -0.0407865047454834, -0.011368582025170326, -0.04240839183330536, 0.044725868850946426, 0.030491065233945847, 0.03126338869333267, -0.03164329379796982, -0.008498573675751686, -0.04258862882852554, -0.010195561684668064, 0.08938769996166229, -0.04427952319383621, -0.06129968538880348, -0.02216777391731739, -0.08392512053251266, 0.052022360265254974, 0.0003554932773113251, -0.010101630352437496, 0.1152128130197525, 0.09079283475875854, 0.025901544839143753, 0.08059625327587128, -0.05353152006864548, -3.03611159324646e-07, 0.10079322755336761, -0.10669632256031036, 0.008239813148975372, -0.05674256384372711, 0.0066656749695539474, -0.11673464626073837, -0.039664942771196365, 0.07638520002365112, 0.029852770268917084, -0.07747827470302582, 0.07142626494169235, 0.10901794582605362, -0.028155198320746422, 0.028208084404468536, -0.007483765482902527, -0.09347426891326904, 0.044894032180309296, 0.09406504034996033, 0.03967165946960449, -0.09202615171670914, 0.05782531201839447, 0.08311018347740173, 0.03769131004810333, 0.000889668008312583, 0.032894931733608246, -0.07707709819078445, -0.0021600513719022274, -0.09027884155511856, 0.08254744112491608, -0.13513347506523132, 0.0442948117852211, 0.07175198942422867, -0.060322366654872894, -0.013673095963895321, -0.02716165781021118, -0.07604718208312988, 0.10000278800725937, -0.03616548702120781, -0.05968692526221275, -0.12020225077867508, -0.023812513798475266, -0.03714173287153244, 0.08415329456329346, 0.02655654586851597, 0.017678188160061836, 0.042432308197021484, -0.012748445384204388, -0.03717546537518501, 0.032640229910612106, -0.08898153156042099, 0.0028468684758991003, -0.07528378814458847, 0.04578555002808571, -0.029586946591734886, -0.14552666246891022, 0.055676333606243134, 0.08706412464380264, 0.055102430284023285, -0.07344897836446762, -0.08280197530984879, -0.11921334266662598, 0.09995999187231064, -0.09362637996673584, -0.048726875334978104, 0.07550788670778275, 0.031548336148262024, -0.12914618849754333, 0.015085785649716854], "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u5206\u5e03\u5f0f\u8bad\u7ec3\u65f6\uff0c\u5355\u673a\u591a\u5361\u8bad\u7ec3\u6b63\u5e38\uff0c\u4f46\u5728\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0c\u67d0\u4e9b\u673a\u5668\u63d0\u793aGPU device id\u8bbe\u7f6e\u5931\u8d25\u3002": [-0.01384653802961111, -0.009161731228232384, 0.028446663171052933, 0.028468245640397072, 0.022225692868232727, -0.047066580504179, 0.01858679950237274, -0.00020430609583854675, -0.05071154609322548, -0.062479790300130844, 0.005867240484803915, 0.012699947692453861, -0.022039219737052917, -0.03876675292849541, -0.03465984761714935, -0.02362632192671299, 0.08518621325492859, -0.04497188329696655, -0.03457053750753403, 0.009594246745109558, -0.019435502588748932, 0.010092565789818764, 0.03615773469209671, 0.002585583133623004, -0.010808972641825676, 0.03770299255847931, -0.04323134198784828, 0.008146758191287518, 0.05567637085914612, 0.08269258588552475, 0.07438135147094727, 0.05224866047501564, -0.0798109769821167, 0.018253143876791, 0.011710689403116703, -0.04334010183811188, -0.059624023735523224, 0.07941143959760666, -0.03922674059867859, -0.0485919825732708, 0.011842330917716026, 0.010717418976128101, -0.10479976236820221, 0.07717317342758179, -0.060871515423059464, -0.0005730501725338399, -0.0914691686630249, 0.04157374054193497, 0.014657956548035145, 0.03191444277763367, -0.1154911071062088, 0.040458980947732925, -0.041023530066013336, -0.008390603587031364, -0.006434534210711718, 0.006390041206032038, -0.012903868220746517, -0.0036324141547083855, 0.020926978439092636, 0.0769648626446724, 0.001231969567015767, 0.017133940011262894, -0.016720589250326157, 0.04516155645251274, -0.0828872099518776, -0.006022079847753048, -0.04517649486660957, -0.03173643723130226, 0.0010998114012181759, 0.03707946464419365, -0.07464400678873062, -0.018429407849907875, -0.02215057611465454, -0.0003592800348997116, 0.04760893061757088, 0.011427540332078934, -0.01293902937322855, 0.05950530618429184, -0.06453237682580948, 0.03065897338092327, 0.04549945518374443, 0.019768813624978065, 0.08161433786153793, -0.09003432095050812, -0.029791250824928284, -0.094444639980793, -0.042852845042943954, 0.035545460879802704, -0.08815128356218338, 0.071958526968956, 0.03348087519407272, -0.07395996153354645, -0.12779501080513, 0.06246538460254669, 0.06910407543182373, -0.06158659979701042, -0.027661049738526344, -0.0452839694917202, -0.07892046123743057, 0.00021863821893930435, 0.07333651930093765, 0.035325534641742706, -0.02361304871737957, 0.054384369403123856, 0.010864711366593838, -0.06011488288640976, 0.024360552430152893, 0.04096212238073349, 0.019515670835971832, 0.00010904239024966955, -0.003217950463294983, 0.0774892196059227, 0.04355862736701965, 0.0032512692268937826, -0.04392654076218605, 0.01063401997089386, -0.056052688509225845, -0.0525219701230526, -0.09767473489046097, 0.08833521604537964, 0.12066532671451569, -0.022467736154794693, -0.022298067808151245, 0.06375788152217865, 0.04908240586519241, -0.045423366129398346, 0.01990390196442604, -0.04447522014379501, -0.04952695220708847, -0.050076186656951904, 0.0990862101316452, -0.03724326938390732, 0.0676548182964325, -0.1306360960006714, -0.1314917802810669, 0.05453537777066231, -0.09369701147079468, -0.06465654075145721, -0.0026311962865293026, 0.11974474787712097, 0.05835593119263649, -0.06451410800218582, 0.005381068214774132, -0.05500194430351257, 0.07312758266925812, 0.04233468323945999, -0.07320316880941391, -0.11402921378612518, 0.0300759170204401, -0.026798255741596222, 0.11137663573026657, -0.013651219196617603, -0.014099477790296078, 0.09508520364761353, -0.0036276495084166527, 0.04918636009097099, -0.10958839952945709, 0.017845729365944862, -0.033128198236227036, -0.007419215515255928, -0.05034136399626732, 0.019209878519177437, 0.03193220868706703, -0.023192426189780235, 0.04650568217039108, 0.044017381966114044, 0.010875027626752853, -0.008960667997598648, -0.03784402459859848, -0.06967654079198837, -0.03278327360749245, -0.01821361854672432, -0.05161876231431961, -0.0326077900826931, 0.002047501504421234, 0.0012356189545243979, 0.051401637494564056, -0.09661876410245895, -0.017714573070406914, -0.10489041358232498, 0.01743585430085659, -0.10587961971759796, -0.028761886060237885, -0.06798981875181198, 0.06642128527164459, 0.025895342230796814, -0.040059611201286316, 0.007399334572255611, 0.10354544222354889, -0.1506596952676773, 0.03105400875210762, 0.08810751140117645, 0.12058191746473312, 0.0492965504527092, 0.007130710408091545, -0.09893479198217392, -0.06676936894655228, 0.011875789612531662, 0.06565944850444794, 0.028523286804556847, -0.03420238941907883, 0.09219930320978165, 0.013772045262157917, 0.0017450099112465978, -0.051469530910253525, 0.00036978721618652344, -0.08791626244783401, -0.13592644035816193, 0.021477293223142624, -0.0825093686580658, 0.10079909861087799, -0.06350050121545792, -0.11113554239273071, -0.019093813374638557, -0.10025353729724884, 0.0622195266187191, 0.07888403534889221, 0.09530727565288544, 0.044034894555807114, -0.013772557489573956, -0.0226171612739563, 0.03857714682817459, -0.015451994724571705, -0.019880171865224838, -0.10070299357175827, 0.0448196679353714, -0.07345080375671387, -0.060052525252103806, 0.013948101550340652, 0.1609784960746765, -0.047007884830236435, 0.064540334045887, 0.027099555358290672, 0.061039999127388, 0.009220335632562637, 0.02187669649720192, 0.01341257244348526, 0.024409815669059753, 0.0330662727355957, 0.06589706242084503, -0.13155800104141235, 0.021046070381999016, -0.08242499828338623, -0.007961230352520943, -0.045207418501377106, 0.03805355727672577, 0.11560384929180145, 0.01169836800545454, 0.02311539277434349, -0.08151000738143921, 0.011470336467027664, -0.026497002691030502, -0.06690306216478348, 0.06418383121490479, 0.014533347450196743, 0.02906569093465805, 0.03521427512168884, -0.03568378463387489, 0.06064991280436516, -0.007852203212678432, 0.012738600373268127, -0.02883789874613285, -0.006611198652535677, -0.013902026228606701, -0.011274721473455429, -0.06310079991817474, 0.09007757157087326, -0.020584596320986748, -0.0016136965714395046, -0.03466375172138214, 0.04050177335739136, -0.020865682512521744, -0.061877649277448654, -0.05135175958275795, 0.10525664687156677, 0.06821046769618988, -0.06816127896308899, -0.108642578125, 0.08181709796190262, -0.03616904094815254, 0.034545354545116425, 0.05042427033185959, 0.020969532430171967, -0.010432137176394463, 0.06324563175439835, -0.04896749183535576, 0.07345835864543915, -0.013435643166303635, 0.03149906545877457, 0.08429718017578125, -0.0235245730727911, -0.052755601704120636, 0.012172638438642025, 0.02024027332663536, -0.08205564320087433, 0.04790245369076729, 0.03958138823509216, 0.02565699629485607, -0.035175468772649765, 0.02635829895734787, -0.013251430355012417, -0.03175246715545654, 0.05144330486655235, -0.020812351256608963, -0.026571087539196014, 0.008946727961301804, -0.0008440052624791861, 0.05155891552567482, -0.034229375422000885, -0.046512603759765625, 0.16043128073215485, 0.07345180213451385, 0.08111744374036789, 0.0595560297369957, -0.09738355129957199, -0.014042397029697895, 0.07557843625545502, -0.13029071688652039, 0.057050593197345734, -0.03778059035539627, 0.037959977984428406, -0.08986476063728333, -0.021496349945664406, 0.07118362933397293, 0.07880812138319016, 0.03380701318383217, 0.03703845292329788, 0.09089816361665726, 0.01242327131330967, 0.054580848664045334, -0.027897203341126442, -0.09896402060985565, 0.010154902003705502, 0.09523496776819229, 0.005152824334800243, -0.13051621615886688, 0.10254811495542526, 0.08158239722251892, 0.022722823545336723, -0.036994773894548416, 0.04900766536593437, -0.08975045382976532, 0.0038929013535380363, -0.07814576476812363, 0.07113209366798401, -0.12589411437511444, 0.011725875549018383, 0.011190459132194519, -0.08917797356843948, -0.02108878456056118, -0.00802845973521471, -0.09980525076389313, 0.06614290922880173, -0.01754867099225521, -0.04758148640394211, -0.09592090547084808, -0.06258020550012589, -0.02178490161895752, 0.07981804758310318, -0.015469199046492577, 0.002124414313584566, -0.006127172615379095, -0.0723138228058815, -0.06433070451021194, 0.02410024031996727, -0.021862667053937912, 0.03698216378688812, -0.035016678273677826, 0.07163877785205841, 0.018514586612582207, -0.16529977321624756, 0.052230849862098694, 0.08347421884536743, 0.0625985786318779, -0.07046359777450562, -0.09759499132633209, -0.16260971128940582, 0.09265504777431488, -0.04712671786546707, -0.014442799612879753, 0.09581778943538666, 0.03766203671693802, -0.04749452695250511, 0.03952185437083244], "\u5728\u901a\u8fc7OpenMPI\u6267\u884c\u591a\u673a\u591a\u5361\u8bad\u7ec3\u65f6\uff0cNCCL\u62a5\u9519\u63d0\u793a\u7f51\u7edc\u4e0d\u901a\u3002": [-0.02860293537378311, 0.08760344982147217, 0.010102849453687668, -0.006724358536303043, -0.05390608310699463, -0.0452655665576458, 0.0021394756622612476, -0.006431841291487217, -0.039700500667095184, -0.004036665428429842, -0.07333945482969284, -0.006939578335732222, 0.030942779034376144, -0.04579372704029083, -0.09800029546022415, 0.016579564660787582, 0.07484667003154755, -0.0031245527788996696, 0.0024869502522051334, -0.002438383875414729, 0.005112672224640846, 0.006594102364033461, 0.08809179812669754, -0.016339203342795372, -0.016619186848402023, 0.097463458776474, 0.016047123819589615, -0.05045109987258911, 0.004430449567735195, 0.09877831488847733, 0.09364227950572968, -0.012132936157286167, -0.08284655958414078, 0.05167808011174202, -0.005215463228523731, -0.05653693154454231, -0.04850314185023308, 0.12911152839660645, -0.012522868812084198, -0.03474332392215729, 0.018210945650935173, 0.02063814178109169, -0.06422965973615646, 0.043379269540309906, 0.01719149574637413, 0.006764617748558521, -0.1533210575580597, 0.016370603814721107, 0.021872909739613533, 0.03342278301715851, -0.0725824236869812, 0.08198509365320206, 0.03972969949245453, -0.04264719784259796, -0.0014388327253982425, 0.01154422853142023, 0.019179848954081535, 0.01359362993389368, 0.018821708858013153, -0.024858657270669937, 0.022271202877163887, -0.029864197596907616, -0.0614602193236351, -0.01042419858276844, -0.067110575735569, 0.0008539536502212286, -0.05410240963101387, -0.08135990053415298, -0.017261764034628868, 0.024561315774917603, -0.10106740146875381, -0.04798809438943863, 0.006816952954977751, 0.038484759628772736, 0.06483408808708191, 0.02583579532802105, 0.008080731146037579, 0.013567295856773853, -0.08790513873100281, 0.05382171645760536, 0.051004067063331604, 0.02423931285738945, 0.044156163930892944, -0.13989794254302979, -0.019979190081357956, -0.051513612270355225, -0.010784844867885113, 0.04395262151956558, -0.039064738899469376, 0.07153759896755219, 0.011777990497648716, -0.020731771364808083, -0.10497360676527023, 0.08106902241706848, 0.08149264007806778, -0.05229588598012924, 0.0011088359169661999, -0.05666082352399826, -0.11686009168624878, 0.014146784320473671, 0.09218689799308777, -0.04602762311697006, -0.05019913613796234, 0.0220202449709177, 0.04278268665075302, -0.03749953210353851, 0.0278715118765831, 0.03610546514391899, 0.07556378096342087, 0.02060171775519848, 0.024614863097667694, 0.07978454977273941, 0.08692814409732819, -0.006427731364965439, 0.005875352304428816, 0.05536022409796715, -0.03854968026280403, -0.05343269184231758, -0.10727496445178986, 0.07969431579113007, 0.1622658222913742, 0.007250496651977301, 0.015622478909790516, 0.09922068566083908, 0.05059676989912987, -0.012717312201857567, 0.04759878292679787, -0.06232509762048721, -0.06772672384977341, -0.037311963737010956, 0.09515443444252014, -0.03599021956324577, 0.07472003996372223, -0.11459659039974213, -0.09943541884422302, 0.054777324199676514, -0.04696894437074661, -0.03172124922275543, 0.014957228675484657, 0.14917926490306854, 0.07698213309049606, -0.1689545214176178, 0.08961901068687439, -0.0523335263133049, 0.06304693222045898, 0.037662386894226074, -0.08390703052282333, -0.08765947073698044, -0.02065131440758705, 0.001635035965591669, 0.12083941698074341, -0.06340190768241882, -0.013120325282216072, 0.09873732924461365, -0.05953234061598778, 0.036093518137931824, -0.045386552810668945, 0.014239374548196793, -0.057520974427461624, 0.01736893132328987, -0.042722687125205994, 0.01749349571764469, 0.030411496758461, 0.031931813806295395, -0.07396593689918518, 0.09259466081857681, 0.030291233211755753, -0.008394021540880203, 0.0018261156510561705, -0.07123005390167236, -0.03637669235467911, -0.07546043395996094, -0.048431020230054855, -0.04970519244670868, 0.03476322442293167, 0.03626873716711998, 0.0672818049788475, -0.09873273968696594, -0.003661621827632189, -0.09491497278213501, 0.020869344472885132, -0.10103513300418854, -0.07555454969406128, -0.009343579411506653, 0.09012752771377563, -0.0060614352114498615, -0.017094410955905914, 0.006113274022936821, 0.13707832992076874, -0.16281993687152863, 0.04848823323845863, 0.05674929916858673, 0.043569885194301605, 0.04208027571439743, -0.03419845923781395, -0.024992981925606728, -0.050414033234119415, 0.03205474838614464, 0.037950772792100906, 0.0055662598460912704, -0.0023419889621436596, 0.08746705204248428, 0.014247231185436249, -0.004076580982655287, -0.022867603227496147, -0.005107216536998749, -0.09142839163541794, -0.10738467425107956, -0.004547680262476206, 0.005810009315609932, 0.07597732543945312, -0.025190040469169617, -0.07143597304821014, -0.051122553646564484, -0.09134582430124283, 0.001399795524775982, 0.05179116874933243, 0.1040167361497879, 0.0940069854259491, -0.04233969375491142, -0.017284512519836426, 0.05173231661319733, -0.05536070838570595, -0.03358887508511543, -0.11314621567726135, -0.04038049280643463, -0.07378597557544708, -0.09643770754337311, 0.022385474294424057, 0.1041598990559578, -0.047756634652614594, 0.08807486295700073, -0.01414480060338974, 0.08371606469154358, 0.0047905114479362965, 0.00831526331603527, 0.0025040642358362675, 0.018512725830078125, 0.08662956953048706, 0.011104140430688858, -0.126287043094635, 0.04764941334724426, -0.09924585372209549, -0.05089041218161583, -0.07200613617897034, 0.0171816349029541, 0.10729344189167023, -0.018589474260807037, 0.021845687180757523, -0.045167937874794006, 0.028411421924829483, 0.013234322890639305, -0.007579181343317032, 0.0731455534696579, -0.0370463989675045, 0.006014442071318626, 0.04265539348125458, -0.061809197068214417, 0.06187639757990837, 0.04889093339443207, -0.019049162045121193, -0.03897231072187424, -0.06651949137449265, 0.0015038836281746626, -0.004226282238960266, -0.025961488485336304, 0.07634495198726654, -0.06081680208444595, -0.05039752274751663, -0.10583808273077011, 0.05408609285950661, -0.0017869421280920506, -0.11921468377113342, -0.01148313470184803, 0.14619743824005127, 0.05979594215750694, -0.004977799952030182, -0.10642962902784348, 0.07753317058086395, -0.018585434183478355, -0.0008201876771636307, 0.03414873033761978, 0.03542913496494293, -0.015282999724149704, 0.06546248495578766, -0.04363349825143814, 0.0950922742486, -0.05271555855870247, 0.08410434424877167, 0.11657015979290009, -0.015625210478901863, -0.030670911073684692, -0.04896163195371628, 0.01852801814675331, -0.08074638992547989, 0.08142876625061035, -0.0007609872263856232, 0.015599091537296772, -0.024388816207647324, -0.0013697735266759992, -0.05945013836026192, 0.004214338026940823, 0.07131907343864441, -0.018067747354507446, -0.02986895479261875, 0.0012735046911984682, -0.03300371393561363, 0.05820301175117493, 0.010633097030222416, -0.015353793278336525, 0.07147567719221115, 0.08358737826347351, 0.04609423130750656, 0.08808165788650513, -0.041338056325912476, -0.00260751461610198, 0.07551396638154984, -0.09757938235998154, 0.01300362590700388, -0.044714730232954025, 0.020346488803625107, -0.08250978589057922, -0.011508116498589516, 0.049134399741888046, 0.06581137329339981, -0.04416261985898018, 0.03950371965765953, 0.10190871357917786, -0.008763029240071774, -0.008554818108677864, -0.007443359587341547, -0.07692389190196991, 0.055547185242176056, 0.10221657156944275, 0.0424259677529335, -0.11877407133579254, 0.10437119752168655, 0.06190343201160431, 0.03389827907085419, 0.04878004267811775, 0.009750504046678543, -0.08019421994686127, 0.0009706310811452568, -0.10086575150489807, 0.07172593474388123, -0.10254088044166565, 0.01919853873550892, 0.0882764458656311, -0.057291917502880096, -0.014955835416913033, -0.017366979271173477, -0.08017435669898987, 0.09120458364486694, -0.058182235807180405, -0.06508518010377884, -0.12326667457818985, -0.02820560708642006, -0.07033905386924744, 0.07504615187644958, 0.07544536888599396, 0.02238590270280838, -0.0054581016302108765, -0.03571845963597298, -0.033175405114889145, 0.019339704886078835, -0.055936187505722046, 0.029349980875849724, -0.05431823059916496, 0.040444135665893555, -0.006693414878100157, -0.1449015587568283, 0.0177503302693367, 0.08064565062522888, 0.04658152163028717, -0.09391196072101593, -0.09802310913801193, -0.07760833203792572, 0.09820174425840378, -0.10395891964435577, -0.09863430261611938, 0.053193025290966034, 0.03928980603814125, -0.11728386580944061, 0.005144054070115089], "\u591a\u673a\u591a\u5361\u9009\u62e9\u7279\u5b9a\u540d\u79f0\u7684RDMA\u7f51\u5361(\u901a\u8fc7NCCL_SOCKET_IFNAME\u8bbe\u7f6e)\u901a\u4fe1\u540e\uff0c\u8bad\u7ec3\u4ecd\u7136\u62a5\u9519\uff1a": [-0.04842546209692955, 0.09527312219142914, -0.0023122518323361874, 0.016053400933742523, -0.05301705375313759, -0.06775444000959396, -0.02088206820189953, 0.04143417626619339, -0.06240987405180931, 0.03797914832830429, -0.024834655225276947, -0.04046513885259628, 0.0035701363813132048, -0.0688415914773941, -0.04966350272297859, 0.047291845083236694, 0.09088923782110214, 0.019516557455062866, 0.0033532590605318546, 0.11056438833475113, 0.04009239003062248, 0.00800342671573162, 0.05579325556755066, -0.05212784186005592, 0.017232488840818405, 0.11242009699344635, 0.024492692202329636, -0.015708990395069122, 0.12387656420469284, 0.04898874834179878, 0.14070692658424377, 0.013182442635297775, -0.08496986329555511, 0.038892168551683426, -0.02174965664744377, -0.09167181700468063, -0.047499459236860275, 0.13643203675746918, -0.01128210499882698, -0.024247510358691216, 0.04014378786087036, -0.0006660971557721496, -0.10496082156896591, 0.02279995009303093, 0.06294604390859604, 0.019710024818778038, -0.11884249746799469, -0.024294810369610786, 0.022719064727425575, -0.01326324138790369, -0.05133580043911934, 0.00580444373190403, 0.016947923228144646, -0.04300602898001671, -0.024008123204112053, -0.049514614045619965, 0.05495678260922432, 0.004511290229856968, 0.05813991650938988, 0.02437605895102024, 0.02344764955341816, -0.006051078904420137, -0.037568774074316025, -0.017310485243797302, -0.0829603523015976, -0.012126116082072258, -0.02325473725795746, -0.11230836063623428, -0.053399715572595596, -0.015788260847330093, -0.020440731197595596, -0.013703486882150173, 0.023575017228722572, 0.06668312102556229, 0.056471165269613266, 0.007222742773592472, 0.025638701394200325, -0.004043100867420435, -0.1369589865207672, 0.015974707901477814, 0.010250082239508629, 0.08529472351074219, 0.0474153608083725, -0.11779259145259857, -0.03377065062522888, -0.07231520116329193, -0.06502456963062286, 0.06298273056745529, -0.02013891004025936, 0.017592236399650574, 0.04468347132205963, -0.0013408317463472486, -0.18152648210525513, 0.06400244683027267, 0.07692712545394897, -0.05032947286963463, -0.011988542042672634, -0.03034168854355812, -0.1325342059135437, -0.013188029639422894, 0.10753748565912247, -0.06664011627435684, -0.03445078060030937, 0.010061398148536682, 0.004544825758785009, -0.06533905863761902, -0.013447729870676994, 0.06135517358779907, 0.014356433413922787, -0.030388427898287773, 0.040038324892520905, 0.012107201851904392, 0.10125953704118729, -0.04262087121605873, -0.039187029004096985, 0.0792151391506195, 0.033924300223588943, 0.037225671112537384, -0.06973756849765778, 0.08796103298664093, 0.12198545038700104, -0.06323669105768204, 0.043287135660648346, 0.01370498538017273, -0.003865983569994569, -0.06355554610490799, 0.06633055210113525, -0.06477431952953339, -0.0944364070892334, -0.05467908829450607, 0.14749933779239655, -0.05426184833049774, 0.06826955825090408, -0.032732199877500534, -0.1441219449043274, 0.020284518599510193, -0.05731385201215744, 0.01851857826113701, 0.021670527756214142, 0.050728730857372284, 0.03531232476234436, -0.11278927326202393, 0.060770027339458466, -0.031221117824316025, 0.07366805523633957, 0.032181285321712494, -0.07257504761219025, -0.09080217778682709, -0.012686355970799923, -0.006494937464594841, 0.037211984395980835, -0.030311891809105873, -0.00019896775484085083, 0.059472572058439255, 0.022574596107006073, 0.011595582589507103, 0.033744752407073975, -0.07237133383750916, -0.041511841118335724, 0.0018051284132525325, 0.020960316061973572, -0.015781916677951813, 0.047870196402072906, -0.003218088299036026, -0.055534787476062775, 0.0685071125626564, 0.03524333983659744, 0.03974880650639534, -0.030085396021604538, -0.07672560214996338, -0.04476753622293472, -0.021422676742076874, 0.0334048792719841, -0.07482907921075821, 0.05329076573252678, -0.024136897176504135, 0.07971709221601486, -0.10308566689491272, -0.032999176532030106, -0.016913987696170807, 0.06796450912952423, -0.1294529289007187, -0.015022369101643562, -0.05242551863193512, 0.03557417914271355, 0.042435694485902786, 0.0055244080722332, -0.011054957285523415, 0.19069266319274902, -0.09059218317270279, 0.06450562179088593, 0.02160615473985672, 0.006336797960102558, 0.027643773704767227, 0.0418374165892601, -0.010321671143174171, -0.06168384850025177, -0.020348533987998962, 0.051945760846138, -0.018618272617459297, 0.011390706524252892, 0.06043100357055664, 0.10752959549427032, 0.006440612021833658, -0.013317406177520752, -0.00865957885980606, -0.10730227082967758, -0.12937258183956146, 0.05307698994874954, 0.01590362936258316, 0.023038705810904503, 0.036792293190956116, -0.061285506933927536, -0.10239888727664948, -0.0825258195400238, -0.06615132838487625, 0.027475330978631973, 0.05040062218904495, 0.09811124205589294, -0.06632594764232635, -0.047730546444654465, 0.0037492262199521065, -0.046591777354478836, -0.09978067129850388, -0.0799492746591568, 0.024031633511185646, -0.08009686321020126, -0.09730635583400726, 0.08573335409164429, 0.03802313655614853, 0.02044421061873436, 0.0541519895195961, -0.026529811322689056, 0.11097384989261627, -0.06015521287918091, -0.00013772398233413696, -0.012262705713510513, 0.017078155651688576, 0.04033493250608444, 0.031065721064805984, -0.17191645503044128, 0.11510421335697174, -0.05922282114624977, -0.039402756839990616, -0.0700783059000969, 0.05154537037014961, 0.07990635931491852, -0.004698178730905056, 0.05493296682834625, -0.11266738176345825, 0.03876009210944176, 0.03485168144106865, 0.022550096735358238, 0.04614926502108574, -0.016494672745466232, 0.0516945905983448, 0.08972686529159546, -0.052810315042734146, 0.005027318838983774, 0.025903169065713882, -0.013556485995650291, -0.017039529979228973, -0.018493574112653732, -0.01833151839673519, -0.07802852988243103, -0.024136489257216454, 0.1559734046459198, 0.012671496719121933, -0.016062894836068153, -0.10711401700973511, 0.09432221204042435, -0.028261765837669373, -0.12187383323907852, -0.04391200840473175, 0.09066276997327805, 0.044984765350818634, 0.11739526689052582, -0.15935246646404266, 0.058590538799762726, -0.006917852442711592, -0.006046661175787449, 0.008352283388376236, -0.008125744760036469, 0.00536054652184248, 0.10864271223545074, 0.026119336485862732, 0.08703549951314926, -0.015904352068901062, 0.07386461645364761, 0.09593028575181961, -0.042457859963178635, -0.023785622790455818, -0.09390224516391754, 0.01017350796610117, -0.08361028134822845, 0.03032105229794979, -0.03425532579421997, 0.06241729483008385, 0.018966244533658028, 0.056635819375514984, -0.05143251642584801, -0.04642608016729355, 0.04653773456811905, -0.04265803471207619, -0.03962840884923935, -0.07618501782417297, -0.003486335976049304, -0.00812213122844696, 0.04909404739737511, 0.00988847017288208, 0.012129736132919788, 0.048693835735321045, 0.011015554890036583, 0.03725453466176987, 0.03236117213964462, -0.03661758080124855, 0.012766149826347828, -0.060295745730400085, 0.06083667278289795, -0.06269992142915726, 0.06662720441818237, -0.08665410429239273, -0.030603259801864624, 0.04391707479953766, 0.04350968450307846, -0.04588319733738899, 0.05529274418950081, 0.08089296519756317, -0.02387557178735733, 0.0015975148417055607, 0.0649852529168129, -0.05638445168733597, 0.10487089306116104, 0.210297092795372, 0.04919697344303131, -0.09878639131784439, 0.10723260045051575, 0.02057831361889839, -0.07115685939788818, 0.07032650709152222, -0.029682710766792297, -0.11450527608394623, 0.0005177240236662328, -0.013814184814691544, 0.07967490702867508, -0.0862828940153122, 0.015169303864240646, 0.08788455277681351, -0.037309564650058746, 0.014428035356104374, -0.012582477182149887, -0.0927044227719307, 0.006126136984676123, -0.09016796201467514, -0.06790128350257874, -0.11464088410139084, -0.07694516330957413, -0.010729840025305748, 0.05584155395627022, 0.05323224142193794, 0.001805434818379581, -0.016356198117136955, -0.03117702156305313, -0.042032115161418915, 0.024226656183600426, -0.0011146548204123974, 0.12644760310649872, -0.031949564814567566, 0.06987868994474411, 0.00026359595358371735, -0.16287869215011597, 0.03416745737195015, 0.08204317837953568, 0.06872410327196121, -0.12752000987529755, -0.07419747114181519, -0.09714838117361069, 0.08398671448230743, -0.13002705574035645, -0.15448929369449615, 0.07463762909173965, 0.06773979216814041, -0.0540236160159111, -0.015904534608125687], "\u5355\u673a\u591a\u5361\u8bad\u7ec3\u80fd\u591f\u6210\u529f\uff0c\u4f46\u662f\u6269\u5c55\u811a\u672c\u5230\u591a\u673a\u591a\u5361\u540e\uff0c\u5176\u4ed6\u4e3b\u673a\u63d0\u793a\u5404\u7c7b\u62a5\u9519\uff1a": [-0.024103185161948204, 0.014072028920054436, 0.030715038999915123, 0.10873831808567047, -0.05636946111917496, -0.025342848151922226, 0.010929292067885399, 0.06853101402521133, -0.045612186193466187, 0.023419465869665146, 0.06231030821800232, 0.024722183123230934, -0.006468652747571468, 0.03153907135128975, 0.02241125889122486, 0.09595140814781189, 0.10265347361564636, 0.005608276464045048, -0.007935539819300175, 0.03716897964477539, -0.009419049136340618, -0.0444917231798172, 0.01633496955037117, -0.024143341928720474, -0.018354302272200584, 0.030504249036312103, 0.030654318630695343, 0.01831243373453617, 0.019836710765957832, 0.09146043658256531, 0.09395382553339005, 0.031875282526016235, -0.0974205881357193, 0.04885321110486984, -0.006329777650535107, -0.08453448861837387, 0.05512748286128044, 0.08046762645244598, -0.04626740515232086, -0.05619895085692406, 0.12685272097587585, 0.02046089805662632, -0.08254186064004898, 0.12942448258399963, -0.023676693439483643, -0.0392833836376667, -0.10545097291469574, -0.05718202143907547, 0.020311389118433, 0.04917013645172119, -0.07402008771896362, 0.06728477776050568, -0.026421263813972473, -0.012184608727693558, -0.036025188863277435, 0.019089698791503906, 0.047839947044849396, -0.019462769851088524, 0.06452343612909317, -0.02346261963248253, 0.047316499054431915, -0.02079778164625168, -0.017932193353772163, -0.012993215583264828, -0.07455398142337799, -0.0321551151573658, 0.0005874651833437383, -0.07217836380004883, 0.007239319384098053, -0.046328041702508926, -0.008371509611606598, -0.02600296214222908, 0.02082935720682144, 0.02975568175315857, 0.04360403120517731, 0.01065037027001381, -0.0502142533659935, -0.0060639455914497375, -0.043030161410570145, 0.023065201938152313, 0.030064931139349937, 0.05948278680443764, 0.06125841289758682, -0.10389004647731781, -0.03394107520580292, -0.03179703652858734, -0.05546935647726059, 0.04552600905299187, -0.08768321573734283, 0.05824047327041626, 0.02039075829088688, -0.01920962892472744, -0.15987519919872284, -0.007493242155760527, 0.11281956732273102, -0.0074836332350969315, 0.0018071717349812388, -0.0741894394159317, -0.11034959554672241, -0.003897144226357341, 0.046903226524591446, -0.01793251372873783, 0.023023629561066628, 0.010417747311294079, 0.014961162582039833, -0.05099055543541908, 0.06964659690856934, 0.03789886459708214, 0.03511875867843628, 0.07746723294258118, 0.062364816665649414, 0.02932276576757431, 0.014752678573131561, 0.06248759105801582, -0.011293744668364525, 0.021025173366069794, -0.061855658888816833, -0.0009385642479173839, -0.06250116974115372, 0.0917794480919838, 0.05207975208759308, -0.05852902680635452, 0.003817157819867134, 0.05451521649956703, -0.00537842744961381, 0.021761560812592506, 0.11371241509914398, -0.12600122392177582, -0.0409051850438118, -0.0749107226729393, 0.09212963283061981, -0.02994643524289131, 0.06964480131864548, -0.1315383017063141, -0.08753255754709244, 0.042959146201610565, -0.03682504594326019, -0.0161996278911829, 0.040989115834236145, 0.10795459151268005, 0.025863051414489746, -0.08807152509689331, 0.09532032907009125, 0.0018535868730396032, 0.06342779099941254, 0.04885217174887657, -0.04196819290518761, -0.0618147999048233, 0.05112897604703903, -0.039288610219955444, 0.05067678913474083, -0.053229741752147675, -0.028966955840587616, 0.062206678092479706, 0.044661566615104675, 0.06468722224235535, 0.033255208283662796, -0.01283569447696209, -0.005335287656635046, -0.06946497410535812, -0.08453148603439331, -0.024605004116892815, 0.04989659786224365, 0.004918282385915518, -0.06172580271959305, 0.04294180870056152, 0.03544146940112114, 0.009738651104271412, -0.03593131899833679, -0.010500896722078323, -0.06950750946998596, 0.016416389495134354, 0.015242517925798893, -0.08187462389469147, 0.05486500263214111, 0.020099621266126633, 0.08702516555786133, -0.027919935062527657, 0.0203782320022583, -0.08637863397598267, 0.03838400915265083, -0.09310466051101685, -0.014304520562291145, -0.06641048938035965, 0.05723930150270462, 0.028509926050901413, 0.0632750391960144, 0.061605483293533325, 0.11904863268136978, -0.05250037461519241, -0.010363448411226273, 0.05698893964290619, 0.009629499167203903, 0.06856612861156464, 0.011332272551953793, -0.02473476529121399, -0.10202399641275406, -0.011568947695195675, 0.06417419016361237, -0.09419043362140656, 0.022188562899827957, 0.05516709387302399, 0.08722017705440521, -0.01565677858889103, 0.047426529228687286, -0.02313726209104061, -0.07572278380393982, -0.10580367594957352, 0.012271386571228504, 0.0633459985256195, 0.04219234362244606, 0.0344797819852829, -0.00947690661996603, -0.024522610008716583, -0.11669521778821945, 0.010273046791553497, 0.09882229566574097, 0.07151733338832855, 0.11846251785755157, -0.03470795601606369, 0.006125686224550009, 0.0422334261238575, 0.05251213163137436, -0.06759457290172577, -0.04190763831138611, -0.011106815189123154, 0.012808280996978283, -0.10297880321741104, -0.008461988531053066, 0.03691646084189415, -0.07435418665409088, 0.09102417528629303, -0.0015377297531813383, 0.12849558889865875, 0.013132648542523384, 0.08560376614332199, -0.0448102243244648, -0.03955435752868652, 0.1144460141658783, 0.05333297699689865, -0.04569556564092636, 0.07927974313497543, -0.05966118723154068, -0.019696194678544998, -0.05612193048000336, 0.06661705672740936, 0.0444483608007431, 0.10508744418621063, -0.030508168041706085, -0.050767119973897934, 0.041708942502737045, -0.020863579586148262, 0.03665304183959961, 0.03062432073056698, -0.04093421995639801, 0.08769652992486954, 0.036162666976451874, -0.031668804585933685, -0.03267034888267517, -0.005214680917561054, 0.003634600667282939, 0.011808590963482857, -0.04760248214006424, 0.03767959773540497, -0.041857410222291946, -0.07725078612565994, 0.07064785063266754, 0.027822058647871017, 0.038888633251190186, -0.09606904536485672, 0.07079935818910599, 0.02326454594731331, -0.022289752960205078, -0.06960774213075638, 0.20191152393817902, 0.047572411596775055, -0.00493969302624464, -0.11209751665592194, 0.03247516602277756, 0.005832203663885593, 0.027459457516670227, 0.060315072536468506, -0.02410324104130268, -0.026544466614723206, 0.09580639004707336, 0.0015508817741647363, 0.10113973915576935, 0.009767813608050346, 0.07797109335660934, 0.11945804953575134, -0.014596099965274334, -0.032257530838251114, -0.041208524256944656, -0.015803009271621704, -0.0342874713242054, 0.0771355852484703, 0.06012256443500519, 0.01780543103814125, 0.04506824538111687, 0.04417026415467262, -0.047500014305114746, -0.04587914049625397, 0.05775856599211693, -0.030457908287644386, 0.037483491003513336, -0.023946300148963928, -0.03966939076781273, 0.029469363391399384, -0.012319554574787617, 0.006422041915357113, 0.05156175419688225, 0.10986313968896866, 0.04149136692285538, 0.01669500209391117, -0.04549483209848404, -0.018199758604168892, -0.009559846483170986, -0.13461077213287354, 0.0069464147090911865, -0.06513621658086777, 0.0121881403028965, -0.08467139303684235, 0.027316730469465256, 0.07903309911489487, 0.06730052828788757, -0.012616378255188465, 0.08703920245170593, 0.048054635524749756, -0.011713447980582714, 0.017830029129981995, -0.020494023337960243, -0.054572008550167084, 0.0735068991780281, 0.11755818128585815, 0.06190473586320877, -0.1179879754781723, 0.05838070064783096, 0.07007847726345062, 0.005752010270953178, 0.004312619101256132, 0.05113975703716278, -0.11027030646800995, 0.009536860510706902, -0.11162706464529037, 0.045664217323064804, -0.08851583302021027, 0.036736421287059784, 0.010952741838991642, -0.0024096285924315453, 0.014335905201733112, 0.02233194187283516, -0.09245336055755615, 0.04235094040632248, 0.010248136706650257, -0.05124685913324356, -0.09555941075086594, -0.10180312395095825, -0.02307959459722042, 0.09932263195514679, -0.006274895276874304, 0.013284316286444664, -0.027949988842010498, -0.06260113418102264, -0.0909457802772522, 0.021735504269599915, -0.02652382105588913, 0.07512255012989044, -0.00842745415866375, 0.02064831368625164, 0.04432789608836174, -0.10776229947805405, -0.006985606625676155, 0.12031825631856918, 0.04108060151338577, 0.011133892461657524, -0.0075940294191241264, -0.09979294240474701, 0.02258232608437538, -0.013568351045250893, 0.0047064353711903095, 0.09137815237045288, -0.01742061786353588, -0.09838820993900299, -0.023668667301535606], "\u5bfc\u51faMindIR\u683c\u5f0f\u7684\u65f6\u5019\uff0c`input=np.random.uniform(...)`\u662f\u4e0d\u662f\u56fa\u5b9a\u683c\u5f0f\uff1f": [-0.03349277377128601, 0.005835489369928837, 0.03855495527386665, 0.025920405983924866, -0.07331520318984985, -0.003994101658463478, 0.0013909386470913887, 0.10621488839387894, 0.053189754486083984, -0.028537262231111526, -0.06503142416477203, 0.02927902340888977, 0.008650660514831543, -0.07155288755893707, -0.051541123539209366, 0.0841698944568634, 0.10212265700101852, 0.0028613093309104443, -0.007538698613643646, 0.09645596146583557, -0.03854591026902199, 0.01087181270122528, -0.024757513776421547, -0.09708645939826965, -0.02359435148537159, 0.029018716886639595, 0.01352887786924839, -0.017880208790302277, -0.0034239417873322964, 0.061063215136528015, 0.10121039301156998, -0.051115453243255615, -0.08616802096366882, 0.023286551237106323, -0.0657605230808258, -0.06556665897369385, -0.021712668240070343, 0.15033729374408722, 0.007060656324028969, 0.04993360489606857, -0.003065721830353141, -0.009659863077104092, -0.060680411756038666, 0.11217309534549713, -0.008811869658529758, -0.06446756422519684, -0.12727536261081696, 0.023774655535817146, 0.05379995331168175, 0.046349793672561646, -0.08064635097980499, 0.06478478759527206, -0.046887241303920746, -0.034878622740507126, -0.04079874977469444, -0.04467501491308212, 0.04830737039446831, -0.06370698660612106, 0.10387559980154037, 0.08728867769241333, 0.002847600495442748, 0.032814010977745056, -0.039526306092739105, -0.10708444565534592, -0.056820888072252274, -0.04082036763429642, 0.006778933573514223, -0.1258726418018341, -0.02228444255888462, -0.022081300616264343, -0.027576951310038567, 0.0073774270713329315, -0.026537807658314705, 0.06480968743562698, 0.07431021332740784, 0.1329439878463745, -0.0517352819442749, -0.007028828840702772, -0.09946222603321075, 0.00468111876398325, 0.023992199450731277, 0.013474714010953903, 0.07754535228013992, -0.06397727876901627, -0.07664261758327484, 0.021671034395694733, -0.04211730882525444, 0.0393703356385231, -0.04992298036813736, 0.09976400434970856, 0.05864708125591278, 0.0021336828358471394, -0.2124190777540207, 0.06489986926317215, 0.10824394971132278, -0.04841649904847145, -0.07293703407049179, -0.017828334122896194, -0.11520382016897202, 0.027364134788513184, 0.06573714315891266, -0.09067177027463913, -0.043833982199430466, 0.012601993046700954, 0.020633865147829056, -0.05162772163748741, 0.032310374081134796, 0.037673428654670715, 0.02221374213695526, 0.03448611497879028, -0.04224613308906555, 0.021078795194625854, 0.05726303905248642, -0.04752646014094353, -0.004972691182047129, 0.12516577541828156, -0.049310654401779175, -0.0544239841401577, -0.1255364567041397, 0.0930829793214798, 0.154585599899292, -0.06307011097669601, -0.05388559773564339, 0.06998201459646225, 0.01487527135759592, 0.001123995054513216, 0.061974816024303436, -0.017767392098903656, -0.10692521184682846, -0.11699782311916351, 0.1613522171974182, -0.08675767481327057, 0.07420922815799713, -0.13355009257793427, -0.04218926280736923, 0.04541429504752159, -0.029354970902204514, -0.08620233833789825, 0.004027404356747866, 0.07142619043588638, 0.0733179971575737, -0.10685213655233383, 0.03709019348025322, -0.06044746935367584, 0.08360603451728821, 0.006262686103582382, -0.1305847316980362, -0.09832169115543365, -0.049064844846725464, -0.08686147630214691, 0.09967129677534103, 0.011500641703605652, -0.038107533007860184, 0.1181865781545639, -0.017002150416374207, 0.018661880865693092, 0.01821710728108883, 0.00980155635625124, -0.04195505008101463, -0.028037354350090027, -0.016498692333698273, -0.0024199290201067924, 0.04910115897655487, -0.010677775368094444, -0.01585739105939865, 0.023319268599152565, 0.06295716762542725, -0.03650878369808197, -0.04446108639240265, -0.08252131938934326, -0.0721898227930069, -0.00012741051614284515, -0.030962534248828888, -0.05377411097288132, 0.022585518658161163, 0.0036518932320177555, 0.10001576691865921, -0.14605942368507385, 0.037281498312950134, -0.028312966227531433, 0.015444345772266388, -0.12956811487674713, -0.051704928278923035, -0.04428282380104065, 0.012034915387630463, 0.018160846084356308, 0.03217482194304466, 0.023844731971621513, 0.219935804605484, -0.10306211560964584, 0.06253183633089066, 0.0676724761724472, 0.026663977652788162, 0.04405496269464493, -0.005586871411651373, 0.008099941536784172, -0.08363883197307587, 0.05464509502053261, -0.004222608171403408, -0.045328013598918915, -0.014194466173648834, 0.10839703679084778, -0.018375933170318604, -0.010710224509239197, -0.06570969521999359, -0.05057993903756142, -0.10905428230762482, -0.13972768187522888, -0.0531696192920208, -0.008706138469278812, -0.008893458172678947, 0.10440564155578613, -0.050866659730672836, -0.005066391546279192, -0.11449252814054489, -0.027444109320640564, 0.18710465729236603, 0.10016345977783203, 0.1348230391740799, 0.015960145741701126, 0.0848483294248581, 0.03441765531897545, 0.004875801969319582, -0.06447888165712357, -0.02797018364071846, -0.059561945497989655, -0.042164627462625504, -0.10415919870138168, 0.0774453729391098, 0.043496642261743546, -0.08726201951503754, 0.04797748848795891, 0.02145182341337204, 0.13002483546733856, -0.023330623283982277, 0.08897195756435394, -0.032024085521698, -0.0017419179202988744, 0.0308542437851429, -0.0004918984486721456, -0.08312568813562393, 0.07349999248981476, -0.07093578577041626, -0.048520442098379135, -0.039035383611917496, -0.0033564423210918903, 0.059224750846624374, 0.07707741856575012, 0.07707235962152481, -0.04459402710199356, 0.08598688244819641, 0.05641048401594162, -0.0065253195352852345, 0.1009555459022522, -0.025920096784830093, 0.0901099145412445, 0.023925460875034332, -0.021867722272872925, 0.09617721289396286, 0.09481566399335861, 0.0025005959905683994, -0.0017148053739219904, -0.046539172530174255, 0.0655524879693985, 0.0012155951699241996, 0.0025168510619550943, 0.06417464464902878, -0.07818871736526489, 0.04514211416244507, -0.12316973507404327, 0.005353930406272411, 0.016439523547887802, -0.09001056849956512, 0.0076139094308018684, 0.060171518474817276, 0.04642238840460777, -0.01968863606452942, -0.0993003398180008, 0.057715825736522675, 0.0437639094889164, 0.04617316275835037, 0.06628741323947906, 0.00169615657068789, 0.017342526465654373, 0.025340666994452477, -0.03866144269704819, -0.010460654273629189, 0.006644888781011105, 0.08906789869070053, 0.07418982684612274, 0.05079282075166702, -0.02086956612765789, -0.02629316784441471, 0.005458947271108627, -0.039627306163311005, 0.041684575378894806, -0.020004933699965477, 0.05249876528978348, -0.004551989957690239, 0.011631486006081104, -0.07306958734989166, -0.10882251709699631, 0.09538853913545609, -0.06699144095182419, -0.026357585564255714, 0.06945379823446274, -0.09589294344186783, -0.014752475544810295, -0.013055644929409027, 0.017523594200611115, 0.0752892717719078, 0.1383475959300995, 0.06438992917537689, 0.011156276799738407, -0.09497469663619995, -0.0003527808003127575, 0.004103732295334339, -0.11576220393180847, 0.0409398078918457, -0.04556642472743988, -0.02500784397125244, -0.07619847357273102, 0.02844640053808689, 0.0690549984574318, 0.07440550625324249, -0.060034554451704025, 0.056440070271492004, 0.049986328929662704, 0.03801414743065834, -0.00899447314441204, -0.03818304091691971, -0.10565407574176788, 0.09759793430566788, 0.08143538236618042, 0.023654917255043983, -0.12415215373039246, 0.0590701550245285, 0.08368907868862152, 0.0063459486700594425, 0.013394667766988277, 0.06371431052684784, -0.05408238247036934, -0.06100698560476303, -0.04459763318300247, -0.007356892805546522, -0.08464515954256058, 0.022551311179995537, 0.0356660895049572, -0.04011973738670349, 0.02468913048505783, -0.003466055728495121, -0.018092650920152664, 0.046230923384428024, -0.012204618193209171, -0.04291205480694771, -0.13015498220920563, -0.027520669624209404, 0.0056501454673707485, 0.03773783892393112, -0.006693829316645861, 0.024605201557278633, -0.04398611560463905, -0.06949201226234436, -0.023695219308137894, 0.026255425065755844, 0.013420389033854008, -0.012480545789003372, -0.008760575205087662, 0.006988959386944771, -0.01294360775500536, -0.15626484155654907, 0.046596504747867584, 0.12626083195209503, 0.08076084405183792, -0.05663100630044937, -0.02928757295012474, -0.13782741129398346, 0.09633038192987442, -0.0595422089099884, 0.012010008096694946, 0.10727119445800781, 0.007589277345687151, -0.12161476910114288, 0.05547793582081795], "MindSpore\u73b0\u652f\u6301\u76f4\u63a5\u8bfb\u53d6\u54ea\u4e9b\u5176\u4ed6\u6846\u67b6\u7684\u6a21\u578b\u548c\u54ea\u4e9b\u683c\u5f0f\u5462\uff1f\u6bd4\u5982PyTorch\u4e0b\u8bad\u7ec3\u5f97\u5230\u7684pth\u6a21\u578b\u53ef\u4ee5\u52a0\u8f7d\u5230MindSpore\u6846\u67b6\u4e0b\u4f7f\u7528\u5417\uff1f": [-0.05032341554760933, 0.057354964315891266, 0.027641190215945244, -0.02187681756913662, -0.07192495465278625, -0.07033681869506836, 0.015375920571386814, 0.023428503423929214, 0.018834661692380905, 0.08593441545963287, -0.03314104303717613, -0.000552283541765064, 0.014023532159626484, 0.025866661220788956, -0.06607778370380402, 0.07838376611471176, 0.09395574033260345, 0.06179487332701683, -0.013523015193641186, 0.10256505012512207, 0.04036270081996918, -0.03156753256917, 0.08481429517269135, -0.06538449227809906, 0.05198593810200691, 0.11716841161251068, -0.007559759076684713, 0.07574577629566193, 0.05878917872905731, 0.09393314272165298, 0.01272206287831068, 0.04229021444916725, -0.0833221971988678, 0.02839263714849949, -0.036972954869270325, -0.022850608453154564, -0.05285422131419182, 0.09146688878536224, -0.050712887197732925, 0.013144970871508121, 0.04250460863113403, 0.01877046562731266, -0.0004301741428207606, 0.05358661338686943, -0.00377517263405025, -0.07799530774354935, -0.15219806134700775, -0.05979433283209801, 0.03028375655412674, 0.02094397321343422, -0.0802871435880661, 0.017922591418027878, 0.03772326558828354, -0.030730489641427994, -0.09453830122947693, -0.03123409114778042, 0.026517018675804138, 0.05119873955845833, 0.005827062763273716, -0.03457130864262581, 0.004141208715736866, -0.000545321439858526, -0.09478166699409485, -0.01715117320418358, -0.08183847367763519, -0.023674258962273598, -0.04202007129788399, -0.057497281581163406, -0.02087182179093361, 0.021569911390542984, -0.08872762322425842, 0.030115269124507904, -0.006262669339776039, 0.07782107591629028, 0.05631103739142418, 0.07437457144260406, 0.008754219859838486, 0.026865685358643532, -0.09638454765081406, 0.04390944540500641, 0.010658436454832554, 0.10240564495325089, 0.036598898470401764, -0.018726209178566933, -0.061805520206689835, -0.06786993145942688, -0.0706092044711113, 0.06504381448030472, -0.054668981581926346, 0.08103522658348083, -0.01965772733092308, -0.051458775997161865, -0.12075395882129669, 0.023593720048666, 0.04256249964237213, -0.001679139444604516, -0.056695565581321716, -0.061325933784246445, -0.18959420919418335, 0.03420272469520569, 0.05892930552363396, 0.01949695311486721, -0.030751410871744156, 0.04018415883183479, -0.0030404310673475266, -0.07097674906253815, 0.03825703635811806, 0.05083529278635979, 0.07632319629192352, 0.048172783106565475, 0.03349703922867775, 0.010025075636804104, 0.0641750916838646, 0.007684735115617514, 0.003914535511285067, -0.027147509157657623, -0.08911736309528351, -0.0066072652116417885, -0.045106902718544006, 0.08501049876213074, 0.12135595828294754, -0.06089375168085098, 0.02493014931678772, 0.03322065621614456, 0.03251654654741287, -0.027926048263907433, 0.05990249663591385, -0.13415217399597168, -0.07844647020101547, -0.025614479556679726, 0.11330965161323547, -0.05824483186006546, 0.042191341519355774, -0.08033636957406998, -0.09908080846071243, 0.03197525069117546, -0.08202934265136719, 0.03127250447869301, -0.06557682901620865, 0.06905622780323029, 0.03704528883099556, -0.09867532551288605, 0.09760840982198715, -0.0359959602355957, 0.08476713299751282, 0.032917022705078125, -0.065167635679245, -0.06283783912658691, -0.0151776522397995, -0.05562245473265648, 0.06621458381414413, -0.04115179926156998, -0.041951462626457214, 0.061725322157144547, -0.010783967562019825, 0.03384561836719513, -0.02372661605477333, -0.016982240602374077, 0.014426145702600479, 0.005609193816781044, -0.016698315739631653, -0.09349717944860458, 0.027920162305235863, -0.0002163723111152649, -0.010837933048605919, 0.0033946912735700607, 0.043347977101802826, 0.010883595794439316, -0.009398634545505047, -0.07503201812505722, -0.04239078611135483, 0.025861939415335655, -0.019329171627759933, 0.003347004298120737, 0.051274124532938004, -0.02190917357802391, 0.02862069569528103, -0.03325831517577171, 0.007139727473258972, -0.047257617115974426, 0.05936729535460472, -0.13927626609802246, -0.03564200550317764, -0.03822355717420578, 0.008894609287381172, 0.02276868000626564, 0.07694108039140701, 0.011493390426039696, 0.15571856498718262, -0.17324398458003998, -0.009309844113886356, 0.02256654016673565, 0.019950900226831436, 0.07602503895759583, 0.020327135920524597, 0.008745799772441387, -0.07263623923063278, -0.05256593972444534, 0.009700034745037556, -0.0075157154351472855, 0.00456416979432106, -0.01305270567536354, 0.04177798330783844, -0.02481956221163273, -0.012122543528676033, -0.005733866710215807, -0.05613568052649498, -0.1017303615808487, -0.04338572919368744, 0.0020287008956074715, 0.08475860953330994, 0.05865689367055893, -0.0004985331906937063, -0.04818199947476387, -0.1619422286748886, 0.037714339792728424, 0.10197676718235016, 0.06743963807821274, 0.05795110762119293, -0.0828578919172287, 0.022158274427056313, 0.0192198995500803, -0.031536418944597244, -0.07014308124780655, -0.07592980563640594, -0.020820286124944687, -0.009714646264910698, -0.08194123208522797, 0.021537240594625473, 0.033016085624694824, -0.1019497662782669, 0.11440354585647583, 0.041138384491205215, 0.09147967398166656, -0.047916967421770096, 0.10817810148000717, -0.0324278399348259, -0.03628983721137047, 0.08409100025892258, 0.057713866233825684, -0.16100367903709412, 0.03243903070688248, -0.07449367642402649, -0.0017761439085006714, -0.10811134427785873, 0.057988740503787994, 0.07813793420791626, 0.024231890216469765, 0.03022862784564495, -0.05668935552239418, -0.005212543066591024, 0.08397216349840164, -0.06997878849506378, 0.09412714838981628, -0.004307080991566181, 0.06896926462650299, 0.07574974745512009, -0.08839695155620575, 0.020593421533703804, 0.08299317210912704, 0.06698553264141083, 0.026267683133482933, -0.08389073610305786, -0.03888041526079178, -0.05543076992034912, -0.007875141687691212, 0.10884761810302734, -0.04983389377593994, 0.049621399492025375, -0.06950650364160538, 0.005200856830924749, 0.06479942053556442, -0.08344348520040512, 0.05024780333042145, 0.08746001124382019, 0.06435102224349976, 0.04202279821038246, -0.1310972422361374, 0.06230622157454491, 0.0028941549826413393, -0.006873141974210739, 0.023802228271961212, 0.04435121268033981, -0.033378615975379944, 0.08471573889255524, -0.018106553703546524, 0.03380940109491348, -0.019184071570634842, 0.020765157416462898, 0.11717860400676727, -0.06086122989654541, 0.00036304909735918045, -0.0702437162399292, 0.03403032198548317, -0.0029379380866885185, 0.12172018736600876, 0.05056842043995857, 0.035476136952638626, 0.033029019832611084, 0.03725314140319824, -0.03174524009227753, -0.04390214383602142, 0.09630974382162094, -0.08841091394424438, -0.04393325746059418, 0.018545079976320267, -0.06847083568572998, 0.04591656103730202, 0.03243507817387581, -0.031457263976335526, 0.039848022162914276, 0.12222683429718018, 0.05868377536535263, 0.06588850915431976, -0.06555124372243881, -0.0692666545510292, 0.042568132281303406, -0.10659878700971603, 0.0242257509380579, -0.0782691165804863, 0.01562502048909664, -0.06443936377763748, 0.00822762493044138, 0.05976375192403793, 0.03426041454076767, -0.05503103509545326, 0.018585355952382088, 0.078349769115448, -0.009833263233304024, -0.05117463320493698, 0.05196400731801987, 0.021187271922826767, 0.03860899433493614, 0.088570237159729, 0.03273575380444527, -0.1221432238817215, 0.08629767596721649, 0.07402994483709335, -0.03105519525706768, 0.06904200464487076, 0.005628015846014023, -0.05963036045432091, -0.01847984455525875, -0.022936422377824783, 0.11251401156187057, -0.08572612702846527, 0.11072535812854767, 0.01147526130080223, -0.04214324802160263, -0.0371520072221756, 0.015022899955511093, -0.052708208560943604, 0.06733397394418716, -0.03412574529647827, -0.05924044921994209, -0.1848537027835846, -0.07259230315685272, -0.004543619696050882, 0.0575750358402729, 0.008891081437468529, -0.018339648842811584, -0.05137854814529419, -0.055976804345846176, -0.03538211062550545, 0.024046579375863075, -0.0755477324128151, 0.06528663635253906, -0.08958509564399719, 0.08768738061189651, -0.02699742279946804, -0.08438320457935333, 0.0608304888010025, 0.10428977757692337, 0.07587127387523651, -0.04913927987217903, -0.09941230714321136, -0.11134758591651917, 0.08149614185094833, -0.0074447449296712875, -0.06777417659759521, 0.04385813698172569, 0.06638753414154053, -0.13783758878707886, 0.08287683129310608], "\u5728\u4f7f\u7528ckpt\u6216\u5bfc\u51fa\u6a21\u578b\u7684\u8fc7\u7a0b\u4e2d\uff0c\u62a5Protobuf\u5185\u5b58\u9650\u5236\u9519\u8bef\uff0c\u5982\u4f55\u5904\u7406\uff1f": [-0.03214244917035103, 0.029525287449359894, 0.02789752185344696, 0.015130920335650444, -0.025428205728530884, -0.08407891541719437, 0.025778526440262794, 0.1037161648273468, 0.004058671649545431, 0.015670722350478172, -0.06269741803407669, -0.05739879608154297, -0.028957515954971313, -0.05517463758587837, -0.08870404958724976, 0.12215162068605423, 0.06322891265153885, 0.003993838094174862, -0.026051456108689308, 0.09795395284891129, -0.048977844417095184, 0.03186328336596489, 0.00929147470742464, -0.08213268220424652, 0.04600640386343002, 0.07770591974258423, 0.02675078809261322, 0.033124908804893494, 0.029063697904348373, 0.13236552476882935, 0.11137713491916656, 0.018495041877031326, -0.11156996339559555, 0.08915521949529648, -0.04132493957877159, -0.08269894123077393, 0.0008780208881944418, 0.12425722181797028, -0.02711443416774273, 0.0038454937748610973, 0.05844723433256149, -0.005440786946564913, -0.035222917795181274, 0.12564484775066376, -0.06802953779697418, -0.013364752754569054, -0.07645557075738907, -0.0628296360373497, 0.09189820289611816, 0.03963879123330116, -0.05516950041055679, 0.07758508622646332, 0.05915110558271408, 0.008333873935043812, -0.10174056142568588, -0.07268211990594864, 0.02960369363427162, -0.015469136647880077, -0.001532985595986247, 0.028500815853476524, -0.01793418452143669, -0.02445107325911522, 0.04763534665107727, -0.056483522057533264, -0.09263347834348679, -0.03718258813023567, -0.029919646680355072, -0.07067190855741501, -0.03209814801812172, 0.007039300166070461, -0.08033964037895203, 0.026699945330619812, -0.05227231606841087, 0.06437212228775024, 0.071908138692379, 0.03877541422843933, -0.04941635578870773, -0.010839045979082584, -0.10000337660312653, 0.038706663995981216, -0.0369139090180397, 0.05851193517446518, 0.01030382513999939, -0.052028246223926544, -0.06823357194662094, -0.01215739268809557, -0.04580578953027725, 0.021285153925418854, -0.05523539334535599, 0.05739923194050789, 0.0008318720501847565, -0.025412563234567642, -0.17396360635757446, -0.009384571574628353, 0.07458071410655975, -0.07157725095748901, -0.08156292885541916, -0.012638201005756855, -0.16505196690559387, 0.07312562316656113, 0.0310781542211771, -0.07081016898155212, -0.008036341518163681, 0.025286903604865074, -0.013555046170949936, -0.08749634027481079, 0.051372695714235306, -0.007875603623688221, -0.025474943220615387, 0.05109719932079315, 0.047402523458004, -0.022755835205316544, 0.022255228832364082, -0.01892339624464512, -0.05630381405353546, 0.05424448847770691, -0.026154575869441032, -0.03522420674562454, -0.08175046741962433, 0.0867982730269432, 0.059663280844688416, -0.019483212381601334, -0.020903661847114563, 0.000504535564687103, 0.018340401351451874, -0.04649839550256729, 0.059296056628227234, -0.11857600510120392, -0.09283389151096344, -0.028896378353238106, 0.18329358100891113, -0.05477766692638397, 0.050000742077827454, -0.07245717197656631, -0.10193894803524017, 0.046648211777210236, -0.06306783109903336, -0.027510102838277817, 0.0027156511787325144, 0.02824004739522934, 0.05293969064950943, -0.10811741650104523, 0.0734250545501709, -0.03165752813220024, 0.14673806726932526, 0.0003909766674041748, -0.11374866962432861, -0.13326750695705414, 0.0055911182425916195, -0.04227791354060173, 0.11520353704690933, -0.02050039917230606, -0.04543226584792137, 0.07411286979913712, 0.08993233740329742, 0.03723982349038124, -0.0329723134636879, 0.004090852569788694, 0.0128277987241745, -0.048683248460292816, -0.07639886438846588, 0.032018862664699554, 0.0825367197394371, -0.0060746558010578156, -0.04275137186050415, 0.08993847668170929, 0.04804528132081032, 0.04029087722301483, -0.052733711898326874, -0.021220669150352478, -0.03244265913963318, 0.018824266269803047, -0.0095558762550354, -0.061950210481882095, 0.02370987832546234, 0.04484686255455017, 0.029215741902589798, -0.034057024866342545, 0.031417861580848694, -0.0022569652646780014, 0.04111068323254585, -0.11797423660755157, -0.09074163436889648, -0.045657116919755936, 0.023949669674038887, 0.02434989996254444, 0.0267280712723732, 0.09717978537082672, 0.1658756285905838, -0.13695858418941498, -0.0397791862487793, 0.02190149948000908, 0.004648782312870026, 0.0927206501364708, -0.045452386140823364, -0.012749339453876019, -0.08394552767276764, -0.017762569710612297, 0.021748848259449005, -0.07702908664941788, -0.008305028080940247, -0.013223027810454369, 0.07624737173318863, -0.016759593039751053, 0.017154976725578308, -0.0819568932056427, -0.04272536188364029, -0.15704621374607086, 0.02618183009326458, 0.005544026382267475, -0.033909570425748825, -0.010226176120340824, -0.005181070417165756, -0.04399685561656952, -0.11094259470701218, -0.03617873042821884, 0.12804384529590607, -0.012645192444324493, 0.16679318249225616, -0.03691845014691353, 0.015129515901207924, -0.027005476877093315, 0.0018501726444810629, -0.034069549292325974, -0.05887480452656746, 0.03287731856107712, 0.005542724393308163, -0.05822423845529556, 0.02678000181913376, 0.045867517590522766, -0.05273048207163811, 0.0869307667016983, 0.03321795165538788, 0.1694769561290741, -0.009122022427618504, 0.08582262694835663, -0.10192900151014328, -0.05811728164553642, 0.0721893161535263, -0.010118060745298862, -0.11813332885503769, 0.08568750321865082, -0.0771295577287674, -0.05022205412387848, -0.05428403615951538, 0.1090850904583931, 0.03963321074843407, 0.03904581442475319, 0.016858704388141632, -0.04575835168361664, -0.04600438475608826, 0.052461907267570496, -0.043831124901771545, 0.05272001773118973, 0.058726515620946884, 0.0896720141172409, 0.0363880954682827, -0.03941700980067253, 0.0485224686563015, 0.027063561603426933, 0.07834355533123016, 0.009072410874068737, -0.1277698576450348, -0.0024834952782839537, 0.07125445455312729, -0.04109226167201996, 0.1286345273256302, -0.038291025906801224, 0.08129161596298218, -0.08830749988555908, -0.029370732605457306, 0.00979001633822918, -0.06815353780984879, -0.04036565124988556, 0.06943204998970032, 0.03632854297757149, -0.028287146240472794, -0.08579909056425095, 0.08357245475053787, 0.0354088693857193, 0.03708559647202492, 0.07454578578472137, -0.04178271442651749, 0.018688004463911057, 0.046823859214782715, -0.06215399503707886, 0.04874255135655403, 0.0317588672041893, 0.06537988781929016, 0.11726563423871994, 0.03444899246096611, -0.04364071041345596, 0.01687205396592617, 0.021809933707118034, -0.04410988837480545, 0.10416741669178009, 0.055745504796504974, 0.009793845936655998, -0.01991226337850094, 0.06688100844621658, 0.010015938431024551, 0.021318208426237106, 0.013002338819205761, -0.11414483934640884, -0.03058331087231636, -0.016269229352474213, 0.045222386717796326, 0.029092812910676003, 0.030876249074935913, 0.04078170657157898, 0.08023108541965485, 0.06322430074214935, 0.04064679145812988, 0.09627053886651993, -0.01943199709057808, 0.02552979625761509, 0.06262103468179703, -0.07466862350702286, 0.04338527470827103, -0.0434885174036026, 0.04739908128976822, -0.034994855523109436, 0.06600301712751389, 0.06140962988138199, 0.056191302835941315, -0.028998084366321564, 0.061762191355228424, 0.024891691282391548, 0.005763456225395203, 0.02798786386847496, 0.052000902593135834, 0.0073144324123859406, 0.05881449952721596, 0.12211352586746216, 0.042498115450143814, -0.1355879008769989, 0.10156679898500443, -0.006930874660611153, -0.048939298838377, 0.061670832335948944, 0.08787926286458969, -0.04796542227268219, -0.001055933185853064, -0.0394270084798336, 0.04139938950538635, -0.11487782746553421, 0.11826394498348236, 0.06428820639848709, 0.0019359964644536376, 0.000983848818577826, 0.03832888603210449, -0.10909154266119003, 0.008045842871069908, -0.06830773502588272, -0.010943603701889515, -0.05540639907121658, -0.053516730666160583, 0.008997592143714428, 0.07617394626140594, -0.008427979424595833, -0.00479898089542985, -0.03137241303920746, -0.05633159354329109, -0.0741882249712944, 0.0694957822561264, -0.053941115736961365, 0.05167310684919357, -0.06278668344020844, -0.0028549141716212034, 0.04850819706916809, -0.09501904249191284, 0.0052544656209647655, 0.08209216594696045, 0.07360584288835526, -0.08476422727108002, -0.04609999060630798, -0.15553800761699677, 0.09930087625980377, -0.08093473315238953, -0.12217874825000763, 0.07986170053482056, 0.04453781247138977, -0.14248542487621307, -0.028917811810970306], "PyNative\u6a21\u5f0f\u548cGraph\u6a21\u5f0f\u7684\u533a\u522b\uff1f": [-0.007412968203425407, 0.03867195174098015, 0.03276820853352547, 0.09997667372226715, -0.1335890293121338, -0.06907535344362259, 0.02480039931833744, 0.05949795991182327, -0.07536278665065765, 0.07149115204811096, 0.0426863469183445, 0.05244903266429901, -0.013828849419951439, -0.060006462037563324, -0.06876606494188309, 0.12228380143642426, 0.11153745651245117, -0.00668181199580431, -0.07322273403406143, 0.06339156627655029, 0.01582096703350544, 0.04450763761997223, 0.0840890109539032, 0.06973087042570114, 0.039996080100536346, 0.07663210481405258, 0.020981620997190475, 0.005445042625069618, 0.0485692024230957, 0.06648551672697067, 0.09506145864725113, 0.019592497497797012, -0.11007841676473618, 0.024168869480490685, -0.005379511509090662, -0.037458159029483795, -0.08025868982076645, 0.08954505622386932, -0.040417298674583435, 0.08647572994232178, 0.017723023891448975, 0.04128354415297508, -0.07754400372505188, 0.06617791950702667, -0.03169487416744232, 0.0012257577618584037, -0.1199764683842659, -0.047540389001369476, -0.003111542435362935, 0.0008563136216253042, -0.019705701619386673, 0.0721205398440361, -0.011092068627476692, 0.0220892783254385, -0.0557282455265522, 0.04414181783795357, 0.019840247929096222, 0.03677729144692421, 0.0760069265961647, 0.06234227493405342, 0.022644763812422752, -0.04026566073298454, -0.043316882103681564, -0.05207246541976929, -0.11406722664833069, -0.03722026199102402, -0.048008374869823456, -0.07389426976442337, 0.015986870974302292, -0.05357976257801056, -0.023503385484218597, -0.004581070970743895, 0.052853912115097046, 0.08435763418674469, -0.0009128095116466284, 0.07687967270612717, -0.019018420949578285, 0.041568733751773834, -0.11980844289064407, 0.08463945984840393, 0.02898620441555977, 0.05567048117518425, 0.005821486469358206, -0.09026986360549927, -0.06053634732961655, -0.04714792221784592, -0.05271274223923683, 0.1310669481754303, -0.013738444074988365, 0.07518168538808823, 0.04638516902923584, -0.059850312769412994, -0.1658802628517151, 0.036435745656490326, 0.07930447161197662, -0.09180482476949692, -0.0788203775882721, -0.020989853888750076, -0.13879689574241638, -0.02437327429652214, 0.07804147154092789, -0.02889883518218994, 0.07450903207063675, 0.08494972437620163, 0.07090873271226883, -0.04657652974128723, -0.019473442807793617, 0.0642654225230217, -0.08394426852464676, -0.054560836404561996, 0.012478545308113098, 0.06123693659901619, -0.026446163654327393, 0.02243294194340706, -0.054174985736608505, -0.0020572682842612267, 0.014255811460316181, -0.025608975440263748, -0.07787436246871948, 0.1476277858018875, 0.08357414603233337, -0.06992578506469727, 0.05178448185324669, 0.019724424928426743, 0.06041751429438591, 0.004597276449203491, 0.06307405978441238, -0.11646135151386261, -0.15166738629341125, -0.013780529610812664, 0.14080548286437988, -0.15119782090187073, 0.052795495837926865, -0.04017240181565285, -0.13573160767555237, 0.09061434864997864, -0.12196550518274307, -0.005143951624631882, -0.08443999290466309, 0.09131540358066559, 0.07218540459871292, -0.10275924205780029, 0.0445912666618824, 0.005907265469431877, 0.10590218752622604, 0.05213279649615288, -0.07241753488779068, -0.06336556375026703, 0.002583720488473773, -0.043749816715717316, 0.11954324692487717, 0.005425699986517429, -0.012192069552838802, 0.08981838077306747, -0.05223775655031204, 0.04020125791430473, 0.07012046128511429, -0.0005017909570597112, -0.0464203767478466, -0.05265110731124878, -0.06388726085424423, -0.07147539407014847, 0.0639335885643959, -0.02221956104040146, -0.04716148599982262, 0.05302591249346733, 0.032160889357328415, 0.04189325496554375, 0.02625679410994053, -0.03911971300840378, -0.02991361729800701, 0.01148254331201315, 0.04023616760969162, -0.11464987695217133, 0.05912823602557182, 0.06464328616857529, 0.05653303116559982, -0.07449327409267426, -0.04916612431406975, 0.049319833517074585, 0.07714294642210007, -0.0795445442199707, -0.11948008090257645, -0.09457442909479141, 0.036460574716329575, 0.02238374575972557, -0.027099957689642906, 0.025429926812648773, 0.09773141145706177, -0.06394796073436737, -0.007460984867066145, -0.04749128594994545, 0.004744434729218483, 0.08718503266572952, 0.04353434219956398, -0.061400316655635834, -0.032524872571229935, -0.006049833260476589, 0.09357231855392456, -0.0007649807375855744, 0.03888898715376854, 0.03359077870845795, 0.013177772052586079, 0.07234851270914078, 0.012415890581905842, -0.006975135300308466, -0.10412175208330154, -0.08828316628932953, 0.032528553158044815, -0.019905386492609978, 0.08953219652175903, 0.04934348165988922, -0.09895339608192444, 0.012931881472468376, -0.11924514174461365, -0.01791995018720627, 0.06569839268922806, 0.09624587744474411, 0.06423040479421616, -0.06718987971544266, -0.005093995947390795, 0.039377473294734955, 0.016187338158488274, -0.0409170538187027, -0.11560211330652237, -0.006367160473018885, -0.0281982421875, -0.08762155473232269, 0.04139088839292526, 0.029304880648851395, -0.0765518918633461, 0.07578418403863907, 0.03937556967139244, 0.10621489584445953, -0.13599824905395508, 0.03342676907777786, -0.07902471721172333, 0.05903724581003189, 0.012064310722053051, -0.017079532146453857, -0.11030417680740356, 0.16732122004032135, -0.1449473351240158, 0.05133707821369171, -0.07136041671037674, 0.03957904875278473, 0.05409524217247963, -0.015071460977196693, 0.018468959257006645, -0.05207863822579384, 0.02191302552819252, -0.0628701001405716, 0.049691393971443176, 0.05312592163681984, -0.0022282861173152924, 0.062473636120557785, 0.10208941996097565, -0.025580566376447678, -0.05347513407468796, 0.013795692473649979, -0.0256165973842144, -0.03093866817653179, -0.01834411732852459, 0.046989962458610535, -0.025314562022686005, 0.006217358633875847, 0.10337907820940018, -0.03957135230302811, -0.07933315634727478, -0.06798957288265228, 0.10502366721630096, 0.06578181684017181, -0.06410017609596252, -0.003807991975918412, 0.10877646505832672, 0.023831145837903023, 0.08733011037111282, -0.08677934110164642, 0.04757007583975792, 0.0238309595733881, 0.0038243639282882214, 0.14073225855827332, 0.10138656198978424, -0.048395536839962006, 0.022313974797725677, -0.11036373674869537, 0.055579960346221924, -0.02871374413371086, 0.06490986049175262, 0.09898166358470917, 0.00011171773076057434, -0.03231799975037575, -0.045758772641420364, 0.04877500236034393, -0.03001800738275051, 0.11419589817523956, -0.019782885909080505, 0.06246614083647728, -0.006762904580682516, 0.0777190551161766, 0.013274061493575573, -0.10595632344484329, 0.02795460633933544, -0.034413740038871765, -0.015617351979017258, -0.007597454823553562, -0.001684969523921609, 0.022731365635991096, -0.05175366625189781, -0.017215384170413017, 0.03543570265173912, -0.002130672801285982, -0.027774743735790253, 0.04347217082977295, -0.05424988269805908, -0.04154963791370392, 0.06423938274383545, -0.07619395852088928, 0.03512349724769592, -0.10860530287027359, 0.009753583930432796, -0.12061411142349243, 0.08360601961612701, 0.10305184125900269, 0.09727276116609573, -0.030768662691116333, 0.004332280717790127, 0.044041574001312256, -0.04696306586265564, -0.011963020078837872, 0.03026573732495308, -0.08053931593894958, 0.10859130322933197, 0.07757343351840973, 0.0029497097712010145, -0.12995100021362305, 0.03507114201784134, 0.006639398634433746, -0.07326804101467133, 0.08081500977277756, 0.02443569153547287, -0.09718937426805496, -0.0247817263007164, -0.105746790766716, 0.09107096493244171, -0.07132773846387863, 0.11802749335765839, 0.05657266080379486, -0.0007141734240576625, 0.021576307713985443, 0.0044305091723799706, -0.05815378576517105, 0.04384604096412659, 0.02863120473921299, -0.0622226856648922, -0.1265309751033783, -0.043498508632183075, 0.009336304850876331, 0.05650221183896065, 0.014455989003181458, 0.011563129723072052, 0.04789269343018532, 0.0017149264458566904, -0.004065603017807007, 0.014999374747276306, -0.09670738875865936, 0.07072246074676514, -0.0806390792131424, 0.041614312678575516, 0.03970134258270264, -0.16093090176582336, 0.013882502913475037, 0.09337593615055084, 0.03278588503599167, -0.05257246643304825, -0.034429483115673065, -0.14367543160915375, 0.10558923333883286, -0.026651574298739433, -0.11018265783786774, 0.030343540012836456, 0.07560388743877411, -0.01609905995428562, -0.06949528306722641], "\u4f7f\u7528MindSpore\u5728GPU\u4e0a\u8bad\u7ec3\u7684\u7f51\u7edc\u811a\u672c\u53ef\u4ee5\u4e0d\u505a\u4fee\u6539\u76f4\u63a5\u5728Ascend\u4e0a\u8fdb\u884c\u8bad\u7ec3\u4e48\uff1f": [0.0404331237077713, -0.001803068327717483, -0.028150558471679688, 0.04312700033187866, 0.019390655681490898, -0.025239482522010803, 0.027071958407759666, 0.06117499619722366, -0.07084311544895172, -0.028173072263598442, 0.06510975956916809, 0.05918858200311661, -0.007535780780017376, 0.004023382905870676, 0.003772985888645053, 0.04109800606966019, 0.07492173463106155, -0.07233840227127075, -0.030441051349043846, 0.01502441056072712, -0.047695741057395935, 0.05761402100324631, 0.0324612520635128, 0.045996323227882385, 0.03803471475839615, 0.0425708182156086, -0.08302249014377594, -0.01282910443842411, 0.02960806153714657, 0.08384062349796295, 0.04680658504366875, 0.07101272791624069, -0.13324317336082458, 0.021473586559295654, 0.02521129883825779, -0.03412000462412834, -0.025046704337000847, 0.10881589353084564, -0.027008121833205223, -0.05612241104245186, 0.026528242975473404, 0.011674327775835991, -0.07696536928415298, 0.11613842844963074, -0.005941891111433506, -0.04577771574258804, -0.0784497931599617, 0.05255434662103653, 0.04541177302598953, 0.03571295365691185, -0.1380559802055359, 0.07211048901081085, -0.04233298450708389, 0.024129154160618782, -0.012849283404648304, 0.03326661139726639, 0.00458667753264308, -0.02705983817577362, 0.03468139097094536, 0.021019693464040756, 0.007850035093724728, 0.019104838371276855, -0.02107597514986992, 0.06569847464561462, -0.10212351381778717, 0.009270179085433483, -0.052018191665410995, -0.06015634909272194, 0.014908033423125744, 0.054544880986213684, -0.07201018929481506, 0.01149468868970871, -0.07110141217708588, 0.04121983051300049, 0.04210299253463745, -0.026856351643800735, 0.002269178396090865, 0.09443129599094391, -0.10364678502082825, 0.020135119557380676, 0.027813628315925598, 0.04931984841823578, 0.04207681864500046, -0.09932597726583481, 0.01326693594455719, -0.041459910571575165, -0.06573105603456497, 0.024859461933374405, -0.09354577958583832, 0.04251038655638695, -0.022823330014944077, -0.04396457225084305, -0.14409784972667694, 0.09541373699903488, 0.058761514723300934, -0.027322594076395035, -0.0183078795671463, -0.0917992889881134, -0.0815669447183609, -0.002859878819435835, -0.002602915046736598, -0.006603379733860493, -0.011339331045746803, 0.06689640879631042, 0.018904423341155052, -0.09659124910831451, 0.05068938434123993, 0.034670762717723846, 0.010247618891298771, 0.07708089798688889, 0.05014100298285484, 0.041246816515922546, 0.06097647175192833, 0.022353515028953552, -0.04446171224117279, 0.02483045496046543, -0.05191945284605026, -0.07087983191013336, -0.06471569091081619, 0.07621603459119797, 0.10681293904781342, -0.04357565939426422, 0.0007557196659035981, 0.048987291753292084, 0.06404737383127213, -0.016711007803678513, 0.018882358446717262, -0.048447538167238235, -0.05734129995107651, -0.06610346585512161, 0.13171568512916565, -0.007755500264465809, 0.135240375995636, -0.14934861660003662, -0.11179839819669724, 0.06726439297199249, -0.03882098197937012, -0.05601678043603897, -0.042916975915431976, 0.0881909728050232, 0.011264165863394737, -0.09115584194660187, -0.031289197504520416, -0.06319436430931091, 0.12229041755199432, 0.03145860135555267, -0.07783084362745285, -0.18066668510437012, -0.00951455906033516, -0.04995010420680046, 0.07916083186864853, 0.02073810249567032, -0.03898455575108528, 0.12117721885442734, 0.014422198757529259, 0.08487073332071304, -0.08273840695619583, 0.006274431478232145, -0.06030602008104324, -0.010174865834414959, -0.06946629285812378, 0.019431035965681076, 0.007821683771908283, -0.04876875504851341, 0.04045533388853073, 0.037166349589824677, 0.013920960947871208, -0.04754703864455223, -0.07635460048913956, -0.08236729353666306, -0.025661252439022064, 0.023524004966020584, -0.07241165637969971, 0.008536473847925663, 0.017575841397047043, -0.017848430201411247, 0.04186266288161278, -0.07747716456651688, -0.021950535476207733, -0.06773510575294495, 0.1014898493885994, -0.09928372502326965, -0.04151444137096405, -0.07702385634183884, 0.11429697275161743, 0.01979786716401577, 0.032302722334861755, 0.049730777740478516, 0.14624130725860596, -0.11096502840518951, 0.05266958475112915, 0.06752525269985199, 0.08508074283599854, 0.0637475922703743, 0.05288824439048767, -0.052489373832941055, -0.08806335180997849, -0.01698734052479267, 0.022585172206163406, 0.08589474856853485, -0.062055885791778564, 0.04069123789668083, 0.05338943004608154, 0.0626787394285202, -0.036393892019987106, 0.01602698117494583, -0.09607478231191635, -0.1432180553674698, 0.04686030372977257, -0.08404476195573807, 0.09913557022809982, -0.019179413095116615, -0.06633245944976807, -0.05183114483952522, -0.13153831660747528, 0.036771923303604126, 0.09415457397699356, 0.07541578263044357, 0.030146799981594086, 0.02194259874522686, -0.00935259461402893, -0.04540030285716057, 0.021458925679326057, -0.07634202390909195, -0.15486207604408264, 0.07906070351600647, -0.10059568285942078, -0.09146438539028168, 0.01479471568018198, 0.13663363456726074, -0.021797914057970047, 0.08850670605897903, 0.003352819476276636, 0.07061507552862167, 0.011301410384476185, -0.005146226845681667, -0.014836731366813183, -0.04094097763299942, 0.042048677802085876, 0.07667560130357742, -0.1268782764673233, -0.020571693778038025, -0.08863569796085358, -0.05532704293727875, -0.06097475066781044, 0.060131385922431946, 0.09396762400865555, 0.02071569673717022, 0.009112701751291752, -0.06819632649421692, 0.03689192235469818, -0.002619981300085783, 0.005538778379559517, 0.08672800660133362, 0.0149913989007473, 0.05501878634095192, 0.07529186457395554, -0.025019746273756027, 0.048331983387470245, 0.04260961338877678, 0.03194200620055199, 0.0017424338730052114, -0.04138687625527382, -0.013802035711705685, -0.030632557347416878, -0.029054537415504456, 0.07055313140153885, 0.007026146166026592, 0.006946382112801075, -0.040349431335926056, 0.04221633821725845, 0.01122265588492155, -0.05266326665878296, -0.0035702676977962255, 0.1438940316438675, 0.04539607837796211, -0.08507940918207169, -0.12216506898403168, 0.068912073969841, 0.03885435685515404, 0.03240678086876869, 0.03307000920176506, -0.030682066455483437, 0.022573882713913918, 0.10401185601949692, -0.0245959609746933, 0.07505208998918533, 0.06984210014343262, 0.033861901611089706, 0.025343354791402817, -0.05258993059396744, -0.024584967643022537, 0.0014280127361416817, 0.043465279042720795, -0.07930966466665268, 0.07744520902633667, 0.02748006582260132, 0.015713650733232498, -0.02090725116431713, 0.09879302233457565, -0.08760245144367218, -0.014221521094441414, 0.05732326954603195, -0.06238517165184021, 0.006494926288723946, -0.02558646723628044, -0.03553857281804085, 0.09831621497869492, -0.03922014683485031, 0.039194729179143906, 0.14247708022594452, 0.09163612872362137, 0.10203009098768234, 0.07270649075508118, -0.11364418268203735, -0.048720017075538635, 0.04353327304124832, -0.19436095654964447, 0.10315535217523575, -0.03666964918375015, -0.016506878659129143, -0.046587128192186356, 0.003569151973351836, 0.06939774006605148, 0.11246459931135178, 0.06946445256471634, 0.04449259117245674, 0.0478929840028286, 0.018574843183159828, -0.011357124894857407, -0.0070670186541974545, -0.020036663860082626, 0.03741084039211273, 0.07093506306409836, 0.007248716428875923, -0.18356961011886597, 0.13372477889060974, 0.085735023021698, 0.04182695597410202, -0.058041736483573914, 0.11097338795661926, -0.11068502813577652, -0.03424062952399254, -0.09862837940454483, 0.06847372651100159, -0.03054339811205864, 0.032963503152132034, 0.05039485916495323, -0.06642098724842072, -0.08197352290153503, 0.026376107707619667, -0.10366406291723251, 0.06020727381110191, -0.018292952328920364, -0.01521700993180275, -0.0987650603055954, -0.13082851469516754, 0.013143499381840229, 0.05777445435523987, 0.021274957805871964, -0.026300784200429916, 0.0007284086896106601, -0.16030600666999817, -0.06297054886817932, 0.001160613726824522, 0.0034471985418349504, 0.023958005011081696, -0.0005566980107687414, 0.05394129455089569, 0.008113624528050423, -0.1399727761745453, 0.1006600484251976, 0.08560929447412491, 0.06850284337997437, -0.04227361083030701, -0.10081569105386734, -0.16460585594177246, 0.05218987166881561, 0.024544261395931244, -0.03869364783167839, 0.08113222569227219, 0.07898714393377304, -0.07445191591978073, 0.008599154651165009], "\u4e00\u4e2a\u73af\u5883\u4e2d\u5982\u679c\u65e2\u5b89\u88c5\u4e86MindSpore\uff0c\u53c8\u5b89\u88c5\u4e86PyTorch\uff0c\u662f\u5426\u5728\u4e00\u4e2apython\u6587\u4ef6\u4e2d\u53ef\u4ee5\u6df7\u7528\u4e24\u4e2a\u6846\u67b6\u7684\u8bed\u6cd5\u5462\uff1f": [-0.060422807931900024, 0.06917522847652435, 0.04296538606286049, 0.0037801635917276144, -0.030030475929379463, -0.08311063051223755, 0.08551225066184998, 0.07079693675041199, 0.018780693411827087, 0.03782592713832855, -0.03823070228099823, 0.06464660912752151, -0.004309359472244978, -0.01804913580417633, -0.03805509954690933, 0.09536121785640717, 0.09666880965232849, 0.035232048481702805, -0.060905780643224716, 0.09108145534992218, 0.02820749580860138, 0.03562629967927933, 0.0803629457950592, -0.08204113692045212, 0.05200254172086716, 0.10974106192588806, -0.024425256997346878, 0.019532831385731697, 0.032527025789022446, 0.10583565384149551, -0.021046670153737068, 0.06987330317497253, -0.08795902132987976, 0.08782549202442169, -0.11404649168252945, -0.02589409239590168, -0.09927919507026672, 0.1121215671300888, -0.05420054495334625, 0.02953355386853218, 0.014470260590314865, 0.059944044798612595, -0.013330481946468353, 0.04514552280306816, 0.033974237740039825, -0.07122109830379486, -0.15365886688232422, -0.05498979240655899, 0.04940079525113106, 0.04100481793284416, -0.10392272472381592, 0.02611488848924637, 0.012675768695771694, -0.02854345552623272, -0.05011386796832085, -0.030658774077892303, 0.03191092982888222, -0.013689713552594185, 0.09033751487731934, -0.01792026124894619, 0.02648101933300495, -0.010813701897859573, -0.07292061299085617, 0.022293657064437866, -0.1178591400384903, -0.025805741548538208, -0.06741385161876678, -0.045759182423353195, 0.026152489706873894, -0.03347087651491165, -0.13231387734413147, 0.025325918570160866, -0.03194824978709221, 0.09529758989810944, 0.08309298753738403, 0.032630983740091324, 0.022349808365106583, 0.050797633826732635, -0.08384008705615997, 0.05670899897813797, 0.052708644419908524, 0.10154177993535995, 0.08951430022716522, -0.07145513594150543, -0.04281117022037506, -0.022167593240737915, -0.13062167167663574, 0.0544467493891716, -0.06150544807314873, 0.02969442307949066, -0.03492482006549835, -0.06655451655387878, -0.13096332550048828, 0.06352632492780685, 0.08640895783901215, -0.018540505319833755, -0.07878151535987854, -0.06554531306028366, -0.15300464630126953, -0.030148334801197052, 0.06421566009521484, -0.021084219217300415, -0.045093800872564316, 0.02517332136631012, 0.0027221038471907377, -0.03880926966667175, 0.05382440984249115, 0.01914915256202221, -0.010935939848423004, 0.05832930654287338, -0.004890939220786095, 0.036838021129369736, 0.071295827627182, 0.0013402394251897931, 0.013468239456415176, 0.025756852701306343, 0.0035775317810475826, 0.01734493300318718, -0.03349759429693222, 0.06375216692686081, 0.08962558209896088, -0.0924602821469307, 0.029180457815527916, 0.01570574939250946, 0.04116697236895561, -0.017245586961507797, 0.05411587655544281, -0.08866038918495178, -0.03218834474682808, -0.06744948774576187, 0.17672783136367798, -0.066487617790699, 0.044260308146476746, -0.08696775138378143, -0.06485315412282944, 0.09431444853544235, -0.051259562373161316, -0.022401519119739532, -0.06477423757314682, 0.12478410452604294, 0.08251727372407913, -0.14074230194091797, 0.0734245628118515, -0.01937628909945488, 0.1428063064813614, 0.00724240206182003, -0.11822032183408737, -0.1408170461654663, -0.036527663469314575, -0.047841042280197144, 0.10979963093996048, -0.041851967573165894, -0.04238635674118996, 0.15086592733860016, -0.04451822116971016, 0.04965155944228172, -0.02643299475312233, -0.03338031470775604, -0.03353634104132652, -0.034127503633499146, -0.07191375643014908, -0.06620818376541138, 0.030520625412464142, -0.004924793727695942, -0.034524623304605484, 0.048566266894340515, 0.037341680377721786, -0.0041830409318208694, -0.009428828954696655, -0.09013821184635162, 0.004607353359460831, 0.00017078593373298645, -0.02385724149644375, -0.03772241249680519, 0.08983708918094635, -0.012569842860102654, 0.053206879645586014, -0.048635441809892654, -0.023422615602612495, -0.0025524431839585304, 0.09364889562129974, -0.07213795185089111, -0.041605472564697266, -0.07365526258945465, 0.05387501418590546, 0.008588655851781368, 0.062024906277656555, -0.008964912965893745, 0.17165623605251312, -0.12467581778764725, -0.01914488710463047, 0.018253188580274582, 0.01688394322991371, 0.09435275942087173, -0.00864656362682581, 0.009224235080182552, -0.062832310795784, -0.03266251087188721, -0.004218819551169872, -0.012779132463037968, -0.06592535972595215, -0.06035196781158447, 0.08190199732780457, -0.004676505457609892, -0.0028504354413598776, 0.005459276959300041, -0.11501738429069519, -0.10194867104291916, -0.009848754853010178, 0.000925024738535285, 0.06634289026260376, 0.0599825382232666, -0.0453173965215683, -0.03728533536195755, -0.1093234047293663, 0.018529174849390984, 0.08155930042266846, 0.09407882392406464, 0.025090713053941727, -0.036952923983335495, 0.011350543238222599, 0.017347607761621475, -0.01146523654460907, -0.08064761012792587, -0.05510145425796509, -0.035187702625989914, -0.10110820829868317, -0.08599762618541718, -0.00920040998607874, 0.038834113627672195, -0.08346779644489288, 0.09264921396970749, 0.02849305421113968, 0.08858735114336014, 0.013430106453597546, 0.03666047006845474, -0.06902860850095749, -0.0031616787891834974, 0.09913656860589981, 0.09542980790138245, -0.13782329857349396, 0.044309958815574646, -0.09008554369211197, -0.018095459789037704, -0.1315973401069641, 0.10233774781227112, 0.06293925642967224, 0.02519971877336502, 0.005899625364691019, -0.0618455670773983, 0.03868936747312546, 0.05082085728645325, -0.1326608806848526, 0.07321655750274658, 0.010769533924758434, 0.04321121796965599, 0.04032610356807709, -0.11403121054172516, 0.04588086158037186, 0.09680801630020142, 0.01734713837504387, 0.004379359073936939, -0.10113599896430969, -0.0555352121591568, -0.06128808856010437, -0.01568041928112507, 0.08172257244586945, -0.08301527053117752, 0.05578358471393585, -2.1978281438350677e-05, -0.0026345825754106045, 0.09089037775993347, -0.09204651415348053, 0.023312408477067947, 0.0831383615732193, 0.0497991219162941, 0.0855664312839508, -0.10792412608861923, 0.026105983182787895, 0.03375830873847008, -0.012441582046449184, 0.023785648867487907, 0.03637148067355156, -0.044110313057899475, 0.03589740768074989, -0.08050687611103058, 0.033916912972927094, 0.0232265442609787, 0.028496893122792244, 0.07178755104541779, -0.0561678409576416, -0.009409550577402115, -0.06091858446598053, 0.0012293210020288825, -0.03434078395366669, 0.09788145124912262, 0.04148807376623154, 0.08038374781608582, 2.761930227279663e-05, 0.029757708311080933, -0.052823033183813095, -0.06710659712553024, 0.11350222676992416, -0.052790138870477676, -0.031805139034986496, 0.009961368516087532, -0.04521295428276062, 0.032901909202337265, 0.02593740075826645, -0.1048889234662056, -0.01711835339665413, 0.08656821399927139, 0.04356362298130989, 0.05613059177994728, -0.05197926238179207, -0.08540201932191849, 0.03694506734609604, -0.10736119747161865, 0.03943341225385666, -0.07086893171072006, -0.008801702409982681, -0.07841454446315765, -0.012162378057837486, 0.08358336985111237, 0.029303275048732758, 0.02386678010225296, 0.015706492587924004, 0.06838929653167725, 0.013607928529381752, -0.05893002450466156, 0.05167501047253609, 0.002849552547559142, 0.001827305881306529, 0.07364640384912491, 0.022149480879306793, -0.1134050264954567, 0.11081373691558838, 0.010862013325095177, -0.021628277376294136, 0.048043955117464066, 0.01298059243708849, -0.06403820961713791, -0.003671499202027917, -0.04244548827409744, 0.07851517200469971, -0.062198370695114136, 0.11962738633155823, 0.03225773945450783, -0.06562097370624542, -0.05385974794626236, 0.034310102462768555, -0.0582425594329834, 0.11021498590707779, -0.05819500610232353, -0.07038134336471558, -0.12331537902355194, -0.0274436604231596, 0.005688471719622612, 0.03811822086572647, -0.014081742614507675, 0.016761580482125282, -0.03440938889980316, -0.0578095018863678, -0.03354030102491379, -0.026679005473852158, -0.07147698104381561, 0.05590692535042763, -0.08539152145385742, 0.06332805752754211, -0.005919822957366705, -0.06388212740421295, 0.041475724428892136, 0.1401415765285492, 0.06258973479270935, -0.04376823827624321, -0.05510545149445534, -0.13172420859336853, 0.09150497615337372, -0.010952988639473915, -0.07811731100082397, 0.03828394412994385, 0.07388528436422348, -0.10928195714950562, 0.04438279569149017], "MindSpore\u53ef\u4ee5\u8bfb\u53d6TensorFlow\u7684ckpt\u6587\u4ef6\u5417\uff1f": [-0.07468389719724655, -0.010594796389341354, -0.013964432291686535, 0.005553435534238815, 0.011164261028170586, -0.04563133418560028, 0.040096431970596313, 0.03285311535000801, -0.032727327197790146, -0.00527961878105998, -0.0389476902782917, -0.037127088755369186, -0.04936528205871582, 0.04335523396730423, 0.017008015885949135, 0.09131687879562378, 0.058257848024368286, 0.021137092262506485, -0.0718686655163765, 0.05378124117851257, 0.017374815419316292, 0.03148789703845978, 0.027393635362386703, -0.016376547515392303, 0.05883627384901047, 0.11698482930660248, 0.0365184061229229, 0.010563349351286888, 0.0024340886157006025, 0.09062875807285309, 0.04725651443004608, 0.05121679604053497, -0.07246765494346619, 0.10100195556879044, -0.02724115550518036, -0.04061582684516907, -0.06372752785682678, 0.12612758576869965, -0.024892352521419525, -0.02662685513496399, 0.028999852016568184, 0.01927214302122593, -0.03446102887392044, 0.08137497305870056, -0.02518530935049057, -0.01968231610953808, -0.08019295334815979, -0.013140875846147537, 0.05545414239168167, 0.03498023375868797, -0.08576352894306183, 0.0758911743760109, -0.019187981262803078, -0.05616101622581482, -0.08903054893016815, -0.0431104339659214, -0.002418525516986847, 0.025441396981477737, 0.06540953367948532, -0.02005847729742527, 0.04582485556602478, 0.06058119982481003, -0.06689239293336868, -0.028176555410027504, -0.1342300921678543, -0.00849278923124075, 0.03241981938481331, -0.0762818455696106, -0.008434812538325787, -0.024115921929478645, -0.11749972403049469, -0.06783277541399002, -0.0022657213266938925, 0.1013064756989479, 0.07113376259803772, 0.049194831401109695, -0.02626572735607624, 0.028154943138360977, -0.06708291172981262, 0.019345063716173172, 0.02398187853395939, 0.10769110918045044, 0.0678393617272377, -0.05606509745121002, -0.09079667925834656, -0.028627149760723114, -0.06861172616481781, 0.05548080801963806, 0.0015790449688211083, 0.06918705254793167, 0.01439499482512474, -0.03187914565205574, -0.11951494961977005, 0.0973777025938034, 0.09657768905162811, 0.000713903340511024, -0.05043699964880943, -0.033778656274080276, -0.16174089908599854, -0.02750536985695362, -0.0018643417861312628, 0.010920414701104164, -0.03441832959651947, 0.05551542341709137, 0.0358741469681263, -0.037703610956668854, -0.004600102081894875, 0.03024482913315296, 0.05282469093799591, -0.0014276029542088509, 0.032817889004945755, 0.026284830644726753, 0.08525579422712326, 0.057565946131944656, 0.008872626349329948, 0.05867280066013336, -0.05903805419802666, -0.0432252362370491, -0.039282891899347305, 0.11667539179325104, 0.08983644843101501, -0.060287151485681534, 0.036356035619974136, 0.016509337350726128, 0.10879875719547272, -0.05491288751363754, 0.04632318764925003, -0.09279653429985046, -0.05993454158306122, -0.042252521961927414, 0.13870516419410706, -0.07540557533502579, 0.052277788519859314, -0.11058934032917023, -0.10972387343645096, 0.04411120340228081, -0.018893597647547722, -0.026553137227892876, -0.044230520725250244, 0.07112614810466766, 0.0396747849881649, -0.1409219354391098, 0.09599125385284424, -0.04285722225904465, 0.08451081812381744, -0.019874123856425285, -0.10900644958019257, -0.1791362762451172, 0.012263156473636627, -0.10646246373653412, 0.1385899782180786, -0.057176828384399414, -0.013229849748313427, 0.08736225962638855, -0.046869222074747086, -0.008132643066346645, 0.010943944565951824, 0.0012155635049566627, 0.049883611500263214, -0.0037129537668079138, -0.07643916457891464, -0.02886953018605709, 0.03263796120882034, -0.01377728022634983, -0.04175218194723129, 0.07605334371328354, 0.08467224985361099, -0.017627596855163574, -0.060957156121730804, -0.06264504045248032, 0.003032812848687172, 0.019260788336396217, -0.05023667961359024, -0.027127638459205627, 0.04152451083064079, -0.012220589444041252, -0.004272175952792168, -0.061810512095689774, 0.03973231092095375, -0.004966358654201031, 0.037085287272930145, -0.14912322163581848, -0.06755630671977997, -0.14951130747795105, 0.042026158422231674, 0.038792140781879425, 0.0785389170050621, 0.04251650348305702, 0.14983253180980682, -0.17870575189590454, 0.002251129597425461, 0.07145851850509644, 0.013996666297316551, -0.0026477682404220104, 0.01715952530503273, -0.02514091692864895, -0.10057114064693451, -0.012957376427948475, 0.06762690097093582, 0.013292163610458374, -0.03445848077535629, 0.009747868403792381, 0.03942204639315605, 0.01022565271705389, -0.020927000790834427, -0.0759943351149559, -0.07630152255296707, -0.11816767603158951, -0.04438155144453049, -0.008205503225326538, 0.08522685617208481, 0.027208520099520683, -0.03594975173473358, -0.06771738082170486, -0.0951870009303093, 0.0006279757944867015, 0.08512448519468307, 0.035006485879421234, 0.04481485113501549, -0.018970798701047897, 0.06093868985772133, 0.03436209633946419, -0.01905752345919609, -0.09018895030021667, -0.052846863865852356, -0.017841897904872894, -0.034321486949920654, -0.07601608335971832, 0.016751760616898537, 0.024425610899925232, -0.06101929396390915, 0.08104431629180908, -0.026425007730722427, 0.08444001525640488, -0.050834931433200836, 0.11175225675106049, -0.06591226905584335, 0.02705524116754532, 0.07307802885770798, 0.023713605478405952, -0.07684796303510666, 0.097970150411129, -0.0067975218407809734, 0.00989055261015892, -0.08525612950325012, 0.10557547211647034, 0.08008568733930588, 0.0945904478430748, 0.010531188920140266, -0.07972880452871323, 0.041815683245658875, 0.012082049623131752, -0.08954321593046188, 0.03903267905116081, -0.020503340288996696, 0.021260332316160202, 0.05309261754155159, -0.06775416433811188, 0.02141769602894783, 0.06692616641521454, 0.04931845888495445, 0.06156788021326065, -0.06472064554691315, -0.03334195166826248, -0.03587281331419945, 0.013196523301303387, 0.09000740945339203, -0.0635770782828331, 0.0019219196401536465, -0.05984875187277794, -0.0009603869984857738, -0.007650748826563358, -0.11383060365915298, 0.04417885094881058, 0.052817732095718384, 0.07163461297750473, 0.03562205657362938, -0.10974158346652985, 0.08295352011919022, 0.02698098123073578, -4.971399903297424e-06, 0.031841643154621124, 0.023684557527303696, -0.005499646533280611, 0.08047354966402054, -0.036951735615730286, 0.047210417687892914, -0.0034845415502786636, 0.03905069828033447, 0.1527860164642334, -0.006128900218755007, -0.006562823895365, -0.01101437397301197, 0.0017736554145812988, 0.0019065807573497295, 0.10366687178611755, 0.03126365691423416, 0.05031022056937218, -0.031228508800268173, 0.056180767714977264, 0.005784051958471537, -0.02803884446620941, 0.03076794743537903, -0.1287463754415512, -0.09846130013465881, -0.004766932688653469, -0.05877600237727165, 0.03909556567668915, 0.010878986679017544, -0.03382109850645065, 0.03297868371009827, 0.02086465246975422, 0.01437838189303875, 0.06264985352754593, -0.04646739363670349, 0.006993993651121855, 0.10152750462293625, -0.11495839059352875, 0.026551036164164543, -0.024360446259379387, -0.07589112967252731, -0.03744303435087204, -0.01838615909218788, 0.096997931599617, 0.07864636182785034, -0.06154482066631317, -0.015277989208698273, 0.047991059720516205, 0.023602230474352837, 0.008062046021223068, 0.036116983741521835, -0.027848953381180763, 0.020067159086465836, 0.07213898003101349, -0.0008204684709198773, -0.20706427097320557, 0.08128666877746582, 0.016340387985110283, -0.06968440860509872, 0.07009710371494293, 0.10568712651729584, -0.06947789341211319, 0.03230452165007591, -0.0234852097928524, 0.12745173275470734, -0.13033010065555573, 0.14291536808013916, 0.04525727778673172, -0.04485483840107918, -0.041720032691955566, 0.056873586028814316, -0.059511132538318634, 0.06901481002569199, -0.06161603331565857, -0.06775957345962524, -0.09434641152620316, -0.04022730886936188, 0.020850474014878273, 0.044799622148275375, -0.048799291253089905, -0.03448560833930969, -0.06402720510959625, -0.058264292776584625, -0.0610337033867836, 0.048407815396785736, -0.06344343721866608, 0.0685320571064949, -0.03296386078000069, 0.05584480240941048, 0.029223047196865082, -0.06142996996641159, 0.04435814544558525, 0.08031970262527466, 0.07505258917808533, -0.06420966982841492, -0.10391587764024734, -0.10516435652971268, 0.06699737161397934, -0.05171079933643341, -0.06153663992881775, -0.017251279205083847, 0.0006391609786078334, -0.14637570083141327, 0.039757926017045975], "\u7528MindSpore\u8bad\u7ec3\u51fa\u7684\u6a21\u578b\u5982\u4f55\u5728Ascend 310\u4e0a\u4f7f\u7528\uff1f\u53ef\u4ee5\u8f6c\u6362\u6210\u9002\u7528\u4e8eHiLens Kit\u7528\u7684\u5417\uff1f": [0.03872392326593399, 0.060960203409194946, 0.04722331464290619, 0.04824086278676987, -0.03855932503938675, -0.06102611869573593, 0.040999170392751694, 0.055361006408929825, 0.0307583250105381, 0.03538042679429054, -0.019027387723326683, 0.013341216370463371, 0.03977608680725098, 0.021457437425851822, 0.00935098435729742, 0.06499217450618744, 0.13413898646831512, -0.011539475992321968, -0.026615265756845474, 0.055706724524497986, 0.02861728146672249, 0.03336979076266289, -0.0012197684263810515, -0.04907083883881569, 0.03134569898247719, 0.10062447190284729, -0.0607638880610466, -0.04056171700358391, 0.0065709990449249744, 0.05754047632217407, 0.10465412586927414, 0.045780301094055176, -0.08470948040485382, -0.028796613216400146, -0.002074365271255374, -0.05733244866132736, -0.014695815742015839, 0.08590292930603027, -0.026055077090859413, -0.02813456580042839, 0.07554906606674194, 0.04336819425225258, -0.04671285301446915, 0.11642401665449142, -0.030846599489450455, -0.026289422065019608, -0.1356963813304901, -0.01899593695998192, 0.021825240924954414, 0.019622821360826492, -0.12554597854614258, 0.08361934125423431, 0.0155489481985569, -0.007412562146782875, 0.0011349278502166271, 0.01918768882751465, 0.03705248609185219, -0.013536479324102402, 0.018956882879137993, 0.026883535087108612, -0.000616649049334228, 0.003748618997633457, -0.026380125433206558, 0.0017267410876229405, -0.09335894882678986, 0.042373377829790115, -0.029711216688156128, -0.05808613449335098, -0.011668112128973007, -0.022678770124912262, -0.06615441292524338, -0.017122291028499603, -0.004195965360850096, 0.009507428854703903, 0.05523356795310974, 0.03264991194009781, -0.008936726488173008, 0.04047096148133278, 0.022775407880544662, 0.08132335543632507, 0.023987455293536186, 0.0635596439242363, 0.021220650523900986, -0.0312031377106905, -0.05203146114945412, -0.03855491802096367, -0.0565112866461277, 0.053263090550899506, -0.08013724535703659, 0.09458168596029282, 0.017194557934999466, -0.054014433175325394, -0.13468755781650543, 0.036694079637527466, 0.08011782914400101, -0.04096512496471405, -0.05126338079571724, -0.009961548261344433, -0.12864331901073456, -0.00029323063790798187, 0.040351804345846176, -0.029907789081335068, -0.06640488654375076, 0.03305210545659065, -0.009619263000786304, -0.06784560531377792, 0.05143113434314728, 0.03342394903302193, -0.01912188157439232, 0.06390364468097687, 0.07071012258529663, 0.040218792855739594, 0.07851406186819077, 0.031135359779000282, -0.03355573117733002, 0.07922805100679398, 0.00017640553414821625, -0.02300116792321205, -0.10591164231300354, 0.08278419822454453, 0.0363646000623703, -0.009021890349686146, 0.020256632938981056, 0.013452783226966858, 0.05528486520051956, -0.03327377140522003, 0.06191791594028473, -0.057493001222610474, -0.03860686719417572, -0.05660267174243927, 0.14357773959636688, -0.08611395210027695, 0.0753154531121254, -0.08214786648750305, -0.09379824995994568, 0.0709431990981102, -0.023990165442228317, -0.0383463129401207, 0.025778019800782204, 0.09543836116790771, 0.016228219494223595, -0.11626861989498138, 0.014494653791189194, -0.05864879861474037, 0.10137888789176941, 0.008386016823351383, -0.07556116580963135, -0.07549622654914856, -0.045408036559820175, -0.04508832097053528, 0.08519422262907028, 0.005232904106378555, -0.035705745220184326, 0.04370411857962608, 4.689954221248627e-05, 0.039671529084444046, 0.009291025809943676, 0.012167341075837612, -0.018991297110915184, -0.04072711244225502, -0.021909967064857483, 0.006273256149142981, 0.02567250467836857, -0.02614510804414749, -0.020133892074227333, 0.006725183688104153, -0.0360211543738842, -0.03030858188867569, -0.05359061062335968, -0.011407081969082355, -0.03261023387312889, -0.013757520355284214, -0.07167001068592072, -0.04520857334136963, -0.027270620688796043, -0.010295426473021507, 0.05884498357772827, -0.12296007573604584, -0.014159716665744781, -0.036584947258234024, 0.12114999443292618, -0.0633559450507164, -0.0071810404770076275, -0.06288447976112366, 0.0037241666577756405, 0.0833941325545311, 0.0454108864068985, 0.09103164076805115, 0.09966842830181122, -0.06665351986885071, -0.03610699251294136, -0.010782700963318348, 0.005281636491417885, 0.11922810971736908, 0.00757070304825902, -0.0027493597008287907, -0.07549852877855301, -0.01885763742029667, 0.03740730881690979, 0.010713310912251472, -0.030440716072916985, 0.04922189563512802, -0.0002793446183204651, -0.0008950361516326666, -0.07375276833772659, 0.05312466621398926, -0.04068733751773834, -0.10343319177627563, 0.032715123146772385, -0.0024477678816765547, 0.06523244082927704, 0.059639282524585724, 0.022463969886302948, -0.059991732239723206, -0.10848677903413773, -0.024477733299136162, 0.06679125875234604, 0.08012881875038147, 0.08369984477758408, 0.005998934153467417, -0.00922092329710722, -0.01000968087464571, 0.012145758606493473, -0.05441361665725708, -0.07784923911094666, -0.007736503146588802, -0.06794176250696182, -0.10122337192296982, 0.016285764053463936, 0.05452946946024895, -0.07248539477586746, 0.03309406712651253, 0.01691487804055214, 0.15005508065223694, -0.015556233935058117, 0.05500422418117523, -0.05148196220397949, 0.03809621185064316, 0.07051277160644531, -0.014042503200471401, -0.05304591357707977, 0.0887732207775116, -0.04410199820995331, -0.08220088481903076, -0.05755404010415077, 0.09554719179868698, 0.12236344069242477, 0.04727426543831825, -0.0071748048067092896, -0.005852188915014267, 0.055624667555093765, 0.05118067190051079, -0.10795947909355164, 0.023720737546682358, -0.06364832073450089, 0.06790897250175476, 0.10055758059024811, -0.04826824367046356, 0.06973375380039215, 0.05510263890028, 0.04180700331926346, 0.022486353293061256, -0.10853193700313568, 0.010354041121900082, -0.018696103245019913, 0.004760935436934233, 0.08144932240247726, 0.0077912462875247, -0.0575273223221302, -0.047651827335357666, 0.06559211015701294, 0.029868928715586662, -0.0965755432844162, -0.0012120011961087584, 0.09709833562374115, 0.04833490028977394, -0.00014600204303860664, -0.1851557195186615, 0.030176706612110138, 0.0010821931064128876, 0.029913071542978287, -0.012497221119701862, -0.015184936113655567, -0.012253083288669586, 0.11886566877365112, -0.0290919728577137, 0.07389488816261292, 0.016363978385925293, 0.007048564497381449, 0.08383006602525711, -0.01703186333179474, -0.002288872143253684, -0.03855853155255318, -0.009898978285491467, -0.038323890417814255, 0.08483852446079254, 0.02251516282558441, 0.057962581515312195, -0.03646646440029144, 0.06002148985862732, -0.04974299669265747, 0.021080074831843376, 0.06153273582458496, -0.020476914942264557, 0.009297328069806099, 0.018482685089111328, -0.04961565509438515, 0.08190400898456573, -0.0031944664660841227, 0.03242195397615433, 0.04581315070390701, 0.08808743208646774, 0.08488224446773529, 0.044983942061662674, -0.04654058814048767, -0.06394624710083008, 0.01695827953517437, -0.12716349959373474, 0.045687347650527954, -0.034318286925554276, 0.008469806984066963, -0.01115206629037857, 0.01739976741373539, 0.04060577228665352, 0.0800921767950058, 0.015576682053506374, 0.05547709763050079, 0.07656227052211761, -0.00524905975908041, -0.01150424499064684, -0.002299228450283408, -0.0718693733215332, 0.07887673377990723, 0.05392081290483475, 0.04895320162177086, -0.11428865790367126, 0.10765988379716873, 0.036202866584062576, 0.007401672191917896, 0.021568723022937775, 0.052716001868247986, -0.09373694658279419, 0.024205375462770462, -0.1251051276922226, 0.07583581656217575, -0.0353863500058651, 0.030925925821065903, 0.007228047586977482, -0.04576990008354187, -0.06943952292203903, 0.022075597196817398, -0.05775119736790657, 0.06490913778543472, -0.03642011433839798, 0.007766078691929579, -0.1117403581738472, -0.07076573371887207, -0.003566238796338439, 0.03965584933757782, 0.013710634782910347, -0.030941413715481758, -0.011084919795393944, -0.026658477261662483, -0.01848071627318859, 0.03467979654669762, -0.04022172465920448, 0.03360576927661896, -0.021668897941708565, 0.037947360426187515, 0.040229640901088715, -0.09198056161403656, 0.06420258432626724, 0.049643948674201965, 0.0718434676527977, -0.037587013095617294, -0.014180575497448444, -0.0929875522851944, 0.10461922734975815, -0.043944910168647766, -0.03908349201083183, 0.049259331077337265, 0.050807610154151917, -0.11506225168704987, -0.021874111145734787], "**Q:MindSpore\u53ea\u80fd\u5728\u534e\u4e3a\u81ea\u5df1\u7684`Ascend`\u4e0a\u8dd1\u4e48\uff1f": [-0.01534104160964489, 0.0698431208729744, -0.020093366503715515, 0.06660711765289307, -0.035099249333143234, -0.004108200781047344, -0.06085658445954323, 0.05517495796084404, -0.009603300131857395, 0.03631289675831795, 0.019492140039801598, 0.017569096758961678, 0.029602965340018272, -0.010194887407124043, -0.04491215944290161, 0.15794721245765686, 0.12262381613254547, 0.044858988374471664, -0.044804997742176056, 0.04606841504573822, 0.0266888327896595, -0.01682317443192005, 0.10817430168390274, 0.07229063659906387, 0.06876812130212784, 0.15146571397781372, -0.010404321365058422, -0.036747679114341736, 0.02346196211874485, 0.056419868022203445, 0.05409487709403038, 0.04245835915207863, -0.14625155925750732, 0.007855351082980633, -0.07784261554479599, -0.024225937202572823, -0.002384728752076626, 0.09187305718660355, -0.004244748968631029, -0.030222095549106598, 0.07327042520046234, 0.05305037647485733, -0.01627907156944275, 0.11767195165157318, -0.016678940504789352, -0.04804049804806709, -0.17151644825935364, -0.024601753801107407, 0.008119363337755203, -0.005381876137107611, -0.060142938047647476, 0.14779716730117798, 0.034968484193086624, -0.017071135342121124, -0.06035488098859787, 0.018317485228180885, 0.023898789659142494, -0.038452763110399246, 0.0140696344897151, -0.05983448401093483, -0.045692019164562225, 0.009778798557817936, -0.09127043187618256, -0.029146969318389893, -0.09074533730745316, -0.0258133914321661, -0.08062374591827393, -0.1315702199935913, 0.01292784046381712, -0.009226376190781593, -0.06850798428058624, 0.00029697641730308533, -0.02030160278081894, 0.1052696630358696, 0.03698214888572693, 0.03783971443772316, 0.0005462392582558095, 0.0544939823448658, -0.08017000555992126, 0.054268475621938705, 0.021114565432071686, 0.0831824541091919, -0.025056226179003716, -0.01820242404937744, -0.03660288453102112, -0.011322066187858582, -0.05514350160956383, 0.04464475065469742, 0.02351333387196064, 0.057379100471735, -0.051279883831739426, -0.0006670838920399547, -0.10895867645740509, 0.02835850976407528, 0.05436798930168152, -0.015440239571034908, -0.06729067862033844, -0.06233685091137886, -0.18398495018482208, 0.04302484542131424, 0.026577936485409737, -0.06503207981586456, -0.05780405551195145, 0.07329436391592026, 0.03742722049355507, -0.10895195603370667, 0.0628167986869812, -0.012493545189499855, 0.09167377650737762, 0.10788675397634506, 0.12668682634830475, 0.01921801269054413, 0.04639870673418045, -0.012881996110081673, 0.052391987293958664, 0.05133640393614769, -0.014598354697227478, -0.015640823170542717, -0.0680777058005333, 0.12688632309436798, 0.06930936127901077, 0.012741362676024437, 0.014689688570797443, 0.0511217936873436, -0.0036291484721004963, 0.004134221468120813, 0.027050979435443878, 0.009242837317287922, -0.13147324323654175, -0.10481869429349899, 0.13361413776874542, -0.07214363664388657, 0.1527600884437561, -0.11319179832935333, -0.07192054390907288, 0.12881481647491455, 0.01823018491268158, -0.03132103011012077, 0.0383668877184391, 0.11184905469417572, -0.005727794952690601, -0.11074746400117874, -0.0169922336935997, 0.03839411213994026, 0.07303811609745026, 0.0699162632226944, -0.09404294192790985, -0.14315639436244965, -0.04245344176888466, -0.02080462872982025, 0.05180100351572037, -0.010485723614692688, -0.07477648556232452, 0.09615649282932281, 0.01657901704311371, 0.14815692603588104, -0.04972520470619202, -0.07562051713466644, -0.008417945355176926, -0.019426021724939346, -0.0986228659749031, -0.02276892028748989, 0.0207917932420969, -0.027422675862908363, -0.025951556861400604, -0.05432320386171341, -0.005853736773133278, 0.011434265412390232, -0.033507056534290314, -0.05751317739486694, -0.02562582679092884, -0.03902043402194977, -0.10123070329427719, 0.030751490965485573, 0.03535427898168564, -0.0663924366235733, 0.14183136820793152, -0.13527555763721466, -0.010947766713798046, 0.0025852450635284185, 0.13504110276699066, -0.046903740614652634, -0.0476662740111351, -0.09150989353656769, 0.025624632835388184, 0.013896480202674866, 0.06927410513162613, 0.09951861202716827, 0.12782694399356842, -0.1273239105939865, -0.057243462651968, 0.019056236371397972, 0.033707145601511, 0.11794410645961761, -0.04309680312871933, 0.060550421476364136, -0.042043380439281464, -0.018159478902816772, -0.02226063422858715, 0.05968410521745682, -0.028827285394072533, 0.049268584698438644, 0.02670418657362461, 0.03318861871957779, 0.07906749844551086, 0.02168053388595581, -0.1063397154211998, -0.062160082161426544, 0.037726156413555145, -0.06638495624065399, 0.07094438374042511, 0.04275069758296013, -0.042744994163513184, -0.10600403696298599, -0.15622419118881226, 0.027406873181462288, 0.0693792998790741, 0.05396357923746109, 0.0751207172870636, -0.034918129444122314, -0.07064968347549438, 0.007183610927313566, 0.002234961837530136, -0.0906963050365448, -0.13260743021965027, -0.025115739554166794, -0.0761517584323883, -0.023436710238456726, -0.01127526443451643, 0.09099356830120087, -0.004296402912586927, 0.055848680436611176, -0.03355451673269272, 0.1517000049352646, -0.022943492978811264, 0.05094827339053154, -0.04535248503088951, -0.12257352471351624, 0.03694310039281845, -0.002075842348858714, -0.11785857379436493, 0.08801960945129395, -0.10370565950870514, -0.046752117574214935, -0.05881666764616966, 0.15659742057323456, 0.11879123747348785, 0.06946907192468643, -0.01056729443371296, 0.02307369001209736, 0.022046305239200592, 0.009332536719739437, -0.04295339807868004, 0.07978640496730804, -0.04845478758215904, 0.03759344667196274, 0.12687179446220398, -0.04041020944714546, 0.02466515451669693, 0.08680353313684464, 0.02951275184750557, 0.02377718687057495, -0.12826086580753326, -0.019683124497532845, -0.008251858875155449, 0.049123700708150864, 0.02324027009308338, 0.018597405403852463, 0.0014013354666531086, -0.10062627494335175, 0.02110511250793934, 0.05937770754098892, -0.0732770562171936, 0.022931577637791634, 0.08435895293951035, 0.0881272554397583, -0.015185313299298286, -0.17921984195709229, -0.016858380287885666, 0.08951964974403381, -0.0014725130749866366, -0.01896520145237446, -0.02883615903556347, -0.062045905739068985, 0.12561330199241638, -0.07825008779764175, 0.017863672226667404, 0.002769043203443289, -0.0013962043449282646, 0.1653730273246765, -0.05598653107881546, 0.034515850245952606, -0.04291309788823128, 0.043027035892009735, -0.03609456866979599, 0.07733286917209625, 0.05435000732541084, 0.055854715406894684, -0.03514429181814194, 0.03495340421795845, -0.09468518942594528, -0.042011477053165436, 0.14795872569084167, -0.10020788758993149, 0.04896353557705879, -0.007686530705541372, -0.05999258533120155, 0.1439996212720871, 0.03170325234532356, 0.13450372219085693, 0.10312703251838684, 0.08597960323095322, 0.11400248855352402, 0.12017166614532471, -0.13112109899520874, -0.07361069321632385, 0.021296096965670586, -0.16442392766475677, 0.12101741880178452, -0.10710231214761734, -0.04752295836806297, -0.015712518244981766, -0.02205624245107174, 0.0006156711606308818, 0.0477169044315815, -0.05927925556898117, 0.048375509679317474, 0.0635208934545517, -0.005947834346443415, -0.056723445653915405, -0.02613801881670952, -0.021283544600009918, 0.0915370061993599, 0.01798899658024311, 0.02643749676644802, -0.10387987643480301, 0.12086370587348938, 0.023115264251828194, -0.05078662931919098, -0.030378904193639755, 0.12290683388710022, -0.09631216526031494, 0.005567785352468491, -0.11441127210855484, 0.12314289808273315, -0.03510157763957977, 0.12028250098228455, 0.009120984002947807, -0.0376320444047451, -0.07924535870552063, 0.07517525553703308, -0.08003509044647217, -0.019605597481131554, -0.024116048589348793, 0.038836948573589325, -0.12932994961738586, -0.14256441593170166, -0.061390046030282974, 0.03140191733837128, 0.1008760929107666, -0.061613135039806366, 0.03797996789216995, -0.10550940036773682, -0.009456035681068897, 0.01669127866625786, -0.08467009663581848, 0.060556624084711075, -0.06036011129617691, 0.10514353215694427, -0.005266999825835228, -0.1344430297613144, 0.0878838449716568, 0.08990246802568436, 0.03263154625892639, -0.01893203891813755, -0.052903011441230774, -0.12650328874588013, 0.0530601367354393, 0.0041773971170187, -0.0925336554646492, 0.0747421607375145, 0.06848137080669403, -0.16833201050758362, 0.03639901429414749], "MindSpore\u5728Ascend 310\u4e0a\u662f\u5426\u53ef\u4ee5\u8f6cAIR\u6a21\u578b\uff1f": [0.02689017727971077, 0.039341989904642105, 0.0051691229455173016, 0.028429759666323662, -0.06076556816697121, -0.05285416543483734, 0.04246736317873001, 0.07015953958034515, 0.01303892768919468, 0.06292343139648438, -0.0356852225959301, 0.058078326284885406, 0.057076044380664825, 0.08818607032299042, -0.0239282064139843, 0.06680513173341751, 0.1134091317653656, -0.03190097585320473, -0.035189054906368256, 0.05652577430009842, 0.03563723340630531, 0.03422877937555313, 0.06426933407783508, 0.02033941075205803, 0.040409110486507416, 0.0866575539112091, -0.0440099760890007, -0.06742510199546814, 0.01496912632137537, 0.004272123798727989, 0.10426247864961624, 0.07116767764091492, -0.09869295358657837, -0.015434794127941132, 0.012046418152749538, -0.035961899906396866, -0.03207600116729736, 0.05925726890563965, 0.010836159810423851, -0.04721890017390251, 0.03674344718456268, 0.01632242649793625, -0.05546699836850166, 0.1610502302646637, -0.026650669053196907, -0.020467927679419518, -0.1526988446712494, 0.0011671255342662334, 0.0052460115402936935, 0.02910763770341873, -0.12607218325138092, 0.10813618451356888, 0.008583326824009418, 0.0008119491976685822, 0.010417263954877853, 0.03818041831254959, 0.03151705116033554, 0.015217626467347145, 0.009557317942380905, -0.02213420160114765, -0.0025498084723949432, -0.0045002843253314495, -0.020835738629102707, -0.00035717710852622986, -0.13103248178958893, 0.004899507388472557, -0.027002563700079918, -0.0915115475654602, 0.006505060475319624, -0.01718633994460106, -0.057517021894454956, -0.06192511320114136, -0.04129112511873245, 0.023473434150218964, -0.008399944752454758, 0.008898327127099037, 0.0023159715346992016, 0.03923673927783966, -0.019561991095542908, 0.08004049956798553, 0.06042493134737015, 0.018362946808338165, 0.08187936246395111, -0.029087577015161514, -0.07050102949142456, -0.03515951707959175, -0.03026183322072029, 0.05594855546951294, -0.051727913320064545, 0.09465306252241135, -0.0036977510899305344, -0.032641153782606125, -0.135337695479393, 0.1248091459274292, 0.058006759732961655, -0.033097948879003525, -0.08485718071460724, -0.0019134669564664364, -0.14357565343379974, 0.014361847192049026, 0.007368669845163822, -0.04098884388804436, -0.06751281768083572, 0.02378925494849682, 0.037463199347257614, -0.04752735421061516, 0.04133954644203186, 0.007887178100645542, 0.03588949888944626, 0.07653359323740005, 0.12571842968463898, 0.025608360767364502, 0.07745198160409927, 0.04184393584728241, -0.02804330177605152, 0.058328837156295776, 0.0011661644093692303, -0.03281986340880394, -0.09076908230781555, 0.07634276151657104, 0.02923482283949852, -0.03878312557935715, 0.023593218997120857, 0.03437409922480583, 0.06379124522209167, -0.018450232222676277, 0.03649388998746872, -0.03606768697500229, -0.08482792973518372, -0.12122318148612976, 0.13451321423053741, -0.07090488821268082, 0.10853680223226547, -0.05706353485584259, -0.1110433042049408, 0.05956185236573219, 0.007919440045952797, -0.01719876192510128, 0.007997035048902035, 0.12727700173854828, 0.03638869524002075, -0.1194857805967331, 0.053144898265600204, -0.04006043076515198, 0.07476435601711273, 0.04258675128221512, -0.0848943293094635, -0.07962436228990555, -0.0465179979801178, -0.05009179934859276, 0.048942625522613525, -0.00880751945078373, -0.03939447179436684, 0.125901997089386, -0.04701821506023407, 0.06056887283921242, -0.01036197878420353, 0.0024826196022331715, -0.01506241038441658, -0.0003364887088537216, -0.009331603534519672, 0.01397787593305111, 0.012522921897470951, -0.008699540048837662, 0.015387872233986855, 0.0012017613044008613, -0.05123665928840637, -0.03818901628255844, -0.08605767786502838, -0.005946829449385405, -0.06257384270429611, -0.03466731309890747, -0.1191944032907486, -0.032635800540447235, -0.02617151103913784, -0.012924189679324627, 0.06520058959722519, -0.11251823604106903, -0.0033525400795042515, 0.016718881204724312, 0.1382506638765335, -0.05619025230407715, -0.02329079434275627, -0.1119365245103836, 0.03984164819121361, 0.03235898166894913, 0.08200886845588684, 0.06282167136669159, 0.10781906545162201, -0.10571755468845367, -0.019108038395643234, 0.04838943108916283, 0.007791925687342882, 0.06241973489522934, -0.03949708491563797, 0.003994538448750973, -0.06291330605745316, -0.049557365477085114, -0.015259839594364166, 0.028739674016833305, -0.021980473771691322, 0.045322682708501816, -0.013565238565206528, 0.03424205258488655, -0.009088397957384586, 0.06124767288565636, -0.05405876040458679, -0.07185334712266922, 0.04522235319018364, -0.0038310419768095016, 0.08547588437795639, 0.054302215576171875, -0.007187533192336559, -0.08460088074207306, -0.09869703650474548, -0.02425597421824932, 0.07009419053792953, 0.06062524393200874, 0.04025276005268097, 0.037798136472702026, -0.0005293683498166502, -0.025462737306952477, -0.028773069381713867, -0.09693808108568192, -0.11261441558599472, -0.0172992292791605, -0.09900075197219849, -0.1130552738904953, -0.016798971220850945, 0.062091048806905746, -0.06313007324934006, -0.020114706829190254, 0.04328906163573265, 0.1458512395620346, -0.016031712293624878, 0.058203745633363724, -0.10757133364677429, 0.03136565908789635, 0.0788465216755867, -0.01861763931810856, -0.09484360367059708, 0.12773558497428894, -0.009545204229652882, -0.0571003220975399, -0.08524313569068909, 0.09460780769586563, 0.08272340148687363, 0.05801808834075928, -0.02734501101076603, 0.023797091096639633, 0.0899139791727066, 0.03155120462179184, -0.11984874308109283, -0.014384428039193153, -0.06781037896871567, -0.005872488021850586, 0.08602051436901093, -0.07609789073467255, 0.05289815738797188, 0.05486057698726654, 0.05519380420446396, 0.01894749328494072, -0.08824341744184494, -0.00517444359138608, -0.015278223901987076, 0.03812891244888306, 0.05534960329532623, 0.009900028817355633, -0.10052676498889923, -0.05647287890315056, 0.07681847363710403, 0.022206472232937813, -0.14605927467346191, 0.04845239222049713, 0.1449946165084839, 0.053603753447532654, -0.0098340455442667, -0.21141844987869263, 0.016838332638144493, 0.058916546404361725, 0.021022481843829155, -0.020924273878335953, -0.05595824122428894, 0.02473345212638378, 0.1384897530078888, 0.006914952304214239, 0.030440127477049828, 0.044447556138038635, 0.03467193990945816, 0.09582880884408951, -0.05869637429714203, 0.030171474441885948, -0.0434228852391243, 0.0193746667355299, -0.06851136684417725, 0.07540174573659897, -0.010578487068414688, 0.07680817693471909, -0.048144999891519547, 0.05008665844798088, -0.06172905117273331, 0.031963977962732315, 0.10281538218259811, -0.09785193204879761, 0.009119687601923943, -0.021603479981422424, -0.05182289704680443, 0.11834033578634262, -0.005268398206681013, 0.0920812264084816, 0.05470549315214157, 0.0999549925327301, 0.08230365067720413, 0.04885014146566391, -0.07637444883584976, -0.06346555054187775, 0.0498700886964798, -0.1632401943206787, 0.0737886130809784, -0.04458308964967728, -0.015746096149086952, 0.03168611228466034, -0.004411493428051472, 0.07160194218158722, 0.0824795812368393, -0.026953699067234993, 0.05391005426645279, 0.08420886099338531, 0.025483444333076477, -0.06664275377988815, 0.013516858220100403, -0.07616540044546127, 0.06784911453723907, 0.04422738030552864, 0.05912056565284729, -0.12348982691764832, 0.09929755330085754, 0.0068640075623989105, -0.0268363319337368, 0.03470224514603615, 0.11519251018762589, -0.11400512605905533, -0.04401157423853874, -0.10874477028846741, 0.11714793741703033, -0.028522200882434845, 0.054370250552892685, 0.04707757383584976, -0.023788565769791603, -0.07690402120351791, 0.04711940512061119, -0.09788044542074203, 0.10741551220417023, -0.02099723555147648, -0.013342523947358131, -0.13346348702907562, -0.07501421868801117, 0.017392605543136597, 0.011045452207326889, 0.033313654363155365, -0.004360306542366743, 0.02375476248562336, -0.031502362340688705, 0.01606016792356968, 0.022304318845272064, -0.0515584833920002, 0.0013665735023096204, -0.05905989557504654, 0.043524935841560364, 0.03499522805213928, -0.040534697473049164, 0.0608566477894783, 0.03901161625981331, 0.09004339575767517, -0.05657756328582764, -0.028438793495297432, -0.1252119392156601, 0.07889378815889359, -0.045498326420784, -0.06110120564699173, 0.06486920267343521, 0.05647951364517212, -0.1365443468093872, -0.013720708899199963], "MindSpore\u5bf9\u5bfc\u51fa\u3001\u5bfc\u5165\u6a21\u578b\u7684\u5355\u4e2aTensor\u8f93\u5165\u5927\u5c0f\u6709\u4ec0\u4e48\u9650\u5236\uff1f": [-0.06190761551260948, 0.014676548540592194, -0.031561996787786484, 0.013798870146274567, -0.045571066439151764, 0.0018945182673633099, 0.05672255903482437, 0.05838380753993988, -0.044754508882761, 0.03925192356109619, -0.0009322321857325733, -0.025848470628261566, -0.02500535361468792, 0.0007916612667031586, -0.04010142758488655, 0.05413449555635452, 0.14828714728355408, -0.0026437989436089993, -0.051719844341278076, 0.09974552690982819, -0.013498682528734207, -0.006416385527700186, 0.03348827734589577, -0.0507466122508049, 0.04788358509540558, 0.08521761000156403, -0.036745890974998474, 0.03055495396256447, 0.04960978776216507, 0.07405304908752441, 0.10591042786836624, 0.0257341917604208, -0.09721972793340683, 0.006426428444683552, -0.01320127584040165, -0.04633480682969093, -0.07925554364919662, 0.08733551949262619, -0.02812987007200718, -0.0496106892824173, 0.022941170260310173, -0.0030811303295195103, -0.06163571774959564, 0.1491013616323471, -0.04299677163362503, -0.09853406995534897, -0.08575307577848434, -0.056200895458459854, 0.04775956645607948, 0.01906226947903633, -0.10785400122404099, 0.06215870380401611, -0.07550900429487228, -0.05312766134738922, -0.08213284611701965, -0.06938054412603378, -0.020731011405587196, -0.002066881163045764, 0.07435832917690277, -0.04526305943727493, -0.02950669266283512, 0.0301605723798275, -0.03052043914794922, -0.01305353082716465, -0.12874406576156616, -0.034125588834285736, -0.005009626038372517, -0.018918154761195183, -0.05232509225606918, -0.027356911450624466, -0.03116319701075554, -0.036678750067949295, -0.014883722178637981, 0.06649056077003479, 0.06073646992444992, 0.11273554712533951, 0.005924103315919638, 0.031141795217990875, -0.09900938719511032, 0.008406459353864193, 0.012276031076908112, 0.11941728740930557, 0.04495617747306824, -0.007000838406383991, -0.04752688854932785, 0.006284310482442379, -0.0311357993632555, 0.07730255275964737, -0.048557769507169724, 0.10674306005239487, 0.02701331116259098, -0.0020064013078808784, -0.17803341150283813, 0.025786885991692543, 0.089993417263031, -0.008673010393977165, -0.04833511263132095, 0.013417172245681286, -0.13194186985492706, 0.006398145109415054, 0.017123786732554436, 0.001254557864740491, -0.04476134479045868, 0.06791608780622482, 0.025192108005285263, -0.08079050481319427, 0.08431299775838852, 0.03668317198753357, 0.012349708005785942, -0.010231156833469868, 0.06270397454500198, 0.012452618218958378, 0.05178242549300194, 0.028168682008981705, 0.004601502791047096, 0.04998817294836044, -0.055637650191783905, -0.02152380906045437, -0.027331382036209106, 0.09126408398151398, 0.04299366846680641, -0.07479925453662872, -0.007053195033222437, 0.03990798071026802, 0.062434080988168716, -0.0344502218067646, 0.06324459612369537, -0.07422947138547897, -0.14258672297000885, -0.026455149054527283, 0.16093486547470093, -0.07255412638187408, 0.10376634448766708, -0.09001678973436356, -0.1444617211818695, 0.13041168451309204, -0.0531064048409462, -0.02969127893447876, -0.020065661519765854, 0.08511865884065628, 0.04855385422706604, -0.07497115433216095, 0.05047698691487312, -0.06934168934822083, 0.12630724906921387, 0.015099607408046722, -0.09810112416744232, -0.12285605072975159, -0.019719764590263367, -0.10038675367832184, 0.05679795891046524, -0.005123361013829708, -0.057144731283187866, 0.11550354212522507, -0.03107377141714096, 0.06437842547893524, 0.0071515170857310295, -0.030635781586170197, 0.03478287160396576, -0.035570040345191956, -0.03815494477748871, -0.05863253399729729, 0.03609312325716019, 0.0017555118538439274, -0.020103145390748978, 0.003021501936018467, 0.0469912588596344, 0.02381446771323681, -0.08791813254356384, -0.06602075695991516, 0.016843324527144432, 0.005556425545364618, -0.060902439057826996, -0.054217323660850525, 0.05964960902929306, -0.04665232077240944, 0.022235095500946045, -0.09654802083969116, 0.0023163645528256893, 0.005357378162443638, 0.0579100027680397, -0.1289634108543396, -0.04810238629579544, -0.09647133201360703, 0.023326106369495392, 0.046725451946258545, 0.08873745799064636, 0.034660086035728455, 0.13974720239639282, -0.1580677330493927, -0.047730766236782074, -0.0056884754449129105, 0.025799766182899475, 0.05822011083364487, 0.04654458165168762, -0.008724076673388481, -0.12545430660247803, -0.015348894521594048, 0.052373938262462616, -0.023570720106363297, -0.0081941494718194, 0.017251107841730118, 0.03158789128065109, 0.02296692505478859, 0.029569663107395172, -0.04704773426055908, -0.11228694766759872, -0.10178028792142868, 0.011479143053293228, -0.04707365483045578, 0.08177798241376877, 0.01215173490345478, -0.015033852308988571, -0.04998517036437988, -0.1104351058602333, 0.01640714518725872, 0.12479815632104874, 0.047285985201597214, 0.0662270113825798, -0.034537624567747116, 0.007467611692845821, 0.027258729562163353, 0.002842083340510726, -0.08994278311729431, -0.09532947838306427, -0.004958441015332937, -0.019453687593340874, -0.0286011453717947, 0.03135685250163078, 0.08646538853645325, -0.02391723357141018, 0.08575057238340378, -0.008062388747930527, 0.1439507156610489, -0.09744372218847275, 0.13347530364990234, -0.06564642488956451, -0.021104123443365097, 0.030510028824210167, 0.01822316274046898, -0.1199868768453598, 0.07715629786252975, -0.04247824102640152, -0.018219705671072006, -0.08807524293661118, 0.10555324703454971, 0.10158253461122513, 0.008697833865880966, 0.056389302015304565, -0.04055578261613846, 0.06899449229240417, 0.011966844089329243, -0.03619753196835518, 0.060981977730989456, 0.007544646039605141, 0.05496969819068909, 0.0711115375161171, -0.06963653862476349, 0.017908480018377304, 0.04265403002500534, 0.019451187923550606, 0.06267434358596802, -0.10713429003953934, 0.03843168169260025, 0.005819959100335836, 0.019081130623817444, 0.09417480230331421, -0.041185952723026276, 0.007523701526224613, -0.076433464884758, 0.049330055713653564, -0.0071987551636993885, -0.10570906847715378, 0.023147042840719223, 0.11733181029558182, 0.045904435217380524, 0.022571872919797897, -0.15142497420310974, 0.02941875159740448, 0.05021912232041359, 0.017522193491458893, 0.02957644686102867, 0.005224988795816898, -0.03028964251279831, 0.1378442645072937, -0.03840139880776405, -0.0016147405840456486, -0.019644470885396004, 0.024414675310254097, 0.08067026734352112, -0.029689691960811615, 0.01622713729739189, -0.045781929045915604, -0.02594853565096855, -0.05215606093406677, 0.11543186008930206, 0.040628332644701004, 0.002314669545739889, 0.010416096076369286, 0.073482446372509, 0.04950307309627533, -0.04337943345308304, 0.08576563000679016, -0.06908058375120163, -0.04209566488862038, 0.01098694372922182, -0.039461828768253326, 0.08803994208574295, -0.015876350924372673, 0.03818080201745033, 0.08535698056221008, 0.0529911145567894, 0.03433467447757721, 0.1148337572813034, -0.06801383942365646, -0.047966137528419495, 0.06062538921833038, -0.14876335859298706, 0.05405478551983833, -0.09811993688344955, -0.029674412682652473, -0.031555648893117905, 0.013413242064416409, 0.08706959336996078, 0.0424836203455925, -0.054917093366384506, 0.01183582004159689, 0.05707133561372757, 0.03221089392900467, -0.03543728217482567, 0.013168885372579098, -0.0743047371506691, 0.07821987569332123, 0.06068127602338791, -0.03841424733400345, -0.14392098784446716, 0.08859149366617203, 0.08466209471225739, -0.015123418532311916, 0.07884812355041504, 0.104850634932518, -0.06198480352759361, 0.009922021999955177, -0.1003623679280281, 0.05440790206193924, -0.09398549795150757, 0.11117354035377502, 0.0072417594492435455, -0.06880176067352295, -0.00035198405385017395, 0.09678100794553757, -0.0724635198712349, 0.01566009782254696, 0.010687517933547497, 0.004705341998487711, -0.15866991877555847, -0.0874350294470787, 0.03433940187096596, 0.020503893494606018, 0.0013312093215063214, -0.04932459443807602, -0.02860230579972267, -0.1115628182888031, -0.04014057293534279, 0.005764089059084654, -0.028394462540745735, 0.12967510521411896, -0.08479044586420059, 0.0396219938993454, 0.012862280011177063, -0.07145481556653976, 0.09579212218523026, 0.09776955097913742, 0.031319815665483475, -0.04917696490883827, -0.025835825130343437, -0.15655961632728577, 0.07652495801448822, -0.0338481105864048, -0.09021099656820297, 0.014753840863704681, 0.032025326043367386, -0.15458765625953674, 0.023149767890572548], "\u5b89\u88c5\u8fd0\u884cMindSpore\u65f6\uff0c\u662f\u5426\u8981\u6c42\u5e73\u53f0\u6709GPU\u8ba1\u7b97\u5355\u5143\uff1f\u9700\u8981\u4ec0\u4e48\u786c\u4ef6\u652f\u6301\uff1f": [-0.014807087369263172, 0.007363618351519108, -0.00568302720785141, 0.020707998424768448, 0.00379710691049695, -0.02464384399354458, 0.01500192005187273, 0.05996788665652275, -0.07428818196058273, -0.03870207443833351, 0.017992431297898293, 0.029160134494304657, -0.03292189538478851, -0.011384706944227219, -0.0026854751631617546, 0.04957788437604904, 0.08743858337402344, -0.00277916737832129, -0.012615530751645565, 0.024911774322390556, -0.05550464615225792, 0.06049065664410591, 0.08008912950754166, 0.004770282655954361, 0.042763758450746536, 0.048518694937229156, -0.07726118713617325, -0.01761513389647007, 0.03150828555226326, 0.08312387764453888, 0.024361617863178253, 0.055312372744083405, -0.12390682101249695, 0.07504532486200333, -0.002382709877565503, -0.008112967945635319, -0.05655980482697487, 0.1276150941848755, -0.054073482751846313, -0.06555294245481491, 0.019256945699453354, -0.029656926169991493, -0.06574239581823349, 0.07333917915821075, 0.029461022466421127, -0.036818377673625946, -0.10760882496833801, 0.04673255607485771, 0.06888610124588013, 0.046648040413856506, -0.10796712338924408, 0.07735372334718704, -0.02943645790219307, -0.014588974416255951, -0.005427747033536434, 0.0007099098293110728, 0.01746595837175846, -0.020546572282910347, 0.04967634007334709, 0.007488146424293518, -0.029925376176834106, -0.011947058141231537, -0.02636219933629036, 0.0666026920080185, -0.14582493901252747, 0.03047817386686802, -0.07678376883268356, -0.06997984647750854, -0.0013557133497670293, 0.05180644989013672, -0.013981519266963005, -0.012221409939229488, -0.04964279755949974, 0.057569414377212524, 0.06050239875912666, 0.026177892461419106, -0.0024794437922537327, 0.06339307129383087, -0.08765128254890442, 0.02625851519405842, 0.020672067999839783, 0.012190304696559906, 0.03156737610697746, -0.09157899022102356, 0.013740258291363716, -0.013399395160377026, -0.10785508155822754, 0.06100744381546974, -0.07336129993200302, 0.06179345026612282, -0.019596470519900322, -0.012219849973917007, -0.14438346028327942, 0.09634712338447571, 0.09552876651287079, -0.04256616532802582, -0.03533861041069031, -0.0372573658823967, -0.03374748304486275, -0.037394773215055466, 0.026372045278549194, -0.005001966841518879, -0.03728964179754257, 0.05127469450235367, -0.01999736577272415, -0.1162382960319519, -0.00510838907212019, -0.0165182463824749, -0.01588091067969799, 0.04832101985812187, 0.030191462486982346, 0.0027757626958191395, 0.08560238778591156, -0.01945684477686882, -0.04770001024007797, 0.019826306030154228, -0.060780949890613556, -0.05734655261039734, -0.030350111424922943, 0.09640582650899887, 0.14009524881839752, -0.04917263239622116, -0.001426435075700283, 0.07023283839225769, 0.06371346116065979, -0.003016693750396371, 0.06525778025388718, -0.047686900943517685, -0.07855330407619476, -0.07049053907394409, 0.16636809706687927, -0.023270711302757263, 0.12005157768726349, -0.1413007378578186, -0.086762435734272, 0.07276139408349991, -0.03743889182806015, -0.03438793495297432, 0.014008849859237671, 0.10432665050029755, 0.039683062583208084, -0.1082056388258934, -0.0284525528550148, -0.036261409521102905, 0.1379431188106537, 0.031762752681970596, -0.07843711972236633, -0.18929216265678406, -0.024448426440358162, -0.034479908645153046, 0.10553056001663208, 0.05544828623533249, -0.05879674106836319, 0.09986429661512375, 0.002326629590243101, 0.05787905305624008, -0.09224744141101837, -0.00961282104253769, -0.08141326904296875, -0.013586176559329033, -0.05473652482032776, 0.004198492504656315, 0.010838583111763, -0.01642429642379284, 0.012657523155212402, 0.0371747724711895, 0.028045903891324997, -0.027696331962943077, -0.06074775010347366, -0.031005684286355972, 0.01427200622856617, 0.025236714631319046, -0.08659254759550095, 0.02669197879731655, 0.03729420527815819, -0.027043437585234642, 0.05011218041181564, -0.07980135083198547, -0.026378802955150604, -0.0572851300239563, 0.0747721940279007, -0.10498085618019104, -0.026812748983502388, -0.06540321558713913, 0.1214824765920639, 0.00039886380545794964, 0.016934586688876152, 0.008787281811237335, 0.13509586453437805, -0.1425827145576477, 0.038018256425857544, 0.04073720797896385, 0.09825311601161957, 0.12644846737384796, 0.012672185897827148, -0.03728869929909706, -0.05146069824695587, -0.03361642360687256, -0.00412041787058115, 0.043463084846735, -0.09362509101629257, -0.029352039098739624, 0.005364014767110348, 0.023937346413731575, -0.05386734753847122, 0.007540131453424692, -0.10981697589159012, -0.11185311526060104, 0.011385751888155937, -0.12570834159851074, 0.09849591553211212, 0.009822533465921879, -0.10193709284067154, -0.04249361902475357, -0.10770776122808456, 0.014917507767677307, 0.10165049880743027, 0.09857000410556793, 0.03534550219774246, -0.02240723744034767, -0.006507390644401312, -0.0386907160282135, 0.0036647976376116276, -0.05744607374072075, -0.12382422387599945, 0.048984188586473465, -0.11967642605304718, -0.07870719581842422, -0.015300329774618149, 0.13082380592823029, 0.007369966246187687, 0.11951538175344467, 0.03098558634519577, 0.060020994395017624, 0.002107389969751239, 0.006323517765849829, -0.04124361649155617, -0.09021364897489548, 0.02583237923681736, 0.10974773019552231, -0.112113818526268, 0.008073393255472183, -0.07469320297241211, -0.04324077069759369, -0.03928731754422188, 0.04804404824972153, 0.09567992389202118, 0.020406944677233696, 0.009961435571312904, -0.05976944416761398, 0.04615013673901558, -0.0027560838498175144, -0.03381442278623581, 0.054679643362760544, 0.02509339340031147, 0.05276615917682648, 0.02691320702433586, -0.036116715520620346, 0.06473837792873383, 0.028332024812698364, 0.05455387383699417, -0.017099697142839432, -0.028442619368433952, 0.000421181321144104, -0.012847506441175938, -0.05017412453889847, 0.08819890022277832, -0.028501253575086594, 0.020572766661643982, -0.06365827471017838, 0.04248712956905365, 0.032036956399679184, -0.073432058095932, -0.002673852490261197, 0.11105702817440033, 0.06260364502668381, -0.06598485261201859, -0.06909298151731491, 0.05902751162648201, 0.01318429410457611, 0.021189045161008835, 0.01926918886601925, -0.014438612386584282, 0.07149183750152588, 0.0825980082154274, 0.0006594135193154216, 0.061409998685121536, 0.0328017994761467, 0.03379415348172188, 0.026080645620822906, -0.07688067853450775, -0.04805664345622063, -0.05081697180867195, 0.007112332619726658, -0.04353005811572075, 0.05720014497637749, 0.029326388612389565, 0.0323980487883091, -0.004865323659032583, 0.1086651086807251, -0.014125287532806396, -0.03246711567044258, 0.08036140352487564, -0.04916293919086456, -0.01042863354086876, -0.013198466040194035, -0.053494520485401154, 0.04377233609557152, 0.00538519024848938, 0.011814380995929241, 0.10928301513195038, 0.08443035930395126, 0.054222285747528076, 0.05279432609677315, -0.12741218507289886, -0.022553153336048126, 0.04791227728128433, -0.1602855920791626, 0.08278285712003708, -0.0775623545050621, 0.037044525146484375, -0.09245625883340836, -0.024833787232637405, 0.08356219530105591, 0.08716776967048645, 0.015494048595428467, 0.020965853706002235, 0.0466877743601799, 0.03862861171364784, -0.05259203538298607, 0.016199929639697075, -0.06683910638093948, 0.02850608341395855, 0.06719395518302917, -0.01412227377295494, -0.16205346584320068, 0.1085573360323906, 0.11622381955385208, 0.0191628560423851, 0.011052687652409077, 0.08952254056930542, -0.0966576337814331, -0.03317515179514885, -0.10266609489917755, 0.07284822314977646, -0.025855984538793564, 0.03748619183897972, 0.06993438303470612, -0.08937522768974304, -0.07420806586742401, 0.03848709166049957, -0.059389956295490265, 0.05470835417509079, -0.018693916499614716, 0.011922013945877552, -0.1205594539642334, -0.11457149684429169, -0.009538033977150917, 0.03919877111911774, -0.0025962141808122396, -0.0016107899136841297, -0.016571849584579468, -0.13964185118675232, -0.07680348306894302, 0.04404226690530777, -0.039856888353824615, 0.03311794251203537, -0.014758926816284657, 0.055002566426992416, -0.018066003918647766, -0.12541356682777405, 0.1062794104218483, 0.1287258416414261, 0.08000626415014267, -0.06123702973127365, -0.10425009578466415, -0.14148543775081635, 0.06574179977178574, -0.0010779215954244137, -0.09050586074590683, 0.08666929602622986, 0.12507930397987366, -0.11019176244735718, -0.001883159507997334], "\u9488\u5bf9\u5f02\u6784\u8ba1\u7b97\u5355\u5143\u7684\u652f\u6301\uff0cMindSpore\u6709\u4ec0\u4e48\u8ba1\u5212\uff1f": [-0.09964542835950851, 0.07416282594203949, -0.021456699818372726, 0.01837598718702793, -0.08196887373924255, -0.015448542311787605, -0.0389690138399601, 0.04846540093421936, -0.06330378353595734, 0.06472183018922806, 0.016651177778840065, -0.06870400160551071, 0.03865979239344597, 0.03720041364431381, -0.056854672729969025, 0.0768662616610527, 0.15436474978923798, 0.0751224234700203, -0.025270728394389153, 0.053552351891994476, -0.04454915225505829, -0.012610912322998047, 0.05628405883908272, -0.05444897711277008, 0.034093812108039856, 0.10135190933942795, 0.027718747034668922, 0.011540667153894901, 0.012630685232579708, 0.06794670969247818, 0.06928057968616486, 0.021308381110429764, -0.050403494387865067, 0.01618039608001709, -0.04778681695461273, -0.06894369423389435, -0.06445879489183426, 0.09850920736789703, -0.026826675981283188, -0.07008672505617142, 0.06855898350477219, -0.02462899312376976, -0.048383455723524094, 0.07337134331464767, -0.0006500704912468791, -0.04965965822339058, -0.16649790108203888, -0.0007482132641598582, 0.027415281161665916, -0.015043598599731922, -0.05252157151699066, 0.09537429362535477, -0.006239362992346287, -0.06406659632921219, -0.052569858729839325, -0.05821608752012253, 0.02301693521440029, 0.0182732492685318, 0.04416476562619209, -0.12313965708017349, -0.027969706803560257, 0.021951207891106606, -0.058388516306877136, -0.07574250549077988, -0.10495445132255554, 0.01086736936122179, -0.012448392808437347, -0.09357710182666779, -0.10247920453548431, 0.013009212911128998, 0.017573358491063118, -0.02507893554866314, -0.009477087296545506, 0.11207647621631622, 0.06310727447271347, 0.016698896884918213, 0.029921837151050568, 0.03044062852859497, -0.06082775816321373, 0.07068566232919693, 0.030826322734355927, 0.07508697360754013, 0.003102340968325734, -0.07507829368114471, -0.06413877010345459, 0.03211214765906334, -0.047543082386255264, 0.11263708025217056, -0.025501180440187454, 0.11246691644191742, 0.020266879349946976, 0.012552330270409584, -0.14264358580112457, 0.046600110828876495, 0.026760129258036613, -0.0263078436255455, -0.038065213710069656, 0.0012668997514992952, -0.10172785073518753, -0.041792139410972595, 0.021086614578962326, 0.012698597274720669, -0.07247619330883026, 0.07438238710165024, 0.03890656679868698, -0.07680963724851608, 0.03508898615837097, -0.017835669219493866, 0.06181473657488823, 0.026026934385299683, 0.0498480424284935, -0.04394788667559624, 0.08080282807350159, 0.0025126051623374224, 0.0022663490381091833, 0.03664405643939972, -0.049932755529880524, -0.011919861659407616, 0.010602077469229698, 0.10595864057540894, 0.1117749884724617, -0.07458844780921936, -0.011686195619404316, 0.03348539024591446, 0.007706042379140854, 0.0001508798450231552, 0.11422719061374664, -0.08111420273780823, -0.10228030383586884, -0.09071259200572968, 0.1691090166568756, -0.07352772355079651, 0.08291451632976532, -0.10097084939479828, -0.08698033541440964, 0.0569191575050354, 0.006418210919946432, 0.03682003170251846, 0.00868789292871952, 0.13420532643795013, -0.005864625796675682, -0.15287761390209198, 0.09234479069709778, -0.017629582434892654, 0.08431219309568405, 0.027515649795532227, -0.05664646625518799, -0.13049980998039246, -0.03643982112407684, -0.07715462148189545, 0.03524019196629524, -0.04462376981973648, -0.036906830966472626, 0.0575503334403038, 0.05143332853913307, 0.04597214236855507, 0.015016106888651848, -0.0546390525996685, -0.03232331573963165, -0.02820989117026329, -0.02651054598391056, -0.005594761576503515, 0.012654989957809448, 0.012498068623244762, -0.06699632853269577, -0.007321930956095457, 0.021358700469136238, -0.006363747641444206, -0.05963011831045151, -0.02071389928460121, 0.020718034356832504, 0.011171748861670494, -0.03516204655170441, 0.02066517062485218, 0.03414739668369293, -0.08043605834245682, 0.1269996166229248, -0.09512273222208023, -0.00502764480188489, -0.039326973259449005, 0.051898278295993805, -0.0635371059179306, -0.01235730666667223, -0.08903731405735016, -0.008665922097861767, 0.040708161890506744, 0.08878853917121887, 0.048213452100753784, 0.12840084731578827, -0.12647047638893127, -0.048799607902765274, 0.013860988430678844, 0.019176967442035675, 0.0503140352666378, 0.008446190506219864, 0.04529349505901337, -0.06956599652767181, -0.029357563704252243, 0.03040451928973198, -0.01099490001797676, -0.03697485104203224, -0.010415531694889069, 0.04636344686150551, -0.02303358167409897, -0.029187284409999847, 0.02568908967077732, -0.09041237831115723, -0.06650387495756149, -0.03237990289926529, -0.049455758184194565, 0.09214167296886444, 0.03324927017092705, -0.07011695951223373, -0.09093735367059708, -0.1319465935230255, -0.004185279831290245, 0.0987037941813469, 0.057706013321876526, 0.08141017705202103, -0.08464943617582321, 0.0042714402079582214, -0.012788048945367336, 0.02123807556927204, -0.0738074854016304, -0.09601031243801117, -0.01513153687119484, -0.06219733506441116, -0.09307140856981277, -0.0017992834327742457, 0.059334658086299896, -0.05781056731939316, 0.05745604634284973, 0.0630725622177124, 0.1307387501001358, -0.040911220014095306, 0.11794088780879974, -0.022987306118011475, -0.06567975133657455, 0.03643808513879776, 0.03077692911028862, -0.09859636425971985, 0.09981770813465118, -0.058608923107385635, -0.05794300138950348, 0.0023237201385200024, 0.12829114496707916, 0.10305645316839218, 0.026115404441952705, 0.02627696841955185, -0.05931280553340912, 0.08504241704940796, 0.024441763758659363, -0.07069552689790726, 0.020277969539165497, -0.027333257719874382, 0.09094645828008652, 0.0667639821767807, -0.027584366500377655, -0.02936064451932907, 0.03877502307295799, 0.04088149592280388, 0.026952004060149193, -0.10021577030420303, 0.02291642501950264, -0.06915460526943207, 0.010617290623486042, 0.09322353452444077, -0.048812419176101685, 0.002180160256102681, -0.112830251455307, 0.06732150912284851, 0.03143112361431122, -0.11616198718547821, 0.0449664443731308, 0.11120068281888962, 0.06605423986911774, 0.04503197595477104, -0.18216514587402344, 0.003780157072469592, 0.044287391006946564, -0.04116884246468544, 0.0189672764390707, -0.040499553084373474, 0.0007420926121994853, 0.06915048509836197, 0.009459561668336391, 0.013618655502796173, 0.02915869653224945, 0.06614591181278229, 0.15671423077583313, -0.07280352711677551, -0.02494342252612114, -0.08303190022706985, 0.015869369730353355, 0.02058490552008152, 0.07908529788255692, 0.0527663417160511, 0.08490050584077835, 0.054200179874897, 0.05898045375943184, 0.012162584811449051, -0.04719213768839836, 0.05304763466119766, -0.05391231179237366, 0.013271771371364594, -0.007190532051026821, -0.07096848636865616, 0.06830058991909027, 0.03405022993683815, 0.06580133736133575, 0.054197415709495544, 0.08391132950782776, 0.018537836149334908, 0.10689756274223328, -0.07488316297531128, -0.021907765418291092, 0.04203179106116295, -0.11614479869604111, 0.04380974918603897, -0.13207261264324188, 0.021877624094486237, -0.06076581031084061, 0.020466085523366928, 0.0523170568048954, 0.03848849609494209, -0.059967443346977234, 0.01071564108133316, 0.05064155533909798, -0.00033274199813604355, -0.06733957678079605, 0.029570430517196655, -0.06244628131389618, 0.06295612454414368, 0.09465572237968445, 0.002500771079212427, -0.11476923525333405, 0.10828893631696701, 0.10081402957439423, -0.02836054190993309, 0.0957375019788742, 0.06023287773132324, -0.03841402754187584, 0.002661318751052022, -0.0789371132850647, 0.08352698385715485, -0.10873279720544815, 0.07563094794750214, -0.05169721320271492, -0.019785568118095398, -0.03706618398427963, 0.05088023096323013, 0.006230683531612158, -0.025182386860251427, -0.05666925758123398, -0.021905001252889633, -0.1883186399936676, -0.07701458781957626, 0.006622966378927231, -0.0234792809933424, 0.03389852121472359, -0.030091961845755577, -0.04061030223965645, -0.04180912673473358, -0.016324317082762718, 0.07377979159355164, -0.0986105352640152, 0.09375124424695969, -0.0617164671421051, 0.05756167322397232, 0.005336171481758356, -0.058517757803201675, 0.06948978453874588, 0.1037178784608841, 0.031781818717718124, -0.07400564849376678, -0.07733053714036942, -0.10025063157081604, 0.02568664774298668, -0.01462458074092865, -0.06644028425216675, 0.02762238308787346, 0.048065755516290665, -0.16606956720352173, 0.06404204666614532], "MindSpore\u4e0eModelArts\u662f\u4ec0\u4e48\u5173\u7cfb\uff0c\u5728ModelArts\u4e2d\u80fd\u4f7f\u7528MindSpore\u5417\uff1f": [-0.05429525300860405, 0.01566627249121666, 0.03139470890164375, 0.02340719662606716, -0.02574993297457695, -0.04744376242160797, 0.02274751104414463, 0.08783911913633347, -0.003800742793828249, 0.038809020072221756, 0.03273531422019005, -0.05937058851122856, 0.0009456721018068492, 0.041300661861896515, -0.04829743131995201, 0.10831098258495331, 0.15467283129692078, 0.010675866156816483, -0.05908447876572609, 0.07975174486637115, -0.053925395011901855, 0.009263877756893635, 0.05004841089248657, -0.039959464222192764, 0.02894909866154194, 0.1180809959769249, -0.012118547223508358, 0.060829248279333115, 0.05105987936258316, 0.03909144178032875, 0.04898923262953758, 0.05838605761528015, -0.0859888345003128, 0.011653652414679527, -0.05470847710967064, -0.05835171788930893, -0.030632691457867622, 0.05296266824007034, -0.04431553930044174, -0.08428047597408295, 0.06162407249212265, 0.015359531156718731, -0.023639900609850883, 0.11540199816226959, -0.04490717127919197, -0.04465989023447037, -0.11939689517021179, -0.023105211555957794, 0.01810728944838047, 0.03458892181515694, -0.07844235002994537, 0.07088389992713928, 0.004932566545903683, -0.013151554390788078, -0.0015311751049011946, -0.006024770904332399, 0.04598536342382431, 0.013409710489213467, 0.053666289895772934, -0.0888858363032341, 0.04614737257361412, 0.057413265109062195, -0.08067819476127625, -0.05935662239789963, -0.10747642815113068, -0.03436458483338356, -0.03173542767763138, -0.10191777348518372, -0.058147333562374115, 0.04877534508705139, -0.09401410073041916, 0.04154570773243904, -0.01422155275940895, 0.06028401479125023, 0.056069307029247284, -0.0003506205976009369, 0.04069400578737259, 0.0092548169195652, -0.04695933312177658, 0.03254514932632446, -0.02673552744090557, 0.11755174398422241, 0.009209795854985714, -0.07001474499702454, -0.10171101987361908, 0.0017698686569929123, -0.049803510308265686, 0.05437555909156799, -0.00589322904124856, 0.0916704386472702, 0.02710568904876709, -0.03974272683262825, -0.18285579979419708, 0.03088444285094738, 0.10785757750272751, -0.014122376218438148, -0.045156970620155334, -0.07904352247714996, -0.20341263711452484, -0.0451604500412941, 0.048383552581071854, 0.06302108615636826, 0.0009353940258733928, 0.0723482221364975, -0.028721466660499573, -0.0660850778222084, 0.011352833360433578, 0.04371821880340576, 0.06755004078149796, 0.013033373281359673, 0.07113073021173477, -0.011205539107322693, 0.07690435647964478, 0.02251679077744484, 0.00616935919970274, -0.000642097438685596, -0.0643264576792717, 0.011630398221313953, -0.08437502384185791, 0.12796354293823242, 0.08544788509607315, -0.04588031768798828, -0.003481791354715824, 0.07895547896623611, 0.009029185399413109, -0.03291005641222, 0.06713280081748962, -0.16196194291114807, -0.06625378131866455, -0.05305848270654678, 0.2084323763847351, -0.08659276366233826, 0.06706617772579193, -0.05857923999428749, -0.18221452832221985, 0.0915045440196991, -0.03258926048874855, 0.003179649356752634, -0.04852500557899475, 0.08405891060829163, 0.04199786111712456, -0.10246061533689499, 0.06624767184257507, -0.07082065939903259, 0.08425141870975494, 0.0018039176939055324, -0.04731985181570053, -0.19503803551197052, -0.020128801465034485, -0.06985214352607727, 0.06481707096099854, -0.06255368143320084, -0.0901668593287468, 0.06330561637878418, 0.019730478525161743, 0.051131073385477066, -0.006500446703284979, -0.052810873836278915, 0.013773651793599129, -0.09913063794374466, 0.006494510918855667, -0.03418941795825958, 0.08983330428600311, -0.029387278482317924, -0.060280509293079376, 0.014397382736206055, 0.039601437747478485, 0.0030747470445930958, -0.06802957504987717, -0.026606334373354912, 0.007205057889223099, 0.027384569868445396, -0.06092097982764244, -0.035478923469781876, 0.028536925092339516, 0.007072524633258581, 0.06422282755374908, -0.059232793748378754, 0.00235355575568974, -0.02906309999525547, 0.047909531742334366, -0.1787908673286438, -0.01977134868502617, -0.07473574578762054, 0.057716004550457, 0.06643208861351013, 0.10233168303966522, 0.0022073613945394754, 0.18528792262077332, -0.15302273631095886, 0.00038911402225494385, 0.032221902161836624, -0.011660000309348106, 0.09751822799444199, 0.019286826252937317, -0.017957929521799088, -0.11940543353557587, -0.04025617986917496, -0.018952885642647743, -0.04070786386728287, 0.04769419506192207, -0.05776236951351166, 0.08805166184902191, 0.012983622960746288, -0.014164148829877377, -0.023882603272795677, -0.03360667824745178, -0.14207056164741516, -0.012784048914909363, 0.0023625448811799288, 0.09119770675897598, 0.09624215960502625, 0.02696802094578743, -0.05492847040295601, -0.1426890343427658, -0.08047043532133102, 0.08369158208370209, 0.06557174772024155, 0.029451914131641388, -0.04444701969623566, -0.008418431505560875, 0.04901401698589325, 0.013604908250272274, -0.08520521968603134, -0.11227994412183762, 0.019625600427389145, -0.021689288318157196, -0.08915526419878006, -0.031124206259846687, 0.030906859785318375, -0.05426110327243805, 0.06578901410102844, 0.11425274610519409, 0.16375210881233215, -0.06809037178754807, 0.12729109823703766, 0.0040749721229076385, 0.012145734392106533, 0.08425412327051163, -0.006651707459241152, -0.152833491563797, 0.07563455402851105, -0.03466483950614929, -0.016551755368709564, -0.11346252262592316, 0.1463843733072281, 0.03411628305912018, 0.039074309170246124, 0.07398445159196854, -0.09475336223840714, 0.011216129176318645, 0.0010829041711986065, -0.05706416070461273, 0.05732576549053192, -0.047837305814027786, 0.061142608523368835, 0.09411988407373428, -0.015195272862911224, -0.009120462462306023, 0.007956888526678085, 0.06656792759895325, 0.017207344993948936, -0.06855044513940811, -0.0012335546780377626, -0.08020912110805511, -0.03973846882581711, 0.07838135212659836, -0.028250329196453094, 0.05043688789010048, -0.1149793341755867, 0.023662356659770012, 0.04151826351881027, -0.06288941204547882, 0.04227336123585701, 0.1357450932264328, 0.07564332336187363, 0.06263872236013412, -0.176543191075325, 0.06052330881357193, 0.009219465777277946, 0.003984206821769476, 0.07320287823677063, 0.0010447200620546937, -0.024943146854639053, 0.09128755331039429, -0.033637844026088715, 0.05390339717268944, 0.032938022166490555, 0.0726330503821373, 0.08978930115699768, -0.06923973560333252, -0.06100945174694061, -0.03105105645954609, -0.012168561108410358, -0.024915875867009163, 0.09235985577106476, 0.038169704377651215, 0.09934183210134506, 0.06814707815647125, 0.06322456151247025, 0.041454195976257324, 0.00497773289680481, 0.08243904262781143, -0.088441863656044, -0.0023623111192137003, 0.015611326321959496, -0.08868047595024109, 0.06824080646038055, 0.05057864636182785, -0.0197745468467474, 0.04805060103535652, 0.13533930480480194, 0.050696082413196564, 0.059234485030174255, -0.12467533349990845, 0.0076838708482682705, 0.06201353296637535, -0.1198638528585434, 0.03144139423966408, -0.04807765781879425, -0.017265478149056435, 0.014414921402931213, -0.043549686670303345, 0.0824701189994812, 0.05523328110575676, -0.0651971623301506, 0.0411766916513443, 0.056992486119270325, -0.010763052850961685, -0.08164969831705093, 0.05186314135789871, -0.05397861450910568, 0.10426458716392517, 0.08150725811719894, 0.005960293114185333, -0.14164559543132782, 0.06782785803079605, 0.0445542149245739, 0.007446391507983208, 0.06723643094301224, 0.04575200751423836, -0.0506252720952034, -0.014683797024190426, -0.0019165645353496075, 0.12156511843204498, -0.05171620845794678, 0.11797086894512177, 0.007508041337132454, -0.0509786494076252, -0.05826304852962494, 0.04438425227999687, -0.01759551279246807, 0.061848826706409454, -0.03639970347285271, -0.03307316079735756, -0.16151955723762512, -0.06757455319166183, -0.04290866479277611, 0.0066167316399514675, -0.06916932761669159, -0.06369215250015259, -0.08157505840063095, -0.07713490724563599, -0.12302945554256439, 0.025200730189681053, -0.041060447692871094, 0.061258286237716675, -0.024695923551917076, 0.07885462045669556, 0.013426613062620163, -0.05484272539615631, 0.0914386659860611, 0.11898014694452286, 0.06853196024894714, -0.03940024971961975, -0.07591699808835983, -0.12474985420703888, 0.07185632735490799, 0.0597144216299057, -0.02195378951728344, 0.03900161758065224, -0.007843184284865856, -0.12767890095710754, 0.01318373903632164], "\u6700\u8fd1\u51fa\u6765\u7684taichi\u7f16\u7a0b\u8bed\u8a00\u6709Python\u6269\u5c55\uff0c\u7c7b\u4f3c`import taichi as ti`\u5c31\u80fd\u76f4\u63a5\u7528\u4e86\uff0cMindSpore\u662f\u5426\u4e5f\u652f\u6301\uff1f": [-0.04285368323326111, 0.037165503948926926, -0.013696528971195221, 0.05444364994764328, -0.036110080778598785, -0.0576908178627491, 0.02525835670530796, 0.03204051032662392, 0.036378730088472366, 0.025160109624266624, -0.03405933827161789, 0.06605523824691772, 0.035458773374557495, -0.011200335808098316, -0.08387680351734161, 0.12443794310092926, 0.07965410500764847, 0.07226064056158066, -0.02723304182291031, 0.065391406416893, 0.010553000494837761, 0.032332226634025574, 0.07991558313369751, -0.02039920538663864, 0.020715981721878052, 0.08608228713274002, -0.0001924913376569748, -0.011781065724790096, 0.048125386238098145, 0.07286526262760162, 0.006955025251954794, -0.0131401801481843, -0.08141535520553589, 0.020868344232439995, -0.09601892530918121, -0.04523656889796257, -0.045663557946681976, 0.12417809665203094, -0.09335154294967651, -0.019535131752490997, 0.02084534242749214, 0.049643974751234055, -0.03150901570916176, 0.06440794467926025, 0.0007650142651982605, -0.015039177611470222, -0.1148064136505127, -0.034136079251766205, 0.08338441699743271, -0.0423094779253006, -0.05952012911438942, 0.024481749162077904, -0.02419464662671089, -0.023671533912420273, -0.06710364669561386, -0.0393248051404953, 0.008879084140062332, -0.0007882116478867829, 0.10817744582891464, -0.06353148818016052, 0.023210793733596802, 0.02616717480123043, -0.046879854053258896, -0.07689787447452545, -0.05353495106101036, -0.0349983274936676, -0.054294049739837646, -0.08487381041049957, -0.027264850214123726, -0.04794490337371826, -0.0873461365699768, 0.02594822831451893, -0.01142161339521408, 0.07303105294704437, 0.045929525047540665, 0.058793868869543076, 0.015579180791974068, -0.032227031886577606, -0.07186541706323624, 0.010846327058970928, -0.009107757359743118, 0.1034831553697586, -0.0015539588639512658, -0.0370326042175293, -0.03395375236868858, 0.01274016872048378, -0.07343616336584091, 0.055358633399009705, -0.05290818214416504, 0.039954766631126404, -0.04052175581455231, 0.006781009491533041, -0.12901705503463745, 0.06036326661705971, 0.10022450238466263, -0.02551521733403206, -0.018078628927469254, -0.0059539261274039745, -0.20772118866443634, -0.03686138242483139, 0.04128531366586685, -0.022716788575053215, -0.06342915445566177, 0.009776350110769272, 0.04210548847913742, -0.110092394053936, 0.07160691916942596, 0.016557026654481888, 0.0530959889292717, -0.022318214178085327, -0.0052148038521409035, 0.014547614380717278, 0.03342773765325546, -0.01638767495751381, 0.08381673693656921, 0.04532725363969803, -0.03914881497621536, 0.017597274854779243, -0.05382372438907623, 0.06437703222036362, 0.07199326157569885, -0.0038481163792312145, 0.057811010628938675, 0.06205197051167488, 0.013211089186370373, -0.04381939396262169, 0.0809406116604805, -0.09443864226341248, -0.07124011218547821, -0.0985809937119484, 0.14416366815567017, -0.09124694764614105, 0.05938069894909859, -0.034560948610305786, -0.11877389252185822, 0.10125934332609177, -0.06309565156698227, -0.030015937983989716, -0.06906082481145859, 0.07144195586442947, 0.05325774475932121, -0.12093930691480637, 0.07210476696491241, -0.0022779887076467276, 0.12972891330718994, 0.050229478627443314, -0.11910337209701538, -0.07652929425239563, -0.007915624417364597, -0.07814502716064453, 0.11334272474050522, -0.04558436572551727, -0.04418635368347168, 0.16860716044902802, -0.02148597687482834, -0.0021256362088024616, 0.04312148690223694, -0.028925713151693344, -0.022730905562639236, -0.042212218046188354, -0.08914661407470703, 0.010780500248074532, -0.006874627899378538, -0.018597550690174103, -0.051285188645124435, 0.027640795335173607, 0.03754228726029396, 0.03271898999810219, 0.023743711411952972, -0.05459444597363472, -0.03647805377840996, -0.04313531517982483, -0.08809949457645416, 0.003555718809366226, 0.12569274008274078, -0.008734026923775673, 0.10527917742729187, -0.06006912142038345, 0.023575102910399437, -0.018927333876490593, 0.06868647038936615, -0.08770210295915604, -0.0017328636022284627, -0.06747594475746155, -0.03205331042408943, -0.012303144671022892, 0.08121165633201599, 0.043271586298942566, 0.20062460005283356, -0.07800425589084625, 0.027787230908870697, 0.015017859637737274, 0.007930259220302105, 0.03102010302245617, -0.016106676310300827, 0.03442785143852234, -0.09522543847560883, -0.050136543810367584, 0.05636649578809738, -0.04372439533472061, 0.041113704442977905, 0.013503952883183956, 0.04499487206339836, 0.09456855058670044, 0.051972925662994385, -0.029577499255537987, -0.08679871261119843, -0.12218046188354492, 0.02148875780403614, 0.005508417263627052, 0.05686988681554794, 0.020810892805457115, -0.030818210914731026, -0.11079167574644089, -0.12192580103874207, 0.012880741618573666, 0.06137121096253395, 0.09559383988380432, 0.02893070876598358, -0.0432453490793705, 0.01658984273672104, 0.08153397589921951, -0.006425307132303715, -0.04396062344312668, -0.06238695979118347, -0.021336855366826057, -0.07326880842447281, -0.1129986122250557, 0.04023772478103638, 0.08920049667358398, -0.04706437885761261, 0.15538956224918365, 0.009648965671658516, 0.1284986138343811, -0.044802237302064896, 0.10838491469621658, -0.045801252126693726, -0.031708210706710815, 0.05476710945367813, -0.013672764413058758, -0.14931830763816833, 0.10446114838123322, -0.07010196149349213, -0.02808833122253418, -0.09364394098520279, 0.055049020797014236, 0.06506301462650299, 0.04955536872148514, 0.029434623196721077, 0.003908778075128794, 0.014909150078892708, 0.036670200526714325, -0.06243620440363884, 0.10396353900432587, -0.016563156619668007, 0.07787485420703888, 0.047900207340717316, -0.10025405138731003, 0.03362452983856201, 0.05533960089087486, 0.026602374389767647, 0.04103555902838707, -0.09110898524522781, -0.005070412065833807, 0.04397575929760933, -0.02101866342127323, 0.039703793823719025, -0.09438581019639969, 0.06361949443817139, -0.07213379442691803, -0.032893139868974686, -0.0040121241472661495, -0.07622319459915161, -0.029273375868797302, 0.0725378766655922, 0.08804357796907425, 0.06116309016942978, -0.11679887771606445, 0.06416239589452744, 0.02766202762722969, -0.06030735746026039, 0.026197748258709908, 0.04651055485010147, -0.03859949856996536, 0.05747709795832634, -0.05565657466650009, 0.024005288258194923, 0.022519731894135475, 0.07482417672872543, 0.1763266623020172, 0.02703515812754631, -0.02438415214419365, -0.09024855494499207, 0.056171201169490814, -0.021880587562918663, 0.036929257214069366, 0.03153984621167183, 0.05687412992119789, 0.023145586252212524, 0.01966635137796402, -0.05629304423928261, -0.08198276162147522, 0.08188999444246292, -0.06051013618707657, -0.02439797855913639, 0.006569989491254091, -0.07314540445804596, 0.011351360008120537, 0.029599571600556374, -0.024833645671606064, 0.04337984696030617, 0.051860369741916656, 0.018796293064951897, 0.08020316064357758, -0.045013219118118286, -0.0016637261724099517, 0.05109935998916626, -0.16817456483840942, 0.018021397292613983, -0.055921897292137146, 0.010708652436733246, -0.06469301879405975, -0.034304454922676086, 0.03958611562848091, 0.027888406068086624, -0.007535695098340511, 0.10598102957010269, 0.04334969446063042, 0.003786709625273943, -0.019977381452918053, 0.03546798974275589, -0.03171563893556595, 0.0904984399676323, 0.07887256145477295, 0.0477411113679409, -0.06985118985176086, 0.11687632650136948, 0.0741221010684967, -0.030388373881578445, 0.05487639456987381, 0.06627722829580307, -0.0705082044005394, -0.005051564425230026, -0.04647422209382057, 0.022945020347833633, -0.09072623401880264, 0.05019855499267578, 0.032460086047649384, -0.05561836063861847, -0.010648176074028015, 0.052972543984651566, -0.0704096257686615, 0.05895426869392395, -0.050647348165512085, -0.04405481368303299, -0.11008936911821365, -0.06729703396558762, -0.054456762969493866, 0.03936890512704849, -0.03198928385972977, 0.02011113055050373, 0.0341208316385746, -0.03107466548681259, -0.048604000359773636, -0.023205945268273354, -0.10728420317173004, 0.10080529749393463, -0.11119476705789566, 0.05042101442813873, 0.04556991159915924, -0.11866839230060577, 0.0679367259144783, 0.10804051160812378, 0.043120127171278, -0.05633864179253578, -0.030905883759260178, -0.11738590896129608, 0.102973572909832, -0.04508332908153534, -0.04858354851603508, 0.05037539452314377, 0.01708514802157879, -0.12689687311649323, 0.0072667719796299934], "\u8bf7\u95eeMindSpore\u652f\u6301\u68af\u5ea6\u622a\u65ad\u5417\uff1f": [-0.049289777874946594, 0.08139931410551071, 0.022660668939352036, -0.0005057900561951101, -0.07217903435230255, -0.025560837239027023, -0.013477638363838196, 0.05062516778707504, 0.02006029523909092, 0.05794195458292961, -0.010348916985094547, -0.004957974422723055, 0.044473085552453995, 0.06047006696462631, -0.08741956949234009, 0.07692193984985352, 0.11845150589942932, 0.030067726969718933, -0.07366041839122772, 0.06579232960939407, -0.011149422265589237, -0.016725093126296997, 0.08183134347200394, -0.03463345021009445, -0.006822210270911455, 0.08495159447193146, -0.038848068565130234, 0.012045850977301598, 0.018768081441521645, 0.030872689560055733, 0.08315284550189972, 0.03786042705178261, -0.046514302492141724, 0.009982002899050713, -0.04961219057440758, -0.059241533279418945, -0.08324624598026276, 0.04100874438881874, -0.012159042991697788, -0.04366562142968178, 0.036613523960113525, 0.021311307325959206, -0.03099874220788479, 0.09958665817975998, -0.0362948402762413, -0.04517805576324463, -0.13476474583148956, 0.011635011062026024, -0.003004541853442788, -0.03994177654385567, -0.061448343098163605, 0.06129785627126694, 0.016433384269475937, -0.03485433757305145, -0.0578254796564579, -0.02833409607410431, 0.009171036072075367, 0.053247641772031784, 0.06399564445018768, -0.11864988505840302, 0.0010269355261698365, 0.0282917357981205, -0.06283967941999435, -0.04678243398666382, -0.11971750855445862, -0.01945618912577629, -0.05621302127838135, -0.09704403579235077, -0.03475818783044815, 0.04311071336269379, -0.037182439118623734, -0.019361859187483788, -0.00850298535078764, 0.0575285404920578, 0.03922164812684059, 0.015000181272625923, -0.03858574107289314, 0.007325406651943922, -0.06770588457584381, 0.009030114859342575, 0.022349845618009567, 0.08387407660484314, 0.040917687118053436, -0.0719057247042656, -0.09033948183059692, -0.00023300200700759888, -0.04659884423017502, 0.09685765951871872, -0.034100472927093506, 0.10526230931282043, 0.01207506749778986, -0.011291076429188251, -0.1636328250169754, 0.03792043775320053, 0.07509531080722809, 0.0014167483896017075, -0.05076270177960396, -0.02059882879257202, -0.1281011402606964, -0.034023452550172806, 0.017859524115920067, 0.021219413727521896, -0.04152018576860428, 0.0582607164978981, 0.02676263451576233, -0.0816153809428215, 0.06195444241166115, 0.007657912559807301, 0.08178259432315826, 0.012842230498790741, 0.0672108605504036, -0.006072569638490677, 0.09495679289102554, -0.009938676841557026, 0.01252464484423399, 0.016245530918240547, -0.06183648109436035, 0.009324030950665474, -0.05947832018136978, 0.10269573330879211, 0.08402114361524582, -0.06181144341826439, -0.009583004750311375, 0.046835314482450485, 0.022279459983110428, -0.009101636707782745, 0.08390435576438904, -0.10829038918018341, -0.10411068052053452, -0.09022490680217743, 0.1480439305305481, -0.09852155297994614, 0.10359035432338715, -0.11296966671943665, -0.12861371040344238, 0.056574784219264984, -0.0004236828244756907, 0.01928374171257019, -0.046238090842962265, 0.1064838320016861, 0.026394136250019073, -0.12926971912384033, 0.11876077950000763, -0.058402836322784424, 0.08911405503749847, 0.07078150659799576, -0.04458160698413849, -0.09381642192602158, -0.004134195391088724, -0.08836741745471954, 0.04920685663819313, -0.026757435873150826, -0.0565967820584774, 0.0972437858581543, 0.028661664575338364, 0.052480753511190414, -0.013361633755266666, -0.018058601766824722, -0.002433427842333913, -0.04648657888174057, 0.0007784364861436188, -0.01043472345918417, 0.016478220000863075, 0.012388394214212894, -0.03128241002559662, -0.02724810317158699, 0.04346534609794617, 0.003895343979820609, -0.06572706997394562, -0.04068506881594658, -0.015545816160738468, -0.025385959073901176, -0.029792753979563713, 0.02307429164648056, 0.0325995609164238, -0.016522182151675224, 0.09357345104217529, -0.0712103322148323, 0.0193322766572237, -0.03371422737836838, 0.015550249256193638, -0.08894854784011841, -0.01570509374141693, -0.06532611697912216, 0.015394488349556923, 0.024194227531552315, 0.09499415755271912, 0.02272443100810051, 0.10847950726747513, -0.15018530189990997, -0.007199826184660196, 0.0441913828253746, 0.019222546368837357, 0.06105959415435791, 0.01896589808166027, 0.038011785596609116, -0.08114883303642273, -0.04757145792245865, 0.018266040831804276, -0.03239816054701805, -0.014938997104763985, 0.010911514051258564, 0.027953075245022774, 0.015940159559249878, -0.032929323613643646, 0.018937401473522186, -0.07601381838321686, -0.06472901254892349, 0.0005708662210963666, -0.025831706821918488, 0.08283679187297821, 0.05389654263854027, -0.008695119060575962, -0.06448768079280853, -0.1021748036146164, -0.020024660974740982, 0.12538385391235352, 0.06212206929922104, 0.023811155930161476, -0.05760329216718674, 0.012223666533827782, 0.02567443624138832, 0.025991544127464294, -0.06881868839263916, -0.1446564495563507, -0.04004766419529915, -0.03424866870045662, -0.1343657225370407, -0.015256536193192005, 0.052508171647787094, -0.021539075300097466, 0.052726197987794876, 0.04723333939909935, 0.15853802859783173, -0.028495432808995247, 0.15192636847496033, -0.007120591588318348, -0.023188401013612747, 0.06306523084640503, 0.0293156486004591, -0.10936875641345978, 0.07550957798957825, -0.0512462817132473, -0.05013929307460785, -0.036901626735925674, 0.09289862215518951, 0.07938028126955032, 0.015316227450966835, 0.032469604164361954, -0.052108339965343475, 0.04117182642221451, 0.023531178012490273, -0.07511960715055466, 0.044111356139183044, -0.03532594442367554, 0.05249810218811035, 0.0680617168545723, -0.05498173087835312, 0.008194941096007824, 0.05070068687200546, 0.008209224790334702, 0.03980523720383644, -0.04586042836308479, -0.0035454630851745605, -0.0359015055000782, -0.01611313782632351, 0.08672124892473221, -0.06676457077264786, 0.02058437466621399, -0.12136387825012207, 0.0099469143897295, 0.012901640497148037, -0.11721034348011017, 0.03499917313456535, 0.12402030825614929, 0.06952586024999619, 0.01643476076424122, -0.18739983439445496, 0.02238002046942711, 0.036865804344415665, -0.013334273360669613, 0.005949598271399736, -0.025201475247740746, 0.013115862384438515, 0.05512362718582153, 0.02907944656908512, 0.03387024253606796, -0.014314467087388039, 0.052056264132261276, 0.12918990850448608, -0.06495378166437149, 0.007498546503484249, -0.08467276394367218, 0.04938879609107971, -0.054680921137332916, 0.05269073694944382, 0.018684957176446915, 0.04153095930814743, 0.050316937267780304, 0.03398441523313522, -0.00814500730484724, -0.05138469114899635, 0.09547394514083862, -0.10454270243644714, -0.0327347069978714, 0.03886689618229866, -0.05139198899269104, 0.09302382171154022, 0.020391449332237244, 0.036955904215574265, 0.08372057229280472, 0.12242814898490906, 0.030683675780892372, 0.07870306074619293, -0.06505085527896881, -0.016910912469029427, 0.0459580197930336, -0.15422753989696503, 0.05765184015035629, -0.0917721539735794, 0.0274825356900692, -0.03560145944356918, -0.010270260274410248, 0.06637335568666458, 0.06448028981685638, -0.08160527050495148, 0.034216608852148056, 0.06341353058815002, 0.04688176140189171, -0.06994710862636566, 0.0317298024892807, -0.08449593931436539, 0.03875526785850525, 0.06187794357538223, 0.0068302880972623825, -0.08926770836114883, 0.08253920078277588, 0.084678053855896, -0.009125088341534138, 0.08996384590864182, 0.06942890584468842, -0.07010127604007721, 0.001422821544110775, -0.05961308628320694, 0.08741264045238495, -0.09918753057718277, 0.06379628926515579, -0.014734766446053982, -0.03939865157008171, -0.07947123795747757, 0.05400404334068298, -0.027408253401517868, 0.0548018179833889, -0.012796731665730476, -0.012401960790157318, -0.16354218125343323, -0.09205516427755356, -0.003951715305447578, 0.00916161760687828, -0.0010595802450552583, -0.05342814326286316, -0.014828224666416645, -0.06401585787534714, -0.06511663645505905, 0.0216468945145607, -0.06904046982526779, 0.03789187967777252, -0.08888988196849823, 0.09824720770120621, -0.02094085142016411, -0.06355716288089752, 0.062420107424259186, 0.10233387351036072, 0.062254246324300766, -0.0781281590461731, -0.09881722927093506, -0.10933903604745865, 0.09133250266313553, 0.0023661546874791384, -0.05598466098308563, 0.08411016315221786, 0.02649543620646, -0.1519688069820404, 0.08297200500965118], "MindSpore\u7684IR\u8bbe\u8ba1\u7406\u5ff5\u662f\u4ec0\u4e48\uff1f": [-0.07938170433044434, 0.07307935506105423, -0.010041860863566399, -0.0019896305166184902, -0.04123198986053467, 0.002241186797618866, -0.00548271369189024, 0.07124731689691544, 0.005392111837863922, 0.020629845559597015, -0.03795148432254791, -0.022108249366283417, 0.05248599499464035, 0.045371830463409424, -0.10074503719806671, 0.08163034915924072, 0.137491375207901, 0.047961171716451645, -0.10719022899866104, 0.08234576880931854, -0.013826497830450535, -0.010099955834448338, 0.05354537442326546, -0.03201017901301384, 0.057654477655887604, 0.11156590282917023, -0.02374122478067875, 0.004617717117071152, 0.025720447301864624, 0.07094788551330566, 0.07720038294792175, -0.0028748693875968456, -0.0644443929195404, 0.010474215261638165, -0.061191409826278687, -0.03776264190673828, -0.08047960698604584, 0.060132093727588654, -0.016764923930168152, -0.04652563855051994, 0.07242712378501892, 0.0551631823182106, -0.014750382862985134, 0.11545436084270477, -0.006057002115994692, -0.04072287306189537, -0.10973438620567322, 0.0015271126758307219, 0.035313595086336136, -0.04891648516058922, -0.059547003358602524, 0.06575996428728104, 0.032483723014593124, -0.0238877534866333, -0.05392121896147728, -0.03416803106665611, -0.005691753700375557, 0.048366982489824295, 0.05460670217871666, -0.096094511449337, -0.017876580357551575, 0.0004985229461453855, -0.10685320943593979, -0.07179680466651917, -0.11713794618844986, -0.0399201437830925, -0.03856554999947548, -0.08647191524505615, -0.06320279836654663, 0.031979478895664215, -0.046692244708538055, -0.008347375318408012, -0.005749087780714035, 0.09206418693065643, 0.05855381488800049, 0.02502184920012951, -0.015277128666639328, 0.024362199008464813, -0.056065551936626434, 0.034097351133823395, 0.03629792854189873, 0.08644690364599228, 0.058887943625450134, -0.04075917229056358, -0.1119452714920044, 0.026139508932828903, -0.072960264980793, 0.05522254854440689, -0.05447277054190636, 0.0880972370505333, 0.013698147609829903, -0.020426400005817413, -0.16122077405452728, 0.02710328996181488, 0.03565108776092529, -0.02657734602689743, -0.07412118464708328, -0.004965882748365402, -0.1586114913225174, -0.031669262796640396, 0.032497406005859375, 0.017777685075998306, -0.06422460079193115, 0.09268295019865036, 0.03513433039188385, -0.08838483691215515, 0.07833386957645416, 0.01156019326299429, 0.08044678717851639, 0.03360436484217644, 0.07760956883430481, -0.042899198830127716, 0.06764031946659088, -0.0017089343164116144, 0.010013602674007416, 0.02450406365096569, -0.036383409053087234, 0.020998170599341393, -0.02560119330883026, 0.11413867771625519, 0.06372858583927155, -0.038508351892232895, -0.008573496714234352, 0.04398277774453163, 0.04396963119506836, -0.015474256128072739, 0.09776138514280319, -0.11239930242300034, -0.12283263355493546, -0.09321225434541702, 0.18650305271148682, -0.10872910171747208, 0.09160801768302917, -0.09910371899604797, -0.16373902559280396, 0.08210743963718414, -0.008308314718306065, -0.008889378048479557, -0.035235095769166946, 0.1041526272892952, 0.028033152222633362, -0.13725940883159637, 0.13129465281963348, -0.027072537690401077, 0.08569703251123428, 0.038777172565460205, -0.056760430335998535, -0.09977272897958755, -0.020842483267188072, -0.07443667948246002, 0.050541944801807404, -0.008577863685786724, -0.02583305910229683, 0.1197194904088974, 0.03118305467069149, 0.04908301681280136, 0.010963363572955132, -0.02762351930141449, 0.014567837119102478, -0.01983657293021679, -0.037924230098724365, -0.01629013381898403, 0.01139775849878788, -0.0019722331780940294, -0.02769949659705162, -0.03927804157137871, 0.04081343859434128, 0.02827780693769455, -0.08379160612821579, -0.05188048258423805, 0.005942574702203274, -0.006784852594137192, -0.021003814414143562, -0.0011913658818230033, 0.027224602177739143, -0.04039330407977104, 0.09403002262115479, -0.10437873005867004, -0.010702733881771564, -0.03736110031604767, 0.04818536341190338, -0.04772192984819412, -0.04966457933187485, -0.10009527951478958, 0.016887187957763672, -0.0008655625861138105, 0.060803428292274475, 0.020617207512259483, 0.14057956635951996, -0.1222870945930481, -0.02093645930290222, 0.03577720746397972, -0.010223738849163055, 0.06581249833106995, 0.03784557431936264, 0.018948152661323547, -0.11881846189498901, -0.07281215488910675, 0.035160455852746964, -0.027456030249595642, -0.004840485285967588, 0.0318734385073185, 0.07246328145265579, 0.050343602895736694, 0.0018672483274713159, 0.018581930547952652, -0.07825110852718353, -0.06683257967233658, -0.014388659968972206, -0.0250202938914299, 0.1332324892282486, 0.04264393448829651, 0.01103108748793602, -0.0665968507528305, -0.09779486060142517, -0.024793360382318497, 0.1046905443072319, 0.08565845340490341, 0.04319271445274353, -0.050035055726766586, -0.004418910481035709, 0.015508187003433704, 0.04375621676445007, -0.08539256453514099, -0.12543173134326935, -0.03573762625455856, -0.046212323009967804, -0.13206954300403595, -0.012789498083293438, 0.03715098649263382, -0.07694989442825317, 0.05611371994018555, 0.0379798598587513, 0.16012051701545715, -0.044323548674583435, 0.10984654724597931, -0.04247305542230606, 0.005849726963788271, 0.078043133020401, 0.008820737712085247, -0.11982490122318268, 0.08444702625274658, -0.08030891418457031, -0.030415184795856476, -0.04578614979982376, 0.09414426982402802, 0.08358101546764374, 0.0628163293004036, 0.052765585482120514, -0.026753846555948257, 0.039434902369976044, 0.00789208710193634, -0.07224007695913315, 0.047620244324207306, -0.01949997805058956, 0.08690275996923447, 0.07739619165658951, -0.042006924748420715, 0.00020402297377586365, 0.04712683707475662, 0.022676393389701843, 0.03654870763421059, -0.06463661044836044, 0.04364066570997238, -0.043022070080041885, 0.0192561112344265, 0.10975068062543869, -0.042395833879709244, 0.04025130718946457, -0.12697555124759674, 0.020400477573275566, 0.04216477647423744, -0.11093707382678986, 0.03898658603429794, 0.11993773281574249, 0.05713321641087532, 0.0015080354642122984, -0.2081473022699356, 0.04794255644083023, 0.02828071638941765, 0.005605236627161503, -0.0021567908115684986, -0.04086533933877945, -0.028568085283041, 0.06133316084742546, -0.005341546144336462, 0.03194377198815346, 0.008701742626726627, 0.05365794152021408, 0.17873775959014893, -0.07330294698476791, 0.0040077464655041695, -0.06854532659053802, 0.04197363182902336, -0.026298604905605316, 0.07492782175540924, 0.07517188042402267, 0.06021218001842499, 0.07474115490913391, 0.015242323279380798, -0.016783511266112328, -0.06327758729457855, 0.07082415372133255, -0.11852934956550598, -0.0212763212621212, -0.01149747148156166, -0.02978300303220749, 0.07596654444932938, 0.025590524077415466, 0.029496992006897926, 0.09177765995264053, 0.10321282595396042, 0.053769487887620926, 0.10160286724567413, -0.07496357709169388, -0.02469210885465145, 0.07967081665992737, -0.11555936932563782, 0.05312546342611313, -0.09299018234014511, -0.019782889634370804, -0.023536574095487595, 0.014490540139377117, 0.07882705330848694, 0.03567118942737579, -0.07673324644565582, 0.007304475177079439, 0.0626874789595604, 0.014964034780859947, -0.05362265929579735, 0.03522289916872978, -0.06138204410672188, 0.07358725368976593, 0.09053970128297806, 0.009261205792427063, -0.10048267990350723, 0.12612241506576538, 0.07070182263851166, -0.07579240202903748, 0.07413020730018616, 0.08815537393093109, -0.07337050139904022, -0.01629072055220604, -0.06572222709655762, 0.06177642196416855, -0.10639161616563797, 0.08118394762277603, -0.024876181036233902, -0.06031198799610138, -0.06065294146537781, 0.042002275586128235, -0.05493646860122681, 0.032298047095537186, -0.026575656607747078, -0.03535061329603195, -0.1936831772327423, -0.08493512868881226, -0.00817174930125475, 0.014676705002784729, 0.02051445096731186, -0.025320256128907204, 0.012440424412488937, -0.07459178566932678, -0.03794742375612259, 0.036518532782793045, -0.10407761484384537, 0.04108544811606407, -0.08411131799221039, 0.1244698241353035, 0.004022045526653528, -0.09235879778862, 0.10675293207168579, 0.08964338153600693, 0.020284665748476982, -0.09741970151662827, -0.07167089730501175, -0.09470619261264801, 0.08534194529056549, 0.00413461634889245, -0.062453124672174454, 0.04383080080151558, 0.030911004170775414, -0.16017520427703857, 0.07614937424659729], "MindSpore\u5e76\u884c\u6a21\u578b\u8bad\u7ec3\u7684\u4f18\u52bf\u548c\u7279\u8272\u6709\u54ea\u4e9b\uff1f": [-0.02702585980296135, 0.07715655863285065, -0.0023778246250003576, 0.005468772258609533, -0.0789666622877121, -0.03280116617679596, -0.03598024323582649, 0.054688967764377594, -0.027053361758589745, 0.06423597782850266, 0.006262083537876606, -0.03064909018576145, 0.04701036587357521, 0.020857365801930428, -0.041091181337833405, 0.07624213397502899, 0.10488384962081909, 0.05950714275240898, -0.029915623366832733, 0.024308286607265472, -0.03572811558842659, -0.028002344071865082, 0.04663548991084099, 0.006644700653851032, 0.08379074186086655, 0.148578941822052, -0.018563345074653625, 0.015369636937975883, -0.03229822590947151, 0.11302018165588379, 0.026246072724461555, 0.0340556763112545, -0.11100736260414124, -0.0023426353000104427, -0.046702176332473755, -0.05782235041260719, -0.04516085237264633, 0.05964597314596176, -0.05499936640262604, -0.06082979962229729, 0.08184678107500076, 0.002593239536508918, -0.03188171610236168, 0.07756493985652924, 0.012066985480487347, -0.030429119244217873, -0.19859886169433594, 0.05117132514715195, 0.0562698170542717, 0.02262706868350506, -0.10758908838033676, 0.06323003768920898, 0.028630051761865616, -0.017034390941262245, 0.014687040820717812, -0.026172492653131485, 0.014386985450983047, 0.0251349788159132, 0.033219605684280396, -0.056552089750766754, 0.004507550038397312, 0.035149503499269485, -0.06221136450767517, -0.07557475566864014, -0.11378704756498337, 0.0010583881521597505, -0.053581129759550095, -0.0879155695438385, -0.058653924614191055, 0.04725378006696701, -0.0583416111767292, -0.014334781095385551, -0.01639944687485695, 0.07041119784116745, 0.07260134816169739, 0.05334136262536049, -2.0604580640792847e-05, 0.04400932043790817, -0.07170478254556656, 0.032972969114780426, 0.0415499247610569, 0.08833587914705276, 0.0006119458703324199, -0.04839153587818146, -0.002773148939013481, -0.00713045708835125, -0.04075806587934494, 0.08466941118240356, -0.03138953074812889, 0.09548641741275787, -0.019831009209156036, -0.0040257577784359455, -0.15044447779655457, 0.02464045211672783, 0.03491144999861717, -0.020962314680218697, -0.020012421533465385, -0.040381353348493576, -0.15765169262886047, -0.05029025301337242, -0.020308349281549454, 0.01332312636077404, -0.041656848043203354, 0.07467173784971237, 0.03192836046218872, -0.1003294512629509, 0.018076740205287933, 0.025330189615488052, 0.07048272341489792, 0.02729913964867592, 0.05484224110841751, 0.013333264738321304, 0.11150453984737396, 0.02410750649869442, 0.04308692738413811, -0.006612508092075586, -0.058275945484638214, -0.06408411264419556, -0.02218233048915863, 0.12952852249145508, 0.11694598197937012, -0.0008514074143022299, 0.04437251761555672, 0.033136092126369476, 0.0458739809691906, -0.025114228948950768, 0.051750101149082184, -0.10129731893539429, -0.07645691186189651, -0.05552978813648224, 0.15430602431297302, -0.08231516927480698, 0.05069417878985405, -0.058030787855386734, -0.08719640970230103, 0.08854847401380539, -0.007490966003388166, 0.012863164767622948, 0.0006300135282799602, 0.12569953501224518, 0.02494220808148384, -0.1576007455587387, 0.07702098041772842, -0.05285657197237015, 0.09752046316862106, 0.022360719740390778, -0.05201297625899315, -0.12822376191616058, -0.03334980830550194, -0.07130955904722214, 0.07535874843597412, -0.025187265127897263, -0.03646138310432434, 0.05170494318008423, -0.024996818974614143, 0.0598626509308815, 0.010448482818901539, -0.009858395904302597, -0.00850765686482191, -0.021748103201389313, -0.02796197310090065, -0.03327023610472679, 0.04409309849143028, -0.014951812103390694, -0.05546700209379196, -0.0058465455658733845, 0.006531447172164917, -0.02611261047422886, -0.02913549542427063, -0.03087605908513069, 0.005086292512714863, -0.024562789127230644, -0.08447983860969543, 0.011178869754076004, 0.032491933554410934, -0.03314859792590141, 0.08061065524816513, -0.09955175966024399, 0.01301185879856348, -0.06285068392753601, 0.08292360603809357, -0.0757334902882576, -0.058744337409734726, -0.02801109291613102, 0.05974974483251572, 0.011299317702651024, 0.05022817850112915, 0.0340799055993557, 0.17898570001125336, -0.11594505608081818, -0.03760336712002754, 0.011489165015518665, 0.003745605470612645, 0.07824071496725082, 0.04822620004415512, 0.025529799982905388, -0.07323221862316132, -0.025982625782489777, 0.0419779010117054, 0.013421893119812012, -0.04955681413412094, 0.008957519195973873, 0.00454688398167491, 0.047988180071115494, -0.008743221871554852, 0.030170992016792297, -0.07352128624916077, -0.07313750684261322, -0.011862295679748058, -0.02489476092159748, 0.15564465522766113, 0.021885424852371216, -0.016384826973080635, -0.10915026068687439, -0.15324273705482483, -0.031698647886514664, 0.03713010996580124, 0.10139636695384979, 0.05167531594634056, -0.03471837565302849, -0.033543575555086136, 0.0011355946771800518, 0.039178602397441864, -0.10163772106170654, -0.13226288557052612, -0.011885597370564938, -0.035675060003995895, -0.08900242298841476, 0.002412552945315838, 0.08804260939359665, -0.0792437419295311, 0.09759143739938736, 0.0017310642870143056, 0.1191224753856659, -0.04546501487493515, 0.09874273091554642, -0.01656154915690422, -0.014121956191956997, 0.01095529180020094, 0.04363226518034935, -0.13944117724895477, 0.07263647019863129, -0.08306016027927399, -0.02621365711092949, -0.08509725332260132, 0.13937395811080933, 0.10546260327100754, 0.03550535812973976, 0.05113885924220085, -0.054604776203632355, 0.06177062168717384, -0.006386022083461285, -0.043487269431352615, 0.08268443495035172, -0.029201973229646683, 0.04504314437508583, 0.05748205631971359, 0.004017672501504421, 0.0029022202361375093, 0.07473012059926987, 0.0060689314268529415, 0.03598339855670929, -0.10193415731191635, -0.0017672982066869736, -0.07022254914045334, 0.01823035627603531, 0.08916427940130234, -0.01777110993862152, 0.008083229884505272, -0.10462942719459534, 0.04446790739893913, 0.028794288635253906, -0.08947190642356873, 0.06339266896247864, 0.12125442922115326, 0.08424561470746994, 0.028425153344869614, -0.17321984469890594, 0.016963619738817215, 0.07094956934452057, -0.034785959869623184, 0.024593772366642952, 0.018938496708869934, 0.02301536500453949, 0.07884876430034637, -0.03375353291630745, 0.04487394914031029, 0.03308102861046791, 0.07175427675247192, 0.10432746261358261, -0.0273272804915905, 0.008409186266362667, -0.06668362766504288, 0.00768125057220459, 0.0012839653063565493, 0.059020694345235825, 0.06091800704598427, 0.04209327697753906, 0.061523959040641785, 0.04884415119886398, -0.03174963593482971, -0.013582403771579266, 0.10082533210515976, -0.04203174263238907, -0.029126200824975967, -0.0077706873416900635, -0.07972674071788788, 0.09824130684137344, -0.001741245505400002, 0.047638095915317535, 0.07717502117156982, 0.07681486010551453, 0.054893456399440765, 0.11441552639007568, -0.1165885180234909, -0.0657326877117157, 0.06025117635726929, -0.1410103291273117, 0.044582024216651917, -0.08129912614822388, -0.0055366260930895805, -0.050742972642183304, 0.021777160465717316, 0.06215447932481766, 0.055070675909519196, -0.08358351141214371, 0.001025117584504187, 0.07141190767288208, 0.0034360841382294893, -0.10652343183755875, 0.03365349397063255, -0.046350087970495224, 0.060663629323244095, 0.046399492770433426, 0.005596735514700413, -0.14079679548740387, 0.0722242146730423, 0.10863952338695526, 0.01008297223597765, 0.046268366277217865, 0.10720226913690567, -0.05203712731599808, -0.020508941262960434, -0.11557884514331818, 0.08656344562768936, -0.08304853737354279, 0.05916915833950043, -0.017008034512400627, -0.06867152452468872, -0.06674220412969589, 0.05138111487030983, -0.03841163590550423, -0.0005580912693403661, -0.07091044634580612, 0.0005917306407354772, -0.15632864832878113, -0.09696885943412781, -0.01064913347363472, 0.02075076848268509, 0.028749851509928703, -0.03494086116552353, 0.03943074494600296, -0.0572626031935215, -0.05026017129421234, 0.036793410778045654, -0.10594452917575836, 0.09793621301651001, -0.04505050927400589, 0.03701423481106758, 0.040827713906764984, -0.10776714980602264, 0.13161426782608032, 0.09273310005664825, 0.06283804029226303, -0.06185157969594002, -0.0918387621641159, -0.09247808158397675, 0.020708438009023666, -0.02187265083193779, -0.10459664463996887, 0.019011765718460083, 0.0034466248471289873, -0.15425895154476166, 0.053967058658599854], "MindSpore\u5728\u8bed\u4e49\u534f\u540c\u548c\u5904\u7406\u4e0a\u662f\u5982\u4f55\u5b9e\u73b0\u7684\uff1f\u662f\u5426\u5229\u7528\u5f53\u524d\u5b66\u672f\u754c\u6d41\u884c\u7684FCA\u7406\u8bba\uff1f": [0.006125754211097956, 0.020339105278253555, -0.005896484944969416, 0.031120771542191505, -0.051296040415763855, -0.025835957378149033, -0.014100907370448112, 0.08332975208759308, -0.018313851207494736, 0.022821102291345596, -0.02566252090036869, -0.017504055052995682, 0.02135765552520752, -0.0022141821682453156, -0.041976649314165115, 0.07077276706695557, 0.11453384906053543, 0.025107935070991516, -0.053908225148916245, 0.0688304603099823, 0.0014057308435440063, -0.01645304448902607, 0.044827982783317566, -0.02228429727256298, -0.0005089644691906869, 0.08996302634477615, -0.023602496832609177, 0.02399381250143051, -0.0020918704103678465, 0.07627850770950317, 0.068312868475914, 0.04104606807231903, -0.09071324020624161, 0.02097717486321926, -0.03102034516632557, -0.06906059384346008, -0.05975637957453728, 0.0733550637960434, -0.048871979117393494, -0.0374721959233284, 0.0893767848610878, 0.0027857080567628145, -0.08007506281137466, 0.12660683691501617, -0.00632327189669013, -0.02339044399559498, -0.1324976533651352, 0.024267297238111496, 0.05789848417043686, 0.002298827050253749, -0.07985847443342209, 0.055308207869529724, 0.008083605207502842, -0.021022608503699303, 0.00645815534517169, -0.008550053462386131, 0.03695351257920265, 0.026281209662556648, 0.0395294688642025, -0.030852418392896652, 0.03800487518310547, -0.017406735569238663, -0.08170383423566818, -0.025716645643115044, -0.09290434420108795, -0.012910451740026474, -0.04356396943330765, -0.12794852256774902, -0.014251861721277237, 0.021541273221373558, -0.04629775509238243, -0.028021138161420822, -0.015728013589978218, 0.08721809834241867, 0.09521625936031342, 0.04984154924750328, -0.019093938171863556, -9.457767009735107e-05, -0.10776448994874954, -0.002230461686849594, 0.08087871223688126, 0.06586714833974838, 0.03512813150882721, -0.06870505958795547, -0.059931039810180664, 0.016463326290249825, -0.047289639711380005, 0.09716184437274933, -0.027036389335989952, 0.08670800924301147, -0.004372789524495602, -0.016392162069678307, -0.1193007230758667, 0.06864479184150696, 0.06646943837404251, -0.017016256228089333, -0.04131556674838066, -0.052721261978149414, -0.11300628632307053, -0.002543501555919647, 0.004372740164399147, 0.021798115223646164, -0.007705018389970064, 0.058921124786138535, 0.0355154313147068, -0.08139652013778687, 0.023134149610996246, 0.034363679587841034, 0.02854691818356514, 0.06243981793522835, 0.05090007558465004, 0.0378076508641243, 0.09818457812070847, 0.0038404862862080336, -0.02002747915685177, 0.008914289996027946, -0.06906021386384964, 0.009046695195138454, -0.08537520468235016, 0.09736143797636032, 0.09010578691959381, -0.03273138403892517, 0.017570236697793007, 0.02546774409711361, 0.021571123972535133, -0.01640758477151394, 0.058608442544937134, -0.1329088807106018, -0.12560135126113892, -0.09375549852848053, 0.16218793392181396, -0.06713918596506119, 0.05515853315591812, -0.1199011579155922, -0.11114468425512314, 0.07227661460638046, 0.03387567028403282, 0.03213479742407799, -0.029114343225955963, 0.09264890849590302, 0.0401306077837944, -0.1336422562599182, 0.08237456530332565, -0.038489874452352524, 0.10916315764188766, 0.03486704081296921, -0.0915355533361435, -0.0917159914970398, -0.04439159482717514, -0.043233178555965424, 0.062449369579553604, 0.011786450631916523, -0.0579700842499733, 0.09981569647789001, -0.007093098014593124, 0.030286593362689018, 0.02232765406370163, -0.019490530714392662, -0.02652665600180626, -0.02106863632798195, -0.012764312326908112, -0.027090389281511307, 0.009057183749973774, -0.024608351290225983, -0.011292103677988052, 0.013321842066943645, 0.00860217958688736, -0.051807619631290436, -0.034149471670389175, -0.03766803443431854, 0.003529422217980027, -0.038632579147815704, -0.09645099937915802, 0.02616163343191147, 0.05079345032572746, 9.52407717704773e-05, 0.0838220939040184, -0.08465947210788727, 0.016408713534474373, -0.045811668038368225, 0.0757606253027916, -0.08705519139766693, -0.04826928302645683, -0.036262042820453644, 0.0396447516977787, 0.010590027086436749, 0.13680964708328247, 0.04248225688934326, 0.1587880551815033, -0.09719306230545044, 0.022898856550455093, 0.08366755396127701, -0.002023647539317608, 0.06429686397314072, -0.006804241798818111, 0.006089287810027599, -0.08067913353443146, -0.02534540928900242, 0.016338352113962173, -0.03947042301297188, -0.022147933021187782, 0.05082778260111809, 0.04230135679244995, 0.03402876853942871, -0.015600071288645267, 5.009397864341736e-05, -0.09849044680595398, -0.0755603089928627, 0.02425580658018589, -0.021947063505649567, 0.1267712414264679, 0.02138124406337738, 0.017558159306645393, -0.07734870910644531, -0.09848746657371521, -0.0077243587002158165, 0.0900077223777771, 0.0956355407834053, 0.04701486974954605, -0.027752049267292023, 0.04117891564965248, 0.023998700082302094, 0.03596240654587746, -0.0740991085767746, -0.09112700074911118, -0.0065057724714279175, -0.03479157015681267, -0.12336408346891403, 0.007996358908712864, 0.04829225689172745, 0.008505240082740784, 0.05077014118432999, -0.004826938267797232, 0.13085511326789856, -0.008907821029424667, 0.09287992864847183, -0.005282239057123661, -0.04341201111674309, 0.0525081492960453, 0.06163725256919861, -0.09649080783128738, 0.05651252716779709, -0.05672665685415268, -0.018568994477391243, -0.04722701758146286, 0.12329837679862976, 0.10152283310890198, 0.08714575320482254, -0.01042473316192627, -0.025750642642378807, 0.08205165714025497, 0.004181160591542721, -0.032251209020614624, 0.09218817949295044, -0.02803063951432705, 0.07172388583421707, 0.07345657050609589, -0.024780945852398872, 0.03571968153119087, 0.028547439724206924, -0.01332862302660942, 0.02167062647640705, -0.04789949208498001, -0.01211513951420784, -0.04512978345155716, -0.00366563955321908, 0.11327363550662994, -0.008124510757625103, 0.011424845084547997, -0.09963168203830719, 0.028491713106632233, 0.0087574552744627, -0.04966748133301735, 0.020770862698554993, 0.11775751411914825, 0.06985511630773544, -0.03273184597492218, -0.17296430468559265, 0.02454238384962082, 0.010802234522998333, 0.018413633108139038, 0.015165429562330246, -0.04214783385396004, 0.023758461698889732, 0.08793947100639343, 0.014897365123033524, 0.06256231665611267, 0.009493771009147167, 0.045664433389902115, 0.0949665755033493, -0.037116337567567825, -0.006131911650300026, -0.062436558306217194, 0.01648482121527195, -0.06993750482797623, 0.059145476669073105, 0.07885705679655075, 0.04233119264245033, 0.041296571493148804, 0.05076220631599426, -0.050635915249586105, -0.02481841668486595, 0.12800806760787964, -0.07053393870592117, -0.06648160517215729, 0.009338721632957458, -0.06237923353910446, 0.06586401164531708, 0.04159019514918327, 0.011506807990372181, 0.07611039280891418, 0.10463711619377136, 0.06155354529619217, 0.07980967313051224, -0.0625850036740303, -0.010600192472338676, 0.044576261192560196, -0.16454552114009857, 0.045928046107292175, -0.07359691709280014, -0.04187421873211861, -0.0044807977974414825, -0.006147046573460102, 0.06804023683071136, 0.08177798241376877, -0.054213106632232666, 0.037548113614320755, 0.06821264326572418, -0.007693186402320862, -0.03328680247068405, 0.047946035861968994, -0.04577689990401268, 0.05555802956223488, 0.07450249046087265, 0.011137071996927261, -0.12824562191963196, 0.09833000600337982, 0.09909126162528992, -0.004370478913187981, 0.05879339575767517, 0.0846068486571312, -0.021845942363142967, -0.026313085108995438, -0.07501478493213654, 0.09654151648283005, -0.08121126890182495, 0.08102403581142426, 0.01802206225693226, -0.0706179067492485, -0.05982071906328201, 0.03683801367878914, -0.031930677592754364, 0.06019744277000427, -0.027741793543100357, -0.008661417290568352, -0.13592368364334106, -0.09235632419586182, -0.002313047181814909, 0.053152184933423996, 0.04516146332025528, -0.03528936207294464, -0.0075800493359565735, -0.10137314349412918, -0.07018059492111206, 0.015403103083372116, -0.062247224152088165, 0.060825444757938385, -0.03635983541607857, 0.07058756053447723, 0.03256431221961975, -0.06024771183729172, 0.11681672930717468, 0.13819363713264465, 0.07614898681640625, -0.057700902223587036, -0.06451189517974854, -0.10575025528669357, 0.05749116837978363, -0.034264858812093735, -0.027040444314479828, 0.05923914909362793, 0.028711942955851555, -0.14979279041290283, 0.005059998016804457], "\u5f53\u524d\u5728\u4e91\u4e0aMindSpore\u7684\u8bad\u7ec3\u548c\u63a8\u7406\u529f\u80fd\u662f\u6bd4\u8f83\u5b8c\u5907\u7684\uff0c\u81f3\u4e8e\u8fb9\u7aef\u573a\u666f\uff08\u5c24\u5176\u662f\u7ec8\u7aef\u8bbe\u5907\uff09MindSpore\u6709\u4ec0\u4e48\u8ba1\u5212\uff1f": [-0.04268170893192291, 0.05376157537102699, 0.0013677269453182817, 0.017561983317136765, -0.08083760738372803, -0.023310884833335876, -0.0010564286494627595, 0.054134663194417953, -0.023270372301340103, 0.07250801473855972, 0.010838495567440987, -0.008883879519999027, 0.02569965459406376, 0.04312431067228317, -0.0617549866437912, 0.09144612401723862, 0.14815527200698853, 0.026793234050273895, -0.03652435541152954, 0.059839460998773575, 0.020949117839336395, -0.030074506998062134, 0.054586391896009445, -0.03182751685380936, 0.01678311824798584, 0.11320029199123383, -0.038810618221759796, 0.018446214497089386, 0.023189518600702286, 0.04271978139877319, 0.061441704630851746, 0.050766609609127045, -0.09453926235437393, 0.0015580306062474847, -0.032484281808137894, -0.09130269289016724, -0.05645725876092911, 0.06743697822093964, -0.024821322411298752, -0.052898794412612915, 0.10648639500141144, 0.008661475032567978, -0.03764998912811279, 0.10800047218799591, -0.040887873619794846, -0.05378393456339836, -0.14812543988227844, -0.012590600177645683, 0.005819720681756735, -0.02208983153104782, -0.0749954804778099, 0.07115216553211212, 0.00757557200267911, -0.02801719307899475, -0.0016383142210543156, -0.012299656867980957, 0.01836240291595459, -0.0008951236959546804, 0.02412543073296547, -0.08904415369033813, 0.0003096992149949074, 0.02211005426943302, -0.06467460840940475, -0.05164352059364319, -0.10618503391742706, -0.018640166148543358, -0.03974797576665878, -0.09913107752799988, -0.047269076108932495, 0.032342299818992615, -0.07319864630699158, 0.003818294033408165, -0.020898975431919098, 0.09488211572170258, 0.05190829560160637, 0.04359646886587143, -0.005651484709233046, 0.018730882555246353, -0.0547904446721077, 0.005657601170241833, 0.05110383778810501, 0.06440921127796173, 0.02457221783697605, -0.05418921262025833, -0.06958924978971481, 0.002608576323837042, -0.04989161714911461, 0.08371170610189438, -0.0274635199457407, 0.08226069808006287, 0.020709289237856865, 0.018754368647933006, -0.12997782230377197, 0.030121494084596634, 0.05390649288892746, -0.022382700815796852, -0.05806316062808037, -0.022494841367006302, -0.14877107739448547, -0.0010922742076218128, 0.013269374147057533, 0.03111308626830578, -0.04429946094751358, 0.07314331829547882, 0.044866081327199936, -0.10304435342550278, 0.052655626088380814, 0.01848592422902584, 0.06149490177631378, 0.017894377931952477, 0.05546935275197029, -0.011978494934737682, 0.09821079671382904, -0.0011353432200849056, -0.00923311710357666, 0.02048773132264614, -0.07034405320882797, 0.038731515407562256, -0.04183591529726982, 0.11137919872999191, 0.08046115189790726, -0.0661805123090744, 0.01141180470585823, 0.02148347534239292, -0.008306839503347874, -0.038831330835819244, 0.06321854889392853, -0.13478611409664154, -0.09607303887605667, -0.0881965160369873, 0.16118595004081726, -0.07072903960943222, 0.09888465702533722, -0.10416069626808167, -0.12213415652513504, 0.07543382048606873, 0.015879692509770393, 0.027360955253243446, -0.00348830409348011, 0.10163868963718414, 0.019294459372758865, -0.10585226863622665, 0.10041852295398712, -0.046040162444114685, 0.08725191652774811, 0.04706436023116112, -0.08642373979091644, -0.1226842850446701, -0.01594378426671028, -0.06613446027040482, 0.02025199867784977, -0.0343971773982048, -0.03472428396344185, 0.07101396471261978, 0.03540894389152527, 0.06794779747724533, 0.020164091140031815, -0.029049256816506386, 0.014221355319023132, -0.02557716891169548, -0.03467337787151337, -0.005750840529799461, 0.047415658831596375, -0.014936389401555061, -0.03050869330763817, -0.03066966123878956, 0.035998761653900146, -0.03883302956819534, -0.05868963152170181, -0.00827429536730051, -0.005419297143816948, -0.0006873680977150798, -0.06060829386115074, 0.01302757766097784, 0.04771098122000694, -0.05506570637226105, 0.09335547685623169, -0.08876945078372955, -0.0004102494567632675, -0.016174200922250748, 0.05140841752290726, -0.0801323801279068, -0.01801072433590889, -0.08035210520029068, 0.0329611673951149, 0.03582872822880745, 0.12037944048643112, 0.04739893600344658, 0.12883834540843964, -0.09541302919387817, -0.00358178885653615, 0.05596792697906494, -0.018403708934783936, 0.06937208026647568, 0.01939580775797367, 0.032111842185258865, -0.07217976450920105, -0.016324738040566444, -0.00787662435323, -0.041842490434646606, -0.005995976738631725, 0.040640123188495636, 0.06119191646575928, 0.028272463008761406, 0.000766115088481456, 0.02579202502965927, -0.10167106240987778, -0.051770418882369995, 0.018758635967969894, -0.019466493278741837, 0.09222730249166489, 0.03471625968813896, -0.010170239955186844, -0.07121012359857559, -0.113863006234169, 0.019468683749437332, 0.08675004541873932, 0.04950616881251335, 0.051923103630542755, -0.05201536789536476, 0.005738003645092249, 0.016863636672496796, 0.02900690585374832, -0.07914949953556061, -0.0989624634385109, -0.01725943014025688, -0.06203092634677887, -0.08458735048770905, -0.005307803396135569, 0.04816432297229767, -0.03011113777756691, 0.05536884069442749, 0.051719099283218384, 0.11975095421075821, -0.027840683236718178, 0.1190524473786354, -0.01891474798321724, -0.04019579663872719, 0.043694399297237396, 0.031226009130477905, -0.12011292576789856, 0.07067469507455826, -0.05324634537100792, -0.025389034301042557, -0.02016710489988327, 0.1477455347776413, 0.06118452548980713, 0.04282279685139656, 0.022453101351857185, -0.01710391789674759, 0.060422979295253754, 0.019232207909226418, -0.0753680095076561, 0.0826849639415741, -0.028345026075839996, 0.09704277664422989, 0.08192269504070282, -0.0219014473259449, -0.007237129379063845, 0.07336749136447906, 0.018170394003391266, 0.02699509635567665, -0.07178812474012375, -0.02389010600745678, -0.0675409585237503, -0.021858131512999535, 0.0977209210395813, -0.005977289285510778, 0.011587805114686489, -0.09449557960033417, 0.06333643198013306, 0.01903347484767437, -0.0810399204492569, 0.057501595467329025, 0.12618550658226013, 0.04952971637248993, 0.017327003180980682, -0.19222216308116913, 0.01342489942908287, 0.034333836287260056, -0.01868399605154991, -0.0010987590067088604, -0.011810338124632835, 0.012290166690945625, 0.09854239970445633, 0.0075060282833874226, 0.03641033172607422, 0.005114416591823101, 0.054293759167194366, 0.10773684084415436, -0.05432901903986931, 0.034059084951877594, -0.06384484469890594, 0.02854083850979805, -0.05186443030834198, 0.07917149364948273, 0.06619485467672348, 0.04744595289230347, 0.052775248885154724, 0.06841431558132172, -0.017094172537326813, -0.03160768002271652, 0.08176729828119278, -0.0721094012260437, -0.00410770159214735, 0.014063064008951187, -0.05985434725880623, 0.11516885459423065, -0.015647534281015396, 0.06705288589000702, 0.06792210787534714, 0.10219966620206833, 0.05632893368601799, 0.06242067739367485, -0.0949259027838707, -0.05941120907664299, 0.03806044161319733, -0.15538403391838074, 0.03198458254337311, -0.07924557477235794, -0.019026776775717735, -0.02764112316071987, -0.012400014325976372, 0.07010910660028458, 0.06436885893344879, -0.04449959844350815, 0.02727779746055603, 0.08405771106481552, 0.007241401821374893, -0.075126051902771, 0.007671451661735773, -0.056944116950035095, 0.07890370488166809, 0.08647388219833374, -0.006429617293179035, -0.11293740570545197, 0.11850855499505997, 0.09993696212768555, -0.028674103319644928, 0.06141068786382675, 0.08475705981254578, -0.0476590059697628, -0.018411384895443916, -0.061413250863552094, 0.07108572125434875, -0.10937818884849548, 0.08356913179159164, -0.00673330295830965, -0.0405878908932209, -0.05763205885887146, 0.04051239416003227, -0.03300785273313522, 0.03660213574767113, -0.04406213015317917, -0.03362518176436424, -0.16065143048763275, -0.08380649238824844, -0.01954641006886959, 0.012008337303996086, 0.02149563655257225, -0.06027349829673767, -0.03407624363899231, -0.07867388427257538, -0.04761745035648346, 0.031853921711444855, -0.04718386381864548, 0.09181515872478485, -0.06082451716065407, 0.10368458926677704, -0.01380854845046997, -0.06260038167238235, 0.07114606350660324, 0.10175999999046326, 0.033912673592567444, -0.06857458502054214, -0.07679428160190582, -0.11596260964870453, 0.07295722514390945, -0.006387378089129925, -0.04334814101457596, 0.06285975128412247, 0.0274516548961401, -0.12374962121248245, 0.04623677209019661], "MindSpore\u81ea\u52a8\u5e76\u884c\u652f\u6301\u60c5\u51b5\u5982\u4f55\uff1f": [-0.015325501561164856, 0.08998437970876694, 0.017208287492394447, -0.035151802003383636, -0.0692126601934433, -0.019693486392498016, -0.030300328508019447, 0.04622787609696388, 0.007777800317853689, 0.06526374071836472, -0.016866013407707214, -0.02105225995182991, 0.06484853476285934, 0.0445503331720829, -0.05758889764547348, 0.07985976338386536, 0.08497995138168335, 0.04848198965191841, -0.061309438198804855, 0.022653231397271156, -0.02039911597967148, -0.028841953724622726, 0.1094176396727562, 0.017914894968271255, 0.054425839334726334, 0.10634828358888626, -0.043036531656980515, 0.010965355671942234, -0.038591381162405014, 0.08254726231098175, 0.04545862600207329, 0.056177228689193726, -0.07721055299043655, 0.01747179590165615, -0.0546397939324379, -0.03870486840605736, -0.0530935600399971, 0.052372537553310394, -0.02634219080209732, -0.054233670234680176, 0.03215005621314049, 0.03456961736083031, 0.0004934444441460073, 0.1075049340724945, -0.005794158671051264, -0.02183527871966362, -0.18629007041454315, 0.0768609568476677, 0.03016052395105362, 0.01221935823559761, -0.11349570751190186, 0.0698981061577797, 0.05241982266306877, -0.017997656017541885, -0.011612258851528168, -0.012091209180653095, 0.006179343443363905, 0.06352423131465912, 0.037221673876047134, -0.1023319885134697, 0.008926675654947758, 0.03540787473320961, -0.0516832210123539, -0.04748624190688133, -0.13057935237884521, 0.009210333228111267, -0.0736265555024147, -0.09762585908174515, -0.01560528390109539, 0.0571601577103138, -0.05323290079832077, -0.02118079923093319, -0.024551859125494957, 0.03566529601812363, 0.06401526182889938, 0.0011265366338193417, -0.044730376452207565, 0.03741840273141861, -0.08951102942228317, 0.03777042031288147, 0.028977010399103165, 0.08902892470359802, 0.013804251328110695, -0.06847228854894638, -0.041985202580690384, -0.014004671014845371, -0.044674232602119446, 0.09663525223731995, -0.047850463539361954, 0.08953243494033813, -0.02600374072790146, -0.0021360539831221104, -0.1719566136598587, 0.037300821393728256, 0.05657171830534935, 0.006624563597142696, -0.025141963735222816, -0.05442587286233902, -0.14358538389205933, -0.044892676174640656, -0.015838634222745895, -0.00366452569141984, -0.02688676118850708, 0.06005234271287918, 0.01961466856300831, -0.09413912147283554, 0.06239611655473709, 0.006191006861627102, 0.09072180092334747, 0.03277499973773956, 0.08742792904376984, 0.027844203636050224, 0.1275937706232071, -0.008397350087761879, 0.07133344560861588, -0.00518660806119442, -0.07842496037483215, -0.055882662534713745, -0.052333295345306396, 0.12453246116638184, 0.11471803486347198, -0.007049604784697294, 0.016719607636332512, 0.06440254300832748, 0.05818256735801697, 0.002986535895615816, 0.06220843270421028, -0.10224216431379318, -0.09471520781517029, -0.06539445370435715, 0.17888425290584564, -0.07174825668334961, 0.0891135036945343, -0.08448866009712219, -0.08865192532539368, 0.05336922034621239, 0.000315861776471138, 0.025118859484791756, -0.051425665616989136, 0.10383008420467377, 0.008771786466240883, -0.15448711812496185, 0.09239750355482101, -0.06582974642515182, 0.08993196487426758, 0.04960949346423149, -0.04113221913576126, -0.11973638832569122, -0.022031869739294052, -0.07167960703372955, 0.09452079236507416, -0.01171450037509203, -0.06786921620368958, 0.07617870718240738, -0.026082318276166916, 0.07713622599840164, -0.011041048914194107, -0.012642727233469486, -0.029983706772327423, -0.029338110238313675, -0.015152319334447384, -0.02977570705115795, 0.032825760543346405, -0.0042570424266159534, -0.05089365690946579, 0.00834597647190094, 0.03467361256480217, -0.02149825170636177, -0.024318993091583252, -0.04316180944442749, -0.023306604474782944, -0.02841302566230297, -0.08439302444458008, 0.017831208184361458, 0.03018108569085598, -0.01690520904958248, 0.07065414637327194, -0.08774469792842865, 0.016459044069051743, -0.05379926413297653, 0.043245524168014526, -0.08024892210960388, -0.04637586325407028, -0.010707036592066288, 0.06247479468584061, 0.0007387002697214484, 0.06674524396657944, 0.020101398229599, 0.13835737109184265, -0.159324511885643, -0.033431194722652435, 0.015093536116182804, 0.01920768991112709, 0.06431189179420471, 0.052193596959114075, 0.04538722336292267, -0.07092423737049103, -0.034218236804008484, 0.02713005803525448, -0.0016267471946775913, -0.059798404574394226, 0.003466363064944744, -0.02309606224298477, 0.02167464978992939, -0.04964623227715492, 0.022080248221755028, -0.06652137637138367, -0.06023680046200752, -0.02361059933900833, -0.0456906333565712, 0.12013699859380722, 0.02128627896308899, 0.007976269349455833, -0.09144427627325058, -0.11746971309185028, -0.03986870124936104, 0.08048579096794128, 0.07345878332853317, 0.0095951147377491, -0.038750745356082916, -0.00819008331745863, 0.005020380951464176, 0.003659809473901987, -0.08673202246427536, -0.1852433681488037, -0.01212851982563734, -0.03967961668968201, -0.14662456512451172, -0.029427582398056984, 0.07838428020477295, -0.04499959200620651, 0.06878828257322311, -2.798810601234436e-05, 0.13355901837348938, -0.02667853608727455, 0.11141717433929443, -0.0076230610720813274, -0.004970227368175983, 0.027287118136882782, 0.02259007841348648, -0.12407374382019043, 0.05207981914281845, -0.08403567224740982, -0.04745734483003616, -0.07718353718519211, 0.11365275084972382, 0.09735963493585587, 0.015166099183261395, 0.03212689608335495, -0.034458011388778687, 0.057704754173755646, 0.0017125916201621294, -0.0632004588842392, 0.07794240862131119, -0.04860435798764229, 0.027727250009775162, 0.044577665627002716, -0.03443099558353424, 0.03087754175066948, 0.07166637480258942, -0.006132123526185751, 0.04898231849074364, -0.07314053177833557, -0.013316824100911617, -0.0429154634475708, -0.015474533662199974, 0.07897869497537613, -0.06810952723026276, 0.023311477154493332, -0.12282373756170273, -0.0031847269274294376, 0.03449498862028122, -0.09069675207138062, 0.07813321053981781, 0.12243112921714783, 0.10730316489934921, 0.006745286285877228, -0.14579306542873383, 0.02549619972705841, 0.06434186547994614, -0.02405727654695511, 0.010653450153768063, 0.0008798965718597174, 0.034757137298583984, 0.041943833231925964, -0.0026000828947871923, 0.035400550812482834, 0.020641369745135307, 0.05646579712629318, 0.1191103383898735, -0.0520201176404953, -0.013773464597761631, -0.08010107278823853, 0.05731760710477829, -0.0332813523709774, 0.04534904286265373, 0.03108648769557476, 0.021903349086642265, 0.07038556039333344, 0.05952073633670807, -0.03469026833772659, -0.009429879486560822, 0.10611575841903687, -0.08724325895309448, -0.024930715560913086, 0.026004116982221603, -0.09317951649427414, 0.10948344320058823, 0.01334118377417326, 0.02919665351510048, 0.09427789598703384, 0.10100764036178589, 0.0373443141579628, 0.10097631812095642, -0.106634721159935, -0.03448564186692238, 0.06259384751319885, -0.1445840746164322, 0.05742942914366722, -0.08472110331058502, 0.0410054549574852, -0.05337725579738617, 0.007630028761923313, 0.0927216187119484, 0.06414578855037689, -0.10524199157953262, 0.013782701455056667, 0.051960621029138565, 0.024153973907232285, -0.08102595806121826, 0.041225723922252655, -0.0592409186065197, 0.029110608622431755, 0.018083874136209488, 0.009083539247512817, -0.11755047738552094, 0.04427410289645195, 0.09931141883134842, 0.030174747109413147, 0.07414598017930984, 0.08847329020500183, -0.06750868260860443, -0.013447439298033714, -0.09591098129749298, 0.0858081728219986, -0.08048282563686371, 0.07566887885332108, -0.0007547884015366435, -0.06519916653633118, -0.1096368134021759, 0.03698865324258804, -0.029470786452293396, 0.05018552392721176, -0.046388596296310425, 0.010574216023087502, -0.1567266285419464, -0.11518563330173492, -0.029680145904421806, 0.0059652309864759445, 0.03284035623073578, -0.046234287321567535, 0.019466347992420197, -0.05572650581598282, -0.06782922893762589, 0.017647666856646538, -0.09336401522159576, 0.04948898404836655, -0.052180539816617966, 0.06744476407766342, 0.0069463131949305534, -0.08371365070343018, 0.13068024814128876, 0.07386073470115662, 0.08482635766267776, -0.09112135320901871, -0.13006998598575592, -0.0970231220126152, 0.055828921496868134, 0.006840005051344633, -0.1136971041560173, 0.031730204820632935, -0.007695886306464672, -0.16514180600643158, 0.06685866415500641], "MindSpore\u6709\u6ca1\u6709\u7c7b\u4f3c\u57fa\u4e8eTensorFlow\u5b9e\u73b0\u7684\u5bf9\u8c61\u68c0\u6d4b\u7b97\u6cd5\u7684\u6a21\u5757\uff1f": [-0.04947652295231819, -0.014415169134736061, -0.02943495288491249, -0.00880963820964098, -0.028699299320578575, -0.04248761385679245, 0.05181637778878212, 0.038881778717041016, -0.045245375484228134, 0.008067037910223007, -0.026690930128097534, -0.040608420968055725, -0.01917724311351776, 0.02276759408414364, -0.012252839282155037, 0.04746336489915848, 0.11494694650173187, 0.0031561485957354307, -0.08633439242839813, 0.08802570402622223, 0.0064262645319104195, 0.010654817335307598, 0.03721226379275322, -0.02909098006784916, 0.05290166288614273, 0.1188679188489914, -0.004727514460682869, 0.020155537873506546, 0.02149960957467556, 0.08598682284355164, 0.015150188468396664, 0.02255336195230484, -0.07124358415603638, 0.04737655818462372, -0.005172183271497488, -0.03632214292883873, -0.10433260351419449, 0.08401413261890411, -0.03177300840616226, -0.05278630182147026, 0.01873655430972576, 0.0018898375565186143, -0.06819924712181091, 0.09662045538425446, -0.01850554160773754, -0.059950679540634155, -0.084570974111557, -0.015092069283127785, 0.040607571601867676, 0.030671659857034683, -0.14784258604049683, 0.06251915544271469, -0.021522363647818565, -0.057725634425878525, -0.047123659402132034, -0.038361188024282455, -0.017059940844774246, -0.0024385068099945784, 0.05220828205347061, -0.028344186022877693, 0.0312512069940567, 0.06077985465526581, -0.07771240174770355, -0.031575512140989304, -0.1292094588279724, 0.0004591569013427943, 0.04340881481766701, -0.030984479933977127, -0.04543908312916756, -0.0411687046289444, -0.04742308706045151, -0.03799717500805855, -0.00545884296298027, 0.08406316488981247, 0.07129986584186554, 0.08947780728340149, 0.0010677571408450603, 0.0729140043258667, -0.10255452245473862, -0.008760414086282253, 0.045433223247528076, 0.08003644645214081, 0.07688950002193451, -0.04584343358874321, -0.06883356720209122, -0.01539645902812481, -0.04753526300191879, 0.03563644737005234, -0.025139780715107918, 0.0818571150302887, 0.04601893946528435, -0.038344915956258774, -0.1464807391166687, 0.06333722919225693, 0.07244797796010971, -0.005856629461050034, -0.03892739862203598, -0.02126397006213665, -0.14178186655044556, -0.021985769271850586, -0.010614350438117981, 0.005216904915869236, -0.037069711834192276, 0.08477597683668137, 0.026842210441827774, -0.048243340104818344, 0.010807648301124573, 0.05131956934928894, 0.017618989571928978, -0.008208602666854858, 0.006756927352398634, 0.029865235090255737, 0.08131010830402374, 0.043423064053058624, -0.0039923107251524925, 0.05442822724580765, -0.042351916432380676, -0.045160453766584396, -0.048126526176929474, 0.08036158233880997, 0.11314795911312103, -0.08651647716760635, 0.02465241774916649, 0.032700587064027786, 0.084470234811306, -0.030873943120241165, 0.03444349765777588, -0.08236585557460785, -0.05357787013053894, -0.04263019561767578, 0.15049920976161957, -0.08710616081953049, 0.06894814968109131, -0.09578072279691696, -0.13596470654010773, 0.06590072810649872, -0.04939042031764984, -0.024951176717877388, -0.0644490048289299, 0.08571883291006088, 0.055569276213645935, -0.08838826417922974, 0.08437662571668625, -0.0928061455488205, 0.1121213436126709, -0.01597711630165577, -0.09595158696174622, -0.11161533743143082, -0.00939649436622858, -0.10796243697404861, 0.08387504518032074, -0.026914848014712334, -0.022817198187112808, 0.1071774959564209, -0.06030793488025665, 0.022480353713035583, 0.006343184504657984, -0.011459188535809517, -0.004168437793850899, -0.0030086154583841562, -0.03510405123233795, -0.04655470699071884, 0.020673353224992752, -0.017536872997879982, -0.015766585245728493, 0.01825840398669243, 0.06400774419307709, -0.00805563572794199, -0.06234297156333923, -0.08434265851974487, 0.003576760645955801, 0.01715189963579178, -0.025500047951936722, -0.010786225087940693, 0.049288976937532425, -0.040177252143621445, 0.012665549293160439, -0.06013704091310501, 0.02568582072854042, -0.024964848533272743, 0.07154986262321472, -0.1257478892803192, -0.06813584268093109, -0.11488175392150879, 0.03480803966522217, 0.030236221849918365, 0.08406242728233337, 0.005433368496596813, 0.13691091537475586, -0.13034410774707794, 0.01786763407289982, 0.08118142187595367, 0.01301190722733736, 0.043737173080444336, 0.06496873497962952, -0.023127850145101547, -0.12758468091487885, 0.010834326036274433, 0.06835194677114487, 0.011755120940506458, -0.03321382403373718, 0.01062025222927332, 0.04297414422035217, 0.04234454035758972, -0.021507490426301956, -0.0355631522834301, -0.11451633274555206, -0.08643978834152222, -0.052013687789440155, -0.01795700006186962, 0.10532601177692413, 0.025817180052399635, -0.016918091103434563, -0.07255228608846664, -0.11063951253890991, 0.023870421573519707, 0.07877257466316223, 0.05644642561674118, 0.018900185823440552, -0.013582899235188961, 0.04443197697401047, 0.017633400857448578, -0.004592647310346365, -0.10812019556760788, -0.07438974827528, -0.016416657716035843, -0.03429315611720085, -0.06709595769643784, 0.04119470715522766, 0.04588579386472702, -0.02438482642173767, 0.10821708291769028, 0.014835300855338573, 0.08950904756784439, -0.06467275321483612, 0.0837889239192009, -0.04890907555818558, 0.027804218232631683, 0.0617917999625206, 0.04671326279640198, -0.1354818046092987, 0.08324804157018661, -0.026378968730568886, 0.048894383013248444, -0.07729334384202957, 0.10253022611141205, 0.09269066900014877, 0.02475067414343357, 0.040687963366508484, -0.08277355134487152, 0.057312943041324615, 0.01694217137992382, -0.07190346717834473, 0.061196405440568924, -0.036001622676849365, 0.034976083785295486, 0.06222902610898018, -0.04558604955673218, 0.05154978856444359, 0.08887697011232376, 0.019634287804365158, 0.06505589187145233, -0.07864964008331299, 0.0027474318630993366, -0.05550094693899155, 0.03699176385998726, 0.08583873510360718, -0.06905215978622437, 0.007683058734983206, -0.0757228434085846, 0.028059888631105423, -0.012798942625522614, -0.0923268049955368, 0.0524124875664711, 0.08370949327945709, 0.04798390343785286, 0.056031014770269394, -0.15716928243637085, 0.044102683663368225, 0.01698765531182289, 0.01923476532101631, 0.026694998145103455, 0.016190342605113983, -0.008406303822994232, 0.09430359303951263, -0.02552119828760624, 0.035327449440956116, -0.004423714242875576, 0.0518295019865036, 0.04972974956035614, -0.03916729614138603, 0.0004083968233317137, -0.06775423884391785, -0.02758069336414337, -0.017727890983223915, 0.10549622029066086, 0.05463378131389618, 0.04907981678843498, 0.03479383885860443, 0.043736085295677185, 0.020625989884138107, -0.04434780776500702, 0.054280899465084076, -0.08564619719982147, -0.087184377014637, -0.014806050807237625, -0.07748014479875565, 0.05377780273556709, -0.009295127354562283, -0.008707494474947453, 0.05303977429866791, 0.06205791234970093, 0.01724003069102764, 0.062275100499391556, -0.08420754969120026, -0.03172485902905464, 0.11248406022787094, -0.12157756835222244, 0.047582898288965225, -0.06635711342096329, -0.049086131155490875, -0.020459821447730064, -0.011549754068255424, 0.08103767782449722, 0.07624779641628265, -0.05137117952108383, -0.025198936462402344, 0.05915169417858124, -0.005472333636134863, -0.02133568376302719, 0.03491026535630226, -0.05929316580295563, 0.06864247471094131, 0.0742657482624054, -0.01766272634267807, -0.15670648217201233, 0.10582301020622253, 0.07208450883626938, -0.050371818244457245, 0.0830143466591835, 0.07976417243480682, -0.07718705385923386, 0.003041910007596016, -0.07256397604942322, 0.10304255038499832, -0.11108244210481644, 0.09391434490680695, -0.002990195993334055, -0.07106565684080124, -0.030225392431020737, 0.06863763928413391, -0.05422123149037361, 0.0561625175178051, -0.028885938227176666, -0.07470008730888367, -0.12194165587425232, -0.04380251094698906, 0.016979817301034927, 0.041268449276685715, -0.024146482348442078, -0.03233960270881653, -0.05435623973608017, -0.07283414155244827, -0.027915986254811287, 0.03160431981086731, -0.049181677401065826, 0.08177249878644943, -0.03774726763367653, 0.06322426348924637, 0.0016559440409764647, -0.08185700327157974, 0.0756087452173233, 0.08030261099338531, 0.07032179832458496, -0.06259559839963913, -0.08579647541046143, -0.10435614734888077, 0.04859475418925285, -0.02532540261745453, -0.05186881870031357, -0.01394997164607048, 0.0345173254609108, -0.1484147608280182, 0.0407625213265419], "\u4f7f\u7528PyNative\u6a21\u5f0f\u80fd\u591f\u8fdb\u884c\u8fc1\u79fb\u5b66\u4e60\uff1f": [0.0066431863233447075, 0.07047733664512634, 0.013431147672235966, 0.0715629979968071, -0.08985607326030731, -0.029947834089398384, 0.03882759436964989, 0.07563240081071854, -0.03426249325275421, 0.017355196177959442, 0.03448067978024483, 0.03193052485585213, 0.07836615294218063, -0.0178510919213295, -0.08610888570547104, 0.08743764460086823, 0.07681671530008316, 0.0013088223058730364, -0.07445651292800903, 0.08249092102050781, 0.003681995440274477, -0.021115755662322044, 0.0785142332315445, 0.045395467430353165, 0.04521791264414787, 0.11258438229560852, 0.006837205495685339, -0.03764868155121803, -0.0014057820662856102, 0.08185310661792755, 0.06492828577756882, 0.03943754732608795, -0.15215162932872772, 0.034629154950380325, -0.026206325739622116, -0.06303834170103073, -0.06270930916070938, 0.06182590126991272, -0.05714025720953941, 0.03411000594496727, 0.011219142004847527, -0.011307019740343094, -0.059051088988780975, 0.12520556151866913, 0.014040229842066765, 0.020037218928337097, -0.10701162368059158, 0.025260955095291138, 0.026801297441124916, -0.0051071373745799065, -0.08046814799308777, 0.06545304507017136, 0.06292171776294708, 0.016507940366864204, -0.017526619136333466, -0.007001208141446114, 0.058736156672239304, 0.07737482339143753, -0.003125247545540333, 0.01598035730421543, 0.052163686603307724, -0.06319256126880646, -0.04857508838176727, 0.022327207028865814, -0.09048611670732498, 0.016193373128771782, -0.039274662733078, -0.1335936188697815, 0.0035238382406532764, 0.007672267034649849, -0.05239230394363403, 0.015389491803944111, -0.0204567052423954, 0.05416259169578552, 0.034150466322898865, 0.03766482695937157, 0.004659201949834824, 0.05719216540455818, -0.11015833169221878, 0.004948437679558992, 0.01132249366492033, 0.0673738494515419, 0.04650682955980301, -0.115423284471035, -0.042374081909656525, -0.03493358567357063, -0.06776469945907593, 0.10167646408081055, -0.07523384690284729, 0.05293142423033714, -0.035298507660627365, -0.06697776168584824, -0.11254105716943741, 0.028127336874604225, 0.11987873166799545, -0.04653894901275635, 0.01644926890730858, -0.020012857392430305, -0.1616065502166748, -0.039948970079422, 0.05770988389849663, 0.02021174505352974, 0.07107390463352203, 0.02009311318397522, 0.018060047179460526, -0.07222013920545578, 0.03235594555735588, 0.07467351853847504, -0.007508580107241869, -0.0015146348159760237, 0.06079195439815521, 0.005605202168226242, 0.06513610482215881, 0.041394706815481186, 0.047203220427036285, -0.050703264772892, 0.002120222430676222, -0.1170613020658493, -0.059793733060359955, 0.08921799808740616, 0.11843099445104599, -0.0080608781427145, 0.08532983064651489, 0.006160796154290438, 0.0384051576256752, 0.012679198756814003, 0.05156328156590462, -0.11530403047800064, -0.10354989022016525, -0.028545496985316277, 0.14708846807479858, -0.06942447274923325, 0.026942053809762, -0.04097176343202591, -0.1291334629058838, 0.08305908739566803, -0.06713620573282242, -0.013520234264433384, -0.06281585246324539, 0.08584862947463989, 0.05845727026462555, -0.1398855298757553, 0.02082120254635811, -0.07376181334257126, 0.08322227001190186, 0.02936619706451893, -0.0980081856250763, -0.10265415906906128, -0.009367184713482857, -0.0808173343539238, 0.10679101198911667, 0.0086140101775527, -0.018313324078917503, 0.08752556890249252, -0.03863329812884331, 0.023608317598700523, 0.04527115821838379, -0.004281326197087765, -0.04395361244678497, -0.022984838113188744, -0.04692734405398369, -0.0402073934674263, 0.021823618561029434, -0.0609976127743721, -0.06965810060501099, 0.0987568199634552, 0.04124030843377113, -0.018538840115070343, -0.008020619861781597, -0.05137776583433151, 0.026765387505292892, 0.018264630809426308, -0.03744208812713623, -0.06108866631984711, 0.05491111800074577, 0.07164332270622253, 0.06449221074581146, -0.05724719166755676, 0.01810298301279545, -0.0005544423474930227, 0.09170913696289062, -0.13427256047725677, -0.0815669596195221, -0.059473518282175064, 0.0777076780796051, 0.015889976173639297, 0.0801282674074173, 0.01507644634693861, 0.11571751534938812, -0.108375683426857, 0.036006029695272446, 0.011525426059961319, -0.020240943878889084, 0.06855624914169312, 0.019323119893670082, -0.034815456718206406, -0.07802017033100128, -0.012124268338084221, 0.04503677412867546, -0.031401146203279495, 0.04810972511768341, -0.004385581240057945, -0.0060296873562037945, 0.04813365638256073, -0.030036717653274536, -0.02141157165169716, -0.05170290917158127, -0.11913206428289413, -0.015532415360212326, -0.010555860586464405, 0.11914321780204773, 0.07054674625396729, -0.016500115394592285, -0.06610012799501419, -0.11998865753412247, -0.02975955232977867, 0.03721143677830696, 0.11337416619062424, 0.09361431002616882, 0.010949835181236267, -0.024623563513159752, 0.05177653580904007, -0.0061623938381671906, -0.12456908077001572, -0.10928934067487717, -0.003662539180368185, -0.043991103768348694, -0.1343068778514862, 0.0045044939033687115, -0.005706965457648039, -0.04639555141329765, 0.10566915571689606, 0.014881275594234467, 0.07412297278642654, -0.08708310127258301, 0.030491814017295837, -0.038135167211294174, 0.0348971001803875, 0.031649861484766006, 0.06855300813913345, -0.13967132568359375, 0.11449252814054489, -0.11426582932472229, 0.03244500979781151, -0.11967099457979202, 0.09064823389053345, 0.07308339327573776, -0.014707456342875957, 0.06573048233985901, -0.06109839305281639, 0.042274054139852524, -0.04526355862617493, 0.07324514538049698, 0.05021097883582115, -0.029875479638576508, 0.09600885957479477, 0.0719861090183258, -0.0197828970849514, -0.030467357486486435, -0.007954396307468414, -0.014328117482364178, 0.016418084502220154, -0.0809047520160675, 0.02005818486213684, -0.0657799020409584, 0.012045768089592457, 0.09028750658035278, -0.09525924921035767, 0.021422045305371284, -0.053257282823324203, 0.027506446465849876, 0.04881018400192261, -0.08043672144412994, 0.048048727214336395, 0.11502236872911453, 0.043398693203926086, -0.0043698642402887344, -0.11708703637123108, 0.060187794268131256, 0.04006420448422432, 0.0015936815179884434, 0.08688711374998093, 0.06292164325714111, 0.029217729344964027, 0.029387373477220535, -0.06245296075940132, 0.08722561597824097, 0.04806699976325035, 0.06368936598300934, 0.08707930892705917, -0.008477354422211647, -0.05481254681944847, -0.07312118262052536, 0.018059762194752693, -0.033226050436496735, 0.08786573261022568, 0.03203314170241356, 0.05382831394672394, 0.07983472943305969, 0.05492991581559181, -0.04231882467865944, -0.02887926809489727, 0.07402943074703217, -0.0836440771818161, -0.030884191393852234, -0.03884657472372055, -0.10412703454494476, 0.00021922960877418518, -0.014890016987919807, -0.0018855273956432939, 0.03538227826356888, 0.08169107139110565, 0.0035940869711339474, 0.035906508564949036, -0.07169477641582489, -0.01780937798321247, 0.06285589188337326, -0.1157764345407486, 0.03412655368447304, -0.054759856313467026, -0.030919000506401062, -0.08101344853639603, 0.02752074785530567, 0.10213683545589447, 0.04910241812467575, -0.0639883354306221, 0.03618228808045387, 0.012640368193387985, -0.030878795310854912, -0.019755836576223373, 0.04581956937909126, 0.0016584958648309112, 0.04496508836746216, 0.034598253667354584, 0.07615787535905838, -0.12560679018497467, 0.10237107425928116, 0.08097320795059204, -0.03733455017209053, 0.04184640944004059, 0.051401156932115555, -0.08674293756484985, -0.05870725214481354, -0.13436047732830048, 0.09114018082618713, -0.08464229106903076, 0.07249023020267487, 0.060387302190065384, -0.019747436046600342, -0.021919628605246544, 0.019881872460246086, -0.0263673085719347, 0.05954056605696678, -0.04670318588614464, -0.052576929330825806, -0.0878850668668747, -0.06075924262404442, -0.018268395215272903, 0.049027860164642334, -0.018213197588920593, 0.012419751845300198, 0.00763592729344964, -0.036775488406419754, -0.05925123393535614, 0.0026569340843707323, -0.06949982047080994, 0.040401019155979156, 0.0012883462477475405, 0.07018464803695679, 0.01768917590379715, -0.09448029845952988, 0.1169687882065773, 0.11514802277088165, 0.05760611966252327, -0.0641261488199234, -0.025876525789499283, -0.1020696759223938, 0.04557590186595917, -0.010609209537506104, -0.09086793661117554, -0.009419403038918972, 0.027094019576907158, -0.05483464151620865, -0.02118673548102379], "MindSpore\u4ed3\u5e93\u4e2d\u7684[ModelZoo](https://gitee.com/mindspore/models/blob/master/README_CN.md#)\u548c\u6607\u817e\u5b98\u7f51\u7684[ModelZoo](https://www.hiascend.com/software/modelzoo)\u6709\u4ec0\u4e48\u5173\u7cfb\uff1f": [-0.036434464156627655, 0.03705384582281113, 0.04962360858917236, 0.04826708137989044, -0.03556762635707855, -0.038241948932409286, 0.013731511309742928, 0.10543888062238693, -0.07945528626441956, 0.043497517704963684, 0.029463963583111763, -0.016504185274243355, 0.013495146296918392, 0.015739552676677704, -0.027715079486370087, 0.11003484576940536, 0.12028423696756363, 0.015054377727210522, -0.03550465404987335, 0.056126855313777924, -0.03329760581254959, 0.029882214963436127, 0.006103134248405695, 0.020903712138533592, 0.023784847930073738, 0.10516628623008728, -0.003988625481724739, 0.04593077674508095, -0.009123489260673523, 0.012886157259345055, 0.054643336683511734, 0.07762601226568222, -0.13198143243789673, 0.027499981224536896, -0.044921353459358215, -0.054215412586927414, -0.000919439597055316, 0.04356696456670761, -0.060355812311172485, -0.04361627995967865, 0.05219515413045883, 0.020862460136413574, -0.01672382839024067, 0.08624394237995148, -0.08566747605800629, -0.025105630978941917, -0.08442308008670807, 0.012273617088794708, 0.0421593151986599, 0.05172343552112579, -0.10223253816366196, 0.08508182317018509, -0.023471783846616745, 0.015327881090342999, 0.0035042730160057545, 0.05471757426857948, 0.0269627682864666, -0.05381307005882263, 0.03485465794801712, 0.03055506944656372, -0.012707827612757683, 0.05200283229351044, -0.05742618441581726, 0.009644257836043835, -0.08508714288473129, -0.016828732565045357, -0.04525778070092201, -0.079533651471138, -0.034635625779628754, 0.02933095395565033, -0.07990323752164841, 0.005655336193740368, 0.025508876889944077, 0.04990122467279434, 0.07746828347444534, 0.08984743058681488, 0.029163913801312447, -0.015327772125601768, -0.03143186494708061, 0.03615932911634445, -0.02590380609035492, 0.07195771485567093, 0.04408338665962219, -0.06294538080692291, -0.01897868514060974, -0.017426008358597755, -0.004203872289508581, 0.06495761126279831, -0.008760734461247921, 0.05535559356212616, 0.03739006072282791, -0.049617305397987366, -0.13392814993858337, 0.047108929604291916, 0.114068403840065, -0.07305613160133362, -0.020721374079585075, -0.06666861474514008, -0.21426299214363098, -0.04103491082787514, 0.03282488137483597, 0.03606630861759186, -0.02602674812078476, 0.05320991203188896, -0.030383460223674774, -0.05614808574318886, 0.0038418916519731283, 0.03920697048306465, 0.0016005844809114933, -0.0007954442990012467, 0.0956960916519165, 0.03626052290201187, 0.04940297082066536, 0.0221649631857872, -0.014813411980867386, 0.024901119992136955, -0.036029621958732605, 0.011844852939248085, -0.08551105111837387, 0.1201155036687851, 0.11020976305007935, 0.023591842502355576, 0.022409707307815552, 0.05313676595687866, -0.01197202131152153, -0.05402815341949463, 0.08349018543958664, -0.14660866558551788, -0.06982369720935822, -0.025960426777601242, 0.14882409572601318, -0.07484567165374756, 0.11720774322748184, -0.07806309312582016, -0.10866299271583557, 0.11172851175069809, -0.029757380485534668, -0.03615972399711609, 0.008898882195353508, 0.14821839332580566, 0.061856500804424286, -0.07386207580566406, 0.023426402360200882, -0.010227822698652744, 0.10542286932468414, 0.03255200758576393, -0.05393771082162857, -0.13578711450099945, -0.032343439757823944, -0.03930983692407608, 0.07311800867319107, 0.002918650396168232, -0.014148296788334846, 0.06945274770259857, -0.04638136178255081, 0.04112903028726578, 0.027656229212880135, 0.011098871007561684, 0.02874806709587574, -0.06987953931093216, -0.01974930241703987, -0.02222638577222824, 0.08639482408761978, 0.007449958473443985, -0.0014832288725301623, -0.02171202003955841, -0.030824698507785797, -0.01010729931294918, -0.019782530143857002, 0.03621967136859894, -0.026412896811962128, 0.03249804675579071, -0.1025247722864151, -0.07545053958892822, 0.03320818021893501, 0.034095533192157745, 0.03324872627854347, -0.08002950251102448, -0.015412572771310806, -0.025985362008213997, 0.06275539845228195, -0.1422729790210724, -0.006801362615078688, -0.08913283795118332, 0.040729083120822906, -0.014319812878966331, 0.03292516618967056, 0.023985102772712708, 0.17980708181858063, -0.12627075612545013, -0.04201649874448776, 0.03950192779302597, -0.018740614876151085, 0.1304795742034912, -0.034702662378549576, -0.030052663758397102, -0.03662169724702835, -0.013420994393527508, 0.0161704383790493, -0.052613697946071625, 0.013999218121170998, 0.002582208951935172, -0.014246512204408646, 0.053830962628126144, 0.025632748380303383, -0.011523593217134476, -0.0818302184343338, -0.13932128250598907, -0.00783829391002655, 0.02754346653819084, 0.14469090104103088, 0.03562421351671219, -0.03479423001408577, 0.0007101901574060321, -0.14509080350399017, -0.0259918961673975, 0.0693272203207016, 0.05371569097042084, 0.022381167858839035, -0.013129178434610367, 0.009522425942122936, 0.009003103710711002, 0.05102693289518356, -0.10817055404186249, -0.1358954757452011, 0.03808382898569107, -0.009485040791332722, -0.08263736963272095, -0.05504567176103592, 0.07753539085388184, -0.058693770319223404, 0.10295795649290085, 0.03876444324851036, 0.1266057789325714, -0.054971612989902496, 0.07585817575454712, -0.031188640743494034, -0.02942190133035183, 0.06947831064462662, 0.03482235223054886, -0.032096657902002335, 0.06976046413183212, 0.01709423027932644, -0.03003477118909359, -0.13094165921211243, 0.1471664160490036, 0.05967431142926216, 0.0775001272559166, 0.02675226703286171, -0.03274073451757431, 0.05276811122894287, 0.008155818097293377, -0.044903650879859924, 0.049184784293174744, -0.021618813276290894, 0.0645107701420784, 0.12526407837867737, -0.013827254995703697, 0.024918638169765472, 0.0004963501705788076, 0.09292665123939514, 0.0066978768445551395, -0.04238399863243103, 0.004836152773350477, -0.084281787276268, -0.05445224046707153, 0.1235458254814148, 0.02042204886674881, 0.04140014201402664, -0.10065355151891708, 0.04685371741652489, 0.058630671352148056, -0.0006664673564955592, 0.014737970195710659, 0.12145330011844635, 0.06629235297441483, 0.015703942626714706, -0.17982611060142517, 0.05904378741979599, 0.058101773262023926, -0.006080595310777426, 0.10641536116600037, 0.02163427323102951, -0.021358143538236618, 0.059975456446409225, -0.04880470037460327, 0.04003114998340607, 0.03941081464290619, 0.021494191139936447, 0.1401640921831131, -0.0954609215259552, -0.019113807007670403, -0.049103785306215286, -0.018106307834386826, -0.048832911998033524, 0.07771235704421997, 0.09140045940876007, 0.12233176827430725, 0.05594149976968765, 0.013411304913461208, -0.03461120277643204, -0.01709175668656826, 0.09616847336292267, -0.09831365942955017, -0.011463929899036884, 0.015231584198772907, -0.05416909605264664, 0.03830791264772415, -0.022570855915546417, 0.026227278634905815, 0.0945972353219986, 0.10241415351629257, 0.00945020467042923, 0.09454954415559769, -0.08217818289995193, -0.0456627793610096, 0.036907292902469635, -0.12247616052627563, 0.024480799213051796, -0.039081670343875885, -0.07875989377498627, -0.022132722660899162, -0.020741354674100876, 0.05854179710149765, 0.010459188371896744, -0.03152739256620407, 0.08482654392719269, 0.0402807742357254, -0.004717926029115915, -0.044001251459121704, 0.038427695631980896, -0.05478786677122116, 0.07508797943592072, 0.08272920548915863, 0.03414865955710411, -0.15052014589309692, 0.07685975730419159, 0.04421508312225342, 0.010839775204658508, -0.0242697112262249, 0.0916886180639267, -0.023835113272070885, -0.0420074537396431, -0.091343954205513, 0.09563343971967697, -0.0755421370267868, 0.1061694324016571, -0.0202210433781147, -0.0361039899289608, -0.04288442060351372, 0.06027880683541298, -0.001314713852480054, 0.054460056126117706, -0.004212847910821438, -0.047743577510118484, -0.10849976539611816, -0.06658275425434113, -0.014988639391958714, 0.012141525745391846, -0.0518142431974411, -0.024247894063591957, -0.023282844573259354, -0.026341654360294342, -0.1169954314827919, -0.014265467412769794, -0.0787448137998581, 0.009462091140449047, -0.01134456880390644, 0.06382369995117188, 0.05521693825721741, -0.11333247274160385, 0.12110041826963425, 0.11444821953773499, 0.023088488727808, -0.052881013602018356, -0.007527041714638472, -0.13469895720481873, 0.0030888975597918034, 0.014137620106339455, -0.008307146839797497, 0.03801390528678894, 0.008612293750047684, -0.095957450568676, -0.056748006492853165], "Ascend\u4e0eNPU\u662f\u4ec0\u4e48\u5173\u7cfb\uff1f": [0.03751639649271965, 0.11262551695108414, -0.03782252222299576, 0.03573070466518402, 0.023539835587143898, -0.04369734227657318, 0.018231501802802086, 0.00016464851796627045, -0.051041606813669205, -0.01994846947491169, -0.06454116851091385, 0.02211873047053814, 0.048968344926834106, 0.010609693825244904, -0.0777851864695549, 0.11811681091785431, 0.07833925634622574, -0.038194913417100906, -0.04195103049278259, 0.03716093301773071, 0.03257375583052635, 0.009465932846069336, 0.13211552798748016, 0.04116261377930641, 0.03521059453487396, 0.10273604094982147, 0.041057001799345016, -0.06527601182460785, 0.01702858880162239, 0.08775097876787186, 0.08279043436050415, -0.0037057099398225546, -0.14370721578598022, -0.025801705196499825, -0.010958217084407806, 0.007696110289543867, -0.020917043089866638, 0.06668632477521896, 0.027143362909555435, -0.011859585531055927, 0.05291528254747391, 0.03467359021306038, -0.054036468267440796, 0.11914324760437012, -0.04570559412240982, -0.004512042738497257, -0.10252852737903595, 0.054005105048418045, 0.050928905606269836, 0.02538178488612175, -0.1041540801525116, 0.13603055477142334, 0.05240313708782196, -0.04295732080936432, -0.05990523844957352, 0.04108566790819168, 0.07815547287464142, -0.0032543500419706106, -0.03505110368132591, -0.051856882870197296, 0.035254813730716705, -0.05130729824304581, -0.10382981598377228, 0.00809214636683464, -0.0343521311879158, 0.027945954352617264, -0.07096332311630249, -0.07894111424684525, 0.0931820347905159, -0.006543029099702835, -0.060347363352775574, -0.025007933378219604, -0.06359109282493591, 0.034412503242492676, 0.016882775351405144, 0.04286681488156319, 0.029423965141177177, 0.024976655840873718, -0.13459087908267975, 0.07166603207588196, 0.08151886612176895, -0.03685351461172104, -0.00996062345802784, -0.12352731823921204, -0.02084656059741974, -0.0498281829059124, -0.05711659789085388, -0.0001714266836643219, -0.06114734709262848, 0.008762496523559093, -0.03337273746728897, 0.006510330364108086, -0.10773118585348129, 0.08449062705039978, 0.05033746361732483, -0.04073939844965935, -0.08206573128700256, -0.034727826714515686, -0.11459976434707642, 0.028662122786045074, 0.05787599831819534, -0.057444412261247635, 0.016888706013560295, -0.016546547412872314, 0.10598699748516083, -0.09811493754386902, 0.04485752061009407, 0.011638423427939415, 0.053984157741069794, 0.13141262531280518, 0.10328120738267899, 0.0377473458647728, 0.10241062939167023, -0.010755608789622784, 0.06370784342288971, 0.09236019849777222, 0.020139388740062714, -0.05840735882520676, -0.08014770597219467, 0.019408704712986946, 0.14560261368751526, -0.020493637770414352, 0.0708596259355545, 0.08838203549385071, 0.06234213337302208, -0.02926245704293251, 0.04282144457101822, -0.0341293066740036, -0.06044682487845421, -0.09136988967657089, 0.062393490225076675, 0.0233690794557333, 0.09561847150325775, -0.1172209233045578, -0.08066588640213013, 0.10286205261945724, -0.007074573077261448, -0.038061656057834625, 0.005136742722243071, 0.1239808052778244, -0.009575894102454185, -0.14489281177520752, 0.00484283035621047, -0.05362268537282944, 0.08393511921167374, 0.10246587544679642, -0.0761813074350357, -0.09887566417455673, -0.045921918004751205, -0.08789804577827454, 0.08385872840881348, 0.03892922401428223, -0.04323306679725647, 0.18129035830497742, -0.014256908558309078, 0.06705163419246674, -0.02906735986471176, 0.028796613216400146, -0.027901729568839073, 0.03376070410013199, -0.07626847922801971, 0.025620874017477036, -0.029953576624393463, 0.0021056055556982756, -0.02685384824872017, 0.008595013059675694, -0.03516363725066185, -0.018340816721320152, -0.03296190872788429, -0.0899304747581482, -0.058396607637405396, -0.08465340733528137, -0.09007912129163742, 0.015922749415040016, 0.033901337534189224, 0.00013890862464904785, 0.08472186326980591, -0.03356236591935158, 0.017905399203300476, -0.0739297941327095, 0.1583089828491211, -0.05098477378487587, 0.00835492368787527, -0.0547439381480217, 0.03250420466065407, 0.014935939572751522, 0.06283285468816757, 0.04764243960380554, 0.12036184966564178, -0.06825511157512665, 0.06675543636083603, 0.06891217827796936, 0.03450801223516464, 0.12424062937498093, -0.055890534073114395, 0.006895200815051794, -0.06781279295682907, -0.010245042853057384, 0.004944671411067247, 0.026644352823495865, -0.015280130319297314, 0.032322563230991364, 0.06664912402629852, 0.06268704682588577, 0.04448395222425461, 0.05807022005319595, -0.052064768970012665, -0.12272429466247559, 0.057245898991823196, -0.0044434261508286, 0.06384032219648361, 0.004941937513649464, -0.05164249241352081, -0.12759432196617126, -0.1343589574098587, 0.03148495405912399, 0.045868512243032455, 0.08670017868280411, 0.03844186291098595, -0.0034101565834134817, -0.02785016968846321, 0.02338254451751709, -0.038197193294763565, -0.08075439184904099, -0.14454971253871918, -0.045179583132267, -0.12085501104593277, -0.04157746210694313, 0.027563078328967094, 0.026272092014551163, -0.01644953154027462, 0.08684064447879791, -0.06133357435464859, 0.13682973384857178, 0.04097161442041397, -0.03406548872590065, -0.1034196987748146, -0.06947880238294601, 0.06967001408338547, 0.006146603263914585, -0.09469752013683319, 0.07146555185317993, -0.10617299377918243, -0.01765466295182705, -0.09406314790248871, 0.06880634278059006, 0.1107543483376503, 0.03926614671945572, -0.005717934109270573, -0.00535383727401495, 0.06525881588459015, 0.004386166576296091, -0.013468966819345951, 0.024341566488146782, -0.049083858728408813, 0.08835358172655106, 0.12975281476974487, -0.06499413400888443, 0.031742047518491745, 0.05511225014925003, 0.04042412340641022, -0.01112519670277834, -0.07471805810928345, -0.012550204060971737, 0.015495055355131626, 0.03276638686656952, 0.03423793613910675, -0.029922043904662132, -0.07252416014671326, -0.004148515406996012, 0.004195567686110735, -0.02569505199790001, -0.11324077844619751, -0.014446771703660488, 0.11395802348852158, 0.07319944351911545, -0.09808589518070221, -0.11932666599750519, 0.044456060975790024, 0.07112196832895279, -0.00837731920182705, 0.027347326278686523, -0.0593765489757061, -0.015037338249385357, 0.10224148631095886, -0.05414839833974838, 0.09387895464897156, 0.0065191639587283134, 0.06373888999223709, 0.09396497905254364, -0.02861100621521473, -0.04192844778299332, -0.04129383713006973, 0.09473448246717453, -0.07128024846315384, 0.10809630900621414, -0.007187980227172375, 0.057195406407117844, -0.0559607669711113, 0.03228648379445076, -0.15232273936271667, -0.025753963738679886, 0.06300055235624313, -0.06676938384771347, 0.023201895877718925, -0.02839881367981434, -0.11668606847524643, 0.042921409010887146, 0.013338292017579079, 0.07031141221523285, 0.07258938997983932, 0.09232275933027267, 0.0651896670460701, 0.06708542257547379, -0.10137449949979782, -0.017350781708955765, 0.030912913382053375, -0.16684800386428833, 0.09783702343702316, -0.06428435444831848, -0.10550233721733093, -0.053085073828697205, 0.03753618150949478, 0.058239683508872986, 0.022355638444423676, 0.012029292993247509, 0.04860278591513634, 0.08528847247362137, -0.011762687005102634, -0.010501572862267494, 0.01798352599143982, -0.01465257816016674, 0.00345080834813416, 0.04823923110961914, 0.10675285756587982, -0.17594923079013824, 0.14384883642196655, 0.04759673774242401, -0.040666043758392334, -0.012854895554482937, 0.11085981875658035, -0.12867282330989838, -0.05719192326068878, -0.10766348242759705, 0.10111160576343536, -0.03512901812791824, 0.05844847112894058, 0.12169376015663147, -0.005866093095391989, -0.07186869531869888, 0.04508961737155914, -0.0690625011920929, 0.1083545833826065, -0.04051632061600685, -0.0649874359369278, -0.05352276936173439, -0.11876162886619568, -0.011623522266745567, 0.04524875432252884, 0.056891754269599915, 0.06941927969455719, 0.018286097794771194, -0.08585219085216522, -0.03687893599271774, 0.020006980746984482, -0.03978434205055237, -0.03926209360361099, -0.03791595995426178, 0.06617020815610886, 0.04018218070268631, -0.06558943539857864, 0.04155803471803665, 0.10722364485263824, 0.03521247208118439, -0.07597361505031586, -0.047404561191797256, -0.14872872829437256, 0.07765815407037735, -0.06246110796928406, -0.07876981794834137, 0.08306071162223816, 0.09672485291957855, -0.11764268577098846, -0.005848332773894072], "\u8bf7\u95ee\u4f7f\u7528MindSpore\u5982\u4f55\u5b9e\u73b0\u591a\u5c3a\u5ea6\u8bad\u7ec3\uff1f": [-0.04503055661916733, 0.06785004585981369, 0.024180559441447258, 0.004945146385580301, -0.07635054737329483, -0.026517458260059357, -0.010420117527246475, 0.051954157650470734, 0.011324442923069, 0.05621279403567314, -0.0011717187007889152, -0.0009191953577101231, 0.034641169011592865, 0.05830153450369835, -0.07435871660709381, 0.06711294502019882, 0.11981689929962158, 0.02332472801208496, -0.06906384974718094, 0.06704313308000565, -0.008545123971998692, -0.023997120559215546, 0.07160048186779022, -0.043157875537872314, -0.007888097316026688, 0.08511147648096085, -0.03737860918045044, 0.014876365661621094, 0.01719861477613449, 0.04173696041107178, 0.07779989391565323, 0.04451380670070648, -0.058458112180233, 0.0068822032772004604, -0.05030851066112518, -0.06031235307455063, -0.06852518022060394, 0.03888125717639923, -0.01656421460211277, -0.04206531122326851, 0.04318610206246376, 0.017854761332273483, -0.03670186921954155, 0.10193751752376556, -0.032522354274988174, -0.04100402444601059, -0.13413238525390625, 0.007025044411420822, 0.001342102070339024, -0.019506093114614487, -0.0688079223036766, 0.056025922298431396, 0.010427122935652733, -0.039126552641391754, -0.05051116645336151, -0.015606186352670193, 0.016736695542931557, 0.0579228550195694, 0.060511812567710876, -0.09586337953805923, 0.006568497512489557, 0.02422172762453556, -0.0579521507024765, -0.0401746928691864, -0.11066452413797379, -0.02152283303439617, -0.05433594435453415, -0.09149318933486938, -0.030533602461218834, 0.03955971822142601, -0.03407660499215126, -0.02389003150165081, -0.007688648998737335, 0.0506654717028141, 0.045375145971775055, 0.028764918446540833, -0.05166548863053322, 0.00999035406857729, -0.07247376441955566, 0.011158640496432781, 0.026538610458374023, 0.08228115737438202, 0.042434558272361755, -0.07686416059732437, -0.08805157244205475, -0.013353314250707626, -0.040603481233119965, 0.10511578619480133, -0.0382232666015625, 0.09827622026205063, 0.02289721928536892, -0.018933333456516266, -0.1646278202533722, 0.029733726754784584, 0.08883164823055267, 0.00021023396402597427, -0.046833161264657974, -0.023049961775541306, -0.12097866833209991, -0.02335965633392334, 0.013544721528887749, 0.0249292254447937, -0.026669982820749283, 0.05346358194947243, 0.03441633656620979, -0.07783430069684982, 0.05548553541302681, 0.01761665940284729, 0.062476664781570435, 0.009657453745603561, 0.06701163947582245, 0.0050305468030273914, 0.09241484105587006, -0.005561946425586939, -0.0007887685787864029, 0.014129148796200752, -0.05621303617954254, 0.002228792756795883, -0.06716010719537735, 0.10078315436840057, 0.08517934381961823, -0.06487271189689636, -0.0090597253292799, 0.04601472616195679, 0.017714185640215874, -1.0645948350429535e-05, 0.07358165830373764, -0.1094605028629303, -0.09794739633798599, -0.08889017254114151, 0.14893701672554016, -0.09656866639852524, 0.09098596125841141, -0.12146985530853271, -0.12407853454351425, 0.049691107124090195, -0.0024148854427039623, 0.01843096874654293, -0.04705957695841789, 0.09902705252170563, 0.039264120161533356, -0.12435133010149002, 0.1177363395690918, -0.06555505841970444, 0.08319408446550369, 0.05835367366671562, -0.054291196167469025, -0.08976835757493973, -0.003573931520804763, -0.08579254895448685, 0.05158992484211922, -0.019217509776353836, -0.05428982898592949, 0.09055793285369873, 0.032723333686590195, 0.05312841758131981, -0.015037044882774353, -0.02158103697001934, 0.0008394739707000554, -0.054698653519153595, -0.004003272391855717, -0.016262739896774292, 0.024063238874077797, 0.0045744264498353004, -0.024731222540140152, -0.018650703132152557, 0.04041885584592819, 0.003141026943922043, -0.053525034338235855, -0.03838469833135605, -0.01735050044953823, -0.023111624643206596, -0.023226164281368256, 0.00809389166533947, 0.02752051316201687, -0.017899926751852036, 0.08029372245073318, -0.06851287931203842, 0.01674656756222248, -0.035098735243082047, 0.014607885852456093, -0.08247023820877075, -0.019265318289399147, -0.053463105112314224, 0.03072667494416237, 0.030121542513370514, 0.09081784635782242, 0.023792508989572525, 0.10825866460800171, -0.1386953741312027, -0.007765018846839666, 0.04172360897064209, 0.026877745985984802, 0.06301949918270111, 0.02436610870063305, 0.023125607520341873, -0.09009477496147156, -0.0419645830988884, 0.022658277302980423, -0.03885875642299652, -0.013210329227149487, 0.024806151166558266, 0.036668192595243454, 0.010739215649664402, -0.03476244956254959, 0.020398637279868126, -0.07533560693264008, -0.0717163234949112, -0.00010097771883010864, -0.014838799834251404, 0.0822596400976181, 0.05818949639797211, 0.003294001566246152, -0.06678668409585953, -0.10379920154809952, -0.02001935988664627, 0.1214902400970459, 0.06727411597967148, 0.033078309148550034, -0.05937923491001129, 0.012181916274130344, 0.018738793209195137, 0.029706254601478577, -0.07230836153030396, -0.135972261428833, -0.03406022861599922, -0.03240907937288284, -0.13024252653121948, -0.008770591579377651, 0.04696947708725929, -0.01863226667046547, 0.05462455749511719, 0.04502706974744797, 0.15733551979064941, -0.027948807924985886, 0.14219807088375092, -0.008487104438245296, -0.02159748785197735, 0.0624028705060482, 0.033621642738580704, -0.11017962545156479, 0.07681664824485779, -0.0481535978615284, -0.047634392976760864, -0.03384953364729881, 0.09266944229602814, 0.08330574631690979, 0.024262702092528343, 0.023456700146198273, -0.05021625757217407, 0.04620196670293808, 0.02480453811585903, -0.06966561824083328, 0.04964916408061981, -0.044910039752721786, 0.04912165179848671, 0.06183675676584244, -0.040858522057533264, 0.01869494467973709, 0.05310135707259178, 0.0069223446771502495, 0.038880012929439545, -0.046664826571941376, -0.009370844811201096, -0.04227008670568466, -0.01350603811442852, 0.09766627848148346, -0.06555238366127014, 0.022696370258927345, -0.11343879997730255, 0.027461379766464233, 0.012921329587697983, -0.11626949161291122, 0.03522241860628128, 0.12156888097524643, 0.06475676596164703, 0.01568014919757843, -0.17140328884124756, 0.022369980812072754, 0.028323499485850334, -0.012237712740898132, 0.014482975006103516, -0.016944756731390953, 0.016073424369096756, 0.06193066015839577, 0.020654132589697838, 0.03711080178618431, -0.020442336797714233, 0.05242997035384178, 0.12083884328603745, -0.05260161682963371, 0.00015870248898863792, -0.07723592221736908, 0.03319944441318512, -0.06820043176412582, 0.048146672546863556, 0.028850892558693886, 0.04679631069302559, 0.0458061508834362, 0.037502728402614594, -0.016407297924160957, -0.05505415052175522, 0.0905180275440216, -0.106879323720932, -0.02898840233683586, 0.02882814034819603, -0.05251834914088249, 0.08036506175994873, 0.011424282565712929, 0.032854754477739334, 0.07690853625535965, 0.1164773553609848, 0.03371664881706238, 0.07743982970714569, -0.06896193325519562, -0.020648926496505737, 0.0392933264374733, -0.15426132082939148, 0.054285142570734024, -0.09045719355344772, 0.029164619743824005, -0.041692014783620834, -0.009050778113305569, 0.06889636814594269, 0.0694873183965683, -0.08042953908443451, 0.030402280390262604, 0.061060115694999695, 0.031096704304218292, -0.06417564302682877, 0.03641027212142944, -0.07601013779640198, 0.041932880878448486, 0.06473870575428009, 0.014405310153961182, -0.08943138271570206, 0.07322297245264053, 0.07305800169706345, -0.006052613724023104, 0.08710145950317383, 0.07298289239406586, -0.07558742165565491, 0.0012753561604768038, -0.06610795110464096, 0.07594861835241318, -0.10217341035604477, 0.06198301911354065, -0.0034915965516120195, -0.04462607204914093, -0.07388946413993835, 0.050410062074661255, -0.03927598148584366, 0.06353630125522614, -0.005764504428952932, -0.013279792852699757, -0.15317657589912415, -0.08934769779443741, -0.005018203519284725, 0.01538860984146595, 0.00026337988674640656, -0.04283466562628746, -0.0255152378231287, -0.06771650165319443, -0.0660637766122818, 0.028901539742946625, -0.06420347094535828, 0.04832858219742775, -0.0725589394569397, 0.09449651092290878, -0.01996953785419464, -0.06551072746515274, 0.06312517821788788, 0.10656926035881042, 0.06494887918233871, -0.07442690432071686, -0.0873263031244278, -0.10463354736566544, 0.0931525006890297, -0.015208733268082142, -0.05650009214878082, 0.08580304682254791, 0.025397632271051407, -0.14271600544452667, 0.06597612798213959], "\u5982\u679cMindSpore\u7684`requires_grad=False`\u7684`tensor`\u8f6c\u5316\u4e3a`numpy`\u7c7b\u578b\u8fdb\u884c\u5904\u7406\u7136\u540e\u518d\u8f6c\u5316\u4f1a`tensor`\uff0c\u4f1a\u5bf9\u8ba1\u7b97\u56fe\u548c\u53cd\u5411\u4f20\u64ad\u6709\u5f71\u54cd\u5417\uff1f": [-0.0074717095121741295, 0.026013854891061783, -0.017280906438827515, -0.006336296442896128, -0.0579010546207428, -0.07802856713533401, 0.04309103637933731, 0.048363156616687775, -0.031234486028552055, -0.008875293657183647, -0.04919774830341339, -0.005052113905549049, -0.024317068979144096, 0.022833267226815224, 0.008684257045388222, 0.053212955594062805, 0.10449736565351486, -0.011032377369701862, -0.07534176856279373, 0.10389511287212372, 0.027282919734716415, -0.06501737236976624, 0.0960497260093689, -0.03026951104402542, 0.04615002125501633, 0.07455476373434067, -0.015141487121582031, 0.018989982083439827, 0.02464241348206997, 0.07928896695375443, 0.04191337525844574, 0.01172808837145567, -0.09216315299272537, 0.021327205002307892, -0.04606884345412254, -0.06860281527042389, -0.06555099040269852, 0.09330236911773682, -0.024455085396766663, -0.007599492557346821, 0.034580882638692856, -0.011157556436955929, -0.04873086139559746, 0.10754436999559402, -0.07225383073091507, -0.09050792455673218, -0.12729114294052124, 0.0031187713611871004, 0.04278242588043213, -0.01873929612338543, -0.1174067035317421, 0.04068624973297119, -0.056947678327560425, -0.024328771978616714, -0.03793317452073097, -0.017794892191886902, -0.006091729737818241, -0.07756565511226654, 0.048461899161338806, 0.03559726104140282, 0.02491387538611889, 0.0501880869269371, -0.09575863182544708, 0.013817906379699707, -0.12713220715522766, 0.014167973771691322, 0.046935345977544785, -0.03337784856557846, -0.02201501652598381, -0.020835546776652336, -0.062348805367946625, -0.04559538513422012, -0.011562694795429707, 0.09193752706050873, 0.07190640270709991, 0.09305129945278168, 0.005271993111819029, 0.04196327179670334, -0.06910638511180878, -0.005428115837275982, 0.029712136834859848, 0.04983383044600487, 0.09493459016084671, -0.08601650595664978, -0.08938935399055481, -0.03346841782331467, -0.06491479277610779, 0.05012929067015648, -0.01520371250808239, 0.051983099430799484, 0.028447963297367096, -0.002979979384690523, -0.13523438572883606, 0.0891333818435669, 0.05643339455127716, -0.012373605743050575, -0.07544641941785812, -0.01754523254930973, -0.11619295179843903, 0.009539752267301083, 0.04736316204071045, -0.016229553148150444, 0.001272156136110425, 0.09009197354316711, 0.02577383629977703, -0.0650295689702034, 0.07169251143932343, 0.04094598442316055, -0.019793670624494553, 0.0373055636882782, 0.009417095221579075, 0.03680003806948662, 0.06159159541130066, 0.04432171583175659, -0.02110130339860916, 0.03736884146928787, -0.05240271985530853, -0.05901174992322922, -0.04757218062877655, 0.10128205269575119, 0.11466795951128006, -0.04130004718899727, 0.0031406106427311897, 0.02344103530049324, 0.08446887135505676, -0.03042946383357048, 0.055692777037620544, -0.07153502106666565, -0.024440817534923553, -0.040486522018909454, 0.12084990739822388, -0.06388713419437408, 0.047323182225227356, -0.14442628622055054, -0.10956253856420517, 0.045659832656383514, -0.0332198366522789, -0.015251114964485168, -0.062508724629879, 0.08221425861120224, 0.10253629833459854, -0.09458346664905548, 0.05983651801943779, -0.07009928673505783, 0.1160232201218605, 0.02149444818496704, -0.10037387907505035, -0.08045153319835663, -0.013118794187903404, -0.05859573930501938, 0.06792610883712769, 0.010642722249031067, 0.0009716522763483226, 0.09660618007183075, -0.04750799760222435, 0.03728223964571953, -0.0017928611487150192, -0.011843583546578884, -0.06046304106712341, 0.0042131878435611725, -0.03877495229244232, -0.043547116219997406, 0.03933967277407646, 0.0017606709152460098, 0.0294315405189991, -0.008234050124883652, 0.01727362349629402, -0.01946794055402279, -0.0700373649597168, -0.05715630203485489, 0.040539082139730453, 0.024360589683055878, -0.04123659059405327, -0.093492291867733, 0.016040341928601265, -0.002337114419788122, 0.05718374252319336, -0.038728438317775726, 0.03609532117843628, -0.04227523133158684, 0.07978292554616928, -0.074364073574543, -0.0217010248452425, -0.12667010724544525, 0.019724663347005844, 0.054822489619255066, 0.10378172248601913, 0.028128068894147873, 0.08707918226718903, -0.12174168229103088, 0.004122784826904535, 0.07219133526086807, 0.0015435300301760435, 0.05505041778087616, 0.028712764382362366, 0.03585236892104149, -0.06198656186461449, 0.02260008081793785, 0.04037432745099068, 0.023544684052467346, 0.011294524185359478, 0.04193991422653198, 0.05050163343548775, 0.03548882529139519, -0.02643483877182007, -0.028739403933286667, -0.10338777303695679, -0.1153259202837944, -0.022525299340486526, -0.0023190188221633434, 0.08550147712230682, 0.025960536673665047, -0.013243130408227444, -0.10969516634941101, -0.10305415838956833, 0.05085395276546478, 0.08344609290361404, 0.033730462193489075, 0.04682327061891556, -0.03385248780250549, 0.07065626233816147, 0.006703173741698265, 0.005192546173930168, -0.07863087952136993, -0.09913318604230881, -0.009968440979719162, -0.042882658541202545, -0.06838627904653549, 0.007992458529770374, 0.03931741416454315, -0.08047227561473846, 0.056931111961603165, 0.004125072155147791, 0.08568219840526581, -0.04715763404965401, 0.07511354237794876, -0.050793763250112534, 0.010067073628306389, 0.09323712438344955, -0.03044239617884159, -0.08007562160491943, 0.06273897737264633, -0.050328463315963745, 0.006037618964910507, -0.07202506065368652, 0.07893305271863937, 0.05130936950445175, 0.05396678298711777, 0.03863951191306114, -0.08571476489305496, 0.08353176712989807, 0.05925856530666351, -0.048868171870708466, 0.06114313751459122, -0.02087390050292015, 0.07203426212072372, 0.0553487166762352, -0.11961615085601807, 0.047259554266929626, -0.0008854062762111425, 0.0135275823995471, 0.048662927001714706, -0.10972382873296738, 0.006231465842574835, -0.059705909341573715, 0.014380757696926594, 0.08435335755348206, -0.0550728514790535, 0.0017694085836410522, -0.03338140621781349, 0.04035423323512077, -0.0029859808273613453, -0.06555807590484619, 0.04746399074792862, 0.10932411998510361, 0.04299161210656166, -0.04104393348097801, -0.18997663259506226, 0.029017804190516472, 0.038413334637880325, -0.011133646592497826, 0.03162434697151184, -0.0027711433358490467, -0.036400262266397476, 0.09561286121606827, -0.04734591022133827, 0.02803722955286503, -0.031150754541158676, 0.030573496595025063, 0.06588675826787949, -0.08557385206222534, -0.04246436432003975, -0.07887093722820282, 0.05040381848812103, -0.029090289026498795, 0.08080948889255524, 0.011270489543676376, 0.056658051908016205, -0.01616091839969158, 0.03835447505116463, -0.030605141073465347, -0.0286567360162735, 0.0540478378534317, -0.06942020356655121, -0.03360838070511818, 0.007540012244135141, -0.0849776417016983, 0.035932157188653946, -0.01798827201128006, -0.021216541528701782, 0.0596921369433403, 0.05882204696536064, 0.032641101628541946, 0.029601965099573135, -0.07279382646083832, -0.020623475313186646, 0.0738459974527359, -0.10057421773672104, 0.05520361661911011, -0.044012561440467834, -0.06563129276037216, -0.03840876370668411, -0.019271114841103554, 0.06072722747921944, 0.039526909589767456, -0.03182771056890488, -0.022239645943045616, 0.07682192325592041, -0.020624682307243347, 0.018498525023460388, 0.0395105704665184, -0.052014995366334915, 0.02778315357863903, 0.08537609875202179, -0.0411168672144413, -0.11805589497089386, 0.1240684762597084, 0.09642644226551056, -0.023654019460082054, 0.030488204210996628, 0.009620529599487782, -0.05921272188425064, -0.018948769196867943, -0.07215425372123718, 0.06078805774450302, -0.07262375205755234, 0.09301398694515228, 0.007462961599230766, -0.06295612454414368, -0.05124472826719284, 0.017186125740408897, -0.09534904360771179, 0.07756689935922623, -0.022801527753472328, -0.09361939877271652, -0.13331930339336395, -0.06098131462931633, 0.01268363930284977, 0.06294422596693039, 0.014807553961873055, -0.058497972786426544, -0.0707886591553688, -0.10265814512968063, 0.034379296004772186, 0.04869646206498146, -0.013414477929472923, 0.028882235288619995, -0.026226812973618507, 0.02898687683045864, -0.007319320924580097, -0.09392575174570084, 0.05160975456237793, 0.09949173778295517, 0.04667096585035324, -0.06302656978368759, -0.06053505465388298, -0.11515122652053833, 0.10413967818021774, -0.025239892303943634, -0.0798492357134819, -0.033556170761585236, 0.017947522923350334, -0.08571398258209229, 0.05276164412498474], "\u8bf7\u95ee\u600e\u6837\u5b9e\u73b0\u7c7b\u4f3c`torch.nn.functional.linear()`\u90a3\u6837\u80fd\u591f\u5bf9\u5168\u8fde\u63a5\u5c42`weight`\u3001`bias`\u8fdb\u884c\u4fee\u6539\uff0c\u5e94\u8be5\u5982\u4f55\u64cd\u4f5c\uff1f": [-0.04502831771969795, 0.008118325844407082, 0.047575466334819794, 0.05500124767422676, -0.05691593140363693, -0.09588216245174408, -0.013731387443840504, 0.08746562153100967, -0.024739323183894157, -0.011268356814980507, -0.01957114040851593, -0.007060231640934944, -0.01164153777062893, -0.0035783485509455204, 0.009363831952214241, 0.06787880510091782, 0.08132776618003845, 0.02919832058250904, -0.016603931784629822, 0.10113845765590668, 0.09790163487195969, 0.03797665238380432, 0.07136170566082001, -0.06823762506246567, -0.057735323905944824, 0.07509010285139084, -0.06872116774320602, 0.02252260409295559, 0.08204667270183563, 0.008896518498659134, -0.002613417338579893, -0.004531680140644312, -0.03693608194589615, 0.07635532319545746, -0.04231476038694382, -0.06973365694284439, -0.06980859488248825, 0.10773235559463501, -0.005340632516890764, -0.019789258018136024, 0.07811819761991501, 0.026855383068323135, -0.07292840629816055, 0.08859239518642426, -0.027780234813690186, -0.08604142814874649, -0.16790305078029633, -0.057179901748895645, -0.016212398186326027, -0.002974478993564844, -0.048089783638715744, 0.040527816861867905, 0.0401478111743927, 0.04287046939134598, -0.003153626574203372, -0.010781317949295044, 0.016849160194396973, 0.031976889818906784, 0.007393644656985998, -0.045915644615888596, 0.049362435936927795, -0.026737114414572716, -0.05454016849398613, 0.02372245490550995, -0.14282190799713135, 0.022388165816664696, 0.01151043176651001, -0.08589958399534225, 0.010582741349935532, -0.021996142342686653, -0.013178869150578976, -0.011665960773825645, -0.033207882195711136, 0.052133359014987946, 0.03539774939417839, 0.07032634317874908, 0.05246768891811371, 0.013885117135941982, -0.06803936511278152, 0.0448615700006485, 0.06602152436971664, 0.10666753351688385, 0.10918708145618439, -0.0701259896159172, -0.12581101059913635, -0.05788598954677582, -0.1444597840309143, -0.02288566716015339, -0.028479795902967453, 0.05073871836066246, -0.0020995147060602903, -0.0490468293428421, -0.12507052719593048, -0.02812764048576355, 0.02231450006365776, -0.06533840298652649, -0.003582255681976676, -0.049534108489751816, -0.13746733963489532, 0.06003827601671219, 0.12342041730880737, -0.03261226788163185, -0.021312596276402473, 0.04230161011219025, 0.011657217517495155, -0.10227041691541672, -0.04454805329442024, 0.07056070864200592, -0.0498041957616806, 0.020082153379917145, -0.009906800463795662, -0.03385182470083237, 0.05201086029410362, 0.05969129502773285, 0.016573725268244743, 0.03668079525232315, -0.029277991503477097, -0.02938951551914215, -0.060820095241069794, 0.0460740402340889, 0.14436891674995422, -0.10649698972702026, 0.058463819324970245, -0.014498081989586353, 0.06604132056236267, -0.022077880799770355, 0.02416439913213253, -0.10028979182243347, -0.07681550830602646, -0.012850373052060604, 0.151346355676651, -0.03154425323009491, 0.013739945366978645, -0.0909559577703476, -0.0687444657087326, 0.039682537317276, -0.00877581536769867, -0.05854714661836624, -0.013474417850375175, 0.12098585814237595, 0.01027386449277401, -0.13884776830673218, 0.07348480820655823, -0.08843586593866348, 0.06562202423810959, 0.029227308928966522, -0.11132467538118362, -0.09044843912124634, -0.05315679311752319, -0.056249093264341354, 0.03183959424495697, 0.0019807417411357164, 0.0705924928188324, 0.03752344846725464, 0.03002755716443062, 0.010241392999887466, 0.07814285159111023, 0.051207538694143295, -0.06786293536424637, -0.002995929215103388, 0.021820303052663803, -0.10322711616754532, 0.07987512648105621, 0.02156629040837288, -0.0335085503757, 0.034642234444618225, 0.06589464098215103, -0.07975389808416367, -0.062046073377132416, -0.15878981351852417, -0.07615716010332108, 0.0036218473687767982, 0.07056935876607895, -0.08548581600189209, 0.07339702546596527, -0.02293114736676216, 0.01688404381275177, -0.06409470736980438, 0.056716032326221466, 0.04590655118227005, 0.04903567209839821, -0.10363499075174332, -0.12507325410842896, -0.13861514627933502, -0.018642494454979897, 0.09523898363113403, 0.06445856392383575, 0.04757470265030861, 0.1078115701675415, -0.10037273913621902, 0.053608376532793045, 0.02563863806426525, 0.004927759058773518, 0.09647390991449356, 0.02036532759666443, 0.0011123488657176495, -0.05391952395439148, 0.05475904047489166, 0.014856504276394844, -0.03541983291506767, -0.0754903107881546, 0.06188931316137314, 0.05656876787543297, -0.03627447411417961, -0.05885843187570572, -0.07381374388933182, -0.08198708295822144, -0.11716833710670471, 0.03851376473903656, -0.024928949773311615, 0.03315241262316704, 0.10065747797489166, -0.04373320937156677, -0.021315425634384155, -0.0969376489520073, -0.027414923533797264, 0.08110986649990082, 0.04846145212650299, 0.08869905024766922, 0.03492103889584541, 0.020323457196354866, 0.03021637350320816, -0.01622261479496956, -0.09644854068756104, -0.00232520280405879, -0.04174724221229553, -0.056536879390478134, -0.03497378155589104, 0.034101199358701706, -0.0026517766527831554, -0.07896696776151657, 0.04250837117433548, 0.0040598646737635136, 0.022699274122714996, -0.0387251116335392, 0.07778312265872955, -0.06239878013730049, 0.07067638635635376, 0.02834281697869301, 0.0437028631567955, -0.15051019191741943, 0.13819217681884766, -0.06736700236797333, 0.0719313696026802, -0.03433368355035782, 0.023232510313391685, 7.952749729156494e-05, 0.06299065053462982, 0.06529625505208969, -0.09915491193532944, -0.007356489077210426, -0.004697743803262711, 0.04328097775578499, -0.014542088843882084, -0.03660900518298149, 0.059922751039266586, 0.04640425369143486, -0.03154197335243225, -0.07260507345199585, 0.06815419346094131, -0.009343504905700684, -0.0008158439886756241, -0.06878257542848587, 0.03959852084517479, -0.06308088451623917, 0.038604121655225754, 0.07012998312711716, 0.029813315719366074, -0.03267884626984596, -0.02344922535121441, -0.010333740152418613, 0.007224905304610729, -0.07996198534965515, 0.012083844281733036, 0.1450830101966858, 0.04634443670511246, 0.03574304282665253, -0.07964194566011429, 0.048671916127204895, -0.0004100613296031952, 0.01085736509412527, 0.03998248279094696, 0.02115103229880333, 0.04267948865890503, 0.11383417248725891, -0.04247528314590454, 0.0468607060611248, -0.014415759593248367, 0.048983730375766754, -0.01396094635128975, -0.023925891146063805, 0.013268266804516315, -0.12524555623531342, -0.04282495006918907, -0.024030648171901703, 0.07909850031137466, -0.013559599407017231, -0.006560483016073704, 0.04610418528318405, 0.05357213690876961, -0.039532169699668884, 0.03519309684634209, 0.011342804878950119, -0.10612919926643372, -0.014259176328778267, -0.04972412809729576, -0.03458584100008011, 0.0018512883689254522, 0.06683916598558426, -0.10064876079559326, 0.01385209709405899, 0.14187078177928925, 0.008989725261926651, -0.04603796824812889, -0.008242590352892876, -0.09807299077510834, 0.036055419594049454, -0.0779137834906578, -0.008347632363438606, -0.03175469487905502, 0.03593152016401291, -0.06232651323080063, 0.0006831287173554301, 0.047606755048036575, 0.054790180176496506, -0.031683288514614105, 0.026109352707862854, 0.13536132872104645, 0.016297142952680588, 0.03792285919189453, 0.009959084913134575, -0.020290734246373177, 0.08442498743534088, 0.14755162596702576, 0.06050734221935272, -0.1415622979402542, 0.043015070259571075, 0.07800010591745377, -0.12719202041625977, 0.14357325434684753, -0.028692014515399933, -0.10519357770681381, -0.023645123466849327, -0.04082290828227997, 0.10424959659576416, -0.031018119305372238, 0.04342317581176758, -0.03998260200023651, -0.035021692514419556, -0.017362134531140327, -0.08346019685268402, -0.03210294246673584, 0.08020132035017014, 0.024922357872128487, -0.07005809992551804, -0.11852498352527618, -0.029907183721661568, 0.058981865644454956, 0.09891510009765625, 0.04341347515583038, -0.0745452418923378, -0.03908771276473999, -0.025647087022662163, -0.020162606611847878, 0.06468263268470764, -0.03219914436340332, 0.09969283640384674, -0.04123101383447647, 0.03028962016105652, -0.0878261998295784, -0.09681150317192078, 0.003028256818652153, 0.0440959595143795, 0.0561811625957489, -0.0205833800137043, -0.06149628758430481, -0.07964973151683807, 0.05948895215988159, -0.014985333196818829, -0.03170211613178253, 0.07419691234827042, 0.030941007658839226, -0.0707954540848732, -0.01570054702460766], "\u4f7f\u7528MindSpore\u5728\u6a21\u578b\u4fdd\u5b58\u540e\u751f\u6210\u7684`.meta`\u6587\u4ef6\u4f5c\u7528\u662f\u4ec0\u4e48\uff0c\u53ef\u4ee5\u7528`.meta`\u6587\u4ef6\u5bfc\u5165\u56fe\u7ed3\u6784\u5417\uff1f": [-0.06072256714105606, 0.05625774711370468, 0.0013950178399682045, 0.07454915344715118, -0.06619631499052048, -0.03207806870341301, -0.006870180368423462, 0.06469996273517609, 0.017101960256695747, 0.03057952970266342, -0.014232258312404156, 0.03605225682258606, 0.0019480547634884715, 0.03400815278291702, -0.06578415632247925, 0.0735594779253006, 0.14294981956481934, 0.03594135493040085, -0.0948370099067688, 0.01087566651403904, -0.006345116067677736, -0.043829239904880524, 0.08383754640817642, 0.022449351847171783, -0.005723942071199417, 0.06016011908650398, -0.04165461286902428, 0.0006810537306591868, -0.03389948233962059, 0.07583291828632355, 0.054839760065078735, 0.03033299744129181, -0.041401270776987076, 0.008860801346600056, -0.08465106040239334, -0.09513533115386963, -0.010162735357880592, 0.11468484997749329, -0.04912708327174187, -0.008213416673243046, 0.02164142206311226, 0.046635426580905914, -0.03296367824077606, 0.08841487020254135, -0.010968832299113274, 0.033892907202243805, -0.12492848932743073, -0.015967411920428276, 0.017836082726716995, -0.00019282102584838867, -0.048897724598646164, 0.05861227959394455, -0.02164013311266899, -0.0026535599026829004, -0.051448624581098557, 0.03784966468811035, 0.007430053316056728, 0.022173022851347923, 0.08714655041694641, 0.02896076813340187, 0.010338742285966873, -0.04319002106785774, -0.08728612214326859, -0.03603788837790489, -0.18184028565883636, 0.029748991131782532, -0.057384591549634933, -0.09748014807701111, -0.01550157181918621, -0.013179382309317589, -0.01624966785311699, -0.031784538179636, -0.022815104573965073, 0.04996403679251671, 0.06379205733537674, 0.030883383005857468, -0.06558594107627869, -0.03653787076473236, -0.0352955162525177, 0.044349268078804016, 0.020433543249964714, 0.07192051410675049, 0.044500380754470825, -0.08275985717773438, -0.07470730692148209, -0.0015126902144402266, -0.04944045469164848, 0.04065970703959465, -0.08297616988420486, 0.114715576171875, 0.008927864022552967, -0.006283014081418514, -0.14087992906570435, 0.009648649021983147, 0.06614761799573898, -0.03157525509595871, -0.0784551128745079, 0.021800071001052856, -0.12291733920574188, -0.02716228738427162, 0.04179006814956665, 0.01901325210928917, 0.011307613924145699, 0.04085888713598251, 0.028269264847040176, -0.0479913167655468, 0.05329083278775215, 0.022530632093548775, 0.017247699201107025, 0.03325541689991951, 0.0712277963757515, 0.027793053537607193, 0.040147095918655396, 0.05347814783453941, 0.0007135941414162517, 0.03734162449836731, -0.07368561625480652, -0.0073729087598621845, -0.08143763244152069, 0.03647562116384506, 0.0369625985622406, -0.02549886703491211, 0.0076511576771736145, 0.0322904959321022, -0.009196733124554157, 0.002670907648280263, 0.06866422295570374, -0.1287379264831543, -0.0948721244931221, -0.11172036081552505, 0.19247537851333618, -0.051318373531103134, 0.1013665646314621, -0.10546857118606567, -0.08806619048118591, 0.06013255566358566, -0.02471809834241867, -0.005070419516414404, -0.0306082796305418, 0.10901527851819992, 0.040483176708221436, -0.11637981235980988, 0.13997036218643188, 0.008973483927547932, 0.08654285967350006, 0.017383944243192673, -0.037397004663944244, -0.10461264103651047, -0.0210880059748888, -0.03564506024122238, 0.04718952253460884, -0.06736477464437485, -0.020606674253940582, 0.06034617871046066, 0.03185854107141495, -0.003736331593245268, 0.03855651989579201, -0.031591370701789856, 0.0056030950509011745, -0.06275627762079239, -0.0278572216629982, -0.017796900123357773, 0.035916682332754135, -0.004345988389104605, -0.05041201785206795, 0.020599300041794777, 0.020167261362075806, -0.030097976326942444, -0.0290764719247818, 0.00559099018573761, -0.028256049379706383, -0.03648917004466057, -0.060865484178066254, -0.04173484817147255, 0.05124830827116966, 0.018183328211307526, 0.12189584225416183, -0.09163196384906769, -0.0051492927595973015, -0.016293182969093323, 0.044693723320961, -0.06296322494745255, -0.021613115444779396, -0.06196491792798042, -0.014601284638047218, 0.0792258232831955, 0.10414417833089828, 0.07049806416034698, 0.1452842503786087, -0.1019141674041748, -0.009911153465509415, 0.07834815979003906, 0.009617194533348083, 0.0368930883705616, 0.011071929708123207, -0.013117455877363682, -0.10940300673246384, -0.031461019068956375, 0.02871033363044262, -0.010373735800385475, -0.01143310684710741, 0.10216376185417175, 0.027761336416006088, -0.020488161593675613, -0.029046451672911644, -0.020224554464221, -0.05928371474146843, -0.09036716818809509, -0.0072051649913191795, 0.02187042310833931, 0.08387930691242218, -0.004790053237229586, -0.033833399415016174, -0.0284477099776268, -0.10176674276590347, -0.04764828830957413, 0.1434308886528015, 0.08998720347881317, 0.05968114733695984, -0.03758848085999489, 0.058371640741825104, 0.01882324554026127, 0.0628107413649559, -0.08782945573329926, -0.09723220020532608, -0.04673977196216583, 0.0030506837647408247, -0.17778928577899933, -0.015880635008215904, 0.05058727785944939, -0.08507329225540161, 0.06000969558954239, 0.047145549207925797, 0.1467258632183075, -0.030035844072699547, 0.14497308433055878, -0.011563235893845558, -0.015918347984552383, 0.10774431377649307, 0.01731020398437977, -0.11235088855028152, 0.10076485574245453, -0.09620029479265213, -0.07970352470874786, -0.03535149246454239, 0.05426209792494774, 0.06615010648965836, 0.09375090152025223, -0.0065984949469566345, 0.012517036870121956, 0.06185439974069595, -0.008873911574482918, -0.05257010459899902, 0.02256723865866661, 0.019952522590756416, 0.04765194281935692, 0.0721367821097374, -0.03335358947515488, 0.019120285287499428, 0.025902247056365013, -0.008558724075555801, 0.028909914195537567, -0.040990084409713745, 0.021592333912849426, -0.05542939901351929, -0.03830366209149361, 0.0702967643737793, -0.038586921989917755, 0.07110057771205902, -0.11087296903133392, 0.009217588230967522, 0.06954160332679749, -0.03906802833080292, -0.04101293906569481, 0.16173705458641052, 0.03949601203203201, -0.006685392931103706, -0.09760883450508118, 0.03069276735186577, 0.012925500981509686, -0.014733271673321724, 0.03937886282801628, 0.004286964423954487, -0.007745398208498955, 0.058945972472429276, -0.007999596185982227, 0.041193243116140366, 0.025534052401781082, 0.0643838569521904, 0.12610574066638947, -0.010047004558146, -0.01223687082529068, -0.04468158632516861, 0.025180790573358536, -0.016603780910372734, 0.05973310023546219, 0.06816016137599945, 0.05314214155077934, 0.029322205111384392, 0.06568364053964615, -0.0003697909414768219, -0.05026824399828911, 0.11506769806146622, -0.0479322150349617, -0.02196933887898922, 0.007645437493920326, -0.06637334823608398, 0.03959748148918152, 0.022267643362283707, 0.04943663626909256, 0.09260660409927368, 0.07704441249370575, 0.023976529017090797, 0.05402828007936478, -0.04493100568652153, 0.012892254628241062, 0.03849341720342636, -0.12976619601249695, 0.03759344667196274, -0.0701521560549736, 0.04715137556195259, -0.04747123643755913, 0.021048743277788162, 0.07541193813085556, 0.018876150250434875, -0.049053091555833817, 0.05607886239886284, 0.019482538104057312, 0.029959456995129585, -0.017008068040013313, 0.014177810400724411, -0.06788408756256104, 0.0735735297203064, 0.12450887262821198, 0.03159701079130173, -0.07765417546033859, 0.060586828738451004, 0.09612943977117538, 0.0116815734654665, 0.009278155863285065, 0.04667790234088898, -0.03213637322187424, -0.014529782347381115, -0.0271022766828537, 0.038895659148693085, -0.09922661632299423, 0.06366582214832306, 0.01648542657494545, -0.021588338539004326, -0.07139423489570618, 0.031176317483186722, -0.05352497473359108, 0.04054474085569382, -0.01267653051763773, -0.02153630740940571, -0.11877495795488358, -0.0804157555103302, -0.0008935218211263418, 0.022532623261213303, 0.003078253474086523, 0.03625224158167839, -0.0006841475842520595, -0.05782662704586983, -0.055798403918743134, 0.009060828015208244, -0.08234328776597977, 0.042156755924224854, -0.04070669412612915, 0.04907092824578285, 0.018366623669862747, -0.0820145234465599, 0.0686212033033371, 0.10988713800907135, 0.037873268127441406, -0.07272321730852127, -0.032009221613407135, -0.06002620607614517, 0.04473249241709709, 0.020227009430527687, -0.010587158612906933, 0.07596695423126221, -0.016132909804582596, -0.1363253891468048, 0.010340632870793343], "\u8bf7\u95ee`yolov4-tiny-3l.weights`\u6a21\u578b\u6587\u4ef6\u53ef\u4ee5\u76f4\u63a5\u8f6c\u6362\u6210MindSpore\u6a21\u578b\u5417\uff1f": [-0.07116824388504028, -0.07662959396839142, 0.04077024757862091, 0.1085621565580368, -0.009121958166360855, -0.08468801528215408, 0.004490742925554514, -0.0007927900296635926, -0.008198502473533154, -0.004259620327502489, 0.07222583144903183, -0.004510393366217613, -0.028766879811882973, 0.015906300395727158, -0.020524263381958008, 0.13536436855793, 0.12111853063106537, 0.05596105009317398, -0.055192746222019196, 0.09325798600912094, -0.06177131086587906, -0.006363131105899811, -0.009590472094714642, -0.015567254275083542, -0.020683707669377327, 0.1464812457561493, 0.055361151695251465, 0.05487779900431633, 0.0037761207204312086, 0.06276939809322357, 0.06848923861980438, -0.04201650619506836, -0.024778928607702255, -0.017278073355555534, -0.0802621841430664, -0.03143874555826187, -0.0771125853061676, 0.1175525039434433, 0.015182728879153728, -0.09621550142765045, 0.09545682370662689, 0.005375847686082125, -0.13988752663135529, 0.09601224958896637, -0.08541284501552582, -0.05446133390069008, -0.12627573311328888, 0.03853871300816536, 0.1420019567012787, 0.03072456642985344, -0.031116658821702003, 0.07783428579568863, 0.02028580754995346, -0.059817276895046234, -0.11406870186328888, -0.040656499564647675, 0.05668545514345169, -0.04609496891498566, 0.01632486842572689, 0.016749178990721703, 0.014834163710474968, 0.05748393386602402, -0.08345949649810791, -0.062260109931230545, -0.15438194572925568, 0.003380114445462823, -0.03737673535943031, -0.04875052720308304, -0.002592541044577956, -0.0021197739988565445, -0.009193440899252892, 0.0376754067838192, 0.056658659130334854, 0.005559368524700403, 0.08147796988487244, 0.14405383169651031, 0.036674194037914276, -0.07181301712989807, -0.06694818288087845, 0.07972598075866699, -0.06992034614086151, 0.06837485730648041, -0.03722293674945831, -0.06952118873596191, -0.06931675225496292, -0.1111413836479187, -0.045717693865299225, 0.01043796632438898, -0.045670852065086365, 0.09117274731397629, 0.06640750169754028, -0.044798217713832855, -0.19946768879890442, -0.0031763766892254353, 0.09896335750818253, -0.06394887715578079, -0.07344789803028107, -0.054456695914268494, -0.13098467886447906, -0.03542469069361687, 1.0998919606208801e-05, -0.019272280856966972, -0.050121381878852844, 0.11324722319841385, 0.011905234307050705, -0.11425650119781494, -0.054915718734264374, 0.03367527946829796, 0.029186245054006577, -0.061760228127241135, 0.009746719151735306, -0.003467707894742489, 0.07266218960285187, 0.07577655464410782, -0.031980883330106735, 0.13712961971759796, -0.10208220779895782, 0.005930684041231871, -0.0942249596118927, 0.08926086872816086, 0.09321684390306473, -0.05068486928939819, 0.01558548305183649, 0.057976797223091125, 0.022423144429922104, -0.006075500976294279, 0.021327996626496315, -0.10034444183111191, -0.10983580350875854, -0.029417958110570908, 0.13489829003810883, -0.03644629940390587, 0.04793139919638634, -0.09549037367105484, -0.09278327971696854, 0.05521039664745331, -0.07559613883495331, -0.01749485731124878, -0.07138828188180923, 0.13786877691745758, 0.08922643214464188, -0.13686656951904297, 0.059604279696941376, -0.03747398033738136, 0.08132265508174896, 0.0418834313750267, -0.1392987072467804, -0.1304999589920044, -0.02615853026509285, -0.05287119001150131, 0.13280555605888367, 0.04744623228907585, -0.0226393174380064, 0.11667909473180771, 0.013547854498028755, 0.0014066463336348534, 0.001913850661367178, 0.015997163951396942, -0.01811385154724121, -0.061298664659261703, -0.006713991519063711, -0.07543101906776428, 0.1303272545337677, -0.05399148911237717, -0.0771888941526413, 0.05422423407435417, -0.006936606485396624, 0.10063068568706512, -0.07173386216163635, -0.08661285787820816, -0.01168815791606903, 0.006144281476736069, 0.02433464676141739, -0.021005501970648766, 0.011637605726718903, -0.006506012286990881, 0.10777752846479416, -0.07534052431583405, -0.014567885547876358, 0.05459924414753914, 0.08082978427410126, -0.06716586649417877, -0.004005554132163525, -0.10534320771694183, -0.04119478911161423, 0.08762072771787643, 0.01487720012664795, 0.04893656447529793, 0.14095263183116913, -0.18781183660030365, -0.04619225114583969, 0.012340228073298931, 0.015753500163555145, 0.07646707445383072, -0.004594286438077688, -0.015554274432361126, -0.10213915258646011, 0.03461068123579025, 0.03745849430561066, 0.021589241921901703, 0.009979654103517532, 0.05437707528471947, 0.033728376030921936, -0.01897169090807438, -0.0028968455735594034, -0.06502071768045425, -0.08516597747802734, -0.11321520805358887, -0.06152373179793358, -0.015483863651752472, 0.11833211779594421, 0.012531168758869171, 0.02970104292035103, -0.04677165672183037, -0.1413276046514511, 0.011059898883104324, 0.1276833713054657, 0.04398198425769806, 0.09120635688304901, -0.01953236386179924, -0.0011154892854392529, 0.016632407903671265, -0.016818422824144363, -0.03565521910786629, -0.04608637094497681, -0.005243553314357996, 0.050889965146780014, -0.05597824975848198, 0.03840251266956329, 0.04778366535902023, -0.017906997352838516, 0.03794477507472038, -0.06227516755461693, 0.0985555499792099, 0.004442108329385519, 0.08898445218801498, -0.07320377230644226, 0.04007742553949356, 0.04484083130955696, -0.029730217531323433, -0.10437821596860886, 0.10759912431240082, -0.0217527374625206, 0.007800409570336342, -0.05757660046219826, 0.07961197942495346, 0.09559150785207748, 0.009348353371024132, -0.029404673725366592, -0.13795678317546844, 0.0671779066324234, -0.005067685153335333, -0.08539654314517975, -0.02455299161374569, -0.09130129218101501, 0.07575219869613647, 0.15178102254867554, -0.028431277722120285, 0.02156027965247631, 0.04456911236047745, -0.03796734660863876, -0.005335684400051832, -0.025586677715182304, 0.05876900628209114, -0.06792690604925156, -0.013124587945640087, 0.08802783489227295, -0.0653260201215744, 0.014129485003650188, -0.031093532219529152, 0.060577865689992905, -0.011399755254387856, -0.03133353218436241, 0.005471189972013235, 0.12875744700431824, 0.07441595196723938, 0.07488461583852768, -0.14096370339393616, 0.02521265484392643, 0.007978862151503563, -0.039070360362529755, 0.05039070174098015, 0.003243338083848357, -0.012917183339595795, 0.05691824108362198, -0.03231686353683472, 0.09918239712715149, -0.040676917880773544, 0.014107598923146725, 0.09367087483406067, 0.012814714573323727, -0.013791530393064022, 0.0047560143284499645, -0.029405781999230385, -0.05575445666909218, 0.09457441419363022, 0.003412617137655616, 0.0631711483001709, 0.03918559476733208, 0.0006876251427456737, 0.03839313983917236, -0.08699303865432739, 0.024426516145467758, -0.09834896773099899, -0.04040524363517761, 0.05181948095560074, -0.052128929644823074, -0.029552806168794632, -0.024273376911878586, -0.07184556871652603, 0.09791387617588043, -0.029214339330792427, 0.04821795970201492, 0.12430055439472198, -0.042214956134557724, -0.03483539819717407, 0.06471605598926544, -0.06532874703407288, 0.06275417655706406, -0.0718989223241806, -0.0027353751938790083, -0.06466373056173325, 0.050203826278448105, 0.061708562076091766, 0.04453262314200401, -0.03567434102296829, -0.009979788213968277, 0.10582476854324341, -0.07355058938264847, 0.0754707008600235, -0.008849374949932098, -0.08666694164276123, 0.11869040131568909, 0.01965564303100109, 0.06210232153534889, -0.17219553887844086, 0.024127323180437088, 0.025139104574918747, -0.08044851571321487, 0.06109312176704407, 0.024992533028125763, -0.03910542279481888, 0.05386635661125183, -0.029257681220769882, 0.11006782948970795, -0.1414993703365326, 0.07065317034721375, -0.11650346219539642, -0.0074833352118730545, -0.0668652132153511, 0.016744229942560196, 0.05959602817893028, 0.06813614070415497, 0.09980107098817825, 0.035509735345840454, -0.053631458431482315, -0.060023874044418335, 0.056551363319158554, 0.06796661019325256, 0.027454372495412827, -0.04801692068576813, -0.09558243304491043, -0.030065299943089485, -0.10536322742700577, 0.08646330237388611, -0.06677695363759995, 0.06845083832740784, -0.027550004422664642, 0.05979055538773537, -0.002401340287178755, -0.0997195690870285, 0.05017738789319992, 0.03152810037136078, 0.07607293874025345, 0.07572592049837112, 0.011227831244468689, -0.12035015970468521, 0.05895756185054779, -0.016393888741731644, -0.001342649688012898, 0.010260306298732758, 0.039297666400671005, -0.16522827744483948, -0.01366659440100193], "\u4f7f\u7528MindSpore\u8fdb\u884c`model.train`\u7684\u65f6\u5019\u8fdb\u884c\u4e86\u5982\u4e0b\u8bbe\u7f6e\uff0c\u4e3a\u4ec0\u4e48\u4f1a\u62a5\u9519\u5462\uff1f": [0.02062556892633438, 0.02588004432618618, -0.028470506891608238, 0.06611133366823196, -0.061699122190475464, -0.05677707493305206, 0.0038926703855395317, 0.05122563615441322, 0.00753283966332674, 0.05891517922282219, -0.043111205101013184, 0.010479317978024483, -0.01900574192404747, -0.0036410063039511442, 0.029490914195775986, 0.05803857371211052, 0.079534612596035, 0.050724711269140244, -0.025954343378543854, 0.040185436606407166, -0.04133954271674156, -0.042429886758327484, 0.04131602495908737, 0.05137409642338753, 0.045556001365184784, 0.11347711086273193, -0.0069601829163730145, 0.024845821782946587, -0.07245618849992752, 0.0901632159948349, 0.006550706457346678, 0.043821319937705994, -0.08962275832891464, 0.021546870470046997, -0.0374571867287159, -0.01783325895667076, -0.05926990509033203, 0.09622599184513092, -0.05056631565093994, -0.02014068141579628, 0.04685114324092865, 0.015323638916015625, 0.022282477468252182, 0.09143545478582382, 0.026851069182157516, -0.04825552925467491, -0.15758301317691803, 0.020344926044344902, 0.06742130219936371, 0.016368625685572624, -0.11737789213657379, 0.06670507788658142, 0.029951320961117744, -0.061532601714134216, -0.020358208566904068, -0.030990267172455788, 0.020892750471830368, -0.029052775353193283, 0.020951658487319946, -0.036478448659181595, 0.0763884112238884, 0.03894256427884102, -0.079742431640625, -0.03581833094358444, -0.12457974255084991, -0.0027232251595705748, -0.019584614783525467, -0.12172422558069229, 0.039958130568265915, 0.049896448850631714, -0.12084408104419708, 0.01404636725783348, 0.007137917913496494, 0.07463444769382477, 0.024584781378507614, 0.05160611495375633, -0.01414141058921814, 0.030678575858473778, -0.06473858654499054, 0.028968311846256256, 0.01654166728258133, 0.10452671349048615, 0.014133676886558533, -0.05635504797101021, -0.03590070456266403, 0.0008107273024506867, -0.07056037336587906, 0.050230205059051514, -0.012434696778655052, 0.1229807436466217, -0.007740366272628307, 0.008665616624057293, -0.1674838811159134, 0.06487014889717102, 0.10453607141971588, 0.014714257791638374, 0.01129705086350441, -0.06677055358886719, -0.15776807069778442, -0.01447032019495964, -0.0003873780369758606, -0.02032521925866604, -0.02847108244895935, 0.09632977843284607, 1.02166086435318e-05, -0.14866137504577637, -0.027843104675412178, 0.12035170197486877, 0.06614597886800766, 0.014966389164328575, 0.03674560412764549, -0.0020739592146128416, 0.11486925929784775, 0.015634916722774506, 0.020941205322742462, -0.001381794922053814, -0.11752035468816757, -0.031230952590703964, -0.038165222853422165, 0.12544289231300354, 0.1430743783712387, -0.009148433804512024, 0.04084505885839462, 0.05007510632276535, 0.052087314426898956, -0.010952480137348175, 0.03887483477592468, -0.12280984222888947, -0.05498373135924339, -0.05355042591691017, 0.18176573514938354, -0.012898314744234085, 0.05447343736886978, -0.06122086942195892, -0.0655549019575119, 0.026035329326987267, -0.02909468486905098, -0.0016308561898767948, -0.09730139374732971, 0.0987095981836319, 0.01644468866288662, -0.14591489732265472, 0.000568901130463928, -0.044165998697280884, 0.09074943512678146, 0.001156411599367857, -0.06975039094686508, -0.1305844932794571, -0.04341105371713638, -0.0962415337562561, 0.10496805608272552, -0.06937997043132782, -0.04397176578640938, 0.04187461733818054, -0.11022794246673584, 0.002177885500714183, 0.04659193754196167, -0.011279664933681488, -0.016809307038784027, 0.009195549413561821, -0.015440912917256355, -0.06119813397526741, 0.021344542503356934, -0.001262647332623601, -0.07944852113723755, 0.009111595340073109, 0.04398341476917267, -0.04258185997605324, 0.019653989002108574, -0.027760371565818787, 0.0007320138392969966, -0.012019684538245201, -0.08519580215215683, -0.04691116511821747, 0.09354913979768753, 0.016477661207318306, 0.01740819215774536, -0.08683626353740692, 0.01307462714612484, -0.042452774941921234, 0.05793672055006027, -0.10125745832920074, -0.06316922605037689, -0.06568404287099838, 0.11347280442714691, 0.01957782171666622, 0.031853221356868744, 0.0058641256764531136, 0.1676180362701416, -0.12533524632453918, -0.052721038460731506, 0.05172047019004822, -0.016239214688539505, 0.14431092143058777, 0.06666237860918045, 0.010939428582787514, -0.06427563726902008, -0.01128164492547512, 0.04730750247836113, 0.008979634381830692, -0.030951891094446182, 0.023361708968877792, -0.01261313259601593, 0.030766738578677177, -0.026074014604091644, -0.03545541688799858, -0.10189967602491379, -0.1039048582315445, -0.0351959727704525, -0.030174724757671356, 0.11515052616596222, 0.050065409392118454, 0.027963818982243538, -0.13237401843070984, -0.14040173590183258, -0.036820389330387115, 0.08362957835197449, 0.11043518036603928, 0.00734320841729641, -0.0317278653383255, 0.03803174942731857, 0.053439971059560776, -0.028714152052998543, -0.06974510103464127, -0.10172799229621887, -0.006984054110944271, -0.016788294538855553, -0.09774325042963028, 0.01851114071905613, 0.012260247021913528, -0.0630849227309227, 0.10684270411729813, 0.01160221453756094, 0.07426050305366516, -0.044995687901973724, 0.04908466711640358, -0.07189752906560898, 0.020534954965114594, 0.014157824218273163, -0.005860283970832825, -0.09139613062143326, 0.10205970704555511, -0.08672483265399933, 0.04530870169401169, -0.06547822803258896, 0.1092456579208374, 0.09518705308437347, 0.01400679163634777, 0.02890370972454548, -0.02948019839823246, 0.060064077377319336, -0.0034257653169333935, 0.04314408078789711, 0.07668213546276093, -0.06966432929039001, 0.0670429989695549, 0.0359305664896965, -0.0045110685750842094, -0.004497600253671408, 0.05780893936753273, -0.0156578179448843, 0.05884908139705658, -0.07361257076263428, -0.016585305333137512, -0.08974167704582214, -0.02071908675134182, 0.09619653224945068, 0.011118557304143906, -0.042411331087350845, -0.10064759105443954, 0.02178320661187172, 0.05160459503531456, -0.039682697504758835, 0.05969652161002159, 0.13680724799633026, 0.10229117423295975, 0.0009357190574519336, -0.17144834995269775, 0.06430882215499878, 0.006122250109910965, 0.006265271455049515, 0.0521138459444046, -0.019036607816815376, -0.004353054333478212, 0.0777369812130928, -0.07282743602991104, 0.05980946496129036, 0.05987543985247612, 0.05718139559030533, 0.05778969079256058, -0.05734485760331154, -0.04276246950030327, -0.05984119325876236, 0.009205766022205353, -0.004695902578532696, 0.10782485455274582, 0.04839852452278137, 0.05068187415599823, 0.07555893063545227, 0.09892634302377701, -0.01186166238039732, 0.027055799961090088, 0.11808329075574875, -0.03964090347290039, -0.019378604367375374, 0.024300411343574524, -0.16380634903907776, 0.08146040886640549, -0.0179758183658123, -0.011573274619877338, -0.0028418151196092367, 0.038548413664102554, 0.03259217366576195, 0.13979549705982208, -0.09854553639888763, -0.04121169075369835, 0.03662083297967911, -0.10739122331142426, 0.03310060873627663, 0.006781165022403002, 0.02893640846014023, 0.007233970332890749, -0.031085358932614326, 0.07848513126373291, 0.061292313039302826, -0.045245468616485596, 0.060295481234788895, 0.04679352790117264, -0.021962573751807213, -0.043380726128816605, 0.02981819398701191, -0.043817609548568726, 0.10200850665569305, 0.008770027197897434, 0.046210791915655136, -0.15468263626098633, 0.052137963473796844, 0.11227519065141678, 0.07056818157434464, 0.0248679518699646, 0.02581043168902397, -0.0467519536614418, -0.06949543952941895, -0.07400777190923691, 0.0895102322101593, 0.0002554208040237427, 0.08244097977876663, -0.010292195715010166, -0.06309784948825836, -0.09420233964920044, -0.026119638234376907, 0.01615447923541069, 0.022651836276054382, -0.02627554163336754, -0.012167507782578468, -0.15891584753990173, -0.09479319304227829, -0.005326736718416214, 0.038987841457128525, 0.04857882112264633, -0.08123498409986496, -0.037566788494586945, -0.038603708148002625, -0.10845965147018433, 0.09903807193040848, -0.05890433117747307, 0.023205453529953957, 0.03292979300022125, 0.028613518923521042, 0.008678534999489784, -0.10410961508750916, 0.20124946534633636, 0.11078277230262756, 0.09464830905199051, -0.011926796287298203, -0.08248268067836761, -0.06475905328989029, -0.0016946049872785807, 0.00970312301069498, -0.0950658917427063, -0.011594029143452644, -0.039607781916856766, -0.057187970727682114, -8.741021156311035e-05], "\u4f7f\u7528MindSpore\u8bad\u7ec3\u6a21\u578b\u5728`eval`\u9636\u6bb5\uff0c\u9700\u8981\u6ce8\u610f\u4ec0\u4e48\uff1f\u80fd\u591f\u76f4\u63a5\u52a0\u8f7d\u7f51\u7edc\u548c\u53c2\u6570\u5417\uff1f\u9700\u8981\u5728Model\u4e2d\u4f7f\u7528\u4f18\u5316\u5668\u5417\uff1f": [-0.04316629841923714, 0.0462062805891037, 0.037827931344509125, 0.07785416394472122, -0.037917595356702805, -0.06753341108560562, 0.008906628005206585, 0.08221208304166794, 0.019000818952918053, 0.04498407244682312, 0.06733588129281998, -0.02146032825112343, 0.0384136363863945, 0.030243216082453728, -0.03337857127189636, 0.07448765635490417, 0.12119787186384201, 0.01820363849401474, -0.0774138793349266, 0.07634228467941284, -0.03731610253453255, -0.007390860002487898, 0.009590715169906616, -0.011259186081588268, 0.016407804563641548, 0.08577156066894531, -0.008324315771460533, 0.033534418791532516, -0.0031599707435816526, 0.05156761407852173, 0.11350412666797638, 0.062245260924100876, -0.08694269508123398, 0.041647545993328094, -0.04237140342593193, -0.04080711305141449, -0.04924624413251877, 0.057388368993997574, -0.015266841277480125, -0.05683174729347229, 0.08556792885065079, -0.02301611751317978, -0.07716133445501328, 0.10435333102941513, -0.006773792207241058, -0.045278068631887436, -0.1026671975851059, 0.005310057196766138, 0.05002381652593613, 0.005017033778131008, -0.0584086999297142, 0.038451582193374634, -0.020322300493717194, -0.016706714406609535, -0.07259067893028259, -0.004473941866308451, -7.055886089801788e-05, 0.016274910420179367, 0.04800761118531227, -0.049579769372940063, 0.06420595943927765, -0.00717710517346859, -0.021097678691148758, 0.010953512042760849, -0.07312820851802826, -0.007869163528084755, -0.03835395351052284, -0.09729370474815369, -0.03135671839118004, 0.02658623829483986, -0.08657354861497879, -0.009335056878626347, -0.011515538208186626, 0.07575814425945282, -0.000583692395593971, 0.04365412890911102, 0.03738104924559593, 0.02107447385787964, -0.010791752487421036, 0.03704410791397095, -0.0036264602094888687, 0.08216848224401474, 0.026201818138360977, -0.06601498275995255, -0.05723091587424278, -0.006446264684200287, -0.05921025201678276, 0.0478835366666317, -0.0006279450608417392, 0.07320527732372284, 0.047320932149887085, 0.011164415627717972, -0.1773449182510376, 0.012874300591647625, 0.14055530726909637, -0.04101341590285301, -0.028057653456926346, -0.04420609399676323, -0.175914466381073, -0.036419108510017395, 0.029895823448896408, 0.012445826083421707, -0.01664435677230358, 0.031262632459402084, 0.026166684925556183, -0.08450298756361008, -0.009795250371098518, 0.036564890295267105, 0.023674068972468376, 0.008234353736042976, 0.0733269453048706, 0.014031973667442799, 0.044483233243227005, 0.01897963508963585, 0.006119485944509506, 0.02532634139060974, -0.02913026325404644, -0.025471186265349388, -0.058948367834091187, 0.1039467453956604, 0.08911646902561188, -0.04609348624944687, -0.004647538065910339, 0.05625992640852928, 0.0016970925498753786, -0.040357764810323715, 0.07713767886161804, -0.10803770273923874, -0.0944155678153038, -0.050336193293333054, 0.14048069715499878, -0.04989655688405037, 0.1170741617679596, -0.06264882534742355, -0.1725703775882721, 0.10613556206226349, -0.023458566516637802, -0.00316832447424531, -0.05329570919275284, 0.09125003218650818, 0.04189155623316765, -0.12530170381069183, 0.04768271744251251, -0.03260064125061035, 0.06360959261655807, 0.01776980236172676, -0.06646989285945892, -0.12748441100120544, -0.0025566667318344116, -0.06060909852385521, 0.07299971580505371, -0.03316330164670944, 0.005412737838923931, 0.08209583908319473, 0.032001398503780365, 0.02573694847524166, 0.010862141847610474, -0.018535561859607697, 0.006006304640322924, -0.0902450829744339, -0.07042056322097778, 0.003983959089964628, 0.036139678210020065, 0.024016495794057846, -0.05342228710651398, 0.02222629263997078, 0.03364185243844986, -0.02166944369673729, -0.03385762497782707, -0.00863376259803772, -0.04443484544754028, 0.00782324280589819, -0.009187795221805573, -0.0727936178445816, 0.03692031651735306, 0.02653619460761547, 0.04892957955598831, -0.025052696466445923, 0.02347927913069725, -0.017199261114001274, 0.060518138110637665, -0.12779773771762848, -0.00032985955476760864, -0.06894102692604065, 0.04892688989639282, 0.048650290817022324, 0.0808812752366066, 0.03208814561367035, 0.14420010149478912, -0.1521371752023697, -0.014673217199742794, 0.04416203498840332, -0.0110564474016428, 0.10717717558145523, -0.04802852123975754, 0.0014472518814727664, -0.10478729754686356, -0.024016186594963074, 0.020863041281700134, -0.07602538168430328, 0.013169985264539719, 0.039960216730833054, 0.06479410082101822, -0.00031701475381851196, -0.023501960560679436, -0.01074216142296791, -0.04424780607223511, -0.10984081029891968, 0.003503064624965191, 0.023371770977973938, 0.11406008154153824, 0.07147587090730667, -0.0465092733502388, 0.002303010318428278, -0.10509619861841202, -0.05497068166732788, 0.11549010127782822, 0.10472192615270615, 0.04532787203788757, -0.03818051517009735, 0.014592602849006653, 0.04137152060866356, 0.012647442519664764, -0.08750278502702713, -0.11973333358764648, 0.015600128099322319, -0.04079168289899826, -0.1084681823849678, -0.023577837273478508, -0.0012987878872081637, -0.040953803807497025, 0.07730384916067123, 0.09391838312149048, 0.1475827842950821, -0.028356630355119705, 0.0715261921286583, -0.0249873548746109, 0.001038062502630055, 0.05512102320790291, 0.016057191416621208, -0.08235977590084076, 0.08986420184373856, 0.0010452825808897614, -0.030402395874261856, -0.07184524089097977, 0.07580141723155975, 0.06519218534231186, 0.009021774865686893, 0.046309687197208405, -0.03938400745391846, 0.03379891440272331, -0.014166273176670074, -0.009800921194255352, -0.018119344487786293, -0.02643684111535549, 0.09001074731349945, 0.07141417264938354, -0.03796353563666344, 0.0024598638992756605, -0.001970616402104497, 0.030542584136128426, 0.012426496483385563, -0.03081156313419342, 0.014471630565822124, -0.10087673366069794, -0.08808816969394684, 0.0750264972448349, -0.021189460530877113, 0.03290807828307152, -0.09344426542520523, 0.04435700923204422, 0.03087751567363739, -0.05148793384432793, 0.018617240712046623, 0.15625953674316406, 0.07354427874088287, 0.015243462286889553, -0.16769437491893768, 0.0398808978497982, -0.012432821094989777, 0.009583759121596813, 0.08452564477920532, -0.010973206721246243, -0.0002487301826477051, 0.07047738134860992, -0.025572195649147034, 0.04274079203605652, 0.0007234205259010196, 0.03171994909644127, 0.1274552196264267, -0.024016955867409706, -0.024945029988884926, -0.053777992725372314, 0.011921974830329418, -0.029284507036209106, 0.10537045449018478, 0.05718333646655083, 0.05751228332519531, 0.03667329624295235, 0.03791223093867302, 0.003936260938644409, -0.01806415617465973, 0.07692770659923553, -0.0448167510330677, -0.031787533313035965, 0.013997821137309074, -0.0317409448325634, 0.05754879117012024, 0.01836996152997017, 0.022523213177919388, 0.08569837361574173, 0.12213253229856491, 0.005612121894955635, 0.09502054750919342, -0.0866507738828659, -0.02524164319038391, 0.04129853472113609, -0.11302198469638824, 0.027999762445688248, -0.04439038038253784, 0.005471812095493078, -0.043204281479120255, -0.01010314654558897, 0.07873565703630447, 0.069795623421669, -0.005380924791097641, 0.08424435555934906, 0.07589869946241379, -0.00827282015234232, -0.013318941928446293, 0.03563360869884491, -0.06540220230817795, 0.06655392050743103, 0.11281946301460266, 0.02726023644208908, -0.1301569640636444, 0.09043321013450623, 0.055241696536540985, -0.011320355348289013, 0.024671753868460655, 0.057041771709918976, -0.08569328486919403, -0.017695967108011246, -0.05364749953150749, 0.059407614171504974, -0.07309036701917648, 0.045049309730529785, 0.028615958988666534, -0.016355019062757492, -0.06345393508672714, 0.015654034912586212, -0.0398687906563282, 0.08632701635360718, -0.0481908954679966, -0.006465247832238674, -0.13186395168304443, -0.05703578144311905, -0.01092233695089817, 0.03909151256084442, -0.023106925189495087, -0.0010844082571566105, -0.021257277578115463, -0.045435115694999695, -0.08764732629060745, -0.000766921613831073, -0.07040250301361084, 0.06630942970514297, -0.028216499835252762, 0.05186751112341881, 0.009413965977728367, -0.1067233681678772, 0.0920165628194809, 0.11233127117156982, 0.05337199196219444, -0.06466937065124512, -0.05974782630801201, -0.10722679644823074, 0.04634508490562439, 0.007477028761059046, -0.04847462475299835, 0.06351181119680405, -0.039703719317913055, -0.08194032311439514, -0.033516425639390945], "\u5982\u4f55\u4f7f\u7528SGD\u91cc\u7684`param_group`\u6765\u5b9e\u73b0\u5b66\u4e60\u7387\u7684\u8870\u51cf\uff1f": [-0.006690962240099907, 0.08003859221935272, 0.022669591009616852, 0.0492316372692585, -0.046254318207502365, -0.014077333733439445, 0.020806599408388138, 0.047868482768535614, 0.041289616376161575, -0.0031879660673439503, 0.008938737213611603, 0.002416052855551243, -0.00804123468697071, 0.0019241399131715298, -0.09664338082075119, 0.04440445452928543, 0.11552046984434128, 0.01934737153351307, -0.0371759794652462, 0.08707473427057266, 0.03443089872598648, -0.02030712179839611, 0.030758757144212723, 0.00998258963227272, 0.02382667362689972, 0.03862881660461426, 0.03181489184498787, 0.02527143619954586, -0.03126465529203415, 0.12159787118434906, 0.052698325365781784, 0.03697269782423973, -0.12533901631832123, 0.04945524036884308, -0.11303853988647461, -0.02841510809957981, -0.0383809357881546, 0.07014163583517075, 0.010512403212487698, 0.01615152135491371, 0.037829697132110596, 0.01778939738869667, -0.04248688369989395, 0.07937394082546234, -0.06162560358643532, 0.036101698875427246, -0.044464901089668274, 0.042753495275974274, 0.0346999354660511, 0.007566087879240513, -0.0917598307132721, 0.12770181894302368, 0.044464390724897385, -0.053938865661621094, -0.031093323603272438, 0.0096097681671381, 0.0626404657959938, 0.010516755282878876, 0.033665500581264496, 0.012514486908912659, -0.04393673688173294, -0.05262726917862892, -0.019702773541212082, 0.002141025383025408, -0.08582386374473572, -0.0023887036368250847, -0.052090633660554886, -0.07881660759449005, 0.0014026230201125145, -0.05933421105146408, -0.09051801264286041, -0.01279186736792326, -0.008141150698065758, 0.05624765902757645, 0.03982297703623772, 0.07339266687631607, -0.04185459762811661, -0.03159940615296364, -0.08222995698451996, 0.002005447633564472, -0.0025364721659570932, -0.041182950139045715, 0.07106254249811172, -0.10163993388414383, -0.026080507785081863, -0.025180164724588394, -0.014421025291085243, 0.07932788878679276, -0.0200921930372715, 0.07321672141551971, 0.011937420815229416, -0.07175469398498535, -0.08329105377197266, 0.08735112100839615, 0.11648084968328476, -0.06614474207162857, 0.03713250905275345, -0.03415099158883095, -0.1704888492822647, -0.03391198068857193, 0.053776875138282776, 0.053737688809633255, 0.02386258915066719, 0.0841083973646164, 0.057598456740379333, -0.11622120440006256, 0.07646165788173676, 0.0537797249853611, 0.004008269868791103, 0.035929035395383835, 0.08749277144670486, 0.00783018209040165, 0.06496042758226395, 0.05217646434903145, 0.010245383717119694, 0.024795403704047203, -0.055647991597652435, 0.0005958899273537099, -0.11837825179100037, 0.04844551905989647, 0.08501619100570679, -0.06074899807572365, 0.031931471079587936, 0.009896830655634403, 0.0035258831921964884, -0.009638065472245216, 0.06316064298152924, -0.11020274460315704, -0.09996204078197479, -0.04947573319077492, 0.17645509541034698, -0.038186389952898026, 0.049689069390296936, -0.164372518658638, -0.11072632670402527, 0.09756426513195038, 0.003983256872743368, -0.03133261948823929, -0.03986203297972679, 0.09337503463029861, 0.08365501463413239, -0.09340229630470276, 0.06469804793596268, -0.10753170400857925, 0.05224131792783737, 0.06905727088451385, -0.0718783289194107, -0.17145943641662598, -0.060248177498579025, -0.05926106125116348, 0.021501708775758743, -0.03441678732633591, -0.022618714720010757, 0.07734033465385437, -0.015510894358158112, 0.032060280442237854, 0.03351224958896637, 0.020603574812412262, -0.02370317280292511, -0.03263583034276962, -0.058558546006679535, -0.043037399649620056, 0.03183427080512047, 0.008703934960067272, -0.021662600338459015, 0.04048489034175873, -0.009355801157653332, -0.07650259137153625, -0.07382012903690338, -0.09011881798505783, 0.02723379246890545, 0.016008110716938972, -0.07325489819049835, -0.06426124274730682, 0.03747153654694557, 0.003946423530578613, 0.08136129379272461, -0.08887432515621185, 0.00789589062333107, -0.06266974657773972, 0.05267224460840225, -0.11376158893108368, -0.061500128358602524, -0.1354629099369049, 0.021027494221925735, 0.018977081403136253, 0.03458145260810852, -0.012862130999565125, 0.12245349586009979, -0.13344895839691162, 0.03694283962249756, 0.08255928009748459, -0.039168037474155426, 0.09358782321214676, -0.014984961599111557, -0.01606816239655018, -0.12268645316362381, 0.025901803746819496, 0.00712865823879838, -0.035207901149988174, 0.03385719284415245, 0.07844147831201553, 0.03064744547009468, 0.05242638662457466, -0.0355372317135334, 0.014608606696128845, -0.10006221383810043, -0.11154662817716599, 0.0026708238292485476, 0.03220389038324356, 0.12049396336078644, 0.0899270623922348, -0.030015356838703156, -0.02458958700299263, -0.04915750026702881, -0.018027838319540024, 0.13364124298095703, 0.04773302748799324, 0.06773712486028671, 0.0038252882659435272, 0.056087005883455276, 0.01312414463609457, 0.07634994387626648, -0.06858900934457779, -0.06009820103645325, -0.11664485931396484, 0.01979619823396206, -0.14232972264289856, -0.008779792115092278, -0.013058573938906193, -0.04125932231545448, 0.07555364072322845, 0.05837230756878853, 0.12150641530752182, -0.049620382487773895, 0.05612977594137192, -0.05393202602863312, 0.0014918230008333921, 0.03451966866850853, 0.03985553979873657, -0.07036522030830383, 0.12927183508872986, -0.05523192882537842, -0.018919939175248146, -0.05895168334245682, 0.15299296379089355, 0.09176980704069138, 0.124649278819561, 0.01715313456952572, 0.022136490792036057, 0.018880946561694145, 0.04559015855193138, 0.022808419540524483, 0.04833834618330002, -0.019124096259474754, 0.05470936745405197, 0.12211284041404724, -0.05084933713078499, -0.0005425065173767507, 0.021771200001239777, -0.010883023962378502, -0.03326128423213959, -0.07822997868061066, 0.05019214749336243, 0.015620244666934013, 0.04276411235332489, 0.11581552773714066, -0.10403364151716232, 0.030177239328622818, -0.0644817054271698, 0.015217259526252747, 0.02215554565191269, -0.032032355666160583, -0.03042595461010933, 0.11975198984146118, 0.07446172833442688, -0.025104660540819168, -0.09591656178236008, 0.01666986383497715, 0.01825125142931938, 0.016110707074403763, 0.049363698810338974, -0.00020924396812915802, -0.016941754147410393, 0.07103914767503738, 0.02023078128695488, 0.11039870232343674, -0.02278973162174225, 0.041892677545547485, 0.1615431159734726, -0.05051995813846588, -0.056431785225868225, -0.05576672777533531, -0.04775300249457359, -0.10398832708597183, 0.08785596489906311, -0.0005274745053611696, 0.04189392179250717, 0.04003569483757019, 0.050403401255607605, 0.020586036145687103, -0.05179208889603615, 0.11652305722236633, -0.08581789582967758, -0.0511070154607296, -0.0014794346643611789, -0.10283954441547394, 0.01196302566677332, 0.02630440704524517, 0.006422621197998524, 0.10018327087163925, 0.07821966707706451, -0.003269981127232313, 0.034503273665905, -0.017005588859319687, 0.010444588959217072, -0.00936153158545494, -0.061215683817863464, 0.011296011507511139, -0.09231583029031754, -0.057576533406972885, -0.033913712948560715, 0.017355043441057205, 0.06813690811395645, 0.03157929331064224, -0.02771967649459839, 0.0790758952498436, 0.0010926607064902782, -0.004366820678114891, -0.024060092866420746, 0.06196408346295357, -0.03186260163784027, 0.0735119953751564, 0.07877123355865479, -0.020586714148521423, -0.140107199549675, 0.1229146346449852, 0.04093589633703232, 0.013399495743215084, 0.04527076333761215, 0.04597138985991478, -0.07167217880487442, -0.07986165583133698, -0.11384312808513641, 0.0507010743021965, -0.022827470675110817, 0.10024476796388626, 0.03571265935897827, -0.017566822469234467, -0.04799148812890053, 0.00972940493375063, -0.056805431842803955, 0.12401966005563736, -0.01286762673407793, -0.07265377044677734, -0.04870053380727768, -0.01125628873705864, 0.01215673703700304, 0.006739091128110886, -0.02133447304368019, 0.015672245994210243, -0.05683017149567604, -0.02225075662136078, -0.03150653839111328, 0.04682708904147148, -0.032715048640966415, 0.008669271133840084, 0.04279991611838341, 0.005466157104820013, -0.0434754379093647, -0.09534304589033127, 0.10321398079395294, 0.10267980396747589, 0.07208635658025742, -0.06066102534532547, -0.0006491186795756221, -0.06910762190818787, 0.022315116599202156, -0.05972519516944885, -0.011555667966604233, 0.027562519535422325, 0.0068876962177455425, -0.08669164031744003, -0.01308315247297287], "MindSpore\u5982\u4f55\u8fdb\u884c\u53c2\u6570\uff08\u5982dropout\u503c\uff09\u4fee\u6539\uff1f": [-0.07145582884550095, 0.08517052233219147, 0.019556744024157524, 0.003007330233231187, -0.032143447548151016, 0.00011317431926727295, 0.02102135308086872, 0.024956027045845985, -0.010630613192915916, 0.0607667937874794, -0.027466589584946632, 0.010780977085232735, 0.07314345240592957, 0.040566347539424896, -0.08021606504917145, 0.1010105088353157, 0.09365756064653397, 0.04100789874792099, -0.0397958867251873, 0.034282609820365906, -0.044280365109443665, -0.04035042226314545, 0.08706342428922653, 0.06214914098381996, 0.04297792539000511, 0.08791118115186691, 0.016051096841692924, 0.01288360171020031, -0.035525720566511154, 0.09417388588190079, 0.06707494705915451, 0.02035829797387123, -0.06362613290548325, 0.03859148919582367, -0.04585883766412735, -0.04007093980908394, -0.009842140600085258, 0.06038651615381241, -0.014845027588307858, -0.06322158873081207, 0.02050451748073101, 0.029030699282884598, -0.021098392084240913, 0.13647499680519104, -0.0514100044965744, -0.020918413996696472, -0.11581355333328247, 0.061926499009132385, 0.06099546328186989, 0.010680216364562511, -0.07251618057489395, 0.09410394728183746, 0.024121860042214394, -0.04195854440331459, -0.05882732570171356, -0.0012169921537861228, 0.034816790372133255, 0.05445872247219086, 0.02451705001294613, -0.0799209326505661, 0.004992543254047632, 0.011758314445614815, -0.02837388589978218, -0.0373053103685379, -0.11357127130031586, 0.01994835026562214, -0.08723334223031998, -0.10684414952993393, -0.05007980391383171, 0.03319293260574341, -0.05948587879538536, 0.009656457230448723, -0.06333660334348679, 0.044920727610588074, 0.06194804608821869, 0.038018397986888885, -0.024746479466557503, -0.030765745788812637, -0.08368414640426636, 0.045643799006938934, 0.012416062876582146, 0.08631491661071777, -0.02370826154947281, -0.044531818479299545, -0.09063015878200531, -0.025155335664749146, -0.045029349625110626, 0.04743749275803566, -0.07719989120960236, 0.07689785212278366, -0.02958521991968155, 0.04204424098134041, -0.18464405834674835, 0.05691211670637131, 0.052005987614393234, -0.005737284664064646, -0.029119426384568214, -0.08236325532197952, -0.1091923713684082, -0.050255194306373596, 0.043457336723804474, -0.024585971608757973, -0.04210953414440155, 0.06637406349182129, 0.0205052699893713, -0.10454324632883072, 0.03959650546312332, 0.06480348110198975, 0.0836736187338829, 0.043578408658504486, 0.10984355211257935, -0.007817999459803104, 0.0984867736697197, 0.0539945550262928, 0.08041679114103317, 0.008408511988818645, -0.08861960470676422, -0.029561739414930344, -0.03896547853946686, 0.0943751111626625, 0.08007919788360596, -0.0005970000638626516, 0.024652637541294098, 0.07100644707679749, 0.04357898607850075, 1.930631697177887e-05, 0.06731559336185455, -0.12306172400712967, -0.1432519555091858, -0.10446759313344955, 0.1460896134376526, -0.04050291329622269, 0.11798626184463501, -0.08836813271045685, -0.08964332193136215, 0.07231676578521729, -0.05249806493520737, 0.019828669726848602, -0.06295645236968994, 0.10948139429092407, -0.0047152661718428135, -0.1595713347196579, 0.056361500173807144, -0.01569342613220215, 0.07892441749572754, 0.06528568267822266, -0.04998404160141945, -0.16486062109470367, -0.009500850923359394, -0.0763796716928482, 0.1131918877363205, 0.005185289308428764, -0.07083359360694885, 0.054844532161951065, -0.05514252930879593, 0.05960438400506973, 0.025731254369020462, 0.0465112030506134, -0.03617773950099945, -0.045191869139671326, -0.0308472141623497, -0.035751160234212875, 0.03600386157631874, 0.019738394767045975, -0.044452324509620667, -0.0071068392135202885, -0.006769915111362934, 0.008181501179933548, -0.03727283701300621, -0.02592908963561058, -0.04743732884526253, -0.005544142331928015, -0.08636872470378876, -0.01538047380745411, 0.019352266564965248, 0.01880684308707714, 0.04933254420757294, -0.07701638340950012, 0.0034645749256014824, -0.070638507604599, 0.05667315050959587, -0.11204153299331665, -0.018057722598314285, -0.049700960516929626, 0.07892906665802002, 0.026015035808086395, 0.1187514066696167, 0.048396944999694824, 0.14005887508392334, -0.11166467517614365, 0.03348049148917198, 0.03195731341838837, -0.029794014990329742, 0.045156367123126984, 0.03547559678554535, 0.0409977026283741, -0.027503227815032005, -0.029746051877737045, 0.013269361108541489, 0.035680390894412994, 0.0033636600710451603, -0.004755224566906691, -0.04392176494002342, 0.05546779930591583, -0.0018286274280399084, -0.028819721192121506, -0.08459276705980301, -0.08266174793243408, -0.03235284239053726, -0.048490315675735474, 0.13688668608665466, 0.04257362708449364, 0.0010343935573473573, -0.07950016856193542, -0.12409689277410507, -0.013471248559653759, 0.12796229124069214, 0.04512317106127739, 0.010021012276411057, -0.04081786796450615, 0.03753434866666794, 0.03440920636057854, 0.0038898466154932976, -0.07955804467201233, -0.1825537234544754, -0.039047323167324066, -0.03404654189944267, -0.13324883580207825, -0.015770625323057175, 0.07839657366275787, -0.03143426403403282, 0.10133512318134308, -0.01676364801824093, 0.12528888881206512, -0.03936317563056946, 0.12710951268672943, -0.04253406450152397, -0.04163280874490738, -0.00949876382946968, -0.006839442998170853, -0.09760800004005432, 0.05069975182414055, -0.07761438935995102, -0.05359789356589317, -0.10214105248451233, 0.10599920153617859, 0.09250953793525696, 0.027762794867157936, 0.04526505991816521, -0.05667111277580261, 0.06871072202920914, 0.0052873520180583, 0.00824736338108778, 0.06643775850534439, -0.03660782054066658, 0.065754234790802, 0.07453731447458267, -0.051986657083034515, 0.042541734874248505, 0.03516671061515808, -0.007344585843384266, 0.0244701337069273, -0.09558680653572083, 0.011260529048740864, 0.026928309351205826, -0.02249394729733467, 0.03393208980560303, -0.08193861693143845, 0.04090386629104614, -0.10205340385437012, 0.01068178191781044, 0.02948729693889618, -0.07341170310974121, 0.05084078758955002, 0.09954114258289337, 0.11787302792072296, -0.06143835932016373, -0.10595370084047318, 0.007971149869263172, 0.06164848059415817, -0.06385394185781479, 0.01449250616133213, 0.018832977861166, 0.011378918774425983, 0.014218035154044628, -0.02491731569170952, 0.00868166796863079, 0.03173571452498436, 0.07305605709552765, 0.12177275866270065, -0.008983930572867393, -0.006887736730277538, -0.03296133875846863, 0.07294966280460358, 0.01760297268629074, 0.011493654921650887, -0.018782133236527443, 0.010537449270486832, 0.06376896798610687, 0.041712816804647446, -0.029249032959342003, -0.0209213700145483, 0.12735770642757416, -0.06389271467924118, -0.05087411403656006, 0.03410089388489723, -0.09596361964941025, 0.06743840128183365, -0.025081226602196693, 0.054234545677900314, 0.13350115716457367, 0.06996491551399231, 0.03834390267729759, 0.1326475441455841, -0.07207701355218887, -0.007783102802932262, 0.06042955070734024, -0.13864509761333466, 0.07390192896127701, -0.061508383601903915, 0.015558412298560143, -0.0697312280535698, 0.010663503780961037, 0.12042098492383957, 0.05005453899502754, -0.07383931428194046, 0.0595456063747406, 0.04306206479668617, 0.029436979442834854, -0.03853286802768707, 0.06789801269769669, -0.06468168646097183, 0.060637541115283966, 0.001528299180790782, 0.021119801327586174, -0.12965083122253418, 0.03262866288423538, 0.12131565809249878, 0.022463051602244377, 0.04502793774008751, 0.05074464529752731, -0.07354503870010376, 0.009412933140993118, -0.08392629027366638, 0.09716502577066422, -0.10842208564281464, 0.06258399784564972, 0.047341715544462204, -0.014819703996181488, -0.0781196802854538, 0.04932940751314163, -0.024029411375522614, 0.06490775942802429, -0.00021876394748687744, 0.021738212555646896, -0.15286648273468018, -0.10813737660646439, 0.00732745137065649, 0.04539654403924942, 0.07192644476890564, -0.05357504263520241, -0.024847552180290222, -0.030199456959962845, -0.07349691540002823, -0.025389287620782852, -0.025356613099575043, 0.016166362911462784, -0.06357848644256592, 0.06781727820634842, -0.026100732386112213, -0.11638385057449341, 0.11072297394275665, 0.09155470877885818, 0.09701049327850342, -0.09618916362524033, -0.10373134911060333, -0.08217290043830872, 0.05519264191389084, 0.0067812432534992695, -0.09401955455541611, 0.01290050521492958, -0.01185204740613699, -0.1293984204530716, 0.036634545773267746], "\u5982\u4f55\u67e5\u770b\u6a21\u578b\u53c2\u6570\u91cf\uff1f": [-0.021735619753599167, 0.06258688867092133, 0.03949412703514099, 0.06256365031003952, -0.052732761949300766, -0.01560448668897152, -0.011423200368881226, 0.08041521906852722, 0.010134346783161163, -0.015254654921591282, 0.013413148000836372, 0.031108705326914787, 0.02740400657057762, 0.023117493838071823, -0.0688631534576416, 0.0786186158657074, 0.08925555646419525, 0.01778212934732437, -0.05036270245909691, 0.06703425198793411, -0.010405334644019604, 0.010949268005788326, 0.022505497559905052, -0.0382501557469368, -0.006147739477455616, 0.09701873362064362, 0.005375545937567949, -0.023532889783382416, 0.05226220190525055, 0.06483547389507294, 0.0940011516213417, 0.011412553489208221, -0.07661393284797668, 0.02868943102657795, -0.048427239060401917, -0.027138566598296165, -0.08125705271959305, 0.06413145363330841, -0.03895216062664986, -0.04164358600974083, 0.09213815629482269, 0.031786851584911346, -0.06646096706390381, 0.0913650393486023, -0.031931545585393906, -0.04991250857710838, -0.12816770374774933, 0.004128814674913883, 0.016862353309988976, 0.020290600135922432, -0.06664911657571793, 0.09652631729841232, 0.0064292969182133675, -0.06367844343185425, -0.04149257391691208, -0.022628918290138245, 0.08006756007671356, 0.033975064754486084, 0.061341337859630585, -0.07679249346256256, -0.021053418517112732, 0.009417691268026829, 0.026328353211283684, -0.04630366712808609, -0.08297550678253174, -0.029660988599061966, -0.04994013160467148, -0.07740774750709534, -0.013897665776312351, 0.01917344331741333, -0.002111919689923525, -0.0237086471170187, -0.009949693456292152, 0.04017717018723488, 0.035897571593523026, 0.01257927343249321, -0.04323255270719528, 0.0020724728237837553, -0.029679881408810616, 0.02550470642745495, 0.0070598796010017395, 0.07849688827991486, 0.07653295248746872, -0.10924264788627625, -0.06327278912067413, -0.028507553040981293, -0.054688647389411926, 0.05376235395669937, -0.06559081375598907, 0.043881695717573166, 0.05235053598880768, -0.03193926066160202, -0.20528456568717957, 0.0024065598845481873, 0.14246079325675964, -0.02325243130326271, -0.05787080526351929, 0.016751201823353767, -0.08590248972177505, -0.0069945272989571095, 0.05001787096261978, 0.004837717395275831, -0.019687488675117493, 0.00805995799601078, 0.03706338629126549, -0.08500682562589645, 0.05165906995534897, -0.02279479242861271, 0.011785367503762245, 0.0111312847584486, 0.057177361100912094, 0.014044387266039848, 0.08222296833992004, -0.0388270802795887, -0.03877200558781624, 0.032717738300561905, -0.02661992609500885, -0.06683944165706635, -0.09321810305118561, 0.09233853220939636, 0.10720470547676086, -0.04342242330312729, 0.004800720140337944, 0.05848883464932442, 0.029446955770254135, -0.011345431208610535, 0.10077492147684097, -0.052552878856658936, -0.09219279885292053, -0.0680488646030426, 0.10100804269313812, -0.08937748521566391, 0.11298706382513046, -0.13100102543830872, -0.11927706003189087, 0.04908813163638115, -0.04830475524067879, -0.03972329944372177, -0.04289829730987549, 0.12120212614536285, 0.04449845105409622, -0.14172425866127014, 0.05218594893813133, -0.06033015623688698, 0.09507877379655838, 0.0692964494228363, -0.06380496919155121, -0.05087067559361458, 0.020028363913297653, -0.0753588154911995, 0.10375672578811646, 0.01566002145409584, -0.058444440364837646, 0.08407967537641525, 0.04525744542479515, -0.005159484222531319, -0.010372951626777649, 0.0227414071559906, -0.0568334124982357, -0.08021221309900284, -0.09253166615962982, 0.01756402477622032, 0.02340594492852688, -0.00713160028681159, -0.01937168277800083, -0.013159547001123428, 0.040410108864307404, 0.013219471089541912, -0.06535466760396957, -0.05642884969711304, -0.026264116168022156, -0.005760356318205595, -0.00020090118050575256, -0.0184593815356493, 0.00733135174959898, 0.018843840807676315, 0.09001059085130692, -0.06716962903738022, 0.006545476149767637, -0.014411866664886475, -0.014167126268148422, -0.08945785462856293, -0.0032880560029298067, -0.06761546432971954, 0.06887461245059967, 0.02678571455180645, 0.04300086200237274, 0.034183092415332794, 0.08446335792541504, -0.11732667684555054, 0.014792819507420063, 0.05650636926293373, 0.04888758808374405, 0.05991422012448311, -0.023553604260087013, 0.011145983822643757, -0.08547142893075943, -0.021824311465024948, 0.047392889857292175, -0.005424867384135723, 0.006846223957836628, 0.025377841666340828, 0.027709072455763817, 0.03464845195412636, 0.0033348898869007826, 0.006481642369180918, -0.07524116337299347, -0.11005087196826935, -0.009844407439231873, -0.03382040932774544, 0.06371377408504486, 0.033173833042383194, -0.059682250022888184, -0.04051285982131958, -0.11759496480226517, -0.0007247187895700336, 0.13349075615406036, 0.07356686145067215, 0.0794827938079834, -0.05157595872879028, 0.04713283106684685, 0.00900215283036232, 0.04077760875225067, -0.027666382491588593, -0.1343565434217453, -0.027046214789152145, -0.024504566565155983, -0.10475416481494904, 0.021011509001255035, 0.04118955507874489, -0.006085469853132963, 0.05862303078174591, 0.06089524179697037, 0.13516652584075928, -0.010403595864772797, 0.08627492189407349, -0.04868534952402115, -0.020630940794944763, 0.021103577688336372, 0.02081013098359108, -0.07394199073314667, 0.0940973311662674, -0.06266677379608154, -0.053532399237155914, 0.0012407221365720034, 0.08513320982456207, 0.1100262925028801, 0.0008906719740480185, 0.04320497065782547, -0.053456861525774, 0.019068531692028046, -0.008510441519320011, -0.04505941644310951, -0.010694040916860104, -0.04090946912765503, 0.05981649085879326, 0.032131463289260864, 0.008133647963404655, 0.04541988670825958, 0.022672828286886215, 0.024591198191046715, 0.019012130796909332, -0.034843139350414276, -0.01657732203602791, 0.042516179382801056, -0.045533932745456696, 0.09247630834579468, -0.06828273832798004, 0.008738125674426556, -0.09639548510313034, 0.0201326422393322, 0.043962858617305756, -0.12773963809013367, -0.020463448017835617, 0.14163459837436676, 0.0511709563434124, -0.04081188142299652, -0.1078728660941124, 0.022257519885897636, -0.027638332918286324, -0.0005668643279932439, 0.030709218233823776, -0.0032573691569268703, 0.01294264942407608, 0.05513130873441696, 0.008520695380866528, 0.022054068744182587, -0.02736225724220276, 0.10236963629722595, 0.14489683508872986, 0.009409213438630104, 0.006613424513489008, -0.06034751236438751, 0.03691471740603447, -0.02697753719985485, 0.04772128909826279, -0.015523012727499008, 0.05195724219083786, 0.026774942874908447, 0.022110413759946823, -0.0007242833962664008, -0.01915116049349308, 0.06377238780260086, -0.056749127805233, -0.03489428758621216, -0.014912533573806286, -0.0273697841912508, 0.024843314662575722, 0.003255977761000395, 0.03388398885726929, 0.08050902187824249, 0.1344783902168274, 0.03282700479030609, 0.04759090393781662, -0.06347159296274185, 0.025708086788654327, 0.026009753346443176, -0.14634773135185242, 0.0973721295595169, -0.07489371299743652, 0.00842154212296009, -0.07279463857412338, 0.027793321758508682, 0.10357343405485153, 0.0777912363409996, -0.08439187705516815, 0.06596694141626358, 0.05031624436378479, 0.037718430161476135, 0.0006408913759514689, 0.03492984175682068, -0.10770298540592194, 0.040286555886268616, 0.10075713694095612, 0.01879294402897358, -0.052556995302438736, 0.06349143385887146, 0.09683491289615631, -0.0032096358481794596, 0.079305499792099, 0.06027533859014511, -0.131696417927742, -0.010072918608784676, -0.11503507941961288, 0.051803816109895706, -0.1129331961274147, 0.00784651841968298, 0.04402408003807068, -0.00415814109146595, -0.03920974209904671, 0.043632667511701584, -0.05472104251384735, 0.050273507833480835, 0.0176414605230093, -0.0011955791851505637, -0.0680915117263794, -0.08304531127214432, 0.025047464296221733, 0.07263264805078506, -0.01084381714463234, -0.0050866431556642056, -0.017400328069925308, -0.020206384360790253, -0.08629690110683441, 0.08172085136175156, -0.027576645836234093, 0.01933329924941063, -0.05654195696115494, 0.07123524695634842, -0.023491524159908295, -0.11255483329296112, 0.03035608120262623, 0.09759372472763062, 0.0720011442899704, -0.05903913080692291, -0.08981722593307495, -0.10379566252231598, 0.11581118404865265, -0.04557739943265915, -0.09352999180555344, 0.09553495794534683, 0.04355553910136223, -0.13383977115154266, 0.0012177632888779044], "\u5982\u4f55\u5728\u8bad\u7ec3\u8fc7\u7a0b\u4e2d\u76d1\u63a7`loss`\u5728\u6700\u4f4e\u7684\u65f6\u5019\u5e76\u4fdd\u5b58\u8bad\u7ec3\u53c2\u6570\uff1f": [-0.10888613760471344, 0.010418636724352837, 0.0684746503829956, 0.10220693796873093, -0.05018448829650879, -0.07963164150714874, 0.02828141488134861, 0.0859312042593956, 0.06587380170822144, -0.005463715177029371, 0.020712275058031082, 0.03812546655535698, -0.023253096267580986, 0.01809772104024887, -0.017754247412085533, 0.11602533608675003, 0.06913068145513535, 0.03473960980772972, -0.05704420432448387, 0.011634845286607742, -0.026344595476984978, 0.016295751556754112, 0.022257307544350624, -0.01340356096625328, -0.005167084280401468, 0.07401630282402039, 0.007778834085911512, -0.04190593212842941, 0.0013642377452924848, 0.07051846385002136, 0.08867474645376205, 0.06622699648141861, -0.0761115774512291, 0.06610442698001862, -0.08394625037908554, -0.04105634242296219, 0.0004362975887488574, 0.09288187325000763, -0.007522023748606443, -0.06627833843231201, 0.0912664383649826, 0.03816547617316246, -0.04143304377794266, 0.12921743094921112, -0.020260609686374664, -0.024646813049912453, -0.08727948367595673, -0.037569381296634674, 0.04081409424543381, 0.0655633956193924, -0.032319288700819016, 0.052886489778757095, 0.005109485238790512, -0.02771638333797455, -0.06119399517774582, -0.006162993609905243, 0.03583059087395668, 0.04939206689596176, 0.06391236186027527, -0.020195692777633667, 0.027010183781385422, 0.017164481803774834, -0.018311329185962677, 0.01927047036588192, -0.12754850089550018, 0.029953256249427795, -0.09970486909151077, -0.0762748047709465, -0.014081612229347229, -0.03765071928501129, -0.0499882698059082, -3.873370587825775e-05, 0.008375825360417366, -0.0030053446535021067, 0.06260048598051071, 0.08789415657520294, -0.017143940553069115, -0.11950594186782837, 0.010825389996170998, 0.08024706691503525, -0.004380915313959122, 0.04981359466910362, 0.0511990450322628, -0.06611010432243347, -0.006259799003601074, -0.05856665223836899, -0.08190397918224335, 0.00235803727991879, -0.04628782719373703, 0.0332334041595459, 0.013741991482675076, -0.03400471806526184, -0.14778068661689758, 0.001958300592377782, 0.10230448842048645, -0.003982254769653082, -0.0915682315826416, -0.008459928445518017, -0.12315656244754791, -0.04510015621781349, 0.07322782278060913, -0.021205073222517967, -0.014204861596226692, -0.026965580880641937, 0.020107800140976906, -0.06333814561367035, -0.0351022370159626, 0.06777002662420273, -0.014975990168750286, -0.002422378398478031, 0.08652129769325256, 0.01788446679711342, 0.01625818945467472, 0.06059159338474274, 0.013686463236808777, 0.025738714262843132, -0.05297854542732239, -0.03883472830057144, -0.07285308092832565, 0.05689671263098717, 0.06889736652374268, -0.027331508696079254, 0.06528620421886444, 0.0648590624332428, 0.02350449375808239, -0.014414649456739426, 0.060246143490076065, -0.1521940529346466, -0.12592889368534088, -0.037533678114414215, 0.16015741229057312, -0.025632429867982864, 0.06915643066167831, -0.1068214476108551, -0.08319932222366333, 0.11505377292633057, -0.033920589834451675, -0.0011399914510548115, -0.01934289000928402, 0.14365960657596588, 0.07362286746501923, -0.09894543886184692, 0.07695408910512924, 0.00467350659891963, 0.09238435328006744, 0.06133665889501572, -0.08300930261611938, -0.16040432453155518, -0.02889949083328247, -0.055041734129190445, 0.07598011940717697, -0.03470686823129654, -0.02728176862001419, 0.07125848531723022, -0.027378054335713387, -0.015727277845144272, 0.03949056938290596, -0.029560735449194908, 0.04252512753009796, -0.10356346517801285, -0.08701734989881516, 0.01802717335522175, 0.02806943841278553, -0.00500529445707798, -0.08555848151445389, 0.041156698018312454, -0.029811255633831024, 0.020089909434318542, -0.034866105765104294, 0.03868832066655159, -0.044009797275066376, -0.00043839376303367317, -0.0066841221414506435, -0.10059444606304169, 0.010352037847042084, 0.04629778489470482, 0.044970668852329254, -0.07997938245534897, -0.03177473694086075, 0.003939047455787659, 0.01034039817750454, -0.12276904284954071, 0.005037812516093254, -0.10387931019067764, 0.0653485432267189, 0.060082416981458664, 0.018728546798229218, 0.02388709969818592, 0.14696630835533142, -0.15155170857906342, -0.010746597312390804, 0.02575255185365677, -0.04176627844572067, 0.059778884053230286, -0.08443257212638855, -0.08067174255847931, -0.1191202700138092, -0.0031098381150513887, 0.0579708069562912, -0.036326922476291656, 0.011272544972598553, 0.003184762317687273, 0.051068734377622604, -0.028971554711461067, -0.0015923664905130863, -0.05514400079846382, -0.08733177185058594, -0.09539403766393661, -0.015729600563645363, 0.06187839433550835, 0.03999119997024536, 0.0543600432574749, -0.04278724268078804, -0.06259329617023468, -0.11312639713287354, -0.0012021096190437675, 0.1537216305732727, 0.021526236087083817, 0.11595185101032257, -0.004241819027811289, 0.03721979260444641, -0.003056868677958846, -0.0038393379654735327, -0.07149466127157211, -0.0473889522254467, -0.05097363144159317, 0.02260681986808777, -0.15887029469013214, -0.0030077958945184946, -0.005899331998080015, -0.01787606254220009, 0.13334187865257263, 0.03872986137866974, 0.14645661413669586, -0.03481072187423706, 0.059131111949682236, -0.09702370315790176, -0.02700020931661129, 0.031582191586494446, 0.020107494667172432, -0.07601283490657806, 0.019596518948674202, -0.09753270447254181, -0.035669684410095215, -0.08312033116817474, 0.11883381754159927, 0.0035859975032508373, 0.07872144132852554, 0.03241662308573723, -0.06533922255039215, 0.052889224141836166, -0.021139323711395264, -0.04300624132156372, 0.02997477538883686, -0.049654822796583176, 0.06800926476716995, 0.10166192799806595, -0.020491043105721474, 0.05874699726700783, -0.036313556134700775, -0.016717631369829178, 0.019992338493466377, -0.09615979343652725, 0.07442326098680496, 0.03682006523013115, -0.06485191732645035, 0.10947784781455994, -0.04691524803638458, 0.0926036685705185, -0.07056067138910294, 0.016217278316617012, 0.08637755364179611, -0.030649974942207336, -0.02476966567337513, 0.14058083295822144, 0.08442193269729614, -0.003108290722593665, -0.10183490067720413, 0.037566039711236954, -0.0006716399220749736, -0.011547655798494816, 0.055945854634046555, -0.0011404152028262615, 0.014576008543372154, 0.037556231021881104, -0.04906907305121422, 0.08281327784061432, 0.023512108251452446, 0.04873497784137726, 0.11431445926427841, 0.014204699546098709, 0.019955795258283615, -0.036365557461977005, -0.07575628906488419, -0.048897985368967056, 0.04790818691253662, 0.004544681403785944, 0.07673986256122589, 0.048275064677000046, 0.0549372173845768, -0.005295244045555592, -0.03494306653738022, 0.09647057950496674, -0.029011646285653114, -0.025594256818294525, 0.007396969012916088, -0.03278764709830284, -0.02486373856663704, 0.02432825043797493, -0.006576607935130596, 0.020584730431437492, 0.11404099315404892, 0.03269527480006218, 0.12312394380569458, 0.007608748506754637, -0.013055205345153809, -0.0016243723221123219, -0.09236438572406769, 0.023443855345249176, -0.029792185872793198, 0.031159942969679832, -0.0700027123093605, 0.0028488857205957174, 0.05544242262840271, -0.003407837590202689, -0.005341859068721533, 0.09110409021377563, 0.04075772687792778, -0.00045290213893167675, -0.030599139630794525, 0.03268244490027428, 0.021563056856393814, 0.04837765917181969, 0.14727410674095154, 0.07251302897930145, -0.15008345246315002, 0.02692565508186817, -0.02095446176826954, 0.010150532238185406, 0.023059459403157234, -0.00646183779463172, -0.0720752403140068, -0.024989522993564606, -0.030137168243527412, 0.044987261295318604, -0.0645112618803978, 0.11388518661260605, 0.05282638221979141, 0.004414636641740799, -0.027231816202402115, 0.012818161398172379, -0.043093930929899216, 0.06398031115531921, -0.008375711739063263, -0.026995336636900902, -0.06521627306938171, -0.03597676753997803, 0.016139011830091476, 0.030589766800403595, -0.012929311022162437, 0.05330802500247955, -0.0495496429502964, -0.02924416959285736, -0.12086784839630127, 0.028525538742542267, -0.07055569440126419, 0.020934198051691055, -0.04512280598282814, 0.031945548951625824, 0.00814881268888712, -0.1302030235528946, 0.020308369770646095, 0.16691860556602478, 0.05537531152367592, -0.02521955780684948, 0.013616140931844711, -0.03641016036272049, 0.03721928596496582, 0.003162893233820796, -0.06499484181404114, 0.0760190561413765, 0.033981695771217346, -0.12593497335910797, -0.03364851325750351], "\u4f7f\u7528`nn.Conv2d`\u65f6\uff0c\u600e\u6837\u83b7\u53d6\u671f\u671b\u5927\u5c0f\u7684`feature map`\uff1f": [-0.053350526839494705, 0.00511891907081008, 0.06609410792589188, 0.01760728470981121, -0.04237959533929825, -0.061996277421712875, 0.025380995124578476, 0.0909128189086914, -0.0706515908241272, 0.015289876610040665, 0.026479950174689293, 0.014542817138135433, -0.021385950967669487, 0.0037179565988481045, -0.07057484239339828, 0.08555039018392563, 0.10983677208423615, -0.0009738352964632213, -0.12330791354179382, 0.09597446769475937, 0.05130123347043991, 0.05461740866303444, 0.042716167867183685, -0.02938402257859707, -0.028661031275987625, 0.05840960144996643, -0.027922866865992546, 0.05604133382439613, -0.0028642374090850353, 0.04038375988602638, 0.09773985296487808, 0.05368741601705551, -0.07502256333827972, 0.03520224988460541, 0.019306082278490067, -0.07937945425510406, -0.023740626871585846, 0.07776814699172974, -0.02102423459291458, -0.00786264706403017, 0.020274102687835693, 0.04031871259212494, -0.030999477952718735, 0.09205828607082367, -0.15297378599643707, -0.01043794211000204, -0.14643657207489014, -0.009448914788663387, -0.004007880575954914, -0.018881503492593765, -0.15106777846813202, 0.062299344688653946, -0.04782785847783089, -0.0762879028916359, -0.02797117456793785, 0.027488108724355698, -0.02175248973071575, -0.0563904345035553, 0.14184334874153137, 0.026729943230748177, 0.027382344007492065, -0.04159538075327873, -0.02928660809993744, -0.04832678660750389, -0.19411619007587433, 0.02184741012752056, -0.01582498289644718, -0.04166059568524361, -0.06952185183763504, -0.07359693199396133, 0.021024614572525024, -0.01225778553634882, -0.028046056628227234, -0.01669508032500744, -0.00032949913293123245, 0.08887908607721329, -0.003921738360077143, 0.03493842855095863, -0.0554523766040802, 0.03590071201324463, 0.022146526724100113, 0.055659111589193344, 0.068314328789711, -0.07458129525184631, -0.10369337350130081, -0.06340174376964569, -0.052032385021448135, 0.08045990020036697, -0.035970158874988556, 0.07468709349632263, 0.03876128047704697, 0.026093753054738045, -0.14460144937038422, 0.06871118396520615, 0.17094732820987701, -0.08581259846687317, -0.05011329427361488, -0.0665600523352623, -0.14152482151985168, 0.008658567443490028, 0.06770434230566025, -0.08724759519100189, -0.04242795705795288, 0.045998431742191315, -0.009618129581212997, -0.05144018679857254, -0.006835839245468378, 0.04761766642332077, -0.10687725245952606, -0.022321125492453575, 0.09011396765708923, 0.0390646792948246, 0.04259318485856056, 0.06758817285299301, -0.07257159799337387, 0.09715535491704941, -0.03886502981185913, 0.047949522733688354, -0.1053023710846901, 0.11776474118232727, 0.08077956736087799, -0.10367875546216965, -0.005284876562654972, 0.018062284216284752, 0.046440888196229935, -0.04750572144985199, 0.03906574845314026, -0.1322445124387741, -0.0858064591884613, 0.027196094393730164, 0.18396766483783722, -0.05297819897532463, 0.063214972615242, -0.06475690752267838, -0.14427584409713745, 0.04484689235687256, -0.05725807324051857, -0.025761565193533897, -0.03654881566762924, 0.08637234568595886, 0.13177500665187836, -0.08827974647283554, 0.01884850673377514, -0.02684033289551735, 0.10366497188806534, 0.039506763219833374, -0.06173129379749298, -0.12953245639801025, -0.07117422670125961, -0.04367879405617714, 0.07530283182859421, 0.031519170850515366, -0.0485122874379158, 0.08408559858798981, -0.03150191158056259, 0.08462367951869965, 0.041779693216085434, 0.0010995916090905666, -0.037601396441459656, 0.003179877297952771, -0.05517935752868652, -0.11144191771745682, 0.07660526037216187, 0.03857271000742912, -0.0877780094742775, 0.07661136984825134, -0.012894031591713428, 0.004020480904728174, -0.06263450533151627, -0.05090388283133507, -0.05659250169992447, -0.017833812162280083, -0.04485774040222168, -0.14237061142921448, 0.004507317207753658, 0.030279498547315598, 0.02374941296875477, -0.05188092589378357, 0.019800957292318344, 0.04132170230150223, -0.01256884541362524, -0.0673256516456604, -0.08616656064987183, -0.1352616548538208, 0.1013181060552597, 0.08839882910251617, 0.06520368158817291, 0.06004229933023453, 0.06778088957071304, -0.13107459247112274, -0.02345399744808674, 0.041007932275533676, 0.002432151697576046, 0.0739692896604538, 0.0005357898189686239, -0.04657142609357834, -0.07115458697080612, -0.017524072900414467, 0.1272287666797638, -0.08123268932104111, 0.024053161963820457, 0.07593345642089844, -0.026689130812883377, -0.01182376965880394, -0.046622976660728455, -0.04631701111793518, -0.10271402448415756, -0.10104434937238693, 0.04576660320162773, 0.050650134682655334, 0.12697449326515198, 0.035981684923172, -0.07053859531879425, -0.01682169921696186, -0.0676722303032875, 0.01155759021639824, 0.04736314341425896, -0.004698543809354305, 0.0345785990357399, -0.040440090000629425, 0.0162196047604084, 0.02234463207423687, 0.0506451316177845, -0.09468133002519608, -0.08145958185195923, -0.01892688311636448, -0.0420994758605957, -0.11437320709228516, -0.03137741982936859, 0.05228259786963463, -0.042710091918706894, 0.027479419484734535, 0.06341544538736343, 0.07626911997795105, -0.03938577324151993, 0.043911710381507874, -0.04326971247792244, 0.023509923368692398, 0.06990125775337219, -0.0031931439880281687, -0.08476132899522781, 0.05890154093503952, -0.06597258150577545, 0.030624980106949806, -0.08369705080986023, 0.06030740216374397, 0.06834598630666733, 0.05317195877432823, -0.020976245403289795, -0.03484030067920685, 0.022961368784308434, -0.01208395604044199, 0.025739001110196114, 0.024182671681046486, -0.08987562358379364, 0.040946122258901596, 0.07577692717313766, -0.10399944335222244, 0.02114775963127613, 0.023792045190930367, 0.0013261318672448397, 0.017745327204465866, -0.04684596136212349, 0.06538473814725876, -0.0543920062482357, -0.02771427296102047, 0.1025516614317894, -0.01635676808655262, -0.015008719637989998, -0.12456542253494263, 0.06581034511327744, -0.03850796818733215, -0.026888791471719742, -0.009669714607298374, 0.12190008163452148, 0.06215411424636841, 0.03587908670306206, -0.12378261983394623, 0.036440908908843994, 0.036678437143564224, 0.01003245823085308, 0.09505214542150497, 0.046988192945718765, -0.053413234651088715, 0.044983260333538055, -0.07586954534053802, 0.00759110925719142, -0.05333422124385834, 0.01984582468867302, 0.060986243188381195, -0.0415121465921402, -0.0023283185437321663, -0.07717598229646683, -0.0001572989858686924, -0.09246814250946045, 0.03766152635216713, 0.038463253527879715, 0.021140489727258682, 0.0041637420654296875, 0.024682767689228058, 0.018161822110414505, -0.019345592707395554, 0.050375208258628845, -0.05206059291958809, -0.09003663063049316, 0.03695635497570038, -0.02226605825126171, 0.05435838922858238, -0.033015958964824677, 0.020731234923005104, 0.046689722687006, 0.0866326168179512, -0.03855433315038681, 0.07427889108657837, -0.025218535214662552, -0.012764470651745796, 0.045099154114723206, -0.0935092344880104, 0.011119358241558075, -0.0033274914603680372, -0.04309557378292084, -0.0818214863538742, 0.018216408789157867, 0.09437759220600128, 0.021415114402770996, 0.0037627676501870155, 0.011002770625054836, 0.026622071862220764, 0.003560684621334076, 0.04542480409145355, 0.019025089219212532, -0.1415129154920578, 0.03072524070739746, 0.10789325833320618, -0.03374214470386505, -0.07463111728429794, 0.04684137552976608, 0.0808899849653244, 0.002114938572049141, 0.1124802678823471, 0.05850386247038841, -0.023354794830083847, 0.03867049887776375, -0.11907836049795151, 0.05944564938545227, -0.11972526460886002, 0.06561633944511414, 0.10242380946874619, -0.028988149017095566, 0.07014049589633942, 0.042364075779914856, -0.05621640756726265, 0.06285101175308228, -0.010971815325319767, -0.04551598057150841, -0.1601615697145462, 0.0006893276004120708, -0.003944402560591698, 0.07017753273248672, 0.06033489480614662, -0.0668669268488884, -0.01677619479596615, -0.049704063683748245, -0.10033238679170609, -0.02859385684132576, -0.01943986862897873, 0.09032701700925827, 0.006700179073959589, 0.07464126497507095, 0.05587219446897507, -0.12674446403980255, 0.019096557050943375, 0.10976142436265945, 0.05409451946616173, -0.06300579756498337, -0.017085155472159386, -0.11182837188243866, 0.13304834067821503, -0.03060215711593628, -0.08636187762022018, -0.01867295429110527, 0.05617036297917366, -0.12403884530067444, -0.016345299780368805], "\u4f7f\u7528MindSpore\u53ef\u4ee5\u81ea\u5b9a\u4e49\u4e00\u4e2a\u53ef\u4ee5\u8fd4\u56de\u591a\u4e2a\u503c\u7684loss\u51fd\u6570\uff1f": [-0.06546900421380997, 0.03763124346733093, 0.01394098810851574, 0.03563835471868515, -0.0891120657324791, -0.018752826377749443, 0.03352067619562149, 0.05350165069103241, 0.011187802068889141, -0.009528951719403267, -0.026262683793902397, 0.02377333492040634, 0.0018130721291527152, 0.03713247552514076, -0.04909684881567955, 0.06987278908491135, 0.0995808020234108, 0.037225544452667236, -0.04450384899973869, 0.061755355447530746, -0.011358259245753288, -0.013927745632827282, 0.02476094290614128, -0.029156040400266647, -0.004804244730621576, 0.08598381280899048, -0.021906234323978424, -0.010305408388376236, 0.015955043956637383, 0.04901957884430885, 0.08652342855930328, 0.03608230501413345, -0.07666312903165817, 0.017126979306340218, -0.05617009103298187, -0.003940535709261894, -0.052203502506017685, 0.05295877531170845, -0.0027724658139050007, -0.03410801663994789, 0.05794813483953476, 0.02893826924264431, 0.0008487624581903219, 0.13520848751068115, -0.0619036927819252, -0.056068193167448044, -0.104618139564991, -0.009150724858045578, 0.004076879005879164, 0.011568830348551273, -0.0739847794175148, 0.08839479088783264, -0.004037429112941027, -0.045802731066942215, -0.03325799107551575, -0.042809680104255676, -0.0026674207765609026, 0.02178226038813591, 0.04307031258940697, -0.08684680610895157, -0.0029243254102766514, 0.01841585710644722, -0.04516123980283737, -0.041656263172626495, -0.12097908556461334, 0.002486730460077524, -0.02841239795088768, -0.10266350209712982, -0.07913073897361755, -0.0009912230307236314, -0.051297325640916824, -0.019256802275776863, 0.03208460286259651, 0.023206589743494987, 0.045829810202121735, 0.1205926313996315, -0.03736056759953499, -0.03698180615901947, -0.036046650260686874, 0.05182928964495659, -0.0025942313950508833, 0.0687505304813385, 0.03694257140159607, -0.01951678842306137, -0.055231235921382904, -0.016539912670850754, -0.030779987573623657, 0.08291014283895493, -0.0036484883166849613, 0.06271015852689743, 0.05747590586543083, -0.01347205601632595, -0.15786868333816528, 0.04612905532121658, 0.07512229681015015, 0.007453883066773415, -0.04431919753551483, -0.02360820583999157, -0.13742892444133759, -0.062151502817869186, 0.020589204505085945, -0.01628679782152176, -0.08889518678188324, 0.04575198516249657, 0.04846971482038498, -0.0891440212726593, 0.014787571504712105, 0.07238851487636566, 0.047206372022628784, -0.007670039776712656, 0.06326299905776978, -0.0002232380211353302, 0.07957237213850021, 0.03271455317735672, 0.008904152549803257, 0.010792327113449574, -0.12205704301595688, 0.01875179260969162, -0.07342412322759628, 0.09465894848108292, 0.08763130754232407, -0.0511147677898407, 0.030643856152892113, 0.05287523567676544, 0.017335880547761917, -0.01012510433793068, 0.045858897268772125, -0.12916021049022675, -0.15072114765644073, -0.08408068865537643, 0.16882899403572083, -0.06749769300222397, 0.07417464256286621, -0.12172544002532959, -0.12808756530284882, 0.08862806111574173, 0.0016279076226055622, -0.010727332904934883, -0.027358755469322205, 0.12027020752429962, 0.06596861034631729, -0.091878741979599, 0.0834563747048378, -0.006487540900707245, 0.11310988664627075, 0.06990932673215866, -0.06386055797338486, -0.11084536463022232, -0.04235085844993591, -0.07617411017417908, 0.03668808564543724, -0.0024178670719265938, -0.045137789100408554, 0.07776635885238647, -0.019242210313677788, 0.0183789674192667, 0.008404610678553581, -0.01998775079846382, 0.016437968239188194, -0.0052945902571082115, -0.02396940253674984, -0.02573361061513424, -0.0011652200482785702, 0.026281867176294327, -0.03559545800089836, -0.010795170441269875, 0.025168631225824356, -0.008784432895481586, -0.04561057314276695, -0.020249245688319206, -0.037492625415325165, 0.015916798263788223, -0.021122101694345474, -0.024617629125714302, 0.03458624705672264, -0.0267396979033947, 0.04583783447742462, -0.10527326166629791, 0.012251181527972221, -0.01951940543949604, -0.013384675607085228, -0.09478459507226944, -0.005970288068056107, -0.10023041814565659, 0.06130054593086243, 0.052316196262836456, 0.04897039011120796, 0.032134752720594406, 0.11525019258260727, -0.1442805826663971, -0.007234663236886263, 0.03395755589008331, -0.014440570957958698, 0.059294022619724274, -0.03393851965665817, -0.0335356704890728, -0.07775018364191055, 0.012354706414043903, 0.04313588887453079, -0.03239929676055908, 0.0006210691062733531, 0.009296689182519913, 0.0010710754431784153, 0.007716704625636339, -0.015359275974333286, -0.03587222844362259, -0.10844965279102325, -0.07607027143239975, -0.029879089444875717, -0.009238677099347115, 0.08697076141834259, 0.0538267120718956, 0.027397897094488144, -0.05672973021864891, -0.09822838008403778, -0.005939059890806675, 0.13232631981372833, 0.04716663807630539, 0.08548832684755325, -0.03940562158823013, 0.02163831517100334, 0.005532702896744013, 0.004018240608274937, -0.07351424545049667, -0.06629274785518646, -0.022547587752342224, -0.009540076367557049, -0.10670870542526245, 0.003938937559723854, 0.030164673924446106, -0.013171644881367683, 0.0820055603981018, 0.03333557769656181, 0.11088484525680542, -0.05077225714921951, 0.07658427208662033, -0.016905395314097404, -0.04456513002514839, 0.03188733384013176, 0.02519337832927704, -0.09326408058404922, 0.017534606158733368, -0.08427344262599945, -0.0005145035102032125, -0.023687666282057762, 0.13430063426494598, 0.05821530520915985, 0.06856992840766907, 0.04777458682656288, -0.010530626401305199, 0.11017818748950958, -0.01063433475792408, -0.037910521030426025, 0.05472467094659805, -0.05545244365930557, 0.09133747220039368, 0.07475913316011429, -0.03236990049481392, 0.03822014480829239, 0.017022237181663513, 0.029080497100949287, 0.01852305978536606, -0.06585382670164108, 0.027109038084745407, -0.01199167687445879, 0.023934481665492058, 0.08945611119270325, -0.02126041054725647, 0.041011691093444824, -0.10697600245475769, 0.024048469960689545, 0.019930295646190643, -0.06574605405330658, 0.01859317719936371, 0.12943051755428314, 0.07707779109477997, 0.012869174592196941, -0.17293697595596313, 0.025301245972514153, 0.012231015600264072, 0.0021469988860189915, 0.019987497478723526, 0.006211373955011368, 0.015203520655632019, 0.08031454682350159, 0.010859766975045204, 0.03835176303982735, -0.003596383612602949, 0.019099611788988113, 0.10251717269420624, -0.061804793775081635, 0.026854293420910835, -0.0785578042268753, -0.008551983162760735, -0.052728839218616486, 0.07408466935157776, 0.009468259289860725, 0.038886457681655884, 0.058839064091444016, 0.06246383488178253, -0.015889184549450874, -0.07276010513305664, 0.1133885532617569, -0.07688522338867188, -0.019524546340107918, 0.03229506313800812, -0.04927657172083855, 0.05991258844733238, 0.015386238694190979, 0.030636247247457504, 0.05602254718542099, 0.112054243683815, 0.03917260468006134, 0.10269025713205338, -0.06763425469398499, -0.03981857746839523, 0.021827124059200287, -0.15499719977378845, 0.0221395380795002, -0.09464427083730698, -0.019678179174661636, -0.05160067230463028, -0.016462033614516258, 0.04259932041168213, 0.0335751436650753, -0.05169050022959709, 0.049660276621580124, 0.06655582785606384, 0.011672656051814556, -0.03353343904018402, -0.026025019586086273, -0.01493050903081894, 0.05397866666316986, 0.06987054646015167, 0.007333126850426197, -0.14863258600234985, 0.05671374499797821, 0.028087155893445015, -0.007551079615950584, 0.053731225430965424, 0.05136406794190407, -0.048732902854681015, -0.01303833071142435, -0.05689341202378273, 0.07043037563562393, -0.07283681631088257, 0.0873379036784172, 0.02143571339547634, -0.03458714857697487, -0.057948436588048935, 0.04646116867661476, -0.02437761425971985, 0.042328767478466034, -0.012118055485188961, -0.020128974691033363, -0.12949678301811218, -0.053922370076179504, -0.0035120067186653614, 0.016898848116397858, 0.023816145956516266, -0.04788215458393097, -0.005503393243998289, -0.06275840103626251, -0.08577775955200195, 0.001350416918285191, -0.05023173987865448, 0.03478270024061203, -0.059532612562179565, 0.10116127133369446, -0.029619654640555382, -0.10550479590892792, 0.06553970277309418, 0.10339981317520142, 0.07401196658611298, -0.035093870013952255, -0.014897521585226059, -0.05846508592367172, 0.05189821869134903, -0.0012901697773486376, -0.05116327106952667, 0.05317382141947746, 0.041316453367471695, -0.14180219173431396, 0.04899515584111214], "MindSpore\u5982\u4f55\u5b9e\u73b0\u65e9\u505c\u529f\u80fd\uff1f": [-0.05525442957878113, 0.0701267346739769, 0.014965219423174858, -0.016156015917658806, -0.06355788558721542, -0.02318611368536949, -0.005775305442512035, 0.05399768054485321, 0.01463739387691021, 0.05244089663028717, -0.00030129682272672653, -0.016364071518182755, 0.040419962257146835, 0.06449408829212189, -0.08948857337236404, 0.07763241976499557, 0.12163381278514862, 0.032221559435129166, -0.0786818116903305, 0.06618935614824295, -0.004510040394961834, -0.01708284765481949, 0.08301928639411926, -0.02873297594487667, 4.9717724323272705e-05, 0.07999329268932343, -0.032598722726106644, 0.017845798283815384, 0.008972503244876862, 0.03661257028579712, 0.08084774017333984, 0.041003428399562836, -0.0457024984061718, -0.004443856421858072, -0.0422741137444973, -0.0680152028799057, -0.08423600345849991, 0.04245373606681824, -0.006105836946517229, -0.046209774911403656, 0.029031293466687202, 0.027806371450424194, -0.025322599336504936, 0.1026923656463623, -0.031178131699562073, -0.050031404942274094, -0.1373811513185501, 0.004935429431498051, 0.001121313776820898, -0.027004390954971313, -0.06855866312980652, 0.060054272413253784, 0.02232735976576805, -0.03158153221011162, -0.05971571430563927, -0.025000113993883133, 0.00869915634393692, 0.0573381632566452, 0.052385974675416946, -0.1249406635761261, -0.0016683771973475814, 0.035350508987903595, -0.0697525143623352, -0.042756542563438416, -0.12336519360542297, -0.020046887919306755, -0.06188736483454704, -0.08870334923267365, -0.03234340623021126, 0.04172821342945099, -0.03772003948688507, -0.02916480228304863, -0.01666257716715336, 0.05945194512605667, 0.04591413587331772, 0.011972343549132347, -0.038526590913534164, 0.0029090263415127993, -0.07907351106405258, 0.008444223552942276, 0.029829276725649834, 0.09009847044944763, 0.035552605986595154, -0.06620029360055923, -0.09715311229228973, -0.0017987171886488795, -0.053511589765548706, 0.106073297560215, -0.03009544312953949, 0.1110631451010704, 0.010368804447352886, -0.015307532623410225, -0.16776643693447113, 0.03685944527387619, 0.06525611877441406, 0.007887324318289757, -0.060136206448078156, -0.018682194873690605, -0.13760673999786377, -0.03319097310304642, 0.004990596789866686, 0.023625515401363373, -0.04262075945734978, 0.06607023626565933, 0.027491014450788498, -0.07319970428943634, 0.06751243770122528, 0.003566086059436202, 0.08976297825574875, 0.01732773706316948, 0.06928393244743347, 0.0038098471704870462, 0.09911768138408661, -0.011750438250601292, 0.022354573011398315, 0.010469019412994385, -0.06757105141878128, 0.015263146720826626, -0.05666643753647804, 0.10200339555740356, 0.07645068317651749, -0.0658288449048996, -0.006768711842596531, 0.044408366084098816, 0.024403715506196022, -0.009407470002770424, 0.08252787590026855, -0.1066279411315918, -0.10498189926147461, -0.0924602597951889, 0.15377715229988098, -0.10343912243843079, 0.10501743108034134, -0.11153312027454376, -0.1310160756111145, 0.058565832674503326, 0.004871089942753315, 0.023317083716392517, -0.058895666152238846, 0.09756168723106384, 0.02106074057519436, -0.12164511531591415, 0.1273162066936493, -0.05528077483177185, 0.08669761568307877, 0.0657554566860199, -0.049046590924263, -0.0974273532629013, -0.0034775426611304283, -0.09214185923337936, 0.044877685606479645, -0.028811423107981682, -0.06470154225826263, 0.10560072213411331, 0.0304555781185627, 0.05049445480108261, -0.016152337193489075, -0.02455383911728859, -4.3346546590328217e-05, -0.0423852875828743, 0.0013471237616613507, -0.010354931466281414, 0.020475216209888458, 0.005029499065130949, -0.02792159840464592, -0.032987967133522034, 0.047778427600860596, 0.003986237104982138, -0.06866831332445145, -0.04999348521232605, -0.021658532321453094, -0.022449854761362076, -0.029698476195335388, 0.033718302845954895, 0.031612422317266464, -0.019297879189252853, 0.09760870784521103, -0.07667031139135361, 0.011908653192222118, -0.030560996383428574, 0.019123289734125137, -0.08760544657707214, -0.017708342522382736, -0.06876696646213531, 0.016372572630643845, 0.02607647143304348, 0.10273891687393188, 0.023522254079580307, 0.11143028736114502, -0.16083918511867523, -0.018004929646849632, 0.043079011142253876, 0.0192569512873888, 0.05320689454674721, 0.02972131036221981, 0.0384216271340847, -0.08854340761899948, -0.049484070390462875, 0.019340168684720993, -0.03580643609166145, -0.02237118035554886, -0.00031114742159843445, 0.036691874265670776, 0.022432340309023857, -0.031145937740802765, 0.017950883135199547, -0.07261276990175247, -0.0660410225391388, -0.0035251241642981768, -0.032853029668331146, 0.08670224994421005, 0.04747559130191803, -0.0024176714941859245, -0.06497260928153992, -0.10561935603618622, -0.02119283191859722, 0.12277862429618835, 0.060824912041425705, 0.011542024090886116, -0.06371279060840607, 0.017377065494656563, 0.02778645232319832, 0.025701353326439857, -0.07082530111074448, -0.14516547322273254, -0.04138724133372307, -0.027276216074824333, -0.1309015452861786, -0.017656506970524788, 0.050446588546037674, -0.03245896100997925, 0.0497940294444561, 0.03853525221347809, 0.16844211518764496, -0.03141529858112335, 0.14913854002952576, -0.00452970527112484, -0.011240590363740921, 0.06560840457677841, 0.0316101536154747, -0.12038419395685196, 0.0778745785355568, -0.0555521659553051, -0.047090765088796616, -0.03522954136133194, 0.10113740712404251, 0.0793895348906517, 0.023276109248399734, 0.02346804179251194, -0.05479267239570618, 0.038996174931526184, 0.018687544390559196, -0.08254969120025635, 0.052376702427864075, -0.03618056699633598, 0.04608490318059921, 0.07450557500123978, -0.060051169246435165, 0.0003090277314186096, 0.05245572328567505, 0.009129060432314873, 0.05456262081861496, -0.04597793519496918, -0.003280769567936659, -0.038198091089725494, -0.0017804522067308426, 0.09076355397701263, -0.0694468691945076, 0.0319819338619709, -0.12309913337230682, 0.000414310023188591, 0.013655848801136017, -0.11368639767169952, 0.03657589852809906, 0.11943329870700836, 0.0821770578622818, 0.024039143696427345, -0.1896391212940216, 0.023218905553221703, 0.04554301127791405, -0.012368171475827694, 0.001939197420142591, -0.022445857524871826, 0.010921863839030266, 0.05999347195029259, 0.01998644508421421, 0.03688367083668709, -0.014696797356009483, 0.04751443862915039, 0.12755848467350006, -0.07387416064739227, 0.007550142705440521, -0.076586052775383, 0.056278593838214874, -0.060163505375385284, 0.05961093679070473, 0.03242921084165573, 0.045640625059604645, 0.05012701451778412, 0.0437987744808197, -0.013082621619105339, -0.05215594917535782, 0.09208346903324127, -0.11820567399263382, -0.024488026276230812, 0.040494903922080994, -0.05147144943475723, 0.09945980459451675, 0.02517932653427124, 0.025205448269844055, 0.08319586515426636, 0.11710351705551147, 0.025831928476691246, 0.07966088503599167, -0.06850307434797287, -0.023009242489933968, 0.05138938128948212, -0.15545882284641266, 0.05355224758386612, -0.09785978496074677, 0.026990648359060287, -0.02605159394443035, -0.0073598227463662624, 0.0694596916437149, 0.07429657131433487, -0.08711174875497818, 0.022483278065919876, 0.06100356951355934, 0.044906262308359146, -0.06941746920347214, 0.031223757192492485, -0.08612720668315887, 0.04065914452075958, 0.05957458168268204, 0.00792904756963253, -0.09424858540296555, 0.08025301247835159, 0.08232765644788742, -0.01317645888775587, 0.09386555850505829, 0.07152143120765686, -0.0661720335483551, 0.0037928340025246143, -0.05785467103123665, 0.09186923503875732, -0.10422156751155853, 0.07617475837469101, -0.019750671461224556, -0.04306810721755028, -0.08906465768814087, 0.050112511962652206, -0.030108751729130745, 0.05277606472373009, -0.017314517870545387, -0.016762888059020042, -0.1666506826877594, -0.09117994457483292, -0.009983185678720474, 0.007249567192047834, 0.006853190250694752, -0.05868713930249214, -0.017685042694211006, -0.07036734372377396, -0.06597577035427094, 0.018304700031876564, -0.07723767310380936, 0.04232388362288475, -0.09963715076446533, 0.10488978773355484, -0.01679266430437565, -0.061281487345695496, 0.06967499107122421, 0.10398492217063904, 0.060247331857681274, -0.09035203605890274, -0.09376895427703857, -0.11614945530891418, 0.08711633086204529, 0.007277781143784523, -0.05488681420683861, 0.08072157204151154, 0.024579178541898727, -0.15432758629322052, 0.08898451179265976], "\u6a21\u578b\u5df2\u7ecf\u8bad\u7ec3\u597d\uff0c\u5982\u4f55\u5c06\u6a21\u578b\u7684\u8f93\u51fa\u7ed3\u679c\u4fdd\u5b58\u4e3a\u6587\u672c\u6216\u8005`npy`\u7684\u683c\u5f0f\uff1f": [-0.027410440146923065, 0.056785427033901215, -0.0011112499050796032, 0.12295098602771759, -0.08284202963113785, 0.019120747223496437, 0.012004587799310684, 0.08800754696130753, -0.03398736193776131, 0.020987771451473236, -0.007865926250815392, 0.035604000091552734, 0.00977112166583538, -0.02324584499001503, -0.08552533388137817, 0.07267139106988907, 0.13768045604228973, -0.005509445443749428, -0.047326795756816864, 0.03916163370013237, -0.011278649792075157, 0.03367282822728157, 0.05451244115829468, -0.07887005805969238, 0.012936635874211788, 0.0354757085442543, -0.0032726931385695934, -0.015070679597556591, 0.005009189248085022, 0.07383840531110764, 0.06671620905399323, -0.011804739944636822, -0.12880446016788483, -0.0037110697012394667, -0.06440533697605133, -0.05960732325911522, 0.02496173232793808, 0.13927125930786133, -0.05957186594605446, -0.018608458340168, 0.04541122913360596, 0.06720864027738571, -0.02133067138493061, 0.10535220801830292, 0.01162201352417469, -0.045390717685222626, -0.1066889837384224, -0.030032219365239143, 0.06942710280418396, 0.05420449376106262, -0.0709717869758606, 0.0835694670677185, -0.023339036852121353, -0.03043007105588913, -0.0999951884150505, -0.00454505393281579, 0.019271938130259514, -0.028446396812796593, 0.0730147436261177, 0.01993616297841072, 0.015407427214086056, -0.026422621682286263, -0.02113376557826996, -0.06794670224189758, -0.11277972161769867, 0.011325353756546974, -0.03855755180120468, -0.042723268270492554, 0.004949698690325022, -0.0638991966843605, -0.04234756529331207, -0.020785093307495117, -0.025285784155130386, 0.05503005534410477, 0.04624604433774948, 0.05913207679986954, -0.04539753869175911, -0.06636451184749603, -0.06210953742265701, 0.06860452145338058, -0.026277950033545494, 0.09461217373609543, 0.03951532766222954, -0.11654047667980194, -0.02877052128314972, -0.04051106423139572, -0.0658363550901413, 0.047635842114686966, -0.08605261892080307, 0.08643525093793869, 0.020342426374554634, -0.012788928113877773, -0.21024703979492188, 0.02393421158194542, 0.12686768174171448, -0.015626048669219017, -0.11335091292858124, 0.039517659693956375, -0.15552255511283875, 0.02440430037677288, 0.08949078619480133, -0.02728891745209694, 0.01957671344280243, -0.025232437998056412, 0.05233919620513916, -0.06484883278608322, 0.09963057190179825, 0.01811331696808338, 0.023495644330978394, -0.001997052924707532, 0.03229089826345444, 0.006647366099059582, 0.006319516804069281, 0.004099899437278509, 0.004492033738642931, 0.11344728618860245, -0.05415951833128929, -0.005497377831488848, -0.06423644721508026, 0.05822525918483734, 0.08365318179130554, -0.05274108424782753, 0.006279007997363806, 0.040363870561122894, 0.023211495950818062, -0.01912493258714676, 0.09583960473537445, -0.08576381206512451, -0.09224767982959747, -0.08500346541404724, 0.19503703713417053, -0.017580468207597733, 0.11478466540575027, -0.09433115273714066, -0.11324955523014069, 0.07237964868545532, -0.10098020732402802, -0.010380454361438751, 0.0056787156499922276, 0.07031460106372833, 0.059540603309869766, -0.0981777012348175, 0.13302123546600342, -0.018271852284669876, 0.08433763682842255, 0.05113227292895317, -0.0626801997423172, -0.12312234938144684, -0.007409530226141214, -0.0733741745352745, 0.10281136631965637, -0.02693556435406208, -0.01344415731728077, 0.08941344916820526, 0.017915483564138412, 0.0008473244961351156, 0.0027960168663412333, -0.012536142952740192, 0.002750950399786234, -0.07408416271209717, -0.09518881142139435, 0.0069034527987241745, 0.0636170357465744, 0.03812369704246521, -0.04040427505970001, 0.04167178273200989, 0.010984227061271667, -0.012746545486152172, -0.05930740758776665, -0.011491096578538418, -0.028326919302344322, 0.008809168823063374, -0.06018519029021263, -0.07476337999105453, 0.0360780730843544, -0.011935076676309109, 0.09612227976322174, -0.16092640161514282, -0.0379059799015522, -0.04820186644792557, 0.06516553461551666, -0.07655831426382065, -0.00785905309021473, -0.04601537436246872, -0.005788842681795359, 0.12678512930870056, 0.06252411752939224, 0.09570550918579102, 0.1572623997926712, -0.059348467737436295, -0.04339767247438431, 0.01574033498764038, -0.01831010915338993, 0.03229835256934166, -0.01292558666318655, -0.0003132447600364685, -0.12156982719898224, 0.009903065860271454, 0.02601899951696396, -0.02665817365050316, 0.05135715752840042, 0.07014795392751694, 0.08821652829647064, 0.024846239015460014, 0.015857405960559845, -0.03427007049322128, -0.06677533686161041, -0.13386811316013336, 0.003953648265451193, 0.029834255576133728, 0.031574495136737823, -0.017993682995438576, -0.015295456163585186, -0.007731835823506117, -0.12714478373527527, 0.0056975530460476875, 0.145654559135437, 0.05479200556874275, 0.11331292986869812, -0.03394244238734245, 0.05952813848853111, 0.023960474878549576, 0.013907243497669697, -0.026998665183782578, -0.06153135374188423, -0.008166122250258923, -0.019635019823908806, -0.13581889867782593, 0.017887353897094727, 0.09127703309059143, -0.04325961321592331, 0.12353240698575974, 0.006247245240956545, 0.1216927245259285, -0.00445970892906189, 0.06665500998497009, -0.04106350988149643, -0.05311353877186775, 0.10498998314142227, 0.031757913529872894, -0.11302708834409714, 0.08954600244760513, -0.09443528950214386, -0.12774182856082916, -0.07914465665817261, 0.09555422514677048, 0.058101847767829895, 0.07998165488243103, -0.0016862975899130106, 0.0120489951223135, 0.03538811206817627, 0.01659792847931385, -0.06851460039615631, 0.09477155655622482, 0.014512062072753906, 0.10938437283039093, 0.06642109155654907, -0.03868117928504944, 0.040815889835357666, 0.032037049531936646, 0.0508200079202652, 0.04616639018058777, -0.08755847066640854, 0.02246696501970291, 0.016467247158288956, -0.07103635370731354, 0.10670021176338196, -0.05408809334039688, 0.02048785611987114, -0.07655521482229233, 0.03918871283531189, 0.06791967898607254, -0.10236551612615585, -0.054849281907081604, 0.1647947132587433, 0.023275775834918022, -0.00035046786069869995, -0.10305271297693253, 0.03196161985397339, 0.05022645369172096, -0.024343373253941536, 0.05673394352197647, -0.007463525049388409, -0.0101338941603899, 0.047439057379961014, -0.029821578413248062, 0.0841728001832962, 0.024469437077641487, 0.07948432862758636, 0.14215339720249176, 0.012251230888068676, -0.046886224299669266, -0.0114944688975811, 0.030374158173799515, -0.07085498422384262, 0.12989410758018494, 0.0310197826474905, 0.0176685843616724, 0.000260915607213974, 0.047714557498693466, -0.06651194393634796, -0.055938586592674255, 0.07563604414463043, -0.0588078610599041, 0.0008982659783214331, 0.026932451874017715, -0.08328695595264435, 0.050902850925922394, -0.03136782348155975, 0.05077055096626282, 0.05992380529642105, 0.05555975064635277, 0.07237358391284943, 0.07369726896286011, -0.02005104534327984, -0.014020757749676704, 0.029444577172398567, -0.09798318147659302, 0.0630953311920166, -0.03427703306078911, 0.011422878131270409, -0.05072127282619476, 0.035752952098846436, 0.04857125133275986, 0.042079705744981766, -0.017791640013456345, 0.11056993901729584, 0.010609643533825874, -0.007962954230606556, 0.0026097334921360016, -0.0008255260181613266, -0.06677646189928055, 0.07228093594312668, 0.15268507599830627, 0.08711791038513184, -0.10966944694519043, 0.12680016458034515, 0.07983803749084473, 0.007943553850054741, 0.011131647042930126, 0.03545714169740677, -0.0547046959400177, -0.0513894259929657, -0.046924006193876266, -0.0038834260776638985, -0.12579423189163208, 0.03388053923845291, 0.057852260768413544, -0.03422384336590767, -0.009725580923259258, 0.06758657842874527, -0.07884176820516586, 0.058989331126213074, 0.0029016609769314528, -0.0548219233751297, -0.079714834690094, -0.06824680417776108, -0.006328748073428869, 0.01195802353322506, 0.019750388339161873, 0.06789588928222656, -0.04026898369193077, -0.060405030846595764, -0.04870784655213356, 0.06996753066778183, -0.011966291815042496, 0.04627412557601929, -0.05883549526333809, 0.02785714715719223, 0.04080737382173538, -0.12656907737255096, 0.02188492752611637, 0.06915383040904999, 0.0054883090779185295, -0.08036307245492935, 0.024854274466633797, -0.07893678545951843, 0.1175871416926384, -0.037440914660692215, -0.05072559788823128, 0.07379403710365295, 0.026580650359392166, -0.13771016895771027, -0.01663452759385109], "\u7f13\u5b58\u670d\u52a1\u5668\u5f02\u5e38\u5173\u95ed\u5982\u4f55\u5904\u7406\uff1f": [-0.021322954446077347, 0.05367835611104965, 0.03955640643835068, 0.06910199671983719, -0.05643431842327118, -0.016399448737502098, -0.011294892989099026, 0.07517853379249573, 0.008183998987078667, -0.012540554627776146, 0.015413767658174038, 0.029797879979014397, 0.02380426414310932, 0.012640033848583698, -0.05789412930607796, 0.07392214983701706, 0.08799697458744049, 0.013768843375146389, -0.04735937714576721, 0.06671975553035736, -0.011044884100556374, 0.006775249261409044, 0.021297499537467957, -0.04058883711695671, -0.004894725512713194, 0.0948258638381958, -0.0036843139678239822, -0.017472105100750923, 0.0451369434595108, 0.0644887313246727, 0.09157688170671463, 0.020362066105008125, -0.08622792363166809, 0.025720780715346336, -0.0544661208987236, -0.028736399486660957, -0.06759573519229889, 0.061071909964084625, -0.04631733149290085, -0.036695171147584915, 0.096391960978508, 0.03018360584974289, -0.06817113608121872, 0.09275224059820175, -0.03156091645359993, -0.042088814079761505, -0.12576322257518768, 0.011107593774795532, 0.023209575563669205, 0.026817819103598595, -0.0695926770567894, 0.08840873092412949, 0.0033473619259893894, -0.061506740748882294, -0.0415443480014801, -0.01449816394597292, 0.07249706238508224, 0.036494240164756775, 0.06731408089399338, -0.06118716299533844, -0.011693697422742844, 0.008855309337377548, 0.016021614894270897, -0.041524361819028854, -0.08112909644842148, -0.03357771039009094, -0.04635776951909065, -0.07920189201831818, -0.009441210888326168, 0.018099050968885422, -0.009446723386645317, -0.022932296618819237, -0.0030380673706531525, 0.03591114282608032, 0.037615418434143066, 0.01969824731349945, -0.05194239318370819, 0.008329681120812893, -0.03608388453722, 0.028385771438479424, 0.011029323562979698, 0.07449914515018463, 0.07147808372974396, -0.10673701763153076, -0.06157471984624863, -0.034804221242666245, -0.05050279200077057, 0.06332623958587646, -0.06322887539863586, 0.04530961811542511, 0.05649443343281746, -0.038374561816453934, -0.20071537792682648, 0.0011918883537873626, 0.14439520239830017, -0.02755381539463997, -0.054073527455329895, 0.01080368459224701, -0.08453305065631866, -0.006278994958847761, 0.043148260563611984, 0.0038694508839398623, -0.009985378012061119, 0.005002749152481556, 0.038165803998708725, -0.08246023952960968, 0.04432255029678345, -0.010448537766933441, -0.0020954094361513853, 0.008644121699035168, 0.05681788921356201, 0.01551293209195137, 0.07757697254419327, -0.033678460866212845, -0.04150385782122612, 0.030914045870304108, -0.026761766523122787, -0.060525279492139816, -0.09274182468652725, 0.09759913384914398, 0.10456555336713791, -0.03933495283126831, 0.002267285017296672, 0.05111346021294594, 0.020823843777179718, -0.006947155110538006, 0.09237988293170929, -0.06079261004924774, -0.08688196539878845, -0.06467797607183456, 0.10458862781524658, -0.08658571541309357, 0.10798342525959015, -0.13181714713573456, -0.11324027180671692, 0.04745364934206009, -0.05193932354450226, -0.037821706384420395, -0.04484214633703232, 0.11388775706291199, 0.05002453178167343, -0.13243454694747925, 0.058743901550769806, -0.06181083619594574, 0.09050615131855011, 0.06225322559475899, -0.06843454390764236, -0.053108397871255875, 0.02036789432168007, -0.07363437861204147, 0.10351359099149704, 0.01780489645898342, -0.047960828989744186, 0.08157180994749069, 0.045834388583898544, -0.0003176308237016201, -0.010664397850632668, 0.018586236983537674, -0.043592311441898346, -0.078872911632061, -0.08656088262796402, 0.008607933297753334, 0.03006344474852085, -0.00703389709815383, -0.01298723928630352, 0.00041896430775523186, 0.037912558764219284, 0.0064080944284796715, -0.05833384394645691, -0.053648293018341064, -0.02357003651559353, -0.004735799506306648, -0.0023951223120093346, -0.030186191201210022, 0.010541803203523159, 0.017821677029132843, 0.08527480065822601, -0.06412046402692795, 0.008636068552732468, -0.018912293016910553, -0.0043663326650857925, -0.09109661728143692, -0.005541740916669369, -0.05984610319137573, 0.07339432090520859, 0.032700065523386, 0.04084346070885658, 0.033405330032110214, 0.0985255241394043, -0.11309989541769028, 0.010584756731987, 0.054657138884067535, 0.05242473632097244, 0.05790804326534271, -0.02125033736228943, 0.0019182669930160046, -0.08756205439567566, -0.019889991730451584, 0.05077200010418892, -0.014326782897114754, 0.007709888741374016, 0.034335024654865265, 0.025590114295482635, 0.027747804298996925, 0.0005190586089156568, 0.005134559702128172, -0.07490462064743042, -0.11338891834020615, -0.00511626061052084, -0.024244030937552452, 0.06657949835062027, 0.03732340782880783, -0.04353410378098488, -0.03884837403893471, -0.1184120923280716, -0.005187394097447395, 0.12777110934257507, 0.07824438065290451, 0.08173240721225739, -0.04977240040898323, 0.041368063539266586, 0.006906542927026749, 0.03881064057350159, -0.03397517278790474, -0.12537690997123718, -0.02168796956539154, -0.023535892367362976, -0.10721416026353836, 0.02631259337067604, 0.03906397148966789, -0.00545966811478138, 0.0594102181494236, 0.054056163877248764, 0.13464485108852386, -0.011219214648008347, 0.08555255830287933, -0.04875719174742699, -0.01879921369254589, 0.02656717039644718, 0.02257726527750492, -0.07620102912187576, 0.0921168327331543, -0.05511951446533203, -0.047599200159311295, -8.808448910713196e-05, 0.09091011434793472, 0.10982976853847504, 0.010753876529633999, 0.03645944595336914, -0.04851817712187767, 0.02085810899734497, -0.0004985648556612432, -0.04038069397211075, 0.002499509137123823, -0.05143178999423981, 0.05980219319462776, 0.03266318514943123, 0.0005478448583744466, 0.04647407308220863, 0.027615230530500412, 0.021014658734202385, 0.011957379058003426, -0.03868551179766655, -0.021863602101802826, 0.029970062896609306, -0.04599364474415779, 0.09904997795820236, -0.06529136002063751, 0.009892908856272697, -0.09171485900878906, 0.02912105992436409, 0.0411272831261158, -0.12161390483379364, -0.019345946609973907, 0.14118517935276031, 0.047634564340114594, -0.03522964194417, -0.11404218524694443, 0.02696264162659645, -0.024214092642068863, -0.002214791253209114, 0.03285454958677292, -0.0014216704294085503, 0.012435708194971085, 0.05701369047164917, 0.00555409537628293, 0.026925716549158096, -0.02864641509950161, 0.09132596105337143, 0.14336591958999634, 0.011968445964157581, 0.0011640959419310093, -0.053477026522159576, 0.0261156614869833, -0.04391808062791824, 0.04376743733882904, -0.007865608669817448, 0.05829904228448868, 0.030595876276493073, 0.025188462808728218, -0.009862206876277924, -0.029207393527030945, 0.06545178592205048, -0.05660870298743248, -0.03396649286150932, -0.01914309523999691, -0.02690710686147213, 0.019496146589517593, -0.004803088027983904, 0.03342705965042114, 0.07843652367591858, 0.12698994576931, 0.035771097987890244, 0.0522967129945755, -0.06217952445149422, 0.01479324046522379, 0.024017028510570526, -0.1438448280096054, 0.08998775482177734, -0.07196532189846039, 0.013414071872830391, -0.07334526628255844, 0.023776529356837273, 0.09741630405187607, 0.0721864104270935, -0.07947324216365814, 0.06173359602689743, 0.05719488859176636, 0.026425737887620926, 0.005142374895513058, 0.03711456060409546, -0.0893850103020668, 0.03841174393892288, 0.10236459225416183, 0.022914467379450798, -0.05695619434118271, 0.05809058994054794, 0.08611835539340973, 0.0014447764260694385, 0.06662154197692871, 0.06915301829576492, -0.1275552362203598, -0.009309525601565838, -0.11000560969114304, 0.05294925719499588, -0.11645595729351044, 0.013589421287178993, 0.0435723215341568, -0.017270419746637344, -0.04141603037714958, 0.03703531250357628, -0.05492782220244408, 0.05492524430155754, 0.019841136410832405, 0.0017622634768486023, -0.06982473284006119, -0.07850318402051926, 0.02736041136085987, 0.07069239765405655, -0.013820444233715534, -0.0020872752647846937, -0.019131403416395187, -0.023783603683114052, -0.08622124791145325, 0.08072202652692795, -0.03010934218764305, 0.02949250116944313, -0.04362695664167404, 0.0705246701836586, -0.01940089836716652, -0.11150095611810684, 0.03706797957420349, 0.10271555930376053, 0.07562059164047241, -0.055976830422878265, -0.08290618658065796, -0.10279149562120438, 0.11486741900444031, -0.05243278294801712, -0.08482453972101212, 0.09165643900632858, 0.03967946767807007, -0.12405318766832352, -0.002841969719156623], "\u901a\u8fc7Hub\u53ef\u4ee5\u4f7f\u7528GPU\u52a0\u8f7d`vgg16`\u6a21\u578b\u4ee5\u53ca\u662f\u5426\u53ef\u4ee5\u505a\u8fc1\u79fb\u6a21\u578b\u5417\uff1f": [0.018133530393242836, -0.007809291128069162, 0.013392572291195393, 0.05623104050755501, 0.010249936953186989, -0.017668699845671654, 0.05446455627679825, 0.025118989869952202, -0.03294571116566658, -0.027467265725135803, -0.007471703924238682, -0.011396709829568863, -0.025644855573773384, 0.033505767583847046, 0.012879920192062855, 0.08250977098941803, -0.0024155760183930397, -0.04133383557200432, -0.1058514341711998, 0.05211798846721649, -0.07748014479875565, 0.07319192588329315, 0.022684559226036072, 0.07558207958936691, 0.03456960245966911, 0.061883896589279175, 0.015112712979316711, 0.023334365338087082, 0.03859284892678261, 0.12038584053516388, 0.05034060403704643, 0.11329509317874908, -0.07741548120975494, 0.03574192151427269, -0.02099394053220749, -0.029541688039898872, -0.0699656680226326, 0.08042167127132416, -0.07547110319137573, -0.06655532866716385, 0.016539063304662704, -0.010847768746316433, -0.06153353303670883, 0.12368179112672806, 0.006983347237110138, -0.0006232316372916102, -0.04406372085213661, 0.0605611577630043, 0.06571153551340103, 0.0023132064379751682, -0.17236213386058807, 0.08784928917884827, -0.1037740558385849, -0.09402898699045181, -0.038251444697380066, 0.019679367542266846, 0.023541733622550964, 0.039401575922966, 0.015937138348817825, 0.06488767266273499, 0.03772151470184326, 0.018542354926466942, -0.10661730170249939, 0.0445440448820591, -0.06416624039411545, 0.004515429027378559, 0.00549681531265378, -0.028960255905985832, 0.0026601769495755434, -0.0015327765140682459, -0.040848199278116226, 0.009548936039209366, -0.02639518678188324, 0.015348542481660843, 0.05188780650496483, -0.02103673666715622, -0.029317770153284073, 0.01160348579287529, -0.08574333786964417, -0.04619695991277695, 0.015822408720850945, -0.06692758202552795, 0.06035477668046951, -0.07782717049121857, 0.03832940384745598, 0.00012818165123462677, -0.0932101458311081, 0.049413636326789856, -0.1056923046708107, 0.06976372748613358, 0.061854518949985504, -0.04059156775474548, -0.12102548778057098, 0.06790758669376373, 0.14279311895370483, -0.04144734889268875, -0.007565516047179699, -0.022517027333378792, -0.07755694538354874, 0.03723391890525818, 0.05198372155427933, 0.04774981737136841, -0.011401116847991943, 0.06958194077014923, -0.005938558839261532, -0.057541877031326294, -0.02764376439154148, 0.04086638614535332, -0.03820441663265228, 0.06713990122079849, 0.06500450521707535, 0.031944628804922104, 0.050503820180892944, 0.023018959909677505, -0.07877720892429352, 0.042976051568984985, 0.0050375983119010925, -0.019628476351499557, -0.08819107711315155, 0.09793964773416519, 0.11826468259096146, -0.0033787006977945566, 0.005781945772469044, 0.06689098477363586, 0.01429014839231968, -0.05668651685118675, 0.04737621918320656, -0.03178390860557556, -0.06792785227298737, -0.035161927342414856, 0.16555814445018768, -0.06002757325768471, 0.05092393234372139, -0.13720253109931946, -0.06026340276002884, 0.049539756029844284, -0.09443621337413788, 0.007063334807753563, -0.017268922179937363, 0.06393813341856003, 0.03224092349410057, -0.08088889718055725, -0.018507465720176697, -0.03240577504038811, 0.08175050467252731, -0.004029751755297184, -0.09810897707939148, -0.13157346844673157, 0.028766673058271408, -0.03162508085370064, 0.05190800502896309, -0.003640636568889022, -0.04286517575383186, 0.11097139865159988, -0.004825333133339882, 0.03187664598226547, -0.037883657962083817, -0.04016881063580513, -0.017461298033595085, -0.05604777857661247, -0.10411948710680008, -0.04261140525341034, 0.03943510353565216, -0.0032616290263831615, 0.0738159716129303, 0.05764774978160858, 0.04288104176521301, -0.026535535231232643, -0.03427230939269066, 0.007086832541972399, 0.014554353430867195, 0.08566254377365112, -0.07799055427312851, -0.019715920090675354, 0.0011945207370445132, -0.018143190070986748, 0.04741121828556061, 0.037094444036483765, -0.009297110140323639, -0.0667971819639206, 0.08396826684474945, -0.08970744162797928, -0.02281728759407997, -0.0405811071395874, 0.08854423463344574, -0.04673338308930397, -0.06426186859607697, 0.007611021399497986, 0.12943485379219055, -0.11936688423156738, 0.05971397086977959, 0.06502927839756012, 0.0767999067902565, 0.07271794974803925, -0.007124616298824549, -0.11338833719491959, -0.12528254091739655, 0.017319418489933014, 0.049065668135881424, -0.011465134099125862, 0.020365487784147263, -0.0066634248942136765, 0.08910369873046875, -0.04404787719249725, -0.021868478506803513, -0.01368754729628563, -0.10058353841304779, -0.17932799458503723, -0.03208490461111069, -0.03800218924880028, 0.05086958035826683, -0.03254270926117897, -0.09134645760059357, -0.053550299257040024, -0.03113488107919693, 0.004766245372593403, 0.05596758797764778, 0.05309418961405754, 0.05712202936410904, -0.031084995716810226, 0.1147855743765831, -0.017390752211213112, 0.04729396477341652, -0.07296662032604218, -0.08286238461732864, 0.006864997558295727, -0.08087161183357239, -0.09860996901988983, -0.0492856539785862, 0.09715454280376434, -0.016771860420703888, 0.11564531922340393, 0.05906113237142563, 0.048854030668735504, -0.017561616376042366, 0.07770151644945145, 0.0156606025993824, -0.0046760025434195995, 0.06325012445449829, 0.02433551289141178, -0.07470124214887619, 0.01580350287258625, -0.07144009321928024, -0.012096690014004707, -0.037339575588703156, 0.05144789069890976, 0.09676998108625412, 0.004173194989562035, -0.03724003955721855, -0.07965820282697678, 0.011174928396940231, -0.04938438534736633, -0.05740753561258316, 0.061487168073654175, 0.0007657686364836991, 0.06272220611572266, 0.04816297069191933, -0.052324287593364716, 0.06401870399713516, 0.04138036444783211, 0.030461376532912254, 0.02592669054865837, 0.0052793133072555065, 0.013469536788761616, -0.04099389165639877, -0.07663066685199738, 0.07492555677890778, -0.054003164172172546, 0.003919052425771952, -0.03464862331748009, 0.08685877174139023, -0.0577583909034729, -0.07141884416341782, 0.0038653158117085695, 0.08182321488857269, 0.05199802666902542, -0.04784613102674484, -0.13042423129081726, 0.12238778918981552, -0.03447189927101135, 0.01444028876721859, 0.08600208908319473, 0.004768461920320988, -0.016110852360725403, 0.06711052358150482, 0.030448030680418015, 0.11942122131586075, -0.0023361765779554844, 0.012604819610714912, 0.12908947467803955, -0.06546180695295334, -0.029889073222875595, 0.006261300295591354, 0.03407805413007736, -0.0359349399805069, 0.07597760856151581, 0.07807064801454544, 0.034838154911994934, 0.024474117904901505, 0.0342317596077919, -0.005666001699864864, -0.07672474533319473, 0.022311333566904068, -0.03628632426261902, 0.020541533827781677, -0.030796535313129425, -0.03967981040477753, 0.014273210428655148, -0.018029717728495598, 0.03489343822002411, 0.12015870213508606, 0.04676295816898346, 0.000934984243940562, 0.030828112736344337, -0.0536479726433754, 0.029511665925383568, 0.06933213770389557, -0.13901391625404358, 0.09615028649568558, -0.0653463825583458, 0.03305647894740105, -0.03277191147208214, 0.0684874877333641, 0.056987784802913666, 0.10249847918748856, 0.07438082993030548, 0.016326365992426872, 0.043570902198553085, 0.0085985716432333, 0.07168235629796982, 0.07737605273723602, -0.017181966453790665, -0.049613870680332184, 0.11271898448467255, -0.03378474712371826, -0.15065151453018188, 0.14088557660579681, 0.029498599469661713, 0.02135169506072998, -0.0518760122358799, 0.047782935202121735, -0.09339930862188339, 0.01316920854151249, -0.10022243857383728, 0.07956526428461075, -0.09908737242221832, 0.07841223478317261, 0.0290296021848917, -0.04988294467329979, 0.013946988619863987, 0.08643895387649536, -0.08728073537349701, 0.06125740706920624, -0.0421372652053833, -0.015635451301932335, -0.029073957353830338, -0.0800015851855278, 0.005022002849727869, 0.04206889495253563, -0.07368333637714386, 0.03183554857969284, -0.03460054472088814, -0.07460382580757141, -0.05828390643000603, 0.05829749256372452, -0.03139179199934006, 0.02795562334358692, 0.008958522230386734, 0.042832471430301666, 0.025073500350117683, -0.14828458428382874, 0.026965025812387466, 0.12180162221193314, 0.06904204189777374, -0.03426249325275421, -0.0890871211886406, -0.17358925938606262, -0.002456704853102565, 0.04844466969370842, -0.05085717514157295, 0.06220051273703575, 0.06160025671124458, -0.035169508308172226, -0.01847270503640175], "\u5982\u4f55\u5f97\u5230VGG\u6a21\u578b\u4e2d\u95f4\u5c42\u7279\u5f81\uff1f": [-0.09722255915403366, -0.027885816991329193, 0.06424510478973389, 0.09206511080265045, 0.04797264561057091, -0.08308187127113342, 0.013922760263085365, 0.06804155558347702, 0.07167352735996246, 0.006427585147321224, 0.05483650043606758, -0.006870768032968044, 0.02262234315276146, -0.049987222999334335, 0.002784858224913478, 0.16252169013023376, 0.04059069603681564, 0.014643494039773941, -0.14458376169204712, 0.042098041623830795, -0.023201242089271545, 0.05921163037419319, 0.02579340711236, 0.034434832632541656, 0.06030118465423584, 0.08946485817432404, 0.061111435294151306, -0.014271432533860207, 0.01730073057115078, 0.107363760471344, 0.03550383448600769, 0.09010008722543716, -0.044057268649339676, 0.09352482110261917, -0.043809808790683746, -0.10464758425951004, -0.03134862333536148, 0.1425260305404663, -0.007524886634200811, -0.1092778667807579, 0.08519475162029266, -0.013735484331846237, -0.06527718156576157, 0.10280409455299377, -0.05901404470205307, -0.05767957866191864, -0.10351471602916718, -0.010361410677433014, 0.054948508739471436, 0.021732687950134277, -0.09046081453561783, 0.07221945375204086, 0.029923168942332268, -0.06397317349910736, -0.08434965461492538, 0.015017550438642502, 0.0622074268758297, 0.030023343861103058, 0.005576645955443382, 0.005921616684645414, 0.028277158737182617, 0.04279838129878044, -0.04507752135396004, -0.04736213758587837, -0.1775873303413391, 0.006536278873682022, -0.04946107044816017, -0.06337232887744904, 0.04635081812739372, 0.009014777839183807, -0.052575308829545975, 0.054370734840631485, -0.06771522015333176, 0.04755105450749397, 0.06850922107696533, 0.04738464951515198, -0.014128981158137321, -0.024730393663048744, -0.004278527572751045, 0.07126599550247192, 0.01936766877770424, -0.05927424132823944, 0.09865884482860565, -0.11811071634292603, -0.06089098006486893, -0.03678535670042038, -0.10556952655315399, -0.07233750075101852, -0.08869946002960205, 0.05820959806442261, 0.07839105278253555, -0.059702493250370026, -0.16434326767921448, -0.03439028561115265, 0.1377280056476593, -0.07471007853746414, -0.12054751068353653, -0.06459338217973709, -0.15497377514839172, -0.021838130429387093, 0.09756699949502945, -0.056471142917871475, -0.01689767837524414, 0.0005875266506336629, -0.04034209996461868, -0.04584707319736481, -0.06853921711444855, 0.032417427748441696, -0.040520455688238144, 0.06557717174291611, 0.11162145435810089, -0.00818195752799511, 0.015774806961417198, 0.01887688972055912, -0.0018766686553135514, 0.03301258012652397, 0.09819833189249039, -0.01596122980117798, -0.08371326327323914, 0.07030557096004486, 0.051765237003564835, -0.010071584954857826, 0.012365587055683136, 0.02818489260971546, -0.0006236553890630603, -0.040834832936525345, 0.10464160144329071, -0.06708456575870514, -0.09220992773771286, -0.02561378851532936, 0.11927591264247894, -0.09557810425758362, 0.03320109844207764, -0.025631437078118324, -0.1029314398765564, 0.07508584856987, -0.09439629316329956, 0.008962517604231834, 0.06602758169174194, 0.12427186965942383, 0.058586787432432175, -0.15026487410068512, -0.030391894280910492, -0.050572969019412994, 0.10037063807249069, 0.04135509952902794, -0.08817122131586075, -0.08654138445854187, 0.023252099752426147, -0.019405972212553024, 0.11844860017299652, -0.009530252777040005, -0.0052332025952637196, 0.07359275966882706, -0.036205440759658813, -0.0032718873117119074, -0.005270486231893301, -0.05936103314161301, -0.011662285774946213, -0.15736700594425201, -0.10204693675041199, -0.015258027240633965, 0.008540035225450993, -0.03129919245839119, -0.07803074270486832, 0.08729522675275803, 0.03870663046836853, 0.039536021649837494, -0.04738255962729454, -0.029278699308633804, 0.0458802692592144, 0.07100793719291687, 0.04872869700193405, -0.1050325408577919, -0.020121442154049873, 0.08396480977535248, 0.1239284873008728, 0.04405919462442398, 0.03079097718000412, -0.03505856543779373, 0.03693719953298569, -0.06002726033329964, -0.01570264808833599, -0.0820343941450119, 0.08238355070352554, -0.03334162011742592, 0.008651288226246834, -0.006535250693559647, 0.13633698225021362, -0.24441233277320862, 0.02002818137407303, 0.010022953152656555, 0.007054055575281382, 0.12337513267993927, -0.09323052316904068, -0.06102926656603813, -0.10451284050941467, -0.08770443499088287, 0.046935394406318665, -0.09386833757162094, 0.05557101592421532, -0.02636290341615677, 0.10179293155670166, -0.03174729645252228, 0.029432594776153564, -0.044302552938461304, -0.11278320848941803, -0.0813831090927124, -0.04308683052659035, 0.02457258850336075, -0.011387225240468979, 0.008666678331792355, -0.06784326583147049, -0.0652296170592308, -0.0700409933924675, -0.04316191002726555, 0.08703670650720596, 0.050028782337903976, 0.08405037224292755, -0.03196689113974571, -0.03055369295179844, 0.01274057012051344, -0.009011363610625267, -0.07626669108867645, -0.10813897848129272, -0.07691740989685059, -0.0555037222802639, -0.0930090919137001, -0.025808807462453842, 0.012273283675312996, -0.0460832417011261, -0.016192832961678505, 0.0009986517252400517, 0.171916663646698, -0.009445501491427422, 0.0788755863904953, -0.14832277595996857, -0.01846221089363098, 0.06846991181373596, -0.027968285605311394, -0.10149203985929489, 0.09624447673559189, -0.09387223422527313, -0.020589184015989304, -0.10886833071708679, 0.04959642514586449, -0.007300996221601963, -0.03404691070318222, 0.01084759272634983, -0.06901445239782333, -0.0303081963211298, 0.03202132135629654, -0.08164016157388687, -0.0035229786299169064, 0.0006496681598946452, 0.07521649450063705, 0.08977624773979187, -0.07199041545391083, 0.05589933693408966, 0.009642559103667736, -0.026318581774830818, 0.015808919444680214, -0.07971015572547913, 0.08394713699817657, 0.016106802970170975, -0.08329753577709198, 0.06616027653217316, -0.11054946482181549, 0.10925032198429108, -0.09557228535413742, -0.03627609834074974, 0.03775637596845627, 0.01422808039933443, -0.0375719889998436, 0.154733344912529, 0.053162310272455215, 9.708479046821594e-05, -0.08885200321674347, 0.06849347800016403, -0.012082898989319801, 0.031557440757751465, 0.03469261899590492, -0.058408141136169434, 0.0041014510206878185, 0.032774750143289566, -0.05649538338184357, 0.1188269853591919, -0.036795344203710556, 0.05686262995004654, 0.22170302271842957, 0.04232059419155121, -0.03782417252659798, 0.010270788334310055, -0.025570327416062355, -0.062029093503952026, 0.04598455876111984, 0.03148203343153, 0.11239763349294662, 0.036158837378025055, -0.021515540778636932, -0.012124317698180676, -0.02170826680958271, 0.05333946645259857, -0.016794033348560333, 0.008483043871819973, -0.0436960831284523, 0.049165140837430954, -0.05748361349105835, 0.038173191249370575, -0.035471972078084946, 0.08132608234882355, 0.17866061627864838, -0.01786532625555992, 0.08130356669425964, -0.0038878126069903374, 0.05839484930038452, 0.010983548127114773, -0.07625643908977509, 0.09304491430521011, -0.03936999291181564, 0.06656817346811295, -0.07605225592851639, 0.03809547796845436, 0.08690290153026581, 0.05673752725124359, -0.03780234605073929, 0.0535409152507782, 0.08017364889383316, -0.023892583325505257, 0.02406318485736847, 0.07987164705991745, -0.022416358813643456, -0.04843045026063919, 0.12558597326278687, 0.09409365803003311, -0.10041196644306183, 0.03551753610372543, -0.04700709879398346, -0.026902014389634132, -0.023555846884846687, -0.00515673216432333, -0.1008065864443779, 0.05326535180211067, -0.057127945125103, 0.09194837510585785, -0.09937965869903564, 0.09151282906532288, 0.05225249379873276, 0.015321766957640648, -0.011306342668831348, -0.0050764200277626514, -0.0899997428059578, 0.032693181186914444, -0.10538405179977417, -0.07690820097923279, -0.05593390762805939, -0.06427322328090668, -0.009405752643942833, 0.09641490131616592, -0.0857536569237709, 0.07781670987606049, -0.022846495732665062, -0.02269248105585575, -0.058498166501522064, -0.005723935551941395, -0.13021960854530334, 0.020146239548921585, -0.011461558751761913, 0.05403788760304451, -0.011299990117549896, -0.19019803404808044, 0.053752604871988297, 0.1529163420200348, 0.0693478137254715, -0.08897878229618073, -0.052558012306690216, -0.18110215663909912, 0.01654275320470333, 0.037144675850868225, -0.10216865688562393, 0.06962701678276062, 0.012675016187131405, -0.06218230351805687, -0.019698070362210274], "\u4f7f\u7528MindSpore\u8fdb\u884c\u6a21\u578b\u8bad\u7ec3\u65f6\uff0c`CTCLoss`\u7684\u8f93\u5165\u53c2\u6570\u6709\u56db\u4e2a: `inputs`\uff0c `labels_indices`\uff0c `labels_values`\uff0c `sequence_length`\uff0c\u5982\u4f55\u4f7f\u7528`CTCLoss`\u8fdb\u884c\u8bad\u7ec3\uff1f": [-0.09751442074775696, 0.06415052711963654, 0.03360208496451378, 0.045330554246902466, -0.10256598144769669, -0.017189303413033485, -0.034965112805366516, 0.06266653537750244, -0.0168303269892931, 0.07896953821182251, 0.05565924197435379, 0.01800014078617096, 0.018938684836030006, 0.003147433279082179, -0.03560226410627365, 0.11862155795097351, 0.059910163283348083, 0.03967156261205673, 0.0028677652589976788, 0.051613207906484604, -0.03777690604329109, -0.007803185377269983, 0.08913198113441467, 0.030721640214323997, 0.0575709268450737, 0.09276532381772995, 0.0004912986769340932, -0.017390800639986992, -0.041031576693058014, 0.09523116797208786, 0.06376755982637405, 0.06356240063905716, -0.07356946170330048, 0.015448696911334991, -0.03418336063623428, -0.049599699676036835, -0.10975102335214615, 0.13084673881530762, -0.026593312621116638, -0.031983423978090286, 0.0474075973033905, 0.03651934117078781, -0.03149378299713135, 0.09532885998487473, -0.025368621572852135, 0.012907059863209724, -0.16533303260803223, 0.07088042795658112, 0.017477020621299744, -0.03732319921255112, -0.1064286157488823, 0.05986480042338371, 0.06617609411478043, 0.030486907809972763, -0.05974048376083374, 0.025199752300977707, 0.04369957372546196, 0.001267195912078023, 0.09641888737678528, 0.025905489921569824, 0.026677971705794334, -0.0050827087834477425, -0.06245281174778938, -0.0486723855137825, -0.11928257346153259, 0.06102605164051056, -0.030479397624731064, -0.11529017239809036, -0.005044774152338505, -0.023429308086633682, -0.08925942331552505, -0.03258443623781204, 0.008237982168793678, 0.048960451036691666, 0.018915794789791107, 0.053230296820402145, -0.02421553060412407, 0.03873509168624878, -0.022611483931541443, 0.014896920882165432, -0.021113652735948563, 0.07956091314554214, -0.016513217240571976, -0.10374252498149872, -0.04293706640601158, -0.08751153200864792, -0.015660811215639114, 0.0708150640130043, -0.08656949549913406, 0.08827228099107742, 0.019956843927502632, -0.07865078002214432, -0.08664961159229279, 0.049449943006038666, 0.05826110765337944, -0.05502210184931755, -0.006716121453791857, 0.05643784627318382, -0.17553120851516724, -0.01637936569750309, 0.06767529994249344, -0.075333371758461, -0.06569242477416992, 0.0629371702671051, 0.025861486792564392, -0.05869053676724434, -0.034771278500556946, 0.08231503516435623, 0.004951794166117907, -0.06397157907485962, 0.08295616507530212, 0.002709955908358097, 0.008392475545406342, 0.04455851763486862, 0.021888406947255135, 0.03399006277322769, -0.04873479902744293, -0.09994751214981079, -0.04381196200847626, 0.17224980890750885, 0.11858733743429184, -0.0052764746360480785, 0.05782615393400192, 0.044522304087877274, 0.014285482466220856, 0.012457041069865227, 0.0941043496131897, -0.0454113706946373, -0.07656361162662506, -0.016891909763216972, 0.1874217391014099, -0.0529974102973938, 0.02771150879561901, -0.10283835977315903, -0.056677475571632385, 0.038489531725645065, -0.0011601797305047512, 0.07918214052915573, -0.029176482930779457, 0.12123635411262512, 0.022525953128933907, -0.14062313735485077, 0.01380518265068531, -0.06791248172521591, 0.08602317422628403, -0.03631700202822685, -0.09388753771781921, -0.10005263239145279, -0.04728579893708229, -0.06035324186086655, 0.10938207060098648, 0.014401850290596485, -0.07892459630966187, -0.014876985922455788, -0.06430773437023163, 0.04997707158327103, 0.03747931495308876, 0.06970588117837906, -0.0805429220199585, -0.10044350475072861, -0.06167729198932648, -0.0671490952372551, 0.05709143728017807, 0.020640673115849495, -0.05870512127876282, 0.05223914608359337, 0.007632029242813587, 0.028084861114621162, 0.03808826580643654, -0.05046243220567703, -0.017443805932998657, 0.03422693908214569, -0.056840602308511734, -0.10260099172592163, 0.00014388561248779297, -0.022130321711301804, 0.08306702971458435, -0.10353259742259979, 0.004303459543734789, -0.0019312122603878379, 0.06181430071592331, -0.10205818712711334, -0.11221123486757278, -0.05998691916465759, -0.015552901662886143, 0.0310374666005373, 0.09390025585889816, 0.02294701710343361, 0.15471632778644562, -0.19065994024276733, -0.015760255977511406, 0.029803302139043808, 0.030329136177897453, 0.043282635509967804, 0.018981032073497772, -0.057764895260334015, -0.05841188132762909, -0.002214621752500534, 0.06376706063747406, 0.014130447059869766, -0.0006865895120427012, 0.020324595272541046, -0.04431817680597305, 0.011568436399102211, -0.03299716114997864, -0.025483274832367897, -0.08069191128015518, -0.12078463286161423, -0.041259776800870895, 0.05983489751815796, 0.10451287776231766, 0.028050318360328674, -0.06043263524770737, -0.025223499163985252, -0.20338888466358185, -0.06577412784099579, 0.07879380881786346, 0.07072905451059341, 0.06785078346729279, -0.018373845145106316, -0.02464950643479824, -0.06435203552246094, 0.028187189251184464, -0.03801511228084564, -0.0658646896481514, -0.007036370690912008, -0.026150371879339218, -0.12239032983779907, -0.004690117202699184, 0.037766195833683014, -0.03286726772785187, 0.11970501393079758, -0.03968040645122528, 0.12132585048675537, -0.029964972287416458, 0.1256018728017807, -0.04839372634887695, 0.012170336209237576, 0.028213592246174812, -0.014109820127487183, -0.12380461394786835, 0.09626356512308121, -0.049741365015506744, -0.028260722756385803, -0.06171546131372452, 0.08730337768793106, 0.11293180286884308, -0.03812514618039131, 0.04178079590201378, -0.07376447319984436, 0.05971437692642212, 0.05199849233031273, 0.03269953280687332, 0.01640414446592331, -0.02356363832950592, 0.07449239492416382, 0.054187845438718796, -0.043992821127176285, 0.07759638130664825, 0.09084444493055344, -0.03159991651773453, 0.021447202190756798, -0.07815976440906525, 0.016871951520442963, -0.049262382090091705, 0.037422265857458115, 0.07036396116018295, -0.07696963846683502, -0.01638864539563656, -0.10211484134197235, 0.11678563803434372, -0.02049882337450981, -0.04409269616007805, -0.012382181361317635, 0.06693680584430695, 0.03429708629846573, 0.008185751736164093, -0.15031179785728455, 0.05156490206718445, 0.02970241568982601, 0.002104294253513217, 0.06772206723690033, 0.035689640790224075, -0.009875328280031681, 0.05612683668732643, 0.003269664477556944, 0.04970179498195648, -0.003126072697341442, 0.06614407896995544, 0.14286945760250092, -0.02285432256758213, -0.06260328739881516, -0.07328735291957855, 0.02739635854959488, -0.029722392559051514, 0.07305075973272324, 0.014069064520299435, 0.028786005452275276, 0.11211985349655151, 0.03558049350976944, -0.06517456471920013, -0.058523617684841156, 0.06301630288362503, -0.0459679551422596, -0.08512841910123825, -0.01407873909920454, -0.08669230341911316, 0.06219227612018585, -0.028736425563693047, -0.014918331056833267, 0.1044972613453865, 0.09059205651283264, 0.04837002977728844, 0.08932008594274521, 0.018682649359107018, -0.07607071846723557, 0.07182110846042633, -0.1254688948392868, 0.07350783050060272, -0.06287948787212372, 0.1261862963438034, 0.007150870747864246, 0.06191977113485336, 0.029526496306061745, 0.009232988581061363, 0.05907150357961655, 0.008353485725820065, 0.06079272925853729, 0.020853698253631592, -0.03748524561524391, 0.057867541909217834, -0.08103123307228088, 0.031214402988553047, 0.05375862494111061, 0.03058641590178013, -0.10603795200586319, 0.11984236538410187, 0.06840071082115173, 0.07566335797309875, 0.09941299259662628, 0.032673366367816925, -0.050681643187999725, 0.01052099745720625, -0.062250640243291855, 0.07988568395376205, -0.0760769471526146, -0.0035141990520060062, 0.010916206985712051, 0.005215901881456375, 0.015858158469200134, 0.07891981303691864, -0.030794423073530197, 0.03675909340381622, 0.004121390171349049, 0.006957813631743193, -0.15368661284446716, -0.04520285502076149, 0.016367921605706215, 0.0208898838609457, 0.020007332786917686, -0.017285021021962166, -0.02512282319366932, 0.011738679371774197, -0.07145669311285019, 0.07886822521686554, -0.06814780086278915, 0.05027572438120842, 0.025629902258515358, 0.010166380554437637, 0.03286100924015045, -0.014637691900134087, 0.05978226289153099, 0.08420003950595856, 0.06917263567447662, -0.07307542860507965, -0.051472339779138565, -0.06798755377531052, 0.04615245759487152, -0.10780946165323257, -0.13925060629844666, -0.009711910970509052, 0.03715914115309715, -0.09941442310810089, 0.01643694005906582], "\u6a21\u578b\u8f6c\u79fb\u65f6\u5982\u4f55\u628aPyTorch\u7684\u6743\u91cd\u52a0\u8f7d\u5230MindSpore\u4e2d\uff1f": [-0.056958768516778946, 0.04072984308004379, 0.04871418699622154, 0.009676439687609673, -0.02872553840279579, -0.09185957163572311, 0.0016293828375637531, 0.08576749265193939, 0.01786842569708824, 0.06557360291481018, 0.0025313145015388727, 0.02496163360774517, 0.008897097781300545, -0.03130596503615379, -0.05221669003367424, 0.10934320092201233, 0.05419759824872017, 0.0551590770483017, -0.07781211286783218, 0.09786619246006012, 0.00036638230085372925, 0.010212351568043232, 0.060237206518650055, -0.04728828743100166, 0.0860312357544899, 0.12086446583271027, 0.055776745080947876, 0.01846325956285, 0.04183802753686905, 0.11365462094545364, 0.02370128035545349, 0.06460294872522354, -0.05416734516620636, 0.07823207229375839, -0.07480425387620926, -0.04827146604657173, -0.08305879682302475, 0.07923905551433563, -0.04874710738658905, -0.02933579310774803, 0.036434873938560486, 0.008513183332979679, -0.07559789717197418, 0.05095435306429863, 0.012509799562394619, -0.06079497188329697, -0.15507090091705322, -0.0739830955862999, 0.05487799271941185, 0.03263973817229271, -0.06983665376901627, 0.010148642584681511, 0.029080448672175407, -0.004743116907775402, -0.10108153522014618, -0.0470096580684185, 0.03222864866256714, 0.03872758522629738, 0.042687512934207916, -0.02408987656235695, 0.042688094079494476, 0.01704329624772072, -0.07280228286981583, -0.0035555288195610046, -0.10774272680282593, -0.013746196404099464, -0.056766580790281296, -0.04923325031995773, 0.00388901773840189, -0.007979363203048706, -0.12079541385173798, 0.017369378358125687, -0.0026430333964526653, 0.1026766300201416, 0.09373496472835541, 0.036226529628038406, 0.04151303693652153, 0.008485964499413967, -0.06804827600717545, 0.06208842620253563, 0.03285064175724983, 0.1437317430973053, 0.08769720792770386, -0.08651262521743774, -0.03715747594833374, -0.024367239326238632, -0.06970803439617157, 0.04545915871858597, -0.07122056186199188, 0.04069039225578308, -0.015568012371659279, -0.09785062074661255, -0.13666215538978577, 0.02454070933163166, 0.0661562979221344, -0.012879458256065845, -0.058997608721256256, -0.07961980253458023, -0.1670253872871399, 0.01743231527507305, 0.06865330785512924, 0.010122145526111126, -0.037412129342556, 0.033299800008535385, -0.02076861634850502, -0.019655819982290268, 0.005383394658565521, 0.02973814681172371, 0.03755737096071243, 0.04260002076625824, 0.05559530109167099, 0.037364661693573, 0.0676211267709732, 0.028849927708506584, 0.03003339096903801, 0.0015146161895245314, -0.030677566304802895, -0.049247413873672485, -0.015130996704101562, 0.06856018304824829, 0.08549153804779053, -0.05460159480571747, 0.03571378439664841, 0.00910882093012333, 0.026546984910964966, -0.035770755261182785, 0.06541362404823303, -0.11047579348087311, -0.0556807741522789, -0.020882681012153625, 0.1566607654094696, -0.056961625814437866, 0.01935134269297123, -0.06576124578714371, -0.09103164821863174, 0.0588899627327919, -0.06296097487211227, 0.009839040227234364, -0.06973662227392197, 0.12311730533838272, 0.042169202119112015, -0.13413818180561066, 0.06838161498308182, -0.023939762264490128, 0.1137501522898674, -0.00014669261872768402, -0.0798652321100235, -0.11060887575149536, -0.0331360325217247, -0.08176583051681519, 0.11324971169233322, -0.1059478148818016, -0.016015494242310524, 0.11506764590740204, -0.023306794464588165, 0.03569645807147026, 0.02344409190118313, -0.017030492424964905, -0.0056646717712283134, -0.05135081335902214, -0.07765275985002518, -0.04020557180047035, 0.002850390737876296, -0.02444438822567463, -0.03773532435297966, 0.03876703605055809, 0.01271616667509079, 0.013768436387181282, -0.05423123389482498, -0.053276512771844864, -0.013620266690850258, 0.008569448255002499, -0.02215757966041565, -0.05905613675713539, 0.0655161589384079, 0.020736591890454292, 0.05023852735757828, -0.04351753741502762, -0.016638796776533127, -0.021373970434069633, 0.07825962454080582, -0.1120632141828537, -0.056408025324344635, -0.08244076371192932, 0.007565801031887531, -0.016936495900154114, 0.08674123138189316, -0.002060435013845563, 0.21366529166698456, -0.16898977756500244, -0.008288906887173653, 0.0034192295279353857, 0.016154395416378975, 0.07500439882278442, -0.035205937922000885, 0.016065312549471855, -0.09789132326841354, -0.0248506311327219, 0.03636837750673294, 0.0009077673312276602, -0.018839195370674133, -0.029376277700066566, 0.07672980427742004, -0.003494512988254428, 0.007904908619821072, -0.004826713353395462, -0.07890334725379944, -0.11410977691411972, -0.022468622773885727, 0.03542518988251686, 0.078946553170681, 0.05603787302970886, -0.08746351301670074, -0.061729513108730316, -0.16579623520374298, 0.05370540916919708, 0.10612385720014572, 0.0873386412858963, 0.07118409126996994, -0.03572245314717293, 0.007446490228176117, -0.0013590186135843396, -0.029931839555501938, -0.12165245413780212, -0.09206826984882355, -0.034537848085165024, -0.033013902604579926, -0.11984486877918243, 0.02251916378736496, 0.02767707221210003, -0.12440989166498184, 0.08737170696258545, 0.026017142459750175, 0.1372644007205963, -0.015771787613630295, 0.09666264802217484, -0.06318984180688858, 0.0318821519613266, 0.0628497302532196, 0.06749329715967178, -0.1188204362988472, 0.03604999557137489, -0.09154702723026276, -0.03430814668536186, -0.15186707675457, 0.10629136860370636, 0.07791367173194885, 0.022987674921751022, 0.019865291193127632, -0.10640837252140045, 0.014143068343400955, 0.05398079380393028, -0.06798282265663147, 0.07255575805902481, 0.003996548242866993, 0.045918673276901245, 0.06250935047864914, -0.0985405370593071, 0.027920855209231377, 0.05846446007490158, 0.028862062841653824, 0.012616944499313831, -0.09520090371370316, -0.017148500308394432, -0.029985543340444565, -0.009746267460286617, 0.10705398768186569, -0.06844166666269302, 0.07977982610464096, -0.030699921771883965, -0.006405187770724297, 0.09714537113904953, -0.09042586386203766, 0.045754335820674896, 0.0836610272526741, 0.0443926565349102, 0.06253137439489365, -0.14995785057544708, 0.03118964098393917, 0.05491456389427185, -0.007901284843683243, 0.05232677608728409, -0.018826350569725037, -0.06370086967945099, 0.037939634174108505, -0.09330077469348907, 0.03148840740323067, 0.01920158974826336, 0.040546901524066925, 0.13236044347286224, -0.04285019636154175, 0.02339927852153778, -0.05742338299751282, -0.024130472913384438, -0.008929205127060413, 0.0680205374956131, 0.03827160224318504, 0.09104554355144501, 0.04202314838767052, 0.020508043467998505, -0.04053651541471481, -0.04450371116399765, 0.11251970380544662, -0.027058208361268044, -0.0495179146528244, -0.02503295987844467, -0.0014877457870170474, 0.014350848272442818, 0.02216034010052681, -0.05067454278469086, 0.054552990943193436, 0.11824897676706314, 0.0365631990134716, 0.0951944887638092, 0.0007282121805474162, -0.050335828214883804, 0.05857463181018829, -0.10453125089406967, 0.045365143567323685, -0.07185090333223343, -0.020681746304035187, -0.06088612228631973, 0.04346662014722824, 0.06618558615446091, 0.025001592934131622, -0.01804683916270733, 0.030280107632279396, 0.07124429941177368, 0.003650010097771883, -0.06029350683093071, 0.059827860444784164, 0.06267963349819183, 0.009620034135878086, 0.11311118304729462, 0.044320520013570786, -0.09500943124294281, 0.13120636343955994, 0.0027375989593565464, -0.022936265915632248, 0.03049430251121521, 0.0037300079129636288, -0.07604511827230453, -0.010217512026429176, -0.02908867783844471, 0.10383691638708115, -0.09312377870082855, 0.16526925563812256, 0.003760174848139286, -0.029436664655804634, -0.014765210449695587, 0.04080125689506531, -0.04240041971206665, 0.06249012053012848, -0.04514949023723602, -0.10850957781076431, -0.12577365338802338, -0.044158607721328735, 0.026652459055185318, 0.06499069929122925, -0.0259699746966362, 0.032887957990169525, -0.02845432609319687, -0.042833950370550156, -0.03517628461122513, 0.011686631478369236, -0.08369938284158707, 0.07746662944555283, -0.09310510754585266, 0.04104754701256752, 0.021820854395627975, -0.12465651333332062, 0.04323584958910942, 0.1471639722585678, 0.08408980071544647, -0.047338299453258514, -0.09696035087108612, -0.12457001954317093, 0.04366854205727577, 0.017865927889943123, -0.0759221687912941, 0.038380566984415054, -0.012036560103297234, -0.09413942694664001, 0.05328216031193733], "MindSpore\u6709\u54ea\u4e9b\u73b0\u6210\u7684\u63a8\u8350\u7c7b\u6216\u751f\u6210\u7c7b\u7f51\u7edc\u6216\u6a21\u578b\u53ef\u7528\uff1f": [-0.0455523282289505, 0.045896247029304504, -0.002400311641395092, 0.05363656207919121, -0.08143723011016846, -0.038597121834754944, -0.007454913109540939, 0.04093315824866295, 0.0015242218505591154, -0.0020484579727053642, 0.03135780617594719, -0.0038303183391690254, 0.02227727323770523, 0.04036673158407211, -0.031850624829530716, 0.07301071286201477, 0.14903272688388824, 0.015028728172183037, -0.05990377441048622, 0.05858691409230232, -0.02320568822324276, -0.05393378064036369, 0.07521145790815353, -0.017352577298879623, 0.005928883794695139, 0.036891452968120575, -0.03252885490655899, 0.02671828866004944, 0.010499700903892517, 0.09002479910850525, 0.08411572873592377, 0.036242831498384476, -0.035065170377492905, 0.015503007918596268, -0.03109882026910782, -0.10561227798461914, -0.03539104387164116, 0.09812530875205994, -0.030994120985269547, -0.012996068224310875, 0.02529473416507244, -0.0026930617168545723, -0.06616375595331192, 0.11722506582736969, 0.00356999016366899, 0.015393199399113655, -0.1520461142063141, -0.053463567048311234, 0.04086698591709137, -0.036559149622917175, -0.04354065656661987, 0.07330788671970367, -0.0053437515161931515, -0.007882663048803806, -0.04473406821489334, -0.010997304692864418, -0.026938538998365402, -0.00918364804238081, 0.06536976993083954, -0.030754420906305313, 0.036584217101335526, -0.012016022577881813, -0.12118315696716309, -0.05108976736664772, -0.14891226589679718, -0.026488298550248146, -0.009571895003318787, -0.07170306146144867, -0.034154050052165985, 0.046631861478090286, -0.018912298604846, -0.00622020848095417, -0.023187872022390366, 0.05005408450961113, 0.05501393973827362, 0.05055950582027435, -0.03560250252485275, 0.009885954670608044, -0.06589420139789581, 0.027204349637031555, 0.02874424308538437, 0.06437138468027115, 0.030969388782978058, -0.07439880073070526, -0.08030187338590622, 0.03145388513803482, -0.053121671080589294, 0.0444992333650589, -0.05474427714943886, 0.10310862958431244, 0.02491903491318226, -0.021007340401411057, -0.170790433883667, -0.013302971608936787, 0.047795381397008896, -0.020386479794979095, -0.08111211657524109, -0.0476454459130764, -0.10927245020866394, -0.033061593770980835, 0.021234700456261635, 0.015216517262160778, 0.0039149983786046505, 0.06604543328285217, 0.012263080105185509, -0.07104726880788803, 0.05058617517352104, 0.013545423746109009, 0.050249598920345306, 0.09080353379249573, 0.05613585561513901, 0.01150929369032383, 0.05587493255734444, 0.03896275907754898, -0.015389830805361271, 0.033354029059410095, -0.08338306099176407, -0.017228642478585243, -0.04562114551663399, 0.0655759647488594, 0.03709199279546738, -0.04688600078225136, 0.0055984752252697945, 0.0633934736251831, 0.024494769051671028, 0.016078144311904907, 0.12096437811851501, -0.11786086112260818, -0.05253951996564865, -0.0991569310426712, 0.16382093727588654, -0.10319353640079498, 0.058850280940532684, -0.09384234249591827, -0.07564722001552582, 0.03855003044009209, -0.0035214428789913654, 0.010895741172134876, 0.0069922227412462234, 0.07550692558288574, 0.03958216682076454, -0.09333202242851257, 0.11379900574684143, -0.01514054648578167, 0.10092201828956604, 0.01685141772031784, -0.04911625385284424, -0.06024003401398659, -0.014067575335502625, -0.04180304706096649, 0.03530564904212952, -0.0546136349439621, -0.035110317170619965, 0.08824607729911804, 0.07213424146175385, 0.057301346212625504, 0.019627820700407028, -0.061100371181964874, 0.010291923768818378, -0.0030092878732830286, 0.013594412244856358, -0.02512163668870926, -0.008092362433671951, -0.009941133670508862, -0.05340554937720299, 0.01895727962255478, 0.020470604300498962, 0.026078486815094948, -0.047156862914562225, -0.019675683230161667, -0.03652589023113251, -0.016634885221719742, -0.019838102161884308, -0.004451544489711523, 0.06744839251041412, 0.01169995591044426, 0.09853567183017731, -0.04132591187953949, 0.017414895817637444, -0.06335821002721786, 0.08356908708810806, -0.08484148234128952, -0.006287235766649246, -0.04929273575544357, 0.009715050458908081, 0.04409114271402359, 0.09530896693468094, 0.048278532922267914, 0.16247937083244324, -0.13340480625629425, -0.034982066601514816, 0.024460993707180023, 0.028506916016340256, 0.0712822675704956, 0.026572512462735176, 0.004816455766558647, -0.08352582901716232, -0.03309185430407524, 0.05563831329345703, -0.026781512424349785, -0.025615906342864037, 0.06245754659175873, 0.06379316747188568, -0.025898974388837814, -0.021060917526483536, -0.011601363308727741, -0.08583641797304153, -0.08399253338575363, 0.004821525886654854, -0.018565228208899498, 0.0783843994140625, 0.0168918464332819, -0.025223281234502792, -0.06839802861213684, -0.1450386941432953, -0.0637672021985054, 0.11387409269809723, 0.10233171284198761, 0.043061137199401855, -0.03253161534667015, 0.008786126971244812, 0.009085716679692268, 0.07589853554964066, -0.11829888820648193, -0.08654665946960449, -0.028351575136184692, -0.017517264932394028, -0.11399249732494354, 0.017301352694630623, 0.024978676810860634, -0.0832405835390091, 0.05354880914092064, 0.02166719175875187, 0.17721493542194366, -0.02241579256951809, 0.1252613514661789, -0.02282104268670082, -0.0029849116690456867, 0.10988690704107285, 0.01927320286631584, -0.11129380762577057, 0.08746337890625, -0.08721023052930832, -0.02613411471247673, -0.030919041484594345, 0.04476812854409218, 0.06229556351900101, 0.05088629573583603, 0.004952630493789911, -0.031594157218933105, 0.04755815863609314, -0.02061297744512558, -0.04942476376891136, 0.037856440991163254, 0.0004767514474224299, 0.07039982825517654, 0.07230778783559799, -0.057998307049274445, -0.030599305406212807, 0.04132859408855438, -0.03487969934940338, 0.045413725078105927, -0.03819506615400314, 0.034180041402578354, -0.0822656899690628, 0.0019091754220426083, 0.07378201186656952, -0.011028855107724667, 0.08337582647800446, -0.09136940538883209, 0.004154327791184187, 0.016871154308319092, -0.021138815209269524, -0.0014807515544816852, 0.1424034982919693, 0.03413642942905426, 0.00965197291225195, -0.16248929500579834, 0.025450361892580986, 0.013602026738226414, 0.028402330353856087, 0.0300226341933012, -0.019881315529346466, -0.03665303438901901, 0.10207469016313553, -0.007381115108728409, 0.0484369732439518, 0.040633853524923325, 0.06372819095849991, 0.1077023595571518, -0.013012788258492947, -0.031624872237443924, -0.021647188812494278, 0.011784538626670837, -0.03186366707086563, 0.05064975097775459, 0.08189180493354797, 0.05995003506541252, 0.02878681942820549, 0.0626799687743187, 0.011692234314978123, -0.04873913899064064, 0.09574241936206818, -0.0706239715218544, 0.04808162897825241, -0.009200953878462315, -0.043180372565984726, 0.043710604310035706, 0.04395705461502075, 0.02310304343700409, 0.06757394224405289, 0.09438023716211319, 0.005208480637520552, 0.059974007308483124, -0.10454075038433075, -0.03736419230699539, 0.01950019970536232, -0.14681947231292725, 0.05155386030673981, -0.1094815731048584, 0.03850964829325676, -0.05260409042239189, 0.016526684165000916, 0.04408472403883934, 0.06671267747879028, -0.023825092241168022, 0.022147661074995995, 0.05058795213699341, 0.058428648859262466, 0.005823909305036068, -0.02136492356657982, -0.07026129961013794, 0.056629110127687454, 0.06722842156887054, 0.027591774240136147, -0.12110328674316406, 0.07051525264978409, 0.06057598069310188, -0.0051275454461574554, 0.00496210902929306, 0.09093973785638809, -0.05398436635732651, 0.05288375914096832, -0.06652332842350006, 0.053614821285009384, -0.07187826186418533, 0.07432298362255096, -0.034111469984054565, -0.017295407131314278, -0.06267464905977249, 0.005275509785860777, -0.051430460065603256, 0.006627578288316727, -0.00835245568305254, -0.03797066956758499, -0.16716714203357697, -0.1453486829996109, -0.010013885796070099, 0.06030452996492386, -0.0038247257471084595, -0.012548192404210567, 0.01655234396457672, -0.08736291527748108, -0.05238143354654312, -0.021609913557767868, -0.08633965253829956, 0.07485751807689667, -0.04714539647102356, 0.07551070302724838, 0.032266125082969666, -0.09095463901758194, 0.07705072313547134, 0.11730780452489853, 0.02053068019449711, -0.03631937503814697, -0.033626072108745575, -0.1212550699710846, 0.010019179433584213, 0.03784720227122307, -0.011555641889572144, 0.08574001491069794, -0.0015033145900815725, -0.12777934968471527, 0.07156041264533997], "\u5982\u4f55\u4f7f\u7528MindSpore\u62df\u5408$f(x)=a \\times sin(x)+b$\u8fd9\u7c7b\u51fd\u6570\uff1f": [-0.006525375414639711, 0.04853886738419533, 0.06654531508684158, 0.030021777376532555, -0.056812919676303864, -0.05072600021958351, 0.04571573808789253, 0.09502413868904114, -0.03665219619870186, -0.0026386226527392864, 0.002620584797114134, 0.03554733842611313, 0.01574828289449215, 0.07444656640291214, -0.04124188795685768, 0.09156733751296997, 0.07137623429298401, -0.007795421872287989, 0.021026216447353363, 0.07137646526098251, 0.04594697803258896, -0.009404061362147331, 0.059925828129053116, 0.07011207193136215, 0.0737454742193222, 0.03254316747188568, 0.11123951524496078, 0.00899785477668047, 0.026245741173624992, 0.055513232946395874, 0.09869623929262161, 0.06874155253171921, -0.08910124748945236, -0.005238809157162905, -0.06793681532144547, -0.06670627743005753, -0.047985173761844635, 0.06253883242607117, -0.004403614439070225, -0.048111990094184875, 0.06691373884677887, 0.02649882435798645, -0.022448742762207985, 0.149795800447464, 0.03624281287193298, 0.05121280625462532, -0.15254315733909607, -0.02278236113488674, -0.004090794827789068, 0.07536611706018448, -0.016519935801625252, 0.16747501492500305, -0.043841663748025894, 0.0007291937945410609, -0.021545613184571266, 0.0021170456893742085, 0.014964070171117783, -0.010639959014952183, 0.03164257854223251, 0.020090419799089432, 0.033707085996866226, -0.042732976377010345, -0.1113089770078659, -0.001772458665072918, -0.11072789132595062, -0.05247190222144127, -0.061561547219753265, -0.02413283661007881, -0.08661218732595444, 0.10608281195163727, -0.03385241702198982, -0.11249211430549622, -0.019335763528943062, 0.034835103899240494, 0.06514067947864532, 0.046829286962747574, -0.029644759371876717, -0.026636645197868347, -0.06368096172809601, 0.011191066354513168, -0.0024238266050815582, -0.01949038915336132, 0.10366593301296234, -0.021934745833277702, -0.056373175233602524, -0.0469411239027977, -0.08867013454437256, 0.10178176313638687, -0.0045532360672950745, 0.11106261610984802, -0.0009267290588468313, 0.061445627361536026, -0.0691898763179779, 0.09002954512834549, 0.040416419506073, -0.13668516278266907, -0.0017012248281389475, 0.014348814263939857, -0.1714533567428589, -0.0038151638582348824, 0.030834980309009552, 0.0716472864151001, -0.007713462226092815, 0.033747658133506775, -0.002190641826018691, 0.007130319252610207, -0.04310527443885803, 0.028008487075567245, 0.021294597536325455, 0.08035317063331604, 0.11929961293935776, 0.0010456122690811753, 0.011475655250251293, 0.08665676414966583, -0.01325489953160286, 0.06757231056690216, -0.11424542963504791, -0.11384914815425873, -0.12112757563591003, 0.10833270847797394, 0.11708267033100128, 0.004868003074079752, 0.044250741600990295, 0.0541062206029892, 0.1189691573381424, 0.01645444892346859, 0.12089985609054565, -0.059446390718221664, -0.07448510825634003, -0.10141637921333313, 0.13677509129047394, -0.04454094171524048, 0.059759896248579025, -0.09297040104866028, -0.16151170432567596, 0.09297499805688858, -0.06621971726417542, -0.07033202052116394, -0.03480612486600876, 0.09045828878879547, 0.04763277992606163, -0.11204809695482254, 0.09932038187980652, -0.01358077023178339, 0.07736595720052719, -0.024591345340013504, -0.05011095106601715, -0.05730950087308884, -0.007852084003388882, -0.0885954350233078, -0.03414921835064888, 0.06801664084196091, 0.018474401906132698, 0.1428145468235016, -0.005861710757017136, 0.05440082028508186, 0.021307308226823807, -0.04064205661416054, -0.05302007868885994, -0.0625595971941948, -0.0023459861986339092, 0.009639202617108822, 0.06507901847362518, 0.00676086125895381, 0.014491227455437183, 0.05068710073828697, -0.03475993871688843, -0.009461675770580769, -0.00982365570962429, -0.09747355431318283, 0.02640550583600998, 0.033872924745082855, -0.06520628929138184, -0.011845243163406849, 0.04373686760663986, -0.03090396337211132, 0.14362600445747375, -0.04554487764835358, 0.05813613906502724, -0.028310604393482208, 0.09652812778949738, -0.14210982620716095, 0.012227123603224754, -0.14138263463974, 0.0591176375746727, 0.051647622138261795, 0.05876811966300011, 0.0430326908826828, 0.06931627541780472, -0.1952514499425888, 0.011921514756977558, -0.054726824164390564, 0.03641572222113609, 0.010868137702345848, -0.03267627954483032, 0.016948701813817024, -0.03236924484372139, -0.04367497190833092, 0.026270799338817596, -0.024988869205117226, -0.06675570458173752, 0.04484868049621582, -0.015359560959041119, 0.02629721909761429, 0.03148996829986572, 0.09211432188749313, -0.06431134045124054, -0.09622031450271606, 0.010179733857512474, 0.025264857336878777, 0.09400882571935654, 0.06733159720897675, -0.044430531561374664, -0.01338520459830761, -0.12523630261421204, -0.006997199263423681, 0.020897824317216873, 0.07542500644922256, 0.07478564977645874, 0.018040616065263748, 0.010473432950675488, -0.0005844630650244653, 0.05901559442281723, -0.12783017754554749, -0.015678176656365395, -0.0894036516547203, -0.041901715099811554, -0.08725772798061371, 0.0001979731023311615, -0.028150659054517746, -0.03654206171631813, 0.0945730060338974, -0.019740885123610497, 0.08015798032283783, -0.034210819751024246, 0.09110142290592194, -0.059996090829372406, 0.06830442696809769, 0.20848697423934937, 0.017501339316368103, -0.09658636152744293, 0.1275927573442459, 0.013606933876872063, 0.019087744876742363, -0.0008472052868455648, 0.028482016175985336, 0.0790971964597702, 0.06831526756286621, 0.03807465359568596, -0.0328918993473053, 0.057587746530771255, 0.003294221358373761, -0.08067524433135986, -0.005719778127968311, -0.017884105443954468, -0.02088034898042679, 0.11628119647502899, -0.07663807272911072, 0.05916400998830795, 0.03837759792804718, 0.09134621918201447, -0.011540021747350693, -0.03351834416389465, -0.006134943570941687, -0.012907139956951141, 0.062372446060180664, 0.07659590989351273, -0.042836789041757584, 0.05275477468967438, -0.008095718920230865, 0.025811251252889633, 0.024801041930913925, -0.01804065890610218, -0.01567968726158142, 0.1286918669939041, 0.11368893086910248, -0.029037704691290855, -0.14105772972106934, 0.05621778964996338, -0.06962704658508301, 0.011139246635138988, 0.024267304688692093, -0.06177084520459175, 0.08030307292938232, 0.0643429234623909, 0.07327976077795029, 0.063970185816288, 0.031940773129463196, 0.0790763795375824, 0.08302462100982666, -0.065627321600914, -0.02243165671825409, -0.07892079651355743, 0.059199124574661255, -0.08765840530395508, 0.032843686640262604, 0.03362884372472763, 0.12639722228050232, 0.04089844971895218, 0.027176041156053543, -9.648874402046204e-05, -0.05552458390593529, 0.13280485570430756, -0.0821937620639801, -0.0008878258522599936, -0.005309865344315767, -0.03829752653837204, 0.08280293643474579, 0.009431848302483559, -0.08506148308515549, 0.07025402039289474, 0.09017807245254517, 0.09092594683170319, 0.029399320483207703, -0.05654788389801979, -0.12232719361782074, 0.09373383224010468, -0.118303082883358, 0.07667127251625061, -0.12219204753637314, 0.021238163113594055, 0.010787012986838818, -0.01908719725906849, 0.0795062705874443, 0.08112875372171402, -0.026658132672309875, 0.02392459847033024, 0.0533614419400692, 0.04424720257520676, -0.0002449043095111847, 0.0648409053683281, -0.0011279094032943249, 0.0546637699007988, 0.09341134876012802, 0.03468341752886772, -0.11171736568212509, 0.05197162553668022, 0.06270893663167953, 0.009561934508383274, 0.0898253321647644, 0.07273223251104355, -0.1531994342803955, -0.0009394285152666271, -0.08066238462924957, 0.05962691828608513, -0.0909520834684372, 0.07977653294801712, 0.033688925206661224, -0.04267142713069916, -0.09271754324436188, 0.011225463822484016, -0.08758488297462463, 0.12135186791419983, 0.03830419108271599, -0.07464724779129028, -0.09165684878826141, -0.10309479385614395, 0.0750192254781723, 0.06543157249689102, 0.048573900014162064, -0.020163152366876602, 0.022477569058537483, -0.07291515171527863, -0.024631595239043236, 0.08350440859794617, -0.020167116075754166, 0.08000821620225906, -0.07281763106584549, 0.022009829059243202, 0.030798718333244324, -0.02381410449743271, 0.05343538522720337, 0.08640191704034805, 0.042329106479883194, -0.08819954097270966, 0.022898536175489426, -0.15685397386550903, 0.004475768655538559, -0.061582982540130615, -0.03988289460539818, 0.059006139636039734, 0.051595188677310944, -0.13922186195850372, -0.021164018660783768], "\u5982\u4f55\u4f7f\u7528MindSpore\u62df\u5408$f(x)=ax^2+bx+c$\u8fd9\u7c7b\u7684\u4e8c\u6b21\u51fd\u6570\uff1f": [-0.07250700891017914, 0.02023853361606598, -0.0005223564221523702, 0.06814230978488922, -0.03846420347690582, -0.015690801665186882, -0.0425867885351181, 0.15626919269561768, 0.016775941476225853, 0.011119985952973366, 0.01726231724023819, 0.026998242363333702, 0.051728490740060806, 0.04404015466570854, -0.010913423262536526, 0.07723024487495422, 0.16559681296348572, -0.03429548442363739, -0.13140332698822021, 0.022480156272649765, -0.03339654579758644, 0.0031266408041119576, -0.003351860214024782, 0.09942736476659775, 0.02862725406885147, 0.022806942462921143, 0.07111796736717224, -0.0038709223736077547, -0.007923183962702751, 0.0951591432094574, 0.12592747807502747, 0.01695757731795311, -0.1408325582742691, -0.012211346998810768, -0.0664968192577362, -0.037148043513298035, -0.020775826647877693, 0.1060062125325203, 0.017790229991078377, -0.06069687008857727, 0.08539547026157379, 0.03237993270158768, -0.11968100070953369, 0.1304578185081482, -0.0648638904094696, 0.07466113567352295, -0.18878629803657532, -0.02691858448088169, 0.042100660502910614, 0.08127851784229279, -0.047070007771253586, 0.1832483410835266, -0.05325768142938614, 0.01306005846709013, -0.010336493141949177, 0.0306653194129467, 0.052964430302381516, -0.03827732801437378, 0.054453227669000626, -0.009761900641024113, 0.04599379375576973, -0.020519975572824478, -0.053343914449214935, 0.011176038533449173, -0.1306064873933792, 0.029491186141967773, -0.10629149526357651, -0.023568853735923767, -0.07910826802253723, -0.011649038642644882, 0.08642595261335373, -0.06831232458353043, 0.03523694723844528, -0.007496980018913746, 0.048148442059755325, 0.16615985333919525, 0.03384929895401001, -0.06934308260679245, -0.04180042818188667, 0.0357135571539402, -0.033863555639982224, 0.07847324758768082, 0.062473710626363754, -0.06275228410959244, -0.05073735490441322, -0.08208222687244415, -0.04536285623908043, 0.05335045978426933, 0.04880803823471069, 0.09068214893341064, 0.06227181851863861, 0.015567446127533913, -0.0771225169301033, 0.06884654611349106, 0.06743089109659195, -0.0634995624423027, -0.03442934900522232, 0.03014596365392208, -0.19497962296009064, -0.024897607043385506, 0.006934345234185457, 0.024332622066140175, 0.019634639844298363, 0.10865199565887451, 0.022145457565784454, -0.04238608479499817, -0.03486168384552002, 0.030205335468053818, -0.07482211291790009, 0.005512675270438194, 0.1698627918958664, 0.03915758430957794, 0.04159779101610184, 0.08866296708583832, 0.05319948121905327, 0.03527432680130005, -0.08575162291526794, -0.07837413251399994, -0.11950836330652237, 0.07959605753421783, 0.03970697149634361, -0.015940869227051735, -0.01655207946896553, 0.0032055729534476995, 0.03205167502164841, -0.013315413147211075, -0.009360276162624359, -0.05865311622619629, -0.08921054005622864, -0.10258616507053375, 0.20053867995738983, -0.01990378648042679, -0.001416715793311596, -0.05292114242911339, -0.19585806131362915, 0.10308670997619629, -0.03516633063554764, -0.060548871755599976, -0.10164004564285278, 0.06544949114322662, 0.12058365345001221, -0.09836921840906143, 0.08305417746305466, 0.027730954810976982, 0.18090605735778809, -0.04855822026729584, -0.08208441734313965, -0.12203174829483032, -0.14833730459213257, -0.020714284852147102, -0.05585064738988876, 0.1688680648803711, 0.00037606433033943176, 0.11842955648899078, -0.048631854355335236, 0.011746246367692947, 0.03583713620901108, -0.021730149164795876, -0.019092310220003128, -0.01251109130680561, -0.01213205698877573, 0.034752633422613144, -0.02078639715909958, -0.09836170077323914, -0.03999441862106323, 0.050528716295957565, -0.1189342811703682, -0.0522005558013916, -0.02370288595557213, -0.038122281432151794, 0.024932557716965675, -0.008307804353535175, -0.03761667385697365, -0.06609760969877243, -0.019418256357312202, -0.019096843898296356, 0.12745103240013123, -0.10882197320461273, 0.017106937244534492, 0.00333375739865005, 0.13451248407363892, -0.1723337024450302, -0.08124750852584839, -0.14401096105575562, 0.005325803533196449, 0.15484987199306488, 0.07819104194641113, 0.08714402467012405, 0.13966065645217896, -0.21396580338478088, -0.055987320840358734, 0.04660368338227272, 0.014623569324612617, 0.006300842855125666, -0.0844418853521347, 0.009598003700375557, -0.056540071964263916, -0.0010927203111350536, 0.054160866886377335, -0.031454965472221375, -0.030774133279919624, 0.018863273784518242, 0.015657780691981316, 0.02254430577158928, -0.04892953112721443, -0.0032141394913196564, -0.10246720910072327, -0.053331635892391205, -0.0033255822490900755, 0.011916529387235641, 0.14735198020935059, 0.007914586924016476, 0.002288887044414878, 0.01576060615479946, -0.12720231711864471, 0.03326372802257538, 0.10270518809556961, 0.07362329959869385, 0.10451848804950714, 0.0029962887056171894, 0.04132995009422302, 0.017910953611135483, -0.03429001197218895, -0.14367730915546417, -0.04882621020078659, -0.03753731772303581, -0.01045426819473505, -0.22244712710380554, -0.004641909152269363, -0.009664363227784634, -0.022852793335914612, 0.03372068330645561, 0.04148615151643753, 0.14952452480793, -0.0050289323553442955, 0.07221230864524841, -0.00718173710629344, 0.017782002687454224, 0.061795953661203384, 0.02881082519888878, -0.07766488939523697, 0.10323455929756165, -0.0025542061775922775, -0.1305142194032669, 0.003549620509147644, 0.17311951518058777, 0.05454689636826515, 0.11916501820087433, -0.02223750203847885, -0.011477435939013958, 0.09429892152547836, -0.044449612498283386, -0.019339950755238533, 0.017457660287618637, -0.043498918414115906, 0.04107626527547836, 0.07367173582315445, -0.053425516933202744, 0.060443125665187836, 0.01210620254278183, 0.05275022238492966, -0.0049754781648516655, -0.04475976526737213, 0.0437946543097496, -0.03830472007393837, 0.10004152357578278, 0.12116123735904694, -0.04720979928970337, 0.04486759006977081, -0.05072149634361267, 0.03737672418355942, 0.034734949469566345, -0.019797025248408318, -0.009338762611150742, 0.1738363355398178, 0.14903192222118378, -0.004849421791732311, -0.19109773635864258, 0.024743735790252686, 0.06967616081237793, 0.0010675969533622265, 0.03582903370261192, -0.03288426250219345, 0.01669449545443058, 0.1324014961719513, 0.016548005864024162, 0.05664002150297165, 0.01980634219944477, 0.045364126563072205, -0.025736309587955475, -0.02057143673300743, 0.02900083176791668, -0.06915988028049469, 0.036076620221138, -0.07025344669818878, 0.09943197667598724, 0.07620813697576523, 0.014238129369914532, 0.06366628408432007, 0.008879977278411388, 0.028383076190948486, -0.07426426559686661, 0.13040950894355774, -0.038991156965494156, -0.09636154025793076, -0.0008050853502936661, -0.02278922311961651, 0.09919656813144684, 0.0056545729748904705, -0.05063217133283615, 0.11146663129329681, 0.1084347739815712, 0.10974971950054169, 0.12213348597288132, -0.029322221875190735, -0.08999136835336685, 0.05639719218015671, -0.04591372609138489, 0.02367134764790535, -0.021628791466355324, 0.0158237311989069, 0.02301771380007267, 0.0016595780616626143, 0.04447581619024277, 0.010747581720352173, -0.06123378127813339, 0.12047486007213593, 0.07455207407474518, 0.04414402320981026, -0.04369836673140526, 0.04846087098121643, -0.06120055168867111, 0.0035708907525986433, 0.059535253793001175, -0.018405849114060402, -0.06564242392778397, 0.12307277321815491, 0.08189224451780319, 0.011597435921430588, 0.03184685483574867, 0.053490348160266876, -0.09953876584768295, -0.08194772899150848, -0.07816626876592636, 0.08747764676809311, -0.037010349333286285, 0.08005442470312119, 0.07165659964084625, -0.09715762734413147, -0.058005064725875854, 0.1080058217048645, -0.06266894191503525, 0.07169944047927856, -0.006598011590540409, -0.0473623163998127, -0.09819609671831131, -0.08802447468042374, 0.06943701952695847, 0.026853231713175774, 0.1142410933971405, 0.019016897305846214, 0.0018703952664509416, -0.01320270262658596, -0.006461827550083399, 0.05133310332894325, -0.07176745682954788, 0.09130890667438507, -0.10814453661441803, -0.0048072971403598785, 0.14085228741168976, -0.07878454774618149, 0.05665363743901253, 0.07317104935646057, 0.10242079198360443, -0.035925909876823425, -0.013378267176449299, -0.05387016385793686, 7.006153464317322e-05, -0.046563293784856796, -0.11710226535797119, 0.0437067486345768, -0.00376081932336092, -0.09676942974328995, -0.0056677525863051414], "`mindspore/tests`\u4e0b\u600e\u6837\u6267\u884c\u5355\u4e2a`ut`\u7528\u4f8b\uff1f": [0.023334557190537453, 0.09626786410808563, -0.025092890486121178, -0.04673785716295242, -0.06771009415388107, -0.07155632972717285, -0.03837992250919342, 0.02208098955452442, 0.07998131960630417, 0.1561189889907837, -0.061717890202999115, -0.027138587087392807, 0.02314707078039646, 0.07628583908081055, -0.06455366313457489, 0.04446372762322426, 0.09879312664270401, 0.05227932333946228, -0.028899800032377243, 0.0715067908167839, 0.0006013521342538297, 0.0048026335425674915, 0.08988987654447556, -0.0227162204682827, 0.04719512537121773, 0.11968034505844116, -0.06696487218141556, 0.04530318081378937, -0.006897386629134417, 0.08156763017177582, 0.04693697765469551, 0.03310280293226242, -0.11736331135034561, 0.007528866641223431, -0.03167184069752693, -0.022265799343585968, -0.0506821870803833, 0.10443371534347534, -0.036784615367650986, 0.01901985891163349, 0.043780796229839325, 0.0017463547410443425, 0.024329908192157745, 0.07015689462423325, 0.02331351488828659, -0.022582940757274628, -0.11860007047653198, 0.008796722628176212, 0.0687713697552681, 0.004817148670554161, -0.05832195281982422, 0.0580303892493248, 0.03032403253018856, 0.02251928299665451, -0.06353512406349182, -0.03490331023931503, -0.0008673591073602438, 0.06580165028572083, 0.01036030799150467, -0.08819694817066193, -0.08215415477752686, 0.09288188070058823, -0.11730766296386719, -0.0359099842607975, -0.06563656777143478, 0.00042603162000887096, -0.1071011871099472, -0.11928220838308334, -0.050657007843256, 0.06587129086256027, -0.06426756829023361, -0.009013699367642403, -0.025904204696416855, 0.050898343324661255, 0.07062385976314545, 0.06402189284563065, -0.06584034860134125, 0.03578650578856468, -0.10690759122371674, 0.04850512742996216, -0.07239428162574768, 0.08275409787893295, 0.02623640187084675, 0.009563605301082134, -0.05723460391163826, -0.02256045490503311, -0.041959892958402634, 0.0801917091012001, -0.005535364616662264, 0.14201073348522186, -0.04535629227757454, 0.01802527718245983, -0.10122641175985336, 0.04319509118795395, 0.040469780564308167, -0.005917963571846485, -0.012624658644199371, -0.050718747079372406, -0.20783589780330658, -0.02936476841568947, -0.006728119216859341, 0.02522030472755432, -0.05459881201386452, 0.06457129865884781, -0.02189464680850506, -0.11968150734901428, 0.06382238119840622, -0.0016097300685942173, 0.16414085030555725, 0.028529426082968712, 0.09394989907741547, -0.0004465020901989192, 0.1306430995464325, -0.0016044997610151768, 0.05761440098285675, -0.054329801350831985, -0.147304967045784, 0.010476913303136826, -0.10905837267637253, 0.10585910081863403, 0.09864715486764908, 0.023679222911596298, 0.018330328166484833, 0.08678515255451202, 0.06257837265729904, 0.004276467487215996, 0.030825339257717133, -0.13541480898857117, -0.11417865753173828, -0.0669885128736496, 0.05498122796416283, -0.05714882165193558, 0.08579777926206589, -0.10882332921028137, -0.1275378167629242, 0.08486367017030716, -0.013059951364994049, 0.048629030585289, -0.07416900247335434, 0.05950138717889786, 0.013302409090101719, -0.0915621742606163, 0.07468675076961517, -0.03365976735949516, 0.07162179052829742, 0.022524910047650337, -0.03488078713417053, -0.09081648290157318, -0.00014312565326690674, 0.022045839577913284, 0.08979928493499756, -0.006655384320765734, -0.07514522224664688, 0.03877989575266838, -0.05412313714623451, 0.05334656685590744, -0.06889640539884567, -0.011060167104005814, 0.006080586928874254, 0.019207943230867386, 0.051002755761146545, -0.08624103665351868, 0.0842408835887909, 0.010515008121728897, -0.027381978929042816, -0.00889192521572113, 0.0948639065027237, -0.00469158124178648, -0.036286912858486176, -0.08975566923618317, 0.0020249756053090096, -0.03174858167767525, -0.07734072953462601, 0.04397459700703621, 0.012685469351708889, 0.0179025549441576, 0.08727724850177765, -0.10208658874034882, 0.03722846135497093, -0.045534562319517136, 0.022873662412166595, -0.12047162652015686, -0.036173246800899506, 0.02831902727484703, 0.03378636762499809, -0.03618967533111572, 0.0937783345580101, 0.019242845475673676, 0.11081862449645996, -0.2403102070093155, -0.04544835910201073, -0.03257186710834503, -0.0037343469448387623, 0.043409377336502075, 0.08716810494661331, 0.016701310873031616, -0.04218361899256706, -0.10587726533412933, -0.02581804059445858, 0.04966089129447937, -0.02003852277994156, 0.02676355093717575, -0.026446795091032982, 0.024197377264499664, -0.010358491912484169, -0.000612422707490623, -0.03652272745966911, -0.07492438703775406, -0.07534854114055634, -0.04736023396253586, 0.10720244795084, 0.06262901425361633, 0.08717527985572815, -0.0739072933793068, -0.14630413055419922, -0.016414383426308632, 0.06844339519739151, 0.10454867035150528, 0.043296441435813904, -0.062170661985874176, 0.025183625519275665, 0.031029094010591507, -0.00284539139829576, -0.06428506225347519, -0.16031059622764587, 0.035548966377973557, -0.0051329671405255795, -0.09456085413694382, -0.02703803963959217, 0.09253452718257904, -0.10753127932548523, 0.06470747292041779, -0.028948087245225906, 0.05414025858044624, -0.04815572127699852, 0.13878382742404938, 0.011800527572631836, -0.05531146004796028, 0.08402560651302338, 0.025257207453250885, -0.13982632756233215, 0.011400410905480385, -0.07771731913089752, -0.025056125596165657, -0.1007402315735817, 0.05343601107597351, 0.09468444436788559, 0.0289559755474329, 0.050291966646909714, 0.03415130078792572, 0.047947950661182404, 0.09534425288438797, -0.06255845725536346, 0.10387846827507019, -0.02577761933207512, -0.010822048410773277, 0.08877996355295181, -0.07833302021026611, 0.02088792622089386, 0.060380253940820694, 0.02655731700360775, 0.09919410198926926, -0.14690396189689636, 0.0084688700735569, -0.05494934320449829, 0.01786009594798088, 0.06409049779176712, -0.044168416410684586, 0.09526635706424713, -0.16683174669742584, -0.03518645465373993, 0.061882294714450836, -0.10535880923271179, 0.06912966072559357, 0.12124260514974594, 0.1079087108373642, 0.043397851288318634, -0.1374361366033554, 0.10574885457754135, 0.0405849814414978, 0.004083686973899603, -0.011141066439449787, 0.044443279504776, 0.019283395260572433, 0.09656263142824173, 0.040390223264694214, 0.06070305407047272, -0.016698082908988, -0.04172004014253616, 0.1391373723745346, -0.05927003175020218, -0.010461254045367241, -0.09298063814640045, 0.07850336283445358, -0.006942063570022583, 0.09871998429298401, 0.03108843043446541, -0.008101501502096653, 0.02570410817861557, 0.04848463833332062, -0.05509711056947708, -0.009533574804663658, 0.13153190910816193, -0.08614698052406311, -0.030287254601716995, 0.0858398824930191, -0.08058874309062958, 0.12140792608261108, 0.06766296923160553, 0.03970944136381149, 0.13097038865089417, 0.09840679168701172, 0.06689722836017609, 0.13216222822666168, -0.15349341928958893, -0.006321699824184179, 0.07145015150308609, -0.14738963544368744, 0.01781824789941311, -0.04201137274503708, 0.05252961069345474, -0.06373109668493271, -0.05010101944208145, 0.05866169184446335, 0.07018765062093735, -0.16060027480125427, 0.012372290715575218, 0.040015608072280884, -0.015107959508895874, -0.09640955924987793, 0.04759803041815758, -0.032325759530067444, 0.0865585207939148, 0.022619547322392464, -0.020123276859521866, -0.13675425946712494, 0.030894607305526733, 0.11791354417800903, 0.03647272661328316, 0.030126390978693962, 0.066879041492939, -0.007820646278560162, 0.02836410142481327, -0.07158293575048447, 0.08089171350002289, -0.040224846452474594, 0.06321153044700623, 1.2174248695373535e-05, -0.0658223032951355, -0.127391055226326, 0.011455059051513672, 0.01448852475732565, 0.04634324833750725, -0.09548012912273407, 0.012996655888855457, -0.15906943380832672, -0.09399426728487015, -0.1045265942811966, 0.03002891317009926, 0.05409202724695206, -0.04972310736775398, 0.0027665109373629093, -0.08857977390289307, -0.07318023592233658, 0.028921371325850487, -0.1362942010164261, 0.004898885264992714, -0.0642639547586441, 0.11226534843444824, -0.02563321217894554, -0.0792611837387085, 0.15225592255592346, 0.0892430990934372, 0.09787122160196304, -0.07229004055261612, -0.1028008833527565, -0.11833488196134567, 0.0727589875459671, -0.016010019928216934, -0.09826081246137619, 0.021406913176178932, 0.014251302927732468, -0.21157625317573547, 0.1279267519712448], "\u5728Ascend\u5e73\u53f0\u4e0a\uff0c\u6267\u884c\u7528\u4f8b\u6709\u65f6\u5019\u4f1a\u62a5\u9519`run task error`\uff0c\u5982\u4f55\u83b7\u53d6\u66f4\u8be6\u7ec6\u7684\u65e5\u5fd7\u5e2e\u52a9\u95ee\u9898\u5b9a\u4f4d\uff1f": [0.01771196722984314, 0.05165426433086395, 0.013978030532598495, 0.06392265856266022, -0.081498883664608, -0.06582328677177429, -0.03686290234327316, 0.06595823913812637, -0.05807315558195114, 0.04053225368261337, -0.012268885038793087, 0.013993672095239162, 0.03270367905497551, -0.014153421856462955, -0.010615723207592964, 0.11541356146335602, 0.05669527128338814, -0.01158154010772705, 0.00562586635351181, -0.01359280664473772, -0.015684664249420166, -0.020174721255898476, 0.09552135318517685, 0.0335393026471138, -0.005564747378230095, 0.12213955074548721, -0.007212087512016296, -0.02402704954147339, 0.019886000081896782, 0.06806285679340363, 0.010876793414354324, 0.04149830713868141, -0.12266816198825836, 0.029646415263414383, -0.05950927734375, -0.021724233403801918, -0.01842390187084675, 0.13222089409828186, -0.004874820355325937, -0.08695665746927261, 0.1185063049197197, -0.0350407212972641, 0.0028911824338138103, 0.10328128933906555, -0.041686050593853, -0.011312352493405342, -0.22806894779205322, 0.03186725452542305, 0.053423259407281876, 0.11224870383739471, -0.09725640714168549, 0.06325016170740128, 0.07671983540058136, 0.008777521550655365, -0.030142787843942642, 0.059113189578056335, 0.05324992164969444, -0.012015166692435741, 0.005133565049618483, 0.007500800304114819, 0.0005015115602873266, -0.005204474087804556, -0.045188527554273605, 0.014317195862531662, -0.11496752500534058, 0.06344754248857498, -0.08959406614303589, -0.07293747365474701, 0.026409007608890533, 0.04127499461174011, -0.027827830985188484, -0.0550723671913147, -0.003920275252312422, 0.04735557362437248, 0.047834936529397964, 0.07427021116018295, -0.030405843630433083, 0.06216471642255783, -0.07277432084083557, 0.0429350808262825, 0.042191725224256516, 0.035491205751895905, 0.05327945947647095, -0.056614816188812256, -0.022801218554377556, -0.046683840453624725, -0.03235941007733345, 0.022641422227025032, 0.010221213102340698, 0.10379999876022339, 0.015363247133791447, 0.009380491450428963, -0.14450156688690186, 0.053324583917856216, 0.048832036554813385, -0.05994921177625656, -0.031801871955394745, -0.057129401713609695, -0.1340351700782776, -0.013585017994046211, 0.044176552444696426, -0.04229555279016495, -0.06761783361434937, 0.05457053333520889, 0.016367372125387192, -0.19467277824878693, -0.06515040993690491, 0.08124496042728424, 0.03326457738876343, 0.051784977316856384, 0.06519278883934021, 0.03977455943822861, 0.04971085488796234, 0.04838315024971962, 0.010293835774064064, 0.005405349191278219, -0.048438552767038345, -0.04107024520635605, -0.08791720122098923, 0.12970227003097534, 0.12079717218875885, -0.029204780235886574, 0.029365861788392067, 0.08644352853298187, 0.049136266112327576, -0.02187161333858967, 0.04526914656162262, -0.04175931587815285, -0.08731485158205032, -0.0399528443813324, 0.1000714972615242, -0.002812267281115055, 0.03772234544157982, -0.09939830005168915, -0.04681264981627464, 0.09390503913164139, 0.009837849996984005, -0.04246341437101364, 0.04423198103904724, 0.1557060331106186, 0.01128773856908083, -0.18891192972660065, 0.026496680453419685, 0.025981754064559937, 0.05346617102622986, 0.01671048440039158, -0.04850497469305992, -0.16230446100234985, -0.06259533762931824, -0.08149568736553192, 0.04468633607029915, 0.015553186647593975, -0.05066830292344093, 0.060642607510089874, -0.031140075996518135, 0.035495057702064514, 0.03263247758150101, -0.014151841402053833, -0.03464819863438606, -0.0406809076666832, -0.03212755545973778, -0.03198773413896561, 0.015224196948111057, 0.03577658161520958, -0.05443163961172104, 0.01720643974840641, 0.00599196832627058, -0.032628245651721954, 0.017614971846342087, 0.009994453750550747, 0.0020026611164212227, -0.0880914255976677, -0.07445010542869568, -0.01389380544424057, -0.006605731323361397, 0.059057727456092834, 0.05481990799307823, -0.0640573501586914, 0.08134700357913971, -0.06165432184934616, 0.06113002821803093, -0.06167980283498764, -0.07150755077600479, -0.07761408388614655, 0.10032865405082703, 0.01384365651756525, 0.033068105578422546, 0.044720061123371124, 0.11478271335363388, -0.14068982005119324, 0.0036928728222846985, 0.027002237737178802, 0.013986935839056969, 0.10546385496854782, -0.019242146983742714, 0.021559953689575195, -0.037923045456409454, 0.00520354276522994, 0.010422536171972752, -0.004565335810184479, -0.009258277714252472, 0.05298757180571556, -0.006634182762354612, 0.03972146660089493, 0.024808084592223167, -0.052257340401411057, -0.0908522754907608, -0.0642179548740387, 0.011776219122111797, -0.03926750645041466, 0.06444982439279556, 0.052647124975919724, -0.09480249136686325, -0.0678037777543068, -0.05162055417895317, 0.005858341231942177, 0.04477604478597641, 0.0619167685508728, 0.05414866283535957, -0.005605160258710384, -0.0193198099732399, 0.021252822130918503, -0.03829276189208031, -0.11544932425022125, -0.1503158062696457, -0.02367420867085457, -0.043296996504068375, -0.04668461158871651, 0.00699038989841938, 0.016683224588632584, -0.042917706072330475, 0.0641927570104599, 0.017974240705370903, 0.08861635625362396, -0.0023872926831245422, 0.03257561847567558, -0.04805508255958557, -0.05894467234611511, 0.010093200951814651, 0.016777778044342995, -0.06546154618263245, 0.09607931971549988, -0.10788822919130325, 0.024039635434746742, -0.06435251235961914, 0.12012472003698349, 0.07596570998430252, 0.06212494894862175, 0.0005387495621107519, -0.02182961441576481, 0.03462227061390877, -0.011972174979746342, 0.03185688331723213, 0.007032629568129778, -0.08919766545295715, 0.04992979019880295, 0.06650126725435257, -0.04344557598233223, 0.05135277286171913, -0.011007385328412056, 0.038861729204654694, -0.002553483471274376, -0.04376799613237381, -0.027646515518426895, -0.056360580027103424, 0.009889114648103714, 0.06808881461620331, -0.00543915294110775, -0.0726233646273613, -0.08137250691652298, 0.0626981109380722, 0.05740856006741524, -0.010182330384850502, 0.02406022697687149, 0.13409468531608582, 0.1010025292634964, -0.05615055188536644, -0.06097004935145378, 0.005811870098114014, 0.03730988875031471, 0.008013345301151276, 0.003994026221334934, -0.02868303470313549, -0.0152256079018116, 0.07892422378063202, -0.046604570001363754, 0.07411589473485947, 0.025105539709329605, 0.05972525477409363, 0.10480375587940216, -0.03287648782134056, -0.027673251926898956, -0.07519866526126862, -0.01734982244670391, -0.01773877628147602, 0.03910156339406967, 0.037171315401792526, 0.0323864221572876, -0.004334024153649807, 0.07845882326364517, -0.03289135545492172, -0.007151809521019459, 0.11540192365646362, -0.02138729766011238, 0.01604350283741951, -0.029483569785952568, -0.0987820029258728, 0.05955023691058159, 0.05116245895624161, 0.006920178420841694, 0.052888765931129456, 0.07574383914470673, 0.05781792476773262, 0.11102224886417389, -0.053648583590984344, -0.017986975610256195, 0.006394090596586466, -0.12232101708650589, 0.06623487919569016, -0.02869560569524765, 0.02533513493835926, -0.07694869488477707, -0.07716499269008636, 0.056690558791160583, 0.07352592796087265, -0.05375033989548683, 0.030938662588596344, 0.10623017698526382, -0.05005889758467674, -0.025929050520062447, 0.05110423266887665, -5.771219730377197e-05, 0.07812991738319397, 0.02745491825044155, 0.07323075830936432, -0.12281795591115952, 0.047827523201704025, 0.02598452754318714, 0.026316041126847267, 0.038060594350099564, 0.03059592843055725, -0.12775078415870667, 0.004468769766390324, -0.1144772544503212, 0.06960836797952652, 0.043497368693351746, 0.1126680076122284, 0.024116238579154015, 0.008434147574007511, -0.06587956100702286, 0.01800413243472576, -0.06551703065633774, 0.08510176092386246, 0.012236123904585838, -0.03571821749210358, -0.10204501450061798, -0.07422015070915222, -0.028534941375255585, 0.06114939600229263, 0.05686919018626213, -0.0351862870156765, -0.04475098103284836, -0.039054710417985916, -0.07046099007129669, 0.09338779002428055, -0.06199299916625023, 0.029137281700968742, 0.023956812918186188, 0.03679647669196129, -0.02842678688466549, -0.12173245847225189, 0.06339172273874283, 0.11160136759281158, 0.06609928607940674, -0.0232638381421566, -0.05821160972118378, -0.12499283999204636, 0.005016441456973553, -0.03006993979215622, -0.14447970688343048, 0.05846678093075752, 0.05728522315621376, -0.08888963609933853, -0.0504302904009819], "\u4f7f\u7528Ascend\u5e73\u53f0\u6267\u884c\u8bad\u7ec3\u8fc7\u7a0b\uff0c\u51fa\u73b0\u62a5\u9519: `Out of Memory!!! total[3212254720] (dynamic[0] memory poll[524288000]) malloc[32611480064] failed!` \u5982\u4f55\u89e3\u51b3\uff1f": [-0.006750978529453278, 0.04934951663017273, -0.024248851463198662, 0.040069330483675, -0.036953698843717575, 0.018790312111377716, 0.03527924790978432, 0.05269843712449074, -0.05857473611831665, 0.01426510140299797, 0.009320501238107681, 0.043302446603775024, -0.008668654598295689, -0.04517452046275139, -0.10442852973937988, 0.1634226143360138, 0.04496709257364273, -0.01920090802013874, 0.03331298008561134, -0.04913777858018875, -0.018245423212647438, 0.017207715660333633, 0.13021798431873322, 0.05724433436989784, 0.03977943956851959, 0.06193259730935097, -0.017309878021478653, -0.05683218687772751, 0.06571768969297409, 0.050028204917907715, 0.06897282600402832, 0.050237372517585754, -0.11000566184520721, 0.021760206669569016, -0.011589987203478813, -0.014069939963519573, -0.03841093182563782, 0.14182156324386597, -0.0722808688879013, -0.08266910165548325, 0.07393652200698853, 0.026559315621852875, 0.004433252848684788, 0.08496786653995514, -0.03012826479971409, -0.010948153212666512, -0.17894123494625092, 0.02540576085448265, 0.05620381981134415, 0.0760798454284668, -0.06383681297302246, 0.09472093731164932, 0.047557540237903595, -0.054560743272304535, -0.05158509314060211, 0.038369957357645035, 0.05787191540002823, 0.0001790560781955719, 0.01284296065568924, -0.08693211525678635, -0.005848318804055452, -0.017186418175697327, 0.005359344650059938, 0.03506284952163696, -0.1348334550857544, 0.038527801632881165, -0.089588962495327, -0.011388941667973995, -0.0021588378585875034, 0.005686832591891289, -0.043696656823158264, -0.040537551045417786, -0.0022205915302038193, 0.03179813548922539, 0.02753647416830063, 0.12590709328651428, -0.06997327506542206, 0.045299187302589417, -0.10224612057209015, 0.06280520558357239, 0.01891998201608658, 0.038711756467819214, 0.013866899535059929, -0.0732324942946434, -0.019315436482429504, -0.029139641672372818, 0.0025849377270787954, 0.046160537749528885, -0.04140225052833557, 0.09610883891582489, -0.03288068249821663, -0.02077079750597477, -0.1141408160328865, 0.07001060247421265, 0.03330607712268829, -0.06290064007043839, -0.09863690286874771, -0.025805875658988953, -0.12778930366039276, -0.02673329785466194, 0.0672561526298523, -0.016146790236234665, -0.05992646515369415, 0.05820998549461365, 0.05642214044928551, -0.1388094425201416, -0.021806588396430016, 0.06082477793097496, 0.060404591262340546, 0.03523453697562218, 0.11156032234430313, 0.028044534847140312, 0.021160542964935303, -0.010365167632699013, 0.08241014182567596, 0.02366516925394535, -0.012373710051178932, -0.016767002642154694, -0.018949314951896667, 0.13885654509067535, 0.13851463794708252, -0.0106618981808424, 0.062293414026498795, 0.10732157528400421, 0.03938020020723343, -0.06708567589521408, 0.08208896219730377, -0.09965162724256516, -0.11985211074352264, -0.06386860460042953, 0.12895619869232178, -0.0019193771295249462, 0.12342837452888489, -0.04909743741154671, -0.08684904128313065, 0.12318411469459534, -0.05963308364152908, -0.038093339651823044, 0.025751009583473206, 0.06765574216842651, -0.021253887563943863, -0.11079949140548706, 0.02998289093375206, -0.017805136740207672, 0.10550445318222046, 0.02955050766468048, -0.05069797486066818, -0.1803433746099472, -0.07158861309289932, -0.10739205032587051, 0.08641242235898972, 0.04776078090071678, -0.03765355795621872, 0.07814488559961319, 0.014219666831195354, 0.04637123644351959, 0.015986483544111252, -0.025085289031267166, -0.031967416405677795, -0.0067110806703567505, -0.04080881550908089, 0.006292394362390041, -0.024561051279306412, 0.0511510856449604, -0.06279884278774261, 0.03850940614938736, 0.01834714785218239, 0.03222036361694336, -0.04439106583595276, 0.007914627902209759, -0.01958218589425087, -0.07527288794517517, -0.1328529566526413, -0.014361362904310226, -0.032022058963775635, 0.019033970311284065, 0.04558150842785835, -0.05280416086316109, -0.00480268569663167, -0.08215169608592987, 0.058180950582027435, -0.11945781856775284, -0.061033010482788086, -0.10087643563747406, 0.04157068952918053, 0.041270188987255096, 0.06538891792297363, 0.11574520170688629, 0.13856834173202515, -0.1394282430410385, 0.010616453364491463, -0.0297856442630291, 0.006258048582822084, 0.08749918639659882, -0.09205932170152664, -0.030587591230869293, -0.10525069385766983, -0.037903741002082825, 0.0019043977372348309, -0.05769927054643631, -0.014123380184173584, 0.04267427325248718, 0.012356236577033997, 0.09101909399032593, 0.019285425543785095, -0.02780504710972309, -0.08732468634843826, -0.1318383663892746, 0.0634603351354599, -0.06823523342609406, 0.081219382584095, -0.015874341130256653, -0.05671283230185509, -0.04078802093863487, -0.11878819763660431, -0.01066359132528305, 0.09536720812320709, 0.06380211561918259, 0.08388136327266693, -0.042292214930057526, -0.026467176154255867, 0.016201689839363098, -0.06850672513246536, -0.10938725620508194, -0.13287457823753357, -0.02340545691549778, -0.05372609943151474, -0.04622257873415947, 0.0034153738524764776, 0.07176840305328369, 0.004299826454371214, 0.14271780848503113, 0.049790024757385254, 0.1472109854221344, -0.05863715708255768, 0.057664960622787476, -0.057711102068424225, -0.08734293282032013, 0.0020156018435955048, 0.017107335850596428, -0.05017014592885971, 0.04243890568614006, -0.03451898321509361, -0.005394113250076771, -0.09315095096826553, 0.09335748851299286, 0.0656571164727211, 0.04063185304403305, 0.029252342879772186, 0.045481834560632706, 0.03779330104589462, -0.02132962830364704, 0.03590355068445206, 0.059544604271650314, -0.059132251888513565, 0.06672742962837219, 0.05128376930952072, -0.09440010040998459, 0.037218932062387466, 0.01838783361017704, 0.0729694664478302, -0.04795576632022858, -0.05859759822487831, -0.0708148255944252, 0.044376082718372345, -0.04869147762656212, 0.05863836407661438, 0.0046606059186160564, 0.011564375832676888, -0.0701523870229721, 0.026653416454792023, 0.06358249485492706, -0.03615653142333031, -0.0080175269395113, 0.10478724539279938, 0.1430256962776184, -0.017767183482646942, -0.0886693149805069, -0.0025499705225229263, 0.09264013171195984, -0.013885049149394035, 0.031968872994184494, -0.03633188456296921, 0.017500780522823334, 0.10753853619098663, -0.07534995675086975, 0.047291889786720276, -0.029947003349661827, 0.056389760226011276, 0.1139691174030304, 0.007561905309557915, -0.05464650318026543, -0.05731011554598808, 0.033062733709812164, -0.008646518923342228, 0.042711272835731506, 0.09597896039485931, 0.04830865561962128, -0.020096546038985252, 0.044351957738399506, -0.03333349898457527, -0.04471972584724426, 0.08724933862686157, -0.0887705609202385, -0.003445833455771208, -0.02021719701588154, -0.036895088851451874, 0.036492377519607544, 0.020881768316030502, 0.07656225562095642, 0.07497137784957886, 0.05931433290243149, 0.05856722220778465, 0.14553770422935486, -0.09208256006240845, -0.020909391343593597, 0.02600116655230522, -0.12417706102132797, 0.04976724088191986, -0.07563907653093338, 0.011586359702050686, -0.029405757784843445, -0.0424560122191906, 0.08778887987136841, 0.05977945029735565, -0.04511906951665878, 0.08588253706693649, 0.10811738669872284, 0.0361626036465168, -0.04202146828174591, 0.022057095542550087, -0.024086831137537956, 0.038984477519989014, 0.008837969042360783, 0.049657490104436874, -0.13547509908676147, 0.08414812386035919, 0.05455458164215088, 0.008665907196700573, 0.08485092222690582, 0.049302682280540466, -0.1399811953306198, -0.023297622799873352, -0.08207391947507858, 0.07031464576721191, -0.04694804176688194, 0.07157653570175171, 0.08095495402812958, 0.010259239003062248, -0.037392862141132355, 0.05889914184808731, -0.06493380665779114, 0.0831015333533287, -0.06746121495962143, 0.00828035268932581, -0.13358546793460846, -0.059595365077257156, -0.027129316702485085, 0.012514831498265266, 0.011158331297338009, -0.06324781477451324, 0.04641292244195938, -0.06431662291288376, -0.04792802780866623, 0.07813408970832825, -0.032370466738939285, 0.06947941333055496, -0.062135811895132065, 0.10996430367231369, 0.013347803615033627, -0.13764476776123047, 0.04431834816932678, 0.0994797870516777, 0.03508608043193817, -0.08947553485631943, -0.04314596578478813, -0.1137155294418335, 0.06789743900299072, -0.05661590024828911, -0.13499483466148376, 0.07615097612142563, 0.08439158648252487, -0.1271873116493225, 0.009293091483414173], "\u5982\u4f55\u5728\u8bad\u7ec3\u795e\u7ecf\u7f51\u7edc\u8fc7\u7a0b\u4e2d\u5bf9\u8ba1\u7b97\u635f\u5931\u7684\u8d85\u53c2\u6570\u8fdb\u884c\u6539\u53d8\uff1f": [-0.07408690452575684, 0.055449243634939194, 0.11687971651554108, 0.012463430874049664, -0.022365320473909378, -0.0847599059343338, -0.028994645923376083, 0.024391792714595795, 0.007000084035098553, 0.0561254546046257, 0.05753500014543533, -0.004214669112116098, 0.0016960795037448406, -0.04951535165309906, -0.046869389712810516, 0.08722037076950073, 0.05243305861949921, 0.006359643302857876, -0.04587874189019203, 0.007254596333950758, -0.09153752028942108, -0.03847767040133476, 0.029792791232466698, 0.06122271716594696, 0.05413392186164856, 0.08607938140630722, 0.005079307593405247, 0.03629619628190994, -0.05174879729747772, 0.09857998043298721, 0.06795474886894226, 0.09592454880475998, -0.048877865076065063, 0.057396598160266876, -0.11970353126525879, -0.04044831171631813, -0.03703218698501587, 0.045705605298280716, -0.0004204288125038147, -0.10682503134012222, 0.09523311257362366, 0.020201195031404495, -0.05913287401199341, 0.11402873694896698, -0.02703334018588066, -0.02261969819664955, -0.10466930270195007, 0.02828120067715645, 0.0387791208922863, 0.0801943764090538, -0.062116943299770355, 0.031864192336797714, 0.03507373481988907, -0.0018818132812157273, -0.08417793363332748, -0.0644683837890625, 0.041911572217941284, 0.07143592834472656, 0.03501955792307854, -0.063627228140831, 0.006340255029499531, 0.09904620796442032, -0.016558337956666946, -0.002251420170068741, -0.11144931614398956, -0.022248990833759308, -0.12655721604824066, -0.08417701721191406, 0.046917300671339035, 0.01890355534851551, -0.05829808488488197, -0.014226905070245266, 0.013408445753157139, 0.008761485107243061, 0.10017000138759613, -0.0016895777080208063, 0.007028065621852875, 0.02934424765408039, -0.07740169018507004, 0.05174019932746887, 0.04426216334104538, 0.07057327032089233, -0.005193222314119339, -0.06952688097953796, -0.005818316247314215, -0.036263033747673035, -0.040194157510995865, -0.017990507185459137, -0.029027163982391357, -0.004747898783534765, 0.020116502419114113, -0.007050576154142618, -0.14204473793506622, -0.008088386617600918, 0.07634545117616653, -0.07518552243709564, -0.0008159352582879364, -0.07966706156730652, -0.14851057529449463, -0.07636898010969162, 0.05879935994744301, -0.038755450397729874, -0.061470504850149155, 0.04934992641210556, -0.03429756686091423, -0.0677100121974945, 0.02542325295507908, 0.009718016721308231, 0.016141168773174286, 0.04589775949716568, 0.10603686422109604, 0.02403847873210907, 0.08264939486980438, -0.022592375054955482, 0.059982724487781525, -0.05515880882740021, 0.021340463310480118, -0.12213589251041412, -0.018190624192357063, 0.1268368810415268, 0.10247967392206192, -0.019906897097826004, 0.061765387654304504, 0.014460090547800064, 0.0014860824448987842, -0.038335807621479034, 0.09614163637161255, -0.15468142926692963, -0.11049500107765198, -0.008749494329094887, 0.1339624673128128, -0.06877945363521576, 0.053773969411849976, -0.03692156448960304, -0.04426870867609978, 0.14428609609603882, -0.020735690370202065, -0.01135183498263359, 0.006023762747645378, 0.1688242256641388, 0.02774561196565628, -0.15738752484321594, 0.000171758234500885, -0.03951982408761978, 0.06700696051120758, 0.032638002187013626, -0.11009740829467773, -0.1632554829120636, 0.017096364870667458, -0.024706300348043442, 0.13444054126739502, -0.08379635214805603, -0.050546273589134216, 0.09080073237419128, 0.004171195439994335, 0.12005200982093811, 0.04122970998287201, -0.016810061410069466, -0.013442160561680794, -0.11676137149333954, -0.05339794605970383, 0.031308043748140335, 0.02153863199055195, -0.014813573099672794, -0.05643300712108612, 0.051763880997896194, -0.04568289592862129, 0.040922731161117554, 0.006645127199590206, -0.03607406094670296, 0.003826076164841652, 0.014230642467737198, -0.03677678853273392, -0.05892576277256012, -0.0070456862449646, 0.077613465487957, 0.11393865942955017, -0.0794854611158371, 0.008158933371305466, -0.05134997516870499, 0.0139421746134758, -0.06058138608932495, -0.014735793694853783, 0.0012429498601704836, 0.09437698870897293, -0.00949057750403881, 0.04925025999546051, 0.006225151475518942, 0.15139780938625336, -0.15472164750099182, -0.053098998963832855, 0.03939695656299591, 0.03133504092693329, 0.12257659435272217, -0.015195049345493317, 0.026913486421108246, -0.07848136872053146, -0.005318433977663517, 0.04070316255092621, -0.006662048399448395, 0.04043681174516678, -0.056855957955121994, 5.1258131861686707e-05, 0.07275952398777008, 0.01764276809990406, -0.005281883291900158, -0.024523761123418808, -0.1269148737192154, -0.008714305236935616, -0.04505273699760437, 0.06575583666563034, 0.04526296257972717, -0.01604894921183586, -0.1033523753285408, -0.08837579935789108, -0.023327704519033432, 0.09720849990844727, 0.045451901853084564, 0.12040968239307404, 0.013587132096290588, -0.03817034885287285, 0.014950087293982506, 0.019439207389950752, -0.06046747788786888, -0.15575921535491943, 0.00602128729224205, -0.06154293566942215, -0.10925766825675964, -0.05702261999249458, 0.08550646901130676, -0.06362931430339813, 0.03413085639476776, -0.04542331025004387, 0.2144201546907425, 0.018249213695526123, 0.09392993152141571, -0.07753409445285797, -0.007357617374509573, 0.008456788957118988, -0.002801697701215744, -0.11180572956800461, 0.04868891462683678, -0.020158443599939346, -0.05614257976412773, -0.1092047169804573, 0.10964995622634888, 0.04898614436388016, 0.02475799433887005, 0.012222671881318092, -0.07513323426246643, 0.03926552087068558, -0.011639030650258064, 0.016684019938111305, -0.04200039803981781, -0.10288571566343307, 0.044287919998168945, 0.10074256360530853, 0.001496321288868785, 0.0707567036151886, -0.004107742570340633, -0.03372916951775551, 0.019143030047416687, -0.08841006457805634, 0.00021777302026748657, -0.05139290168881416, -0.039652351289987564, 0.1200256198644638, -0.04310066998004913, 0.0664847120642662, -0.047588881105184555, 0.009453725069761276, 0.11175087839365005, -0.025490203872323036, 0.04860502853989601, 0.14241567254066467, 0.10108247399330139, -0.016950378194451332, -0.1384943276643753, -0.02544279769062996, 0.010671152733266354, -0.014796726405620575, 0.03468557074666023, -0.014387618750333786, 0.01908067986369133, 0.04338739067316055, -0.062404096126556396, 0.022337982431054115, 0.018202073872089386, 0.09350404888391495, 0.13325801491737366, 0.027301400899887085, -0.023914417251944542, -0.0657290667295456, -0.05021623522043228, 0.03912236541509628, 0.01694507524371147, 0.06289459019899368, 0.03822723403573036, 0.046449270099401474, 0.06265328079462051, 0.0016258270479738712, -0.009733659215271473, 0.05331883579492569, -0.05656212568283081, 0.02298032119870186, -0.006758442614227533, 0.004061440005898476, -0.00902362260967493, 0.04168102145195007, -0.02003122679889202, 0.09365098923444748, 0.1270027905702591, 0.024527814239263535, 0.09580304473638535, -0.07323557883501053, -0.05026667192578316, -0.032047122716903687, -0.12000305205583572, 0.059570349752902985, -0.07017965614795685, 0.040819667279720306, -0.12363213300704956, 0.01371585763990879, 0.14800938963890076, 0.01150127500295639, -0.0333620049059391, 0.046716224402189255, 0.07396679371595383, -0.03684648498892784, -0.05161896347999573, 0.050597745925188065, 0.005011308006942272, 0.03300613909959793, 0.06991597265005112, 0.038669537752866745, -0.10223962366580963, -0.02824738621711731, 0.002807161770761013, 0.010782210156321526, 0.04174524173140526, 0.10904975235462189, -0.09244655072689056, 0.001363687333650887, -0.05965282768011093, 0.08488371223211288, -0.08267408609390259, 0.09751120209693909, -0.023927319794893265, -0.0031359056010842323, -0.06596346199512482, -0.012163713574409485, -0.07598181813955307, 0.03134160116314888, -0.024945709854364395, -0.008333449251949787, -0.09834358841180801, -0.11162463575601578, -0.02132626622915268, 0.0843619704246521, 0.001852875342592597, -0.043072886765003204, 0.01313728652894497, -0.023779524490237236, -0.11021019518375397, -0.015779981389641762, -0.026892226189374924, 0.024416789412498474, -0.0020995752420276403, 0.035673175007104874, 0.019460301846265793, -0.16732414066791534, 0.11709385365247726, 0.12458828091621399, 0.10956341028213501, -0.05431148782372475, -0.11372363567352295, -0.13237851858139038, 0.0121908038854599, 0.017640534788370132, -0.09712338447570801, 0.025890052318572998, -0.023716216906905174, -0.13148783147335052, 0.01964365877211094], "\u8fd0\u884c\u5e94\u7528\u65f6\u62a5\u9519`error while loading shared libraries: libge_compiler.so: cannot open shared object file: No such file or directory`\u600e\u4e48\u529e\uff1f": [-0.014882847666740417, 0.12021765112876892, 0.03170686587691307, -0.0065102847293019295, -0.08288910984992981, 0.002023102715611458, -0.026817403733730316, 0.0542791448533535, -0.09138356149196625, 0.06515487283468246, -0.0077681224793195724, 0.0332803875207901, 0.03898303955793381, 0.03735911846160889, -0.02520352229475975, 0.06790223717689514, -0.004572397097945213, -0.0035163802094757557, -0.045769646763801575, -0.03144121542572975, -0.00746163260191679, -0.07042820751667023, 0.13822823762893677, 0.07674690335988998, 0.04110779985785484, 0.10905826836824417, -0.007016089279204607, -0.0009316477808170021, -0.05260322988033295, 0.06519292294979095, 0.011541380546987057, 0.06822460889816284, -0.11322712153196335, 0.06526965647935867, -0.07792467623949051, -0.04374196380376816, -0.004036929924041033, 0.06799241155385971, -0.06779350340366364, 0.0004013078287243843, -0.005630966275930405, 0.0469108447432518, 0.00711232703179121, 0.08908773958683014, 0.009245508350431919, -0.024732042104005814, -0.17065244913101196, 0.10098977386951447, 0.07669731974601746, 0.0494496114552021, -0.13827632367610931, 0.0636313185095787, 0.05473504215478897, 0.022210121154785156, 0.051112789660692215, 0.011429473757743835, 0.035319652408361435, -0.0071716271340847015, -0.019802488386631012, -0.02372148260474205, 0.031898509711027145, 0.023418689146637917, -0.057564012706279755, 0.017852159217000008, -0.16442234814167023, 0.05453048273921013, -0.0359068438410759, -0.08652634918689728, -0.0044808462262153625, 0.018965410068631172, -0.1085912212729454, -0.04187331721186638, -0.04034339636564255, 0.07306740432977676, 0.059630442410707474, 0.0077101197093725204, -0.0655284896492958, 0.054206304252147675, -0.05912616476416588, -0.017458580434322357, 0.0209018737077713, 0.06125522404909134, 0.028518972918391228, -0.05530069023370743, 0.007016532588750124, -0.09014434367418289, -0.005337545182555914, 0.08695200085639954, -0.05805012211203575, 0.04019797593355179, -0.08707468211650848, -0.007550152018666267, -0.13057000935077667, 0.11245477199554443, 0.062194257974624634, -0.04931848123669624, -0.027040569111704826, -0.06861449033021927, -0.18881598114967346, -0.005807989276945591, 0.02775854989886284, -0.05754271149635315, -0.018590349704027176, 0.012646451592445374, 0.011483980342745781, -0.12052975594997406, 0.028746239840984344, 0.057375531643629074, 0.06148863956332207, 0.07222159206867218, 0.09910521656274796, 0.09187967330217361, 0.0683591216802597, 0.02210964448750019, 0.05718247592449188, 0.03617877513170242, -0.0846618264913559, -0.1241493672132492, -0.11080765724182129, 0.12544026970863342, 0.18738403916358948, 0.02663329988718033, 0.0070902020670473576, 0.07644935697317123, 0.04458117485046387, 0.022850267589092255, 0.07300200313329697, -0.06314844638109207, -0.10819581896066666, -0.018876494839787483, 0.1488080471754074, -0.029324624687433243, 0.07494530826807022, -0.06716760993003845, -0.024956153705716133, 0.08712407946586609, -0.06386822462081909, -0.04236012324690819, -0.006678165402263403, 0.13098469376564026, 0.015056317672133446, -0.204119011759758, 0.047833122313022614, 0.01901612989604473, 0.0902184545993805, -0.0017149059567600489, -0.04156553000211716, -0.11457046866416931, -6.999820470809937e-05, -0.019267171621322632, 0.07157942652702332, 0.03149152919650078, 0.032220665365457535, 0.08563599735498428, -0.051671627908945084, 0.1006021723151207, -0.018020622432231903, -0.0322815403342247, -0.08223056048154831, -0.014978598803281784, -0.09085169434547424, -0.03581327572464943, 0.0651407465338707, 0.010748881846666336, -0.026046322658658028, 0.08282144367694855, -0.023141004145145416, -0.036778051406145096, 0.00891755148768425, -0.014870314858853817, -0.0032973058987408876, -0.0023077367804944515, -0.12916173040866852, -0.026952626183629036, 0.05472341924905777, -0.01401602104306221, 0.027414880692958832, -0.0486629381775856, -0.012545445933938026, -0.040904924273490906, 0.11138781905174255, -0.07843030989170074, -0.05944760888814926, -0.08593687415122986, 0.10955305397510529, 0.0008442250546067953, 0.017102845013141632, 0.07060536742210388, 0.1495010107755661, -0.10216718167066574, -0.0048672170378267765, 0.05827557295560837, 0.010383568704128265, 0.11160144209861755, -0.01995687372982502, 0.05557151138782501, -0.037190474569797516, 0.007701486814767122, 0.022386599332094193, 0.01887349970638752, -0.06118587404489517, 0.10170044004917145, -0.04003152996301651, 0.06261562556028366, -0.02607079967856407, 0.002568773925304413, -0.10313712805509567, -0.08534348756074905, -0.0038288291543722153, 0.0001296568661928177, 0.17428600788116455, -0.03648596256971359, -0.07492098212242126, -0.07164666801691055, -0.06959466636180878, 0.00816494133323431, 0.010140794329345226, 0.09240633249282837, 0.06299514323472977, 0.0021139350719749928, 0.04924168437719345, 0.0020946876611560583, -0.011889023706316948, -0.1477213352918625, -0.12914668023586273, 0.015836963430047035, -0.04747992753982544, -0.19829821586608887, -0.0125116603448987, 0.09332545846700668, -0.05992724373936653, 0.09460214525461197, 0.022616678848862648, 0.0849609375, -0.049117833375930786, 0.039093099534511566, -0.028397513553500175, -0.024702083319425583, 0.00515064038336277, -0.008116279728710651, -0.050005536526441574, 0.03967241942882538, -0.08318818360567093, -0.01692589372396469, -0.09938964247703552, 0.08814211189746857, 0.08343531936407089, 0.0769314393401146, -0.0023984196595847607, 0.009889530017971992, 0.04248780012130737, 0.019168803468346596, 0.06579653918743134, 0.03331424668431282, -0.010429099202156067, 0.04290023818612099, 0.0279238224029541, -0.045872077345848083, 0.05049954727292061, 0.008671748451888561, -0.032007575035095215, 0.0059240213595330715, -0.10481508076190948, -0.050562549382448196, -0.05469715595245361, -0.06005961447954178, 0.03878537937998772, -0.015033842995762825, -0.06168613210320473, -0.09984800219535828, 0.02596845105290413, 0.0660538524389267, -0.0628979504108429, 0.09342621266841888, 0.08546238392591476, 0.08248342573642731, -0.02970142662525177, -0.08837021887302399, 0.0480278804898262, 0.08242017030715942, -0.022372910752892494, 0.055867768824100494, 0.06141192466020584, 0.07241028547286987, 0.030097659677267075, -0.054362036287784576, 0.0328870452940464, 0.008568991906940937, -0.015635401010513306, 0.11162776499986649, -0.060946572571992874, -0.01158202439546585, -0.07637705653905869, 0.0200644638389349, -0.0022283457219600677, 0.07031449675559998, 0.10945645719766617, 0.013899758458137512, 0.025736575946211815, 0.0890287533402443, -0.020471278578042984, 0.02403487078845501, 0.12428364902734756, -0.09788135439157486, -0.025325750932097435, 0.011235425248742104, -0.05706854537129402, 0.03949781134724617, -0.0679674744606018, -0.04976654797792435, 0.09407318383455276, 0.040508195757865906, 0.02188704162836075, 0.0799468606710434, -0.13727182149887085, -0.03309348598122597, 0.09980614483356476, -0.12803411483764648, -0.001108522992581129, -0.0822790116071701, 0.0034856582060456276, -0.052524011582136154, -0.02991604059934616, 0.0586138591170311, 0.023014148697257042, -0.0482865646481514, 0.0212215855717659, 0.0559927262365818, -0.03756081312894821, -0.014429053291678429, 0.05290133133530617, -0.08380146324634552, 0.06431608647108078, 0.03413960710167885, 0.01285584643483162, -0.18305176496505737, 0.07373122870922089, 0.0900145173072815, 0.04482733830809593, 0.011720029637217522, 0.08019367605447769, -0.04519551247358322, -0.0039686053059995174, -0.14520329236984253, 0.08684886246919632, -0.013687783852219582, 0.08700662106275558, 0.08545531332492828, -0.08284282684326172, -0.05042600259184837, 0.004445085767656565, -0.06904036551713943, 0.08887411653995514, -0.022594701498746872, -0.04087812453508377, -0.08188173174858093, -0.1126432791352272, -0.02979530766606331, 0.03698860853910446, 0.006623398512601852, -0.037367600947618484, 0.030114591121673584, -0.04331466555595398, -0.0447864755988121, 0.04221578687429428, -0.08083294332027435, 0.03515985235571861, 0.04861907660961151, 0.0005133132799528539, 0.021539507433772087, -0.06623736023902893, 0.0824982300400734, 0.0675501823425293, 0.08194659650325775, -0.10045230388641357, -0.0898122787475586, -0.058067936450242996, 0.0356886051595211, -0.06472764164209366, -0.11144546419382095, -0.03707320615649223, 0.013049417175352573, -0.14475615322589874, -0.02614063210785389], "MindSpore\u4ee3\u7801\u91cc\u9762\u7684model_zoo/official/cv/resnet/train.py\u4e2dcontext.set_ps_context(enable_ps=True)\u4e3a\u4ec0\u4e48\u4e00\u5b9a\u8981\u5728init\u4e4b\u524d\u8bbe\u7f6e": [-0.04195361211895943, 0.009451862424612045, -0.02719997987151146, 0.07567928731441498, -0.034486956894397736, -0.12070833146572113, 0.06637688726186752, 0.028392773121595383, -0.03319159150123596, 0.0411868654191494, -0.021437551826238632, 0.05480404570698738, -0.05155111104249954, -0.048624034970998764, -0.011177439242601395, 0.02140040695667267, 0.0454304963350296, -0.019189443439245224, -0.0528971366584301, 0.04160097986459732, -0.017624013125896454, 0.0027210728731006384, -0.0014807794941589236, -0.01611427590250969, 0.024638904258608818, 0.1388869434595108, 0.011502518318593502, 0.020635129883885384, 0.0009606105159036815, 0.092623271048069, 0.00020121783018112183, 0.024031998589634895, -0.054973751306533813, 0.04620160907506943, -0.07069303840398788, -0.12159539014101028, -0.0792015939950943, 0.12161033600568771, -0.05376887694001198, 0.004043145105242729, 0.02865731529891491, 0.015171585604548454, -0.032370246946811676, 0.06405700743198395, -0.016947543248534203, -0.0685892179608345, -0.050437916070222855, -0.05498632416129112, 0.03790517523884773, 0.05573178827762604, -0.0370975099503994, 0.045556552708148956, 0.03169820085167885, -0.10865429043769836, -0.06419596076011658, -0.0023890910670161247, 0.05941867455840111, -0.006435601506382227, 0.02546808123588562, 0.057380303740501404, 0.04782852157950401, -0.00017169862985610962, -0.06413127481937408, -0.03777201473712921, -0.1275206059217453, -0.05286496505141258, -0.02918754518032074, -0.06853248178958893, 0.03254936635494232, 0.02241152711212635, -0.13023841381072998, 0.11104445159435272, 0.003371201688423753, 0.04233154281973839, -0.01757895201444626, 0.006579723209142685, -0.03532573580741882, -0.005986238829791546, -0.04762309789657593, 0.007812389638274908, 0.03743734583258629, 0.07005773484706879, 0.022150687873363495, -0.10011807084083557, -0.04381434619426727, -0.041527338325977325, -0.07540133595466614, -0.023846741765737534, -0.008294429630041122, 0.09546597301959991, 0.02435941807925701, -0.007852628827095032, -0.1483611762523651, 0.06635943800210953, 0.12162330746650696, -0.024909906089305878, -0.04050413519144058, -0.05277053639292717, -0.13379576802253723, -0.007817202247679234, 0.06477058678865433, -0.055323440581560135, 0.006954032927751541, 0.021747160702943802, -0.009404169395565987, -0.03902348130941391, -0.07844965159893036, 0.09421911835670471, 0.021963711827993393, -0.05168241262435913, 0.012442367151379585, -0.04298057407140732, 0.07160753011703491, 0.04548371955752373, -0.06401907652616501, 0.03618728369474411, 0.022361069917678833, 0.014073142781853676, -0.05354676395654678, 0.054258015006780624, 0.10825468599796295, -0.050469789654016495, 0.016881318762898445, 0.04370459169149399, 0.040203675627708435, -0.0357363186776638, 0.08571411669254303, -0.13202230632305145, -0.0060457149520516396, 0.007424395997077227, 0.15861205756664276, -0.012610216625034809, 0.032048072665929794, -0.04609066620469093, -0.05002738535404205, 0.04237892106175423, -0.1491549164056778, -0.06890604645013809, -0.060898564755916595, 0.12267884612083435, 0.014022278599441051, -0.13557755947113037, -0.05446271225810051, -0.08411955088376999, 0.06507495790719986, 0.023856425657868385, -0.11215564608573914, -0.14989545941352844, 0.011446514166891575, -0.13923920691013336, 0.14630770683288574, -0.11445868760347366, -0.023261161521077156, 0.02512739598751068, -0.09366222470998764, -0.029168859124183655, 0.06941565126180649, -0.011685715056955814, 0.05468671768903732, -0.05936636030673981, -0.04728809371590614, -0.024241091683506966, 0.029917964711785316, -0.059309590607881546, -0.09566738456487656, 0.061320409178733826, 0.012925143353641033, 0.02252073772251606, 0.01470453105866909, -0.017990220338106155, -0.008684786036610603, -0.02049112133681774, -0.025986339896917343, -0.07555367052555084, 0.012154405005276203, 0.07273358106613159, 0.049609631299972534, -0.033455509692430496, -0.05920944735407829, 0.009078871458768845, -0.04269217699766159, -0.11449217796325684, -0.10220151394605637, -0.11096853017807007, 0.09421680122613907, 0.012688175775110722, 0.014052019454538822, -0.010553942061960697, 0.16481004655361176, -0.13400694727897644, 0.011952132917940617, 0.06993623822927475, 0.01880047284066677, 0.10401889681816101, -0.01390104554593563, -0.06268061697483063, -0.08942041546106339, -0.0003536641597747803, 0.09846804291009903, -0.03292428329586983, 0.03716593608260155, 0.029123250395059586, 0.026598729193210602, 0.06323794275522232, 0.007193836383521557, -0.05211396887898445, -0.04653654620051384, -0.18857403099536896, -0.021127816289663315, 0.02587241306900978, -0.004950684029608965, 0.06372787803411484, -0.028840864077210426, -0.09242011606693268, -0.12135662138462067, -0.08065377920866013, 0.08981554955244064, 0.11882493644952774, 0.08072814345359802, -0.02059120126068592, 0.0013721772702410817, 0.053100693970918655, 0.01015660259872675, -0.03622085228562355, -0.05782646685838699, -0.0362141989171505, -0.0422697551548481, -0.06300058960914612, 0.06697642058134079, 0.0027032671496272087, -0.12887145578861237, 0.06130014359951019, -0.003414174309000373, 0.09955227375030518, -0.03483077511191368, 0.010806292295455933, -0.14474529027938843, 0.07236850261688232, 0.013552634045481682, -0.029930146411061287, -0.14156454801559448, 0.1295434534549713, -0.04223058372735977, 0.023668065667152405, -0.10642964392900467, 0.10915544629096985, 0.05679432302713394, -0.019844459369778633, 0.08923935145139694, -0.11233489215373993, -0.0017205072799697518, -0.0065442644990980625, -0.03123069554567337, 0.07311444729566574, -0.03705022111535072, 0.130904421210289, 0.1088445708155632, 0.01543703954666853, 0.015177708119153976, 0.030613506212830544, -0.06721705198287964, 0.03697868436574936, -0.06603384763002396, -0.005440192297101021, -0.02049309015274048, 0.015104277059435844, 0.11837290227413177, -0.014703868888318539, 0.016706163063645363, -0.028643041849136353, 0.006044759415090084, 0.09014950692653656, 0.010333734564483166, -0.024991214275360107, 0.11797855794429779, 0.09645721316337585, -0.001893011387437582, -0.16526228189468384, 0.09638963639736176, -0.02464873529970646, -0.024477044120430946, 0.11018665134906769, -0.03932218998670578, -0.08399510383605957, 0.061178095638751984, -0.133259117603302, 0.02634330466389656, 0.014242424629628658, 0.09379839152097702, 0.12708228826522827, 0.02912120521068573, -0.06458532065153122, 0.004985797684639692, -0.049108780920505524, -0.030156949535012245, 0.10117030888795853, 0.017992958426475525, 0.08574192225933075, 0.012618857435882092, 0.07134253531694412, 0.07056693732738495, 0.08763972669839859, 0.006940977647900581, -0.03135533630847931, 0.0015275373589247465, 0.006962261162698269, -0.10055318474769592, 0.0075070844031870365, -0.06490368396043777, -0.09262098371982574, 0.004041791427880526, 0.010984564200043678, 0.032438863068819046, 0.0895455926656723, -0.023339388892054558, -0.009087729267776012, 0.028865549713373184, -0.0720636397600174, 0.037688419222831726, -0.004270715638995171, -0.008736756630241871, -0.04906824976205826, -0.02763323113322258, 0.03450740501284599, 0.030198542401194572, -0.015668824315071106, 0.07271213084459305, 0.015412943437695503, 0.024943381547927856, -0.06474967300891876, 0.02770351618528366, -0.03638097643852234, 0.11557962745428085, 0.019511817023158073, 0.05451133847236633, -0.08963976055383682, 0.04380742833018303, 0.056245408952236176, 0.03337036073207855, -0.011962140910327435, 0.0001709088683128357, -0.032145772129297256, -0.019872093573212624, -0.02734600566327572, 0.0408816933631897, -0.07192089408636093, 0.08338358998298645, 0.03247475624084473, -0.04668790474534035, -0.0036246581003069878, -0.09975079447031021, -0.006641709245741367, 0.02238314226269722, 0.02663414739072323, -0.053375326097011566, -0.08872251957654953, -0.07000220566987991, 0.07835538685321808, 0.030850231647491455, -0.011533336713910103, -0.01035976130515337, -0.06390033662319183, -0.03479932248592377, -0.12472888827323914, 0.05828268080949783, -0.015708817169070244, 0.02990596368908882, 0.020608799532055855, 0.04275352507829666, 0.021197011694312096, -0.1672252118587494, 0.13449011743068695, 0.12840095162391663, 0.058327145874500275, -0.02805975452065468, 0.0172418262809515, -0.09498536586761475, -0.031029414385557175, -0.010851873084902763, -0.08152234554290771, 0.025160064920783043, 0.029752859845757484, 0.03483232483267784, -0.06280002743005753], "\u5728CPU ARM\u5e73\u53f0\u4e0a\u8fdb\u884cresnet50\u8bad\u7ec3\uff0c\u5185\u5b58\u6301\u7eed\u589e\u957f\u600e\u4e48\u529e\uff1f": [-0.0013609874295070767, 0.017839401960372925, -0.027827385812997818, 0.039601102471351624, -0.02868231013417244, -0.045676231384277344, 0.031412094831466675, 0.06331641972064972, -0.04765218868851662, 0.007927834056317806, -0.01557883620262146, 0.06101762130856514, 0.029900379478931427, -0.031058095395565033, -0.03800759091973305, 0.1381281167268753, 0.06845633685588837, -0.013281065970659256, -0.027888048440217972, 0.07202041894197464, 0.017191125079989433, 0.010592354461550713, 0.04739304631948471, -0.05036861449480057, 0.011718029156327248, 0.13130436837673187, -0.03297922760248184, -0.07234367728233337, 0.08913195133209229, 0.027456047013401985, 0.06428244709968567, 0.047697994858026505, -0.08764998614788055, 0.03685674071311951, -0.01980426535010338, -0.04284696653485298, -0.04888373985886574, 0.12846221029758453, -0.06688329577445984, -0.034226395189762115, 0.033817533403635025, -0.02356179617345333, -0.03483861684799194, 0.09741378575563431, 0.029121872037649155, -0.02650107443332672, -0.10621491819620132, -0.005594651680439711, 0.04867780953645706, 0.06154615804553032, -0.11352191865444183, 0.09571823477745056, -0.010798650793731213, -0.019366005435585976, -0.009788870811462402, 0.001027794205583632, 0.06361754983663559, 0.035146381705999374, 0.04314805567264557, 0.014596330933272839, 0.006163496524095535, -0.004541934933513403, -0.05647861585021019, 0.01927039958536625, -0.10136519372463226, 0.03035040572285652, -0.027674391865730286, -0.05721623823046684, 0.017215749248862267, 0.02636868879199028, -0.02159845270216465, 0.0007635241490788758, -0.050031859427690506, 0.07385116815567017, 0.051103848963975906, 0.08589644730091095, 0.016708767041563988, 0.02634536661207676, -0.06811054050922394, 0.04226642847061157, -0.020279329270124435, 0.0872030109167099, 0.07865726947784424, -0.060841016471385956, -0.004167502745985985, -0.03456073999404907, 0.00021718256175518036, 0.06833498179912567, -0.00922398455440998, 0.05226004868745804, 0.06406756490468979, -0.0021067203488200903, -0.17189577221870422, 0.10869777202606201, 0.13014504313468933, -0.06502018123865128, -0.04267903417348862, -0.04026952013373375, -0.10562197118997574, -0.015876352787017822, 0.060263291001319885, -0.03648698329925537, -0.0343509316444397, 0.032351721078157425, -0.004315848462283611, -0.11732488125562668, -0.02625281549990177, 0.013817138969898224, -0.02922135218977928, 0.023053575307130814, 0.07709767669439316, 0.012028275988996029, 0.10473529994487762, 0.028234053403139114, -0.0978531539440155, 0.03378911316394806, -0.04559745639562607, 0.045429885387420654, -0.05564785376191139, 0.11093088984489441, 0.07274631410837173, -0.05425212159752846, 0.007141165900975466, 0.060313306748867035, 0.044373590499162674, -0.10688406974077225, 0.07676676660776138, -0.05275183171033859, -0.09712516516447067, 0.03291213512420654, 0.1155177652835846, -0.024275045841932297, 0.08094525337219238, -0.1158473789691925, -0.1287960559129715, 0.0655057355761528, -0.05809607729315758, -0.04767611622810364, 0.058699119836091995, 0.042382944375276566, 0.07454678416252136, -0.15510277450084686, 0.002277978463098407, 0.012164384126663208, 0.1036892682313919, -0.008360638283193111, -0.11120479553937912, -0.11381866037845612, -0.08738349378108978, -0.08453789353370667, 0.06667178124189377, 0.056565627455711365, -0.09105654805898666, 0.08869577199220657, -0.042564235627651215, -0.021730678156018257, -0.019920291379094124, -0.01960567943751812, -0.022980067878961563, -0.021779276430606842, -0.0036925487220287323, -0.0397491417825222, 0.025820907205343246, -0.02437230572104454, -0.022288065403699875, 0.04270016402006149, 0.005239736754447222, -0.00860939547419548, -0.020374514162540436, 0.027701525017619133, -0.030942292883992195, -0.045453209429979324, -0.08501801639795303, -0.0016071000136435032, 0.03247125819325447, -0.010153782553970814, 0.020045485347509384, -0.09153788536787033, 0.021292803809046745, -0.037804897874593735, 0.04365325719118118, -0.09191033244132996, -0.03669612482190132, -0.07641560584306717, 0.04364611208438873, 0.007422369904816151, -0.011429166421294212, -0.003428779076784849, 0.16928383708000183, -0.13704322278499603, 0.03664948046207428, 0.0019462717464193702, 0.02097148261964321, 0.11988157033920288, -0.06406872719526291, -0.00035142339766025543, -0.042812373489141464, -0.012949340976774693, 0.0668729767203331, -0.05313283950090408, -0.02593037113547325, 0.03901377320289612, 0.0022412678226828575, 0.057707250118255615, 0.008741351775825024, -0.0323697067797184, -0.1317652016878128, -0.08659277856349945, 0.017572779208421707, 0.03041652776300907, 0.05387647822499275, 0.03125916048884392, -0.07927821576595306, 0.003570794826373458, -0.06396930664777756, 0.024059366434812546, 0.11441870033740997, 0.0634743869304657, 0.09537795186042786, -0.08463023602962494, 0.012406479567289352, -0.02345212548971176, -0.08770192414522171, -0.07429180294275284, -0.1351187527179718, 0.0008510348852723837, -0.04164184629917145, -0.09801316261291504, 0.02881610207259655, 0.05234971269965172, 0.002051827497780323, 0.09576959162950516, -0.0007291993824765086, 0.11411477625370026, -0.04911059886217117, 0.06691673398017883, -0.04718945547938347, -0.06942346692085266, 0.07610928267240524, 0.008684812113642693, -0.06680889427661896, 0.02239260822534561, -0.0571373887360096, -0.03247790038585663, -0.047079794108867645, 0.09452690929174423, 0.14336122572422028, 0.045575108379125595, 0.009590990841388702, 0.019633783027529716, 0.019117480143904686, 0.06086009740829468, -0.045757949352264404, 0.039142150431871414, -0.05111830309033394, 0.03777839615941048, 0.041808657348155975, -0.07151790708303452, 0.040727648884058, 0.022956226021051407, 0.06003116816282272, -0.020425986498594284, 0.012841969728469849, -0.04466622695326805, -0.013058348558843136, -0.04002650827169418, 0.12886717915534973, -0.017604993656277657, -0.04258187487721443, -0.07432841509580612, 0.06053530424833298, 0.006736997980624437, -0.06379956752061844, -0.013500271365046501, 0.07761658728122711, 0.07170282304286957, -0.0008453035261482, -0.08214481174945831, 0.02554808370769024, 0.019866492599248886, -0.0391978919506073, 0.0032765078358352184, 0.0069413259625434875, -0.06186310201883316, 0.15320664644241333, 0.0016252347268164158, 0.04817281663417816, -0.00016107084229588509, 0.03991880267858505, 0.08703267574310303, -0.027748800814151764, -0.004448939114809036, -0.08024303615093231, -0.009992447681725025, -0.0004894136800430715, 0.052389852702617645, 0.04775398224592209, 0.013431345112621784, -0.031446248292922974, 0.0656793862581253, 0.013071499764919281, -0.012775029987096786, 0.0998242199420929, -0.021383998915553093, -0.006970458664000034, -0.06591372191905975, -0.003668213728815317, 0.03485296294093132, 0.02486034855246544, 0.022396530956029892, 0.06547195464372635, 0.05643539875745773, 0.06685195863246918, 0.06570392102003098, -0.052680086344480515, -0.02222120389342308, 0.06251846998929977, -0.14180396497249603, 0.03607477992773056, -0.030831046402454376, 0.0009873207891359925, -0.06608439981937408, -0.016452787443995476, 0.047203224152326584, 0.06850947439670563, -0.05122672766447067, 0.04914397746324539, 0.05529331415891647, -0.02524661459028721, -0.04849598929286003, 0.03791387006640434, -0.042387790977954865, 0.048761624842882156, 0.07812577486038208, 0.026185302063822746, -0.11531734466552734, 0.10475699603557587, 0.014134206809103489, -0.033492423593997955, 0.025731809437274933, 0.018994221463799477, -0.1256905049085617, -0.03337718918919563, -0.09065240621566772, 0.05902431905269623, -0.05309295654296875, 0.061749108135700226, 0.019320378080010414, -0.004292551893740892, -0.045764144510030746, 0.003251660382375121, -0.1020766943693161, 0.07979540526866913, 0.04777147248387337, -0.016745125874876976, -0.13149039447307587, -0.09089069068431854, 0.0020803033839911222, 0.04624403268098831, -0.016035620123147964, -0.034152619540691376, 0.00026233308017253876, -0.05438486114144325, -0.0708053708076477, 0.001763785257935524, -0.022338613867759705, 0.07357896864414215, -0.018527980893850327, 0.10272806137800217, -0.020847434177994728, -0.11065778881311417, 0.014738310128450394, 0.0937185063958168, 0.09462106227874756, -0.016278555616736412, -0.051005180925130844, -0.10767874866724014, 0.05889485776424408, -0.000947016931604594, -0.1374911069869995, 0.0717926174402237, 0.13355328142642975, -0.0906570702791214, -0.07887786626815796], "\u4e3a\u4ec0\u4e48\u5728Ascend\u5e73\u53f0\u6267\u884c\u6a21\u578b\u65f6\u62a5\u6d41\u8d85\u9650\u7684\u9519\u8bef\uff1f": [0.013187609612941742, 0.0568254254758358, 0.00351513409987092, 0.08414599299430847, -0.056428782641887665, -0.01884489879012108, -0.018358785659074783, 0.04051629826426506, -0.04436192288994789, -0.008402209728956223, -0.01419916469603777, 0.03865610808134079, 0.013125907629728317, -0.04060746729373932, -0.049755532294511795, 0.1394743174314499, 0.06415469199419022, 0.020769909024238586, -0.006615245249122381, -0.030362185090780258, 0.01830558478832245, -0.030264729633927345, 0.07573125511407852, 0.05267889425158501, 0.0413849763572216, 0.12501771748065948, 0.038812581449747086, -0.09462954103946686, -0.022718673571944237, 0.07714258879423141, 0.028490832075476646, 0.09065692126750946, -0.12512673437595367, 0.07088752835988998, -0.08292742073535919, -0.01407473161816597, -0.03158313035964966, 0.09533067047595978, -0.02708432264626026, -0.121827132999897, 0.11891712248325348, 0.0007760169100947678, -0.04648016393184662, 0.12371589988470078, -0.01717354543507099, 0.0035087005235254765, -0.19647789001464844, 0.033288925886154175, 0.05604087933897972, 0.10682249814271927, -0.04524456709623337, 0.11461275815963745, 0.09674015641212463, -0.05082656443119049, 0.019797882065176964, 0.029610920697450638, 0.054950419813394547, 0.03182651102542877, 0.004291206132620573, -0.06929494440555573, -0.011183394119143486, -0.04019046574831009, -0.05373295396566391, 0.006806916557252407, -0.1218574121594429, 0.05734017863869667, -0.10434407740831375, -0.08607644587755203, 0.04142141342163086, 0.0025628036819398403, -0.018945379182696342, -0.05968789756298065, 0.00392143102362752, 0.0436219684779644, 0.07636546343564987, 0.09892997145652771, -0.007274603471159935, -0.0013250887859612703, -0.07041748613119125, 0.11223307996988297, 0.04139425978064537, 0.025873856619000435, 0.0019624431151896715, -0.05080416798591614, 0.013368015177547932, -0.02737600915133953, -0.016186824068427086, 0.024259531870484352, -0.041880954056978226, 0.00042380017112009227, -0.010110689327120781, -0.016610560938715935, -0.142929345369339, 0.027698583900928497, 0.03917338326573372, -0.0490320660173893, -0.06339042633771896, -0.07263903319835663, -0.08243037015199661, -0.031970009207725525, 0.04387044906616211, -0.06815057247877121, -0.01851801387965679, 0.020940952003002167, 0.035503510385751724, -0.1639922708272934, -0.018583009019494057, 0.009597895666956902, 0.05317690595984459, 0.06454900652170181, 0.07566382735967636, 0.033286359161138535, 0.11317096650600433, -0.00827009603381157, 0.06436506658792496, 0.03794426470994949, -0.03261588513851166, -0.09861119836568832, -0.05144321545958519, 0.1375151425600052, 0.1210896298289299, -0.011544844135642052, 0.04965886473655701, 0.07832213491201401, 0.06341374665498734, -0.025015447288751602, 0.04166846722364426, -0.0809815376996994, -0.09786585718393326, -0.015226602554321289, 0.12198367714881897, 0.00639039883390069, 0.044118691235780716, -0.06678972393274307, -0.047094929963350296, 0.06882871687412262, -0.0002477318048477173, -0.04809098690748215, 0.04642414301633835, 0.12861394882202148, -0.005696514621376991, -0.14398494362831116, 0.005424601025879383, 0.014179185032844543, 0.09899011999368668, 0.033039357513189316, -0.024270394816994667, -0.15117359161376953, -0.07688683271408081, -0.04352889209985733, 0.07943955063819885, 0.037599436938762665, -0.05782758444547653, 0.07792843133211136, -0.025109753012657166, 0.07633398473262787, 0.02730354107916355, 0.004099864047020674, -0.03495496138930321, 0.010283061303198338, -0.04311743378639221, -0.014364474453032017, -0.03800620138645172, -0.007206549867987633, -0.07372885942459106, 0.012446755543351173, -0.02867802046239376, -0.011552389711141586, -0.03302675485610962, 0.024058107286691666, -0.028800874948501587, -0.03384031355381012, -0.09161442518234253, -0.030355991795659065, -0.0013151864986866713, 0.06230931729078293, 0.08323468267917633, -0.1037607491016388, 0.021429799497127533, -0.0358416847884655, 0.06879989057779312, -0.02665538713335991, -0.06511232256889343, -0.052402567118406296, 0.09389904141426086, -0.0047303251922130585, 0.020273765549063683, 0.039842888712882996, 0.10007508099079132, -0.10136870294809341, 0.014831924811005592, -0.004793305415660143, 0.013072865083813667, 0.12075649201869965, -0.03638911619782448, 0.024722209200263023, -0.0446433462202549, 0.05419939011335373, 0.028593476861715317, -0.006646287627518177, -0.04005727916955948, 0.015345036052167416, -0.025966826826334, 0.03891550004482269, -0.011696740053594112, 0.022005748003721237, -0.09265144169330597, -0.0647977963089943, -0.004416386131197214, -0.09270384162664413, 0.05470918118953705, -0.014942789450287819, -0.05676324665546417, -0.0779758095741272, -0.09810923039913177, 0.06286059319972992, 0.03826824575662613, 0.06223127618432045, 0.11308225989341736, -0.007091707084327936, -0.04624580591917038, -0.012743572704494, -0.07635920494794846, -0.1440323442220688, -0.14179924130439758, -0.004870750475674868, -0.0579911544919014, -0.060927994549274445, -0.017069295048713684, 0.036668479442596436, 0.009019260294735432, 0.09358470886945724, 0.006781419273465872, 0.08138160407543182, -0.029469121247529984, -0.008341331034898758, -0.11283695697784424, -0.07357204705476761, -0.04444841668009758, 0.07878538221120834, -0.025636933743953705, 0.0631776824593544, -0.12688350677490234, 0.004889409989118576, -0.05298919975757599, 0.13231343030929565, 0.1079145148396492, 0.07369304448366165, -0.04385963827371597, 0.03031226061284542, 0.04659799858927727, -0.022352922707796097, 0.007250274997204542, 0.006031004246324301, -0.10649281740188599, 0.08179216086864471, 0.04313923418521881, -0.030161460861563683, 0.06253402680158615, 0.01671774685382843, 0.01121419109404087, -0.03619537502527237, -0.03775322437286377, -0.015735706314444542, -0.0026260721497237682, -0.03180185705423355, 0.053269896656274796, 0.009862231090664864, -0.0007154549239203334, -0.0898425355553627, 0.02365207113325596, 0.10989455133676529, -0.019535165280103683, 0.051267411559820175, 0.10656622052192688, 0.0910310298204422, -0.0365508571267128, -0.051991645246744156, -0.009091365151107311, 0.05553358793258667, 0.025470316410064697, 0.010408122092485428, 0.005923932883888483, 0.021425560116767883, 0.0792992115020752, -0.08895457535982132, 0.05966710299253464, 0.05396302416920662, 0.07289054989814758, 0.11001148819923401, 0.011373953893780708, -0.008288802579045296, -0.10320435464382172, -0.04356635734438896, 0.04636692628264427, 0.03081490471959114, 0.03941256180405617, 0.028165537863969803, 0.015045278705656528, 0.038882702589035034, -0.01571444422006607, 0.023418152704834938, 0.07747000455856323, -0.03910078853368759, -0.002902800450101495, -0.06284341216087341, -0.08937086164951324, -0.01860862597823143, 0.0062138233333826065, 0.08894272893667221, 0.08323731273412704, 0.10701937973499298, 0.041435252875089645, 0.06492143124341965, -0.08007462322711945, -0.010217579081654549, 0.0036477637477219105, -0.13543108105659485, 0.06442152708768845, -0.08201541751623154, -0.030498333275318146, -0.11172877252101898, 0.026929683983325958, 0.130415141582489, 0.02600032463669777, -0.07931958138942719, 0.028995877131819725, 0.10592423379421234, -0.02893466129899025, -0.03454539179801941, 0.014992162585258484, -0.017871186137199402, 0.056819282472133636, 0.018313312903046608, 0.048746850341558456, -0.12260504066944122, 0.03038211539387703, 0.04141679406166077, 0.012194083072245121, 0.0270274356007576, 0.09868671745061874, -0.13799071311950684, -0.021431833505630493, -0.12444993108510971, 0.08496010303497314, -0.03325965255498886, 0.11430258303880692, 0.07461080700159073, 0.018288208171725273, -0.06606727838516235, 0.015765422955155373, -0.07196113467216492, 0.046428877860307693, -0.077539823949337, -0.03873855248093605, -0.0977882593870163, -0.09867988526821136, -0.04562532529234886, 0.07108815759420395, 0.046974290162324905, -0.048834774643182755, 0.05385196954011917, -0.020547179505228996, -0.05147133395075798, 0.037884440273046494, -0.0604095496237278, 0.02409476973116398, 0.024955084547400475, 0.09200604259967804, 0.001825874438509345, -0.11943656951189041, 0.06601808220148087, 0.09210524708032608, 0.06221788004040718, -0.015195544809103012, -0.08005241304636002, -0.07680799812078476, 0.04200795665383339, -0.020195823162794113, -0.12608084082603455, 0.07222174108028412, 0.06866201013326645, -0.150631383061409, -0.044668637216091156], "\u5728Ascend\u5e73\u53f0\u4e0a\uff0c\u65e5\u5fd7\u4e2d\u51fa\u73b0\u62a5\u9519\u201cAscend error occurred\uff0c error message:\u201d\u4e14\u8ddf\u968f\u4e86\u4e00\u4e2a\u9519\u8bef\u7801\uff0c\u5982\u201cE40011\u201d\uff0c\u5982\u4f55\u67e5\u627e\u51fa\u73b0\u9519\u8bef\u7801\u7684\u539f\u56e0\uff1f": [-0.008250213228166103, 0.0502389632165432, 0.031333841383457184, 0.09026841819286346, -0.0361541211605072, -0.08895698189735413, 0.011626698076725006, 0.04522933065891266, -0.02292926423251629, 0.006047298200428486, 0.004226130433380604, 0.022761628031730652, 0.0331893116235733, -0.029893692582845688, -0.05193714797496796, 0.16054019331932068, 0.07250766456127167, -0.013340217992663383, 0.009453089907765388, 0.01770855113863945, 0.022422365844249725, 0.035598017275333405, 0.10729603469371796, 0.030868874862790108, 0.03954247385263443, 0.0861416906118393, 0.010244800709187984, -0.07695368677377701, 0.038706909865140915, 0.02501796931028366, 0.07199035584926605, 0.06925135850906372, -0.15329957008361816, 0.007247816771268845, -0.01593565195798874, -0.02196027897298336, -0.02897244319319725, 0.1288602501153946, -0.01522943377494812, -0.052229855209589005, 0.13691174983978271, -0.017975181341171265, -0.01568697951734066, 0.18215502798557281, -0.06783641129732132, 0.015335679985582829, -0.15689370036125183, 0.05798446387052536, -0.008231113664805889, 0.1142549067735672, -0.056175120174884796, 0.07947322726249695, 0.05307306721806526, -0.020873434841632843, -0.04304752126336098, 0.04380742460489273, 0.06467951089143753, -0.03991527855396271, -0.01290112268179655, -0.013098787516355515, -0.004222468473017216, -0.05668709799647331, -0.07801494747400284, 0.10174298286437988, -0.12955397367477417, 0.04273108020424843, -0.07740883529186249, -0.06195809319615364, 0.08292191475629807, 0.0070780301466584206, -0.05748604238033295, -0.054337289184331894, 0.019691208377480507, 0.02818230167031288, 0.05129165202379227, 0.020669667050242424, -0.00015483051538467407, 0.04938986152410507, -0.07994256168603897, 0.09654923528432846, 0.0583936981856823, 0.06986083835363388, 0.043451543897390366, -0.01744711957871914, -0.012227872386574745, -0.03590328246355057, -0.03535662963986397, -0.020612627267837524, -0.0226769857108593, 0.045731931924819946, -0.03872712701559067, -0.07085925340652466, -0.07526274025440216, 0.05819191038608551, 0.046802107244729996, -0.060897860676050186, -0.04776257649064064, -0.1138315200805664, -0.13441064953804016, 0.00455351360142231, 0.047113627195358276, -0.02321927435696125, -0.053460877388715744, 0.030063455924391747, 0.05032292753458023, -0.12347076833248138, -0.03154580667614937, 0.05888304486870766, -0.008432437665760517, 0.08925868570804596, 0.09467867761850357, 0.046564504504203796, 0.02751723676919937, 0.08419418334960938, 0.07748109847307205, 0.022299351170659065, -0.022791754454374313, -0.013706272467970848, -0.059678785502910614, 0.12859809398651123, 0.11774572730064392, 0.004971405491232872, 0.0693015456199646, 0.0787133276462555, 0.038630273193120956, -0.03256785497069359, 0.014807270839810371, -0.03614265099167824, -0.07765024155378342, -0.06740622222423553, 0.09853457659482956, 0.01404358260333538, 0.055750392377376556, -0.10258465260267258, -0.026842309162020683, 0.13768836855888367, 0.02617657743394375, -0.09619608521461487, 0.07946936786174774, 0.13988327980041504, 0.012027048505842686, -0.1344321221113205, 0.014795979484915733, 0.051999516785144806, 0.08204337954521179, 0.014061477966606617, -0.09296800941228867, -0.14213909208774567, -0.04375522583723068, -0.05520564317703247, 0.07329756021499634, 0.05822084844112396, -0.08210718631744385, 0.09645278006792068, 0.0003482270985841751, 0.07341471314430237, -0.003109254874289036, -0.01848846673965454, 0.004069739952683449, -0.02432188391685486, -0.05994926393032074, -0.0248511154204607, 0.015380531549453735, 0.014291088096797466, -0.02997695468366146, 0.03483523428440094, 0.00025432929396629333, 0.0034026149660348892, 0.0031223194673657417, 0.02061726711690426, -0.04603893309831619, -0.11142192035913467, -0.11624985188245773, -0.04440877214074135, -0.01475099753588438, 0.03915664181113243, 0.09118229150772095, -0.031010959297418594, 0.009643660858273506, -0.04226408153772354, 0.1012127473950386, -0.06369990110397339, -0.030342116951942444, -0.12303802371025085, 0.02353517897427082, -0.023089881986379623, 0.02536299079656601, 0.09654494374990463, 0.13088572025299072, -0.1654043197631836, -0.0085291787981987, 0.019366439431905746, 0.022737663239240646, 0.1238691434264183, -0.07419420778751373, 0.004292267840355635, -0.03758864104747772, -0.042670030146837234, 0.005270760040730238, 0.021013759076595306, -0.03398458659648895, 0.03046320006251335, -0.004421691410243511, 0.013446297496557236, 0.010196227580308914, -0.002275638049468398, -0.0635911151766777, -0.07810518145561218, 0.04786664620041847, -0.031999289989471436, 0.030076991766691208, 0.016235094517469406, -0.0830770879983902, -0.03447844088077545, -0.06868882477283478, 0.01229624729603529, 0.06725679337978363, 0.057851653546094894, 0.07549677044153214, 0.012646883726119995, -0.005310021806508303, 0.03546760603785515, -0.06952883303165436, -0.06923273950815201, -0.13248717784881592, -0.009943302720785141, -0.06684523075819016, -0.029600951820611954, 0.021511422470211983, -0.008406764827668667, -0.0668502002954483, 0.0657341480255127, 0.00318612577393651, 0.15254105627536774, -0.030489718541502953, -0.012791126035153866, -0.11094249039888382, -0.04885806888341904, 0.04558190703392029, 0.017882637679576874, -0.053923144936561584, 0.06704393774271011, -0.06971374899148941, 0.06575249135494232, -0.04103340953588486, 0.11357053369283676, 0.06520921736955643, 0.08169283717870712, -0.06201799958944321, -0.0008930189069360495, 0.03553362935781479, -0.017534589394927025, -0.06697344034910202, -0.01813456043601036, -0.11415515840053558, 0.07329677045345306, 0.09841796010732651, -0.09691914916038513, 0.006583290174603462, 0.02285612002015114, 0.06390214711427689, -0.016943033784627914, -0.09276069700717926, -0.05522079020738602, -0.002331168856471777, -0.009835673496127129, 0.07624664157629013, -0.011589796282351017, -0.028269561007618904, -0.03711679205298424, 0.047936998307704926, 0.07234475761651993, -0.013062214478850365, -0.0038498188368976116, 0.10544280707836151, 0.14392060041427612, -0.03447970002889633, -0.08089853823184967, 0.03578667342662811, 0.05516739562153816, 0.02476043440401554, 0.03380611166357994, -0.04565952345728874, -0.024218766018748283, 0.11375920474529266, -0.04277008771896362, 0.054939113557338715, 0.034931909292936325, -0.006639241240918636, 0.17459431290626526, -0.028689078986644745, 0.01816927082836628, -0.04017320275306702, 0.0021406528539955616, -0.009226626716554165, 0.08406023681163788, 0.054153889417648315, 0.0799238532781601, -0.07789468765258789, 0.05670176446437836, -0.08569613099098206, 0.00866119097918272, 0.09903199225664139, -0.10455483943223953, 0.08595442771911621, -0.016693873330950737, -0.02938341163098812, 0.07606230676174164, 0.030478253960609436, 0.0217897966504097, 0.10247034579515457, 0.07572974264621735, 0.04026360064744949, 0.11567851901054382, -0.09405510127544403, -0.04472561180591583, 0.019405514001846313, -0.16383978724479675, 0.016943933442234993, -0.07911822944879532, -0.030805958434939384, -0.07043817639350891, -0.0514884851872921, 0.07922503352165222, 0.061059433966875076, -0.005173638928681612, 0.08915317058563232, 0.11164388060569763, -0.050600506365299225, -0.05498151108622551, -0.0025320008862763643, -0.020411167293787003, 0.08658190071582794, 0.022042857483029366, 0.05757720768451691, -0.16856473684310913, 0.0749378502368927, -0.01744106225669384, -0.024076586589217186, -0.0015294819604605436, 0.05709811672568321, -0.12153517454862595, 0.0038030140567570925, -0.05727068707346916, 0.15739019215106964, -0.01800154522061348, 0.1330758035182953, 0.05312095582485199, -0.013177002780139446, -0.07386279106140137, 0.01559669990092516, -0.05466500297188759, 0.10621326416730881, -0.003523979801684618, -0.010320892557501793, -0.11170732975006104, -0.09167979657649994, -0.030353780835866928, 0.08404777944087982, 0.06911072134971619, 0.020188739523291588, -0.0038424532394856215, -0.08862979710102081, -0.056721314787864685, 0.03883889690041542, -0.06684406101703644, 0.07471160590648651, -0.08013025671243668, 0.09020331501960754, 0.003391975536942482, -0.08152397722005844, 0.037323128432035446, 0.09338554739952087, 0.06642754375934601, -0.022616127505898476, -0.039656318724155426, -0.1514415591955185, 0.055855751037597656, -0.05671131610870361, -0.08288156986236572, 0.07329518347978592, 0.10346727818250656, -0.1233365386724472, -0.054866593331098557], "\u8bad\u7ec3nlp\u7c7b\u7f51\u7edc\uff0c\u5f53\u4f7f\u7528\u7b2c\u4e09\u65b9\u7ec4\u4ef6gensim\u65f6\uff0c\u53ef\u80fd\u4f1a\u62a5\u9519: ValueError\uff0c\u5982\u4f55\u89e3\u51b3\uff1f": [-0.06679827719926834, 0.05061037838459015, 0.04677756130695343, 0.08648251742124557, -0.06333445012569427, -0.04470890760421753, -0.04727563261985779, 0.052581582218408585, 0.025849752128124237, 0.029747700318694115, -0.002996638650074601, 0.03713686391711235, 0.015005748718976974, -0.02567460760474205, -0.01795383356511593, 0.11115818470716476, 0.10005661100149155, 0.02055654488503933, -0.04278219863772392, 0.07694697380065918, 0.04036619886755943, 0.016199490055441856, 0.07025817036628723, -0.017756398767232895, -0.0011102124117314816, 0.06717405468225479, -0.01838420331478119, -0.005443422123789787, 0.0018522290047258139, 0.04652336984872818, 0.06079034507274628, 0.043302156031131744, -0.05580362677574158, 0.011822570115327835, -0.026770778000354767, -0.042501624673604965, -0.09029196202754974, 0.12650470435619354, -0.04463823884725571, -0.04772605001926422, 0.15904772281646729, 0.04569416493177414, -0.019526131451129913, 0.09827661514282227, -0.047593194991350174, -0.021053720265626907, -0.18124209344387054, 0.02503514289855957, 0.028524525463581085, 0.006378869526088238, -0.0453563928604126, 0.029261581599712372, 0.04977266862988472, -0.06703260540962219, -0.07764475047588348, 0.040348246693611145, 0.00678250240162015, 0.05004432797431946, 0.0309083741158247, 0.03385414183139801, 0.055515170097351074, -0.05392485857009888, 0.009236238896846771, 0.011688090860843658, -0.12597209215164185, 0.027686910703778267, -0.04469031095504761, -0.03587896376848221, 0.004784976132214069, -0.08314044773578644, -0.03427465632557869, -0.032550111413002014, -0.02883833274245262, 0.06289585679769516, 0.07311629503965378, 0.13020984828472137, -0.01576085202395916, -0.03463109955191612, -0.045853037387132645, 0.04649422690272331, 0.019330959767103195, 0.07303468883037567, 0.04445110261440277, -0.07591594010591507, -0.10380076617002487, -0.06228288635611534, -0.10433540493249893, 0.09024186432361603, -0.05825716629624367, 0.10354096442461014, 0.03184281662106514, -0.030584512278437614, -0.08549512922763824, 0.05348118022084236, 0.10218214243650436, -0.09654958546161652, -0.00990966334939003, -0.008337970823049545, -0.1510416567325592, -0.014868449419736862, 0.07963372766971588, -0.040234439074993134, -0.06715802848339081, 0.05062953010201454, 0.024104520678520203, -0.13159918785095215, -0.04899011179804802, 0.06890100240707397, 0.0038335544522851706, 0.02472565695643425, 0.06890212744474411, 0.016368750482797623, 0.018309755250811577, 0.06540456414222717, -0.015926962718367577, 0.04324546083807945, -0.06051721051335335, 0.01626819558441639, -0.06405635178089142, 0.08744165301322937, 0.1349342167377472, -0.06089042127132416, 0.027806568890810013, 0.044908009469509125, 0.03314286842942238, -0.031027160584926605, 0.11156892776489258, -0.09386492520570755, -0.12709197402000427, -0.05858137458562851, 0.14852896332740784, -0.043377846479415894, 0.09532102197408676, -0.16601309180259705, -0.0757245197892189, 0.0747399628162384, -0.006742865778505802, 0.05891063064336777, -0.0004691257781814784, 0.1367408037185669, 0.06358148157596588, -0.1296137422323227, 0.07868827879428864, -0.00597803620621562, 0.061721041798591614, 0.0762910470366478, -0.07177822291851044, -0.08652297407388687, -0.007789792492985725, -0.07041488587856293, 0.050672128796577454, 0.0073008062317967415, -0.011896082200109959, 0.030779141932725906, -0.009684127755463123, 0.03342276066541672, 0.06228859722614288, -0.02538992092013359, -0.05442829430103302, -0.08644498139619827, -0.07389217615127563, -0.08961368352174759, 0.03984704613685608, 0.037809401750564575, -0.07430286705493927, 0.06112836301326752, 0.03872472047805786, 0.021960224956274033, 0.0032614278607070446, -0.02846548520028591, -0.02008930966258049, 0.030500002205371857, -0.040884677320718765, -0.12264131009578705, 0.05342413857579231, -0.039508331567049026, 0.09383080899715424, -0.036555059254169464, 0.0037657078355550766, -0.07256937026977539, 0.09245269000530243, -0.09998045116662979, -0.036327067762613297, -0.07215998321771622, 0.053053222596645355, 0.03740109130740166, 0.060024362057447433, 0.05770612135529518, 0.0920909121632576, -0.08709076792001724, -0.04178770259022713, 0.028199167922139168, 0.009225479327142239, 0.10024704784154892, -0.05509944632649422, -0.0106276273727417, -0.05086299777030945, -0.032775625586509705, 0.029645023867487907, -0.03443310037255287, 0.014665494672954082, 0.015501373447477818, 0.038165681064128876, -0.057788342237472534, 0.014979603700339794, -0.08344727009534836, -0.06731051951646805, -0.08945750445127487, 0.05601823702454567, -0.00615690927952528, 0.07990922033786774, 0.02317911759018898, -0.021892275661230087, -0.026074213907122612, -0.09085971117019653, -0.013659430667757988, 0.1152999997138977, 0.03898649662733078, 0.09356515109539032, -0.05033284053206444, 0.037868425250053406, 0.036659207195043564, 0.0017743799835443497, -0.067372165620327, -0.05905965715646744, -0.07933411002159119, -0.0549403578042984, -0.08587583899497986, -0.00324086076579988, 0.021678034216165543, -0.06078331544995308, 0.11272025853395462, 0.003223853185772896, 0.08878913521766663, -0.0072534517385065556, 0.13721224665641785, 0.010224414058029652, -0.037762537598609924, 0.08669991046190262, 0.04120474308729172, -0.08321544528007507, 0.1296188086271286, -0.06467974185943604, 0.010750249028205872, -0.09361172467470169, 0.06642879545688629, 0.05739680305123329, 0.09539365768432617, 0.016334136947989464, -0.0321321114897728, 0.006663141772150993, 0.014414548873901367, -0.048652615398168564, -0.004819244612008333, -0.011976979672908783, 0.13002608716487885, 0.04331999644637108, -0.05804632604122162, 0.006013637408614159, 0.01819664239883423, 0.02363760396838188, -0.0039249905385077, -0.04081166535615921, -0.004142733756452799, -0.0007427054224535823, -0.03510139510035515, 0.12047412991523743, -0.027681458741426468, -0.02774738147854805, -0.0333583764731884, 0.051346518099308014, 0.05083542689681053, -0.08034143596887589, -0.02689974009990692, 0.13924679160118103, 0.06482166051864624, -0.03965277224779129, -0.10288859158754349, 0.034343671053647995, -0.008869197219610214, -0.020259082317352295, 0.025484083220362663, 0.027063585817813873, -0.024542000144720078, 0.06154347583651543, -0.01941729336977005, 0.041451528668403625, -0.006926713511347771, 0.08074139803647995, 0.11783157289028168, -0.06441795825958252, -0.06648647785186768, -0.087752565741539, -0.005137492902576923, -0.05343114584684372, 0.03194831311702728, 0.05490737408399582, 0.024588579311966896, 0.020108502358198166, 0.013116620481014252, -0.02111447975039482, -0.04598882049322128, 0.06844960898160934, -0.051087360829114914, 0.00030363909900188446, 0.0224798284471035, -0.0717226043343544, 0.05633100867271423, 0.043444737792015076, 0.0024311980232596397, 0.0570584312081337, 0.10237709432840347, 0.06213558092713356, 0.11043190211057663, 0.029879096895456314, -0.102037712931633, 0.017516514286398888, -0.07484797388315201, 0.012384705245494843, -0.04499296844005585, 0.03756580501794815, -0.04909445717930794, -0.0010922770015895367, 0.0968562588095665, 0.06625264883041382, -0.0009756681392900646, 0.008358434773981571, 0.03293602913618088, -0.0353945754468441, -0.005988206714391708, 0.09164786338806152, -0.10706855356693268, 0.010799593292176723, 0.0980161726474762, 0.05950142815709114, -0.08521219342947006, 0.06510205566883087, 0.0795573741197586, -0.019095689058303833, 0.08992244303226471, 0.010849426500499249, -0.07389578968286514, -0.009524897672235966, -0.10567598789930344, 0.09123025834560394, -0.06531073153018951, 0.035377755761146545, 0.03763929009437561, 0.02916259691119194, -0.012583848088979721, 0.005658574402332306, -0.005817120429128408, 0.10356870293617249, 0.03624526411294937, -0.02149021625518799, -0.10985884815454483, -0.042189233005046844, 0.028202660381793976, 0.05129137262701988, 0.051273904740810394, -0.040176212787628174, -0.011486789211630821, -0.005213518626987934, -0.07999932765960693, 0.08443167805671692, -0.03972988948225975, 0.039038050919771194, 0.013544362969696522, 0.05449173226952553, -0.04918389767408371, -0.1124594509601593, 0.0455382764339447, 0.1243738904595375, 0.04877133294939995, -0.0522422194480896, -0.0309642031788826, -0.10508076846599579, 0.10302551090717316, -0.08484265208244324, -0.08624531328678131, 0.041835568845272064, 0.062071315944194794, -0.09867814928293228, -0.02525230310857296], "\u8fd0\u884c\u6587\u6863\u793a\u4f8b\u4ee3\u7801\u7684\u8fc7\u7a0b\u4e2d\uff0c\u9047\u5230`matplotlib.pyplot.show()`\u6216`plt.show()`\u65e0\u6cd5\u6267\u884c\u600e\u4e48\u5904\u7406\uff1f": [0.06838037818670273, 0.0371767058968544, 0.097935251891613, 0.02201465517282486, -0.13581141829490662, -0.06054190546274185, 0.0015625866362825036, 0.09472407400608063, -0.06020791083574295, 0.056421808898448944, -0.030557354912161827, 0.02421305887401104, 0.015908941626548767, -0.03089194931089878, -0.02818809263408184, 0.08291375637054443, 0.045201148837804794, -0.03324107825756073, -0.04809682443737984, -0.0033473805524408817, 0.015973761677742004, 0.07679969817399979, 0.08997607976198196, 0.06545203179121017, 0.055381160229444504, 0.08746027201414108, -0.005756485275924206, 0.01303812488913536, -0.0038983214180916548, 0.10301467776298523, 0.03390948474407196, 0.0547296479344368, -0.09772604703903198, 0.0449744388461113, -0.058853331953287125, -0.06599967926740646, -0.01902814395725727, 0.05653300881385803, -0.04702749103307724, -0.014477018266916275, 0.07373708486557007, 0.04273253679275513, -0.02319474145770073, 0.12700410187244415, -0.029023952782154083, -0.006502984557300806, -0.1461195945739746, 0.0018973513506352901, 0.08024676889181137, 0.13032831251621246, -0.11760008335113525, 0.08616235852241516, 0.033053379505872726, 0.03891408443450928, -0.03400255739688873, 0.07495416700839996, -0.004437032155692577, 0.0061310953460633755, 0.02375136874616146, 0.041979461908340454, 0.030514352023601532, -0.034079939126968384, -0.04189722239971161, -0.011957373470067978, -0.14554691314697266, -0.016579698771238327, -0.0429982915520668, -0.01745470054447651, 0.03358468785881996, -0.04144454747438431, -0.030124522745609283, -0.011122867465019226, -0.00763818109408021, -0.009809250012040138, 0.041578538715839386, 0.01309081818908453, -0.06002776324748993, 0.010480489581823349, -0.1446373164653778, 0.07094117999076843, 0.07242469489574432, 0.04601067304611206, 0.05429099127650261, -0.10301928222179413, -0.03125445544719696, -0.07393786311149597, -0.08903985470533371, 0.08927591145038605, -0.05014505237340927, 0.0821445882320404, 0.05058938264846802, -0.054964710026979446, -0.1857500672340393, 0.053797561675310135, 0.07090729475021362, -0.04092143476009369, -0.03791877254843712, -0.06610674411058426, -0.1147715225815773, 0.010143352672457695, 0.0263572596013546, -0.0423399917781353, 0.02890869416296482, 0.03792666643857956, -0.01383766159415245, -0.06910604238510132, 0.02522028610110283, 0.031234487891197205, -0.05207758769392967, 0.05639633536338806, 0.053576357662677765, 0.056238383054733276, 0.011222567409276962, 0.03198189288377762, -0.00820586085319519, 0.04447343200445175, -0.03446613624691963, -0.06735122948884964, -0.13198307156562805, 0.09262771904468536, 0.12338116765022278, 0.011655109003186226, -0.01165266614407301, 0.024291807785630226, -0.003990964498370886, 0.020465724170207977, 0.09179341793060303, -0.07816531509160995, -0.032630935311317444, 0.003231358714401722, 0.19322258234024048, -0.03957352042198181, 0.08826909214258194, -0.10192164778709412, -0.033910322934389114, 0.0332786962389946, -0.0607110820710659, -0.0035810419358313084, -0.030450154095888138, 0.15098433196544647, 0.030327387154102325, -0.14143218100070953, 0.0848376601934433, -0.015904802829027176, 0.13812501728534698, 0.0849003940820694, -0.07237087935209274, -0.10263080894947052, -0.01970079354941845, -0.00612943759188056, 0.17696230113506317, -0.019038964062929153, -0.02191857434809208, 0.11148624122142792, -0.03277081996202469, 0.08672031760215759, -0.007645724341273308, 0.0037648873403668404, -0.09833990037441254, -0.017960956320166588, -0.06142847239971161, -0.05464987829327583, 0.10094084590673447, 0.011768290773034096, -0.012513614259660244, 0.06449876725673676, -0.0013082355726510286, -0.05337274819612503, 0.005691109225153923, -0.054687391966581345, -0.049695782363414764, -0.005477868020534515, -0.045103900134563446, -0.111562080681324, 0.06592154502868652, 0.05924374982714653, 0.06590427458286285, -0.04975118115544319, 0.03825134038925171, -0.00780523894354701, 0.08087679743766785, -0.05816004052758217, -0.11725389212369919, -0.05619974061846733, 0.07673735171556473, 0.026462046429514885, 0.019321618601679802, 0.025129778310656548, 0.11380615085363388, -0.06607599556446075, -0.08112728595733643, 0.04267110675573349, -0.03187061473727226, 0.10659278929233551, 0.04355793818831444, -0.008941605687141418, -0.015063829720020294, 0.038873668760061264, 0.033488307148218155, -0.03317782282829285, -0.0386621356010437, 0.022050973027944565, -0.054219599813222885, 0.031322915107011795, -0.042904503643512726, -0.01941327564418316, -0.0541573092341423, -0.08454827964305878, -0.02488778904080391, 0.036853253841400146, 0.06443888694047928, -0.01954522356390953, -0.09629538655281067, 0.006397605407983065, -0.08967402577400208, 0.011867843568325043, 0.100993312895298, 0.05243150144815445, 0.030603505671024323, -0.066279835999012, 0.05711652711033821, 0.028171468526124954, 0.033261872828006744, -0.07241781800985336, -0.17217616736888885, -0.008219260722398758, -0.04121336713433266, -0.11245772242546082, -0.044300585985183716, 0.1191873848438263, -0.07999593764543533, 0.09040865302085876, 0.0026564833242446184, 0.12992221117019653, 0.03916070610284805, 0.03862720727920532, -0.04568497836589813, -0.0033633154816925526, 0.011308146640658379, 0.033422794193029404, -0.041466787457466125, 0.06490855664014816, -0.10087472200393677, -0.016347743570804596, -0.060425013303756714, 0.12394323945045471, 0.035678837448358536, 0.059161070734262466, -0.05758621543645859, -0.053470585495233536, -0.014354799874126911, -0.009805848821997643, -0.022468727082014084, 0.06044156849384308, -0.05022120475769043, 0.06434670835733414, 0.0036804734263569117, -0.06981515139341354, 0.03915346413850784, 0.03939329832792282, 0.011189935728907585, 0.04158788174390793, -0.06968878209590912, 0.05032852292060852, -0.04506123438477516, -0.056866101920604706, 0.07319451868534088, -0.05746008828282356, 0.0256174448877573, -0.06880912184715271, 0.01827004924416542, 0.07042081654071808, -0.011454975232481956, 0.03164730221033096, 0.14120523631572723, 0.10180865228176117, -0.013470955193042755, -0.10963743180036545, 0.05788537859916687, 0.0848991647362709, 0.01137855090200901, 0.13773448765277863, 0.02005802094936371, -0.02547403797507286, -0.005963273346424103, -0.06569734960794449, 0.03474380820989609, 0.008483373560011387, 0.013647159561514854, 0.09237261116504669, -0.01765061356127262, -0.022368278354406357, -0.10048111528158188, 0.031498584896326065, 0.013242126442492008, 0.0683802142739296, 0.05914306640625, 0.029757175594568253, 0.037213701754808426, 0.029822612181305885, -0.027198059484362602, -0.031340450048446655, 0.0967249721288681, -0.06202998757362366, -0.03301917389035225, 0.04367491975426674, -0.07730309665203094, 0.04755599424242973, -0.12056121975183487, -0.057693175971508026, 0.11009986698627472, 0.0310959592461586, 0.04082227870821953, 0.09965258836746216, -0.05518989637494087, -0.07678483426570892, 0.018801197409629822, -0.049515169113874435, 0.061565473675727844, -0.044272035360336304, 0.013832462020218372, -0.08657206594944, -0.026105916127562523, 0.07691008597612381, 0.06461332738399506, -0.022788845002651215, 0.07106097787618637, 0.01929149217903614, -0.07598243653774261, -0.01905044913291931, 0.029091617092490196, -0.01204664446413517, 0.0018624847289174795, 0.05214925855398178, 0.0415261946618557, -0.13668550550937653, 0.009465046226978302, 0.012042186222970486, -0.02652822434902191, -0.009803938679397106, 0.04863877594470978, -0.05755656957626343, 0.004744449630379677, -0.12095730751752853, 0.11309616267681122, -0.0949571505188942, 0.08646364510059357, 0.029688574373722076, -0.04331419616937637, -0.018627403303980827, 0.002145129255950451, -0.03977445140480995, 0.07451532781124115, 0.02453729510307312, -0.07943528145551682, -0.08599347621202469, -0.0418836735188961, 0.016166726127266884, 0.07675717025995255, 0.02000173181295395, 0.031814660876989365, -0.0052340407855808735, -0.004371121060103178, -0.09456530213356018, 0.06727530062198639, -0.08303037285804749, 0.027653099969029427, 0.009648093953728676, 0.03685744106769562, 0.006921279244124889, -0.11085809022188187, 0.027889037504792213, 0.0994311273097992, 0.07749689370393753, -0.09628836810588837, -0.07714326679706573, -0.11632875353097916, 0.026815500110387802, -0.06980209797620773, -0.10917574912309647, 0.00010958313941955566, 0.03751799091696739, -0.10985101759433746, -0.012595576234161854], "\u4f7f\u7528\u6587\u6863\u4e2d\u63d0\u4f9b\u7684\u5728\u7ebf\u8fd0\u884c\u65f6\uff0c\u9047\u5230\u8fd0\u884c\u5931\u8d25\u8be5\u5982\u4f55\u5904\u7406\uff1f": [-0.05493014678359032, 0.0683467760682106, 0.05531882122159004, 0.0981866866350174, -0.02985386550426483, -0.03984735906124115, -0.06988143175840378, 0.05371454730629921, 0.005798960104584694, 0.04464837163686752, 0.03528139367699623, -0.002796196611598134, 0.0333213172852993, -0.047924671322107315, 0.0017874231562018394, 0.11067235469818115, 0.039430875331163406, 0.04097576439380646, -0.036657530814409256, -0.021789230406284332, -0.05035531148314476, -0.023502256721258163, 0.08155542612075806, 0.023711122572422028, 0.056581392884254456, 0.12420924752950668, 0.013784019276499748, -0.03166598826646805, -0.047968000173568726, 0.07921624928712845, 0.03904014453291893, 0.05011678859591484, -0.1238899677991867, 0.10221269726753235, -0.10649247467517853, -0.041279785335063934, -0.007708217948675156, 0.09905493259429932, -0.03822749853134155, -0.04128417372703552, 0.11380210518836975, 0.05836333706974983, -0.03611353039741516, 0.08823473751544952, -0.00966689083725214, -0.0033635185100138187, -0.19203409552574158, 0.07271993160247803, 0.07019264996051788, 0.08251489698886871, -0.07273688912391663, 0.058053724467754364, 0.03656940162181854, -0.019764967262744904, 0.01112441997975111, -0.00042697039316408336, 0.029665011912584305, 0.02008039690554142, 0.057352595031261444, -0.03531892970204353, 0.0646807998418808, 0.05922165513038635, 0.0125363664701581, -0.02444171905517578, -0.11971259117126465, 0.013340970501303673, -0.10296501964330673, -0.09500060975551605, 0.05643905699253082, 0.045244261622428894, -0.089664027094841, -0.026600826531648636, 0.0009494830737821758, 0.05689837783575058, 0.08123958855867386, 0.027142496779561043, 0.018877681344747543, 0.0020470162853598595, -0.020845158025622368, 0.06832318007946014, 0.008254299871623516, 0.10906724631786346, 0.03205632045865059, -0.13207568228244781, 0.014665978960692883, -0.02113467827439308, -0.051031921058893204, 0.01925753802061081, -0.07256413996219635, 0.002888753544539213, -0.0342363566160202, -0.04200894385576248, -0.16545510292053223, -0.004731036722660065, 0.07116083055734634, -0.04467420279979706, -0.04290195554494858, -0.04234364628791809, -0.11043666303157806, -0.03187304735183716, 0.04372183606028557, -0.03729621693491936, -0.010873761028051376, -0.014979426749050617, 0.02199786901473999, -0.1072043851017952, 0.02949180081486702, 0.03130609169602394, 0.02336364984512329, 0.051949962973594666, 0.0763203576207161, 0.04026591405272484, 0.08407637476921082, -0.007352233864367008, 0.07055478543043137, -0.011618280783295631, -0.04213795065879822, -0.1038343533873558, -0.07482043653726578, 0.12460745871067047, 0.15556956827640533, 0.0046308632008731365, 0.044702302664518356, 0.02457212284207344, 0.03240277245640755, -0.02846497669816017, 0.07291222363710403, -0.09611601382493973, -0.07985181361436844, -0.03356759250164032, 0.12947054207324982, -0.019366707652807236, 0.03642060607671738, -0.08441007882356644, -0.021543480455875397, 0.06556110829114914, -0.017549531534314156, -0.004617989994585514, 0.01820039190351963, 0.14228320121765137, 0.010629663243889809, -0.20317158102989197, 0.021393902599811554, -0.009335719980299473, 0.10235176980495453, 0.026695940643548965, -0.08732391893863678, -0.15163619816303253, -0.0051152147352695465, -0.046771854162216187, 0.1642385721206665, -0.02681722678244114, -0.012494398280978203, 0.0465841181576252, -0.02801048569381237, 0.024724435061216354, 0.009595113806426525, 0.0022204164415597916, -0.009434348903596401, -0.08459703624248505, -0.09453003108501434, 0.030019909143447876, 0.047350309789180756, -0.041411321610212326, -0.10960708558559418, 0.07424410432577133, 0.0009419617126695812, -0.01318185031414032, -0.003536880249157548, 0.0012235486647114158, 0.009302741847932339, 0.013690587133169174, -0.05149269849061966, -0.08854591846466064, 0.045750390738248825, 0.03867466375231743, 0.08360166847705841, -0.1034349873661995, 0.0012297671055421233, -0.01655968837440014, 0.03345854580402374, -0.061882756650447845, -0.0295784380286932, -0.026307549327611923, 0.09730953723192215, 0.007546565495431423, 0.06481799483299255, 0.058948397636413574, 0.21337537467479706, -0.13469035923480988, -0.032775141298770905, 0.005512479692697525, -0.0031094795558601618, 0.10726813226938248, -0.005416749976575375, 0.017247198149561882, -0.03886300325393677, 7.079076021909714e-05, 0.03854721784591675, -0.002967609791085124, -0.01630363240838051, 0.03757336735725403, -0.008314607664942741, 0.02523818239569664, -0.03712695837020874, -0.012064493261277676, -0.0706164687871933, -0.10026963800191879, -0.008140694350004196, 0.023024151101708412, 0.09432521462440491, -0.0029719904996454716, -0.06842546164989471, -0.08951371908187866, -0.11498259007930756, -0.019508160650730133, 0.06092911213636398, 0.0529724657535553, 0.08823823183774948, -0.016756068915128708, 0.0028272997587919235, 0.011069143190979958, -0.02183176390826702, -0.1014619991183281, -0.11612661182880402, -0.03034006431698799, -0.04608950391411781, -0.13629373908042908, -0.022509239614009857, 0.047990452498197556, -0.08293694257736206, 0.0797542855143547, -0.051235731691122055, 0.10884398221969604, -0.004720121622085571, 0.033130429685115814, -0.07756577432155609, -0.008424496278166771, 0.000699572148732841, 0.022219907492399216, -0.047950565814971924, 0.027183620259165764, -0.11398355662822723, -0.05278811603784561, -0.10238584131002426, 0.12791839241981506, 0.07333828508853912, 0.05817939713597298, 0.009745643474161625, -0.04919952526688576, 0.03929193690419197, -0.012254278175532818, -0.001945705502294004, 0.043610066175460815, -0.04211098700761795, 0.05869302153587341, 0.04005175456404686, -0.0008763016667217016, 0.04640492796897888, -0.019137980416417122, -0.012365791946649551, 0.007831122726202011, -0.07332585752010345, -0.013540171086788177, -0.04514014348387718, -0.07282710820436478, 0.07474474608898163, -0.013091852888464928, 0.011703366413712502, -0.07440437376499176, 0.004349713679403067, 0.1047871857881546, -0.046867646276950836, 0.04617737978696823, 0.12444834411144257, 0.09698043018579483, -0.030311547219753265, -0.05939243733882904, 0.005255796946585178, 0.04352863132953644, -0.039477258920669556, 0.057288236916065216, 0.027427414432168007, 0.06134479120373726, 0.0063254027627408504, -0.1100391149520874, 0.057130273431539536, 0.056496649980545044, 0.05298120528459549, 0.15885785222053528, 0.057048603892326355, -0.02353230118751526, -0.051721539348363876, -0.01525097619742155, 0.0026827314868569374, 0.06665632873773575, 0.023068923503160477, 0.004823889583349228, 0.015276456251740456, 0.06721650063991547, -0.08536162972450256, 0.027072038501501083, 0.06687506288290024, -0.027108533307909966, -0.009429043158888817, -0.019291477277874947, -0.06509599834680557, -0.013382544741034508, -0.007522109430283308, -0.033254899084568024, 0.07459304481744766, 0.08703476935625076, 0.06673184782266617, 0.08833117038011551, -0.09823374450206757, -0.03686516359448433, 0.015531879849731922, -0.10544608533382416, 0.02457088604569435, -0.021373722702264786, -0.013461302034556866, -0.11658299714326859, 0.019943397492170334, 0.10416881740093231, 0.0292679350823164, -0.06336100399494171, 0.07410575449466705, 0.06230443716049194, -0.016525764018297195, -0.026504499837756157, 0.017721258103847504, -0.041227832436561584, 0.04781026765704155, 0.0927324965596199, 0.03856099769473076, -0.15846851468086243, 0.009688222780823708, 0.027854986488819122, 0.028486967086791992, 0.001022658427245915, 0.042723461985588074, -0.06269742548465729, -0.04181868955492973, -0.08295589685440063, 0.06865299493074417, -0.04071298986673355, 0.10303249955177307, 0.035543110221624374, -0.012190213426947594, -0.06169606000185013, 0.0032274387776851654, -0.04490296542644501, 0.021517090499401093, -0.045727863907814026, -0.03157762810587883, -0.076771579682827, -0.07633259892463684, -0.024694431573152542, 0.07357271760702133, -0.0031281830742955208, -0.005271536763757467, 0.013877813704311848, -0.03299344703555107, -0.10649105161428452, 0.06424141675233841, -0.10079513490200043, 0.03474082052707672, 0.05100272595882416, 0.022316837683320045, 0.02722848206758499, -0.11675047874450684, 0.09244956076145172, 0.08110484480857849, 0.061826810240745544, -0.05827783793210983, -0.11970960348844528, -0.07611637562513351, 0.0171457938849926, -0.042306721210479736, -0.13705584406852722, 0.03325439989566803, -0.026396190747618675, -0.11292063444852829, -0.04270172864198685], "\u9759\u6001\u56fe\u4e0b\u4f7f\u7528\u9664\u6cd5\u7ed3\u679c\u672a\u62a5\u9519\uff0c\u52a8\u6001\u56fe\u4e0b\u4f7f\u7528\u9664\u6cd5\u7ed3\u679c\u5374\u62a5\u9519\uff1f": [-0.02343636378645897, 0.006923801265656948, 0.028905369341373444, 0.11132793873548508, -0.0946657657623291, -0.06616589426994324, -0.030776195228099823, 0.08048880100250244, 0.013243059627711773, 0.12122340500354767, 0.004752214532345533, 0.03674623742699623, 0.008865776471793652, 0.05915163829922676, -0.006465352140367031, 0.04105827957391739, 0.1432071328163147, 0.052171967923641205, -0.06442546099424362, 0.03729758411645889, 0.012160176411271095, 0.044103823602199554, 0.06051936000585556, -0.05816498398780823, -0.041809964925050735, 0.0809902548789978, -0.09399723261594772, 0.011123943142592907, -0.008832345716655254, 0.07334496825933456, 0.0011294465512037277, -0.03372674062848091, -0.11565466225147247, 0.07446353137493134, -0.052677933126688004, -0.004289643839001656, -0.016116628423333168, 0.17939895391464233, -0.08101699501276016, -0.017646588385105133, 0.1327410191297531, 0.014113182201981544, -0.0129903769120574, 0.12390580773353577, 0.020412512123584747, -0.06885288655757904, -0.12162512540817261, -0.01817145198583603, 0.04181545600295067, 0.019775573164224625, -0.045651182532310486, 0.07317253947257996, -0.013355311937630177, -0.08234892040491104, -0.04643624648451805, 0.02456727623939514, 0.04585721343755722, 0.03507300838828087, 0.08070477098226547, -0.012644816190004349, -0.009217945858836174, 0.04440753534436226, -0.040754396468400955, -0.019951213151216507, -0.09761384129524231, -0.0661977007985115, -0.011207452043890953, -0.10689209401607513, -0.04011192172765732, -0.06829731166362762, -0.02727348916232586, 0.021273702383041382, -0.05795203894376755, 0.014419490471482277, 0.11623817682266235, 0.02956041507422924, -0.005438318941742182, -0.050498008728027344, -0.08984412997961044, 0.048112258315086365, -0.022472042590379715, 0.015553511679172516, 0.07999162375926971, -0.022553231567144394, -0.05642947927117348, 0.041105929762125015, -0.1103133112192154, -0.0008316522580571473, -0.007127071265131235, 0.07301201671361923, -0.0471949465572834, 0.03672129660844803, -0.11884866654872894, 0.011236689984798431, 0.0804668590426445, -0.031337663531303406, -0.07408154755830765, -0.01187309343367815, -0.0963466539978981, 0.04149709641933441, 0.04741298407316208, 0.028447741642594337, -0.02916826121509075, -0.04559751972556114, 0.00815142784267664, -0.08947508037090302, 0.07958067208528519, 0.045532260090112686, 0.010659448802471161, 0.07388534396886826, 0.01659214496612549, -0.043944817036390305, 0.00443017203360796, -0.050225578248500824, 0.019292643293738365, -0.0017222483875229955, -0.029207753017544746, -0.03991039842367172, -0.11582062393426895, 0.07728703320026398, 0.1566724330186844, -0.022129684686660767, 0.04295176640152931, -0.009331324137747288, 0.005783025175333023, 0.019139660522341728, 0.05395304411649704, -0.07831531018018723, -0.10041707754135132, -0.04746818169951439, 0.08369708061218262, -0.068232461810112, 0.1362399160861969, -0.09602919965982437, -0.0502893291413784, 0.1111503466963768, -0.10648905485868454, 0.013897105120122433, -0.041754692792892456, 0.11504678428173065, 0.019193297252058983, -0.11936956644058228, 0.0672055035829544, -0.011008776724338531, 0.08285292237997055, 0.0472215972840786, -0.10466192662715912, -0.08487750589847565, -0.0020005509722977877, -0.017328176647424698, 0.1329641044139862, -0.051514364778995514, 0.001520206918939948, 0.019163625314831734, 0.012241794727742672, 0.016053512692451477, -0.026240477338433266, -0.04712843522429466, -0.025465700775384903, -0.09808804094791412, 0.004591745790094137, -0.040146954357624054, 0.09297288954257965, -0.018215052783489227, -0.002544824033975601, 0.00013467669486999512, 0.07313036173582077, -0.03285801410675049, -0.03392365947365761, -0.03838735446333885, -0.02738151326775551, 0.0475052148103714, -0.010982396081089973, -0.06414665281772614, 0.011360500007867813, 0.01592089980840683, 0.0534687265753746, -0.041846051812171936, 0.04346732795238495, 0.009362390264868736, 0.026864254847168922, -0.08385622501373291, -0.054493825882673264, -0.030884133651852608, 0.0822455883026123, 0.021243667230010033, 0.03512730076909065, 0.02569890394806862, 0.03361530229449272, -0.1360061764717102, -0.033663559705019, -0.01478147879242897, 0.03949069231748581, 0.07189290225505829, 0.04551379755139351, 0.027822893112897873, -0.04373413324356079, -0.03357808664441109, 0.03948281705379486, 0.004689662717282772, -0.0013644146965816617, 0.08049561083316803, 0.03667663410305977, -0.02630653604865074, -0.024775464087724686, -0.052349403500556946, -0.07107402384281158, -0.08532381802797318, -0.05928252637386322, -0.002115339506417513, 0.05506327748298645, 0.0932370126247406, -0.03498702868819237, -0.03242391720414162, -0.08829512447118759, 0.0013807592913508415, 0.11598394066095352, 0.05515360087156296, 0.08831991255283356, -0.0659046396613121, 0.105258509516716, -0.0014129960909485817, 0.039495740085840225, -0.06192919239401817, -0.05105358362197876, -0.01998116821050644, 0.002267454518005252, -0.09942833334207535, -0.012034453451633453, 0.04214692860841751, -0.025231078267097473, 0.08696261793375015, -0.009735984727740288, 0.08463354408740997, -0.06280093640089035, 0.07207416743040085, -0.10330796986818314, -0.07597344368696213, 0.08361239731311798, 0.04313233494758606, -0.09138572216033936, 0.07134614884853363, -0.09282151609659195, 0.029680846258997917, -0.0686856061220169, 0.010625721886754036, 0.05241797864437103, 0.057758964598178864, -0.03248406946659088, 0.0424775630235672, 0.05644557252526283, 0.05622997134923935, -0.041426725685596466, 0.008852728642523289, -0.04678471013903618, 0.05703872814774513, 0.06655559688806534, 0.0010407898807898164, 0.07483300566673279, 0.07662781327962875, 0.01935795694589615, 0.09418186545372009, -0.1590295135974884, 0.007089389953762293, -0.020996931940317154, -0.008830190636217594, 0.09742213785648346, -0.0651790052652359, 0.0836702361702919, -0.12045197188854218, 0.024314189329743385, 0.08045969903469086, -0.02663748897612095, 0.054587043821811676, 0.17771907150745392, 0.0863717719912529, -0.03803743049502373, -0.0820518359541893, 0.06667465716600418, -0.07988885045051575, -0.025859028100967407, 0.014556143432855606, 0.0055682118982076645, 0.019292309880256653, 0.08475766330957413, -0.018805483356118202, 0.03994551673531532, 0.03150760754942894, -0.01391451247036457, 0.08875424414873123, -0.006005743984133005, 0.053040511906147, -0.1308015137910843, -0.014547856524586678, -0.017833469435572624, 0.12797245383262634, 0.03158769756555557, -0.00692780502140522, 0.02608107030391693, 0.05997708812355995, -0.07963815331459045, -0.02226964570581913, 0.07428894937038422, -0.09316720813512802, 0.007060576230287552, -0.0019281948916614056, -0.11711903661489487, 0.04522841423749924, 0.03880509361624718, 0.0487464964389801, 0.028057625517249107, 0.09927003085613251, 0.058566585183143616, 0.06887723505496979, -0.08827854692935944, -0.11199453473091125, 0.001813761773519218, -0.09296222776174545, 0.027491021901369095, -0.037021659314632416, 0.0410657674074173, -0.12808015942573547, -0.008887575007975101, 0.04411054775118828, 0.037044085562229156, -0.06537551432847977, 0.05314970016479492, 0.02754361741244793, -0.042010799050331116, -0.05941081792116165, 0.08270309865474701, -0.04055959731340408, 0.12465611100196838, 0.09718981385231018, -0.011222012341022491, -0.132607564330101, -0.007166948169469833, 0.060661911964416504, -0.10068423300981522, 0.09259917587041855, 0.03455118089914322, -0.003745290683582425, -0.00526491180062294, -0.07094152271747589, 0.12321566045284271, -0.07330790162086487, 0.09433560818433762, 0.06838196516036987, 0.0049870735965669155, -0.03656015545129776, -0.006932023912668228, 0.02328319475054741, 0.013502280227839947, 0.004745704587548971, 0.02514454536139965, -0.16243579983711243, -0.07955574244260788, -0.04752429574728012, 0.08321887254714966, 0.042129989713430405, 0.019055377691984177, -0.11289366334676743, -0.006682734005153179, -0.0793454498052597, 0.08899413049221039, -0.06354238092899323, 0.006556195672601461, 0.022565117105841637, 0.0639796182513237, -0.038384709507226944, -0.08360213786363602, 0.11158737540245056, 0.11337733268737793, 0.0406600721180439, 0.020168215036392212, -0.0664101243019104, -0.08717960119247437, 0.08393926173448563, -0.10278838872909546, -0.06047961488366127, 0.03817806392908096, 0.07896487414836884, -0.1896231472492218, 0.03373176231980324], "\u5728Ascend310\u786c\u4ef6\u5e73\u53f0\u5b89\u88c5\u4e86MindSpore1.3\u7248\u672c\uff0c\u8fd0\u884cmindspore_serving\u4e2d\u7684`add_model.py`\u6837\u4f8b\u51fa\u73b0\u62a5\u9519\uff1f": [-0.007085374090820551, 0.05710180103778839, -0.00573601434007287, 0.03288344293832779, -0.05236385390162468, -0.057757508009672165, 0.06837204843759537, 0.04478027671575546, -0.06305837631225586, 0.06779177486896515, -0.013744600117206573, 0.033264074474573135, 0.039087191224098206, 0.005369014572352171, -0.06498511880636215, 0.060812629759311676, 0.15748833119869232, -0.032844625413417816, 0.00756324827671051, -0.026944980025291443, 0.01702081970870495, 0.04395283758640289, 0.04490961134433746, -0.03274790942668915, 0.04149862378835678, 0.07814107090234756, -0.09214223176240921, 0.029284484684467316, 0.003950024023652077, 0.06412475556135178, 0.08611761778593063, 0.06586825847625732, -0.10767772048711777, -0.013072175905108452, -0.07799351215362549, -0.04393143951892853, -0.02584182284772396, 0.11479978263378143, -0.042119648307561874, -0.06497624516487122, 0.022993378341197968, 0.020940914750099182, 0.005336986389011145, 0.12278412282466888, 0.00015708431601524353, -0.016730422154068947, -0.1901121884584427, -0.028731398284435272, 0.029081344604492188, 0.059821054339408875, -0.10608980804681778, 0.07518638670444489, 0.015380682423710823, 0.05393466353416443, -0.01827179081737995, -0.007388815749436617, 0.03197447955608368, -0.02771713212132454, 0.038600195199251175, -0.04514111950993538, 0.02004930190742016, -0.0007238386897370219, -0.09655404090881348, -0.002205463359132409, -0.12417052686214447, -0.016204562038183212, -0.07036691904067993, -0.035678111016750336, -0.013346522115170956, -0.002393464557826519, -0.12332940846681595, 0.02874809503555298, -0.01810341514647007, 0.08735451102256775, 0.017443934455513954, 0.07102584838867188, -0.010417485609650612, 0.04354572668671608, -0.03158601000905037, 0.0703171119093895, 0.03150298073887825, 0.08742160350084305, 0.016275707632303238, -0.037486352026462555, -0.07211912423372269, -0.026490360498428345, -0.027431562542915344, 0.028096770867705345, -0.011860198341310024, 0.12122774869203568, 0.0018619659822434187, -0.04159264639019966, -0.14742308855056763, 0.05619019642472267, 0.0808463841676712, -0.020095515996217728, -0.06908773630857468, -0.06251811981201172, -0.1725059300661087, -0.028386767953634262, 0.02870645746588707, 0.005752025172114372, -0.028184840455651283, 0.02711625210940838, 0.0045486693270504475, -0.13266682624816895, 0.07728282362222672, 0.04180113226175308, 0.020670821890234947, 0.018534600734710693, 0.11046957224607468, -0.030262622982263565, 0.0681629329919815, 0.00918964110314846, 0.010219322517514229, 0.06254749745130539, -0.010802135802805424, -0.017663586884737015, -0.04277747496962547, 0.13470126688480377, 0.08139011263847351, -0.02692703902721405, 0.010273270308971405, 0.02012941800057888, -0.006023933179676533, -0.02649892121553421, 0.0525338277220726, -0.08848997950553894, -0.05179698392748833, -0.09210588037967682, 0.15167385339736938, -0.01940702088177204, 0.10322359204292297, -0.04866510257124901, -0.14219236373901367, 0.1159740537405014, -0.08132948726415634, -0.01666431874036789, 0.014800330623984337, 0.11347618699073792, 0.032911598682403564, -0.10903214663267136, 0.07113439589738846, -0.06861280649900436, 0.11004258692264557, 0.0033957716077566147, -0.06433303654193878, -0.16931426525115967, -0.07089266180992126, -0.06218964606523514, 0.07753174006938934, -0.010125799104571342, -0.03321852907538414, 0.0827665701508522, 0.0020933046471327543, 0.11191339045763016, -0.006346478592604399, -0.03351782634854317, 0.029924677684903145, -0.037180256098508835, -0.008448182605206966, -0.008320207707583904, 0.02810869738459587, 0.002604015404358506, -0.016281595453619957, 0.02370700240135193, 0.01878523640334606, -0.02963392063975334, -0.0550864115357399, -0.05413105711340904, 0.008417990058660507, -0.03325064107775688, -0.09189864993095398, -0.051651857793331146, -0.02002597227692604, 0.007623405661433935, 0.0747261494398117, -0.12384083122015, -0.03509761020541191, -0.08434752374887466, 0.11659397184848785, -0.12831072509288788, -0.023311015218496323, -0.08889138698577881, 0.037204399704933167, 0.044283635914325714, 0.07424649596214294, 0.03082144819200039, 0.17453326284885406, -0.16487523913383484, -0.04357583820819855, -0.03289111703634262, 0.030279507860541344, 0.11056771129369736, -0.008493230678141117, 0.0018111931858584285, -0.07236643135547638, -0.032708022743463516, -0.016074413433670998, -0.010251415893435478, -0.009332218207418919, -0.007699139881879091, -0.002521323272958398, 0.03358681499958038, 0.01962915249168873, 0.015164243057370186, -0.07051774859428406, -0.10940031707286835, 0.03768983855843544, -0.04982569441199303, 0.10401081293821335, 0.057301949709653854, 0.021051257848739624, -0.04939842224121094, -0.13438482582569122, -0.01155094988644123, 0.07910580933094025, 0.0710662379860878, 0.03547120839357376, -0.02316737361252308, -0.03779128938913345, 0.011320384219288826, -0.029427114874124527, -0.116902656853199, -0.1128787100315094, 0.009884826838970184, -0.06313740462064743, -0.07543786615133286, -0.029539307579398155, 0.09008494019508362, -0.08382895588874817, 0.11654281616210938, 0.06067170202732086, 0.17205341160297394, -0.047170866280794144, 0.08220125734806061, -0.06152036041021347, -0.01983410120010376, 0.06643731147050858, 0.034209299832582474, -0.12328070402145386, 0.062223173677921295, -0.062016792595386505, -0.07026513665914536, -0.08964952826499939, 0.0992787554860115, 0.07620778679847717, 0.03518742695450783, 0.03678067773580551, 0.011324958875775337, 0.031165819615125656, 0.012679697014391422, -0.07687117904424667, 0.0388927198946476, -0.051885414868593216, 0.024568254128098488, 0.07935349643230438, -0.07655595242977142, 0.01591796800494194, 0.07434879243373871, 0.06819921731948853, 0.01436607725918293, -0.11236046254634857, -0.05010529235005379, -0.04711659625172615, 0.024668054655194283, 0.062460798770189285, -0.053245995193719864, 0.027989868074655533, -0.0777713805437088, 0.03967516869306564, 0.07407928258180618, -0.051405176520347595, 0.01856798492372036, 0.13299286365509033, 0.07715499401092529, 0.036290086805820465, -0.18246108293533325, 0.008140365593135357, 0.08880685269832611, -0.008149830624461174, 0.05238095298409462, -0.021088052541017532, -0.01352327223867178, 0.12527216970920563, -0.06902595609426498, 0.054182201623916626, 0.03593220189213753, 0.015452765859663486, 0.06977904587984085, -0.07868284732103348, -0.015892982482910156, -0.05883578956127167, -0.014707119204103947, -0.03314550593495369, 0.09938939660787582, 0.06089319288730621, 0.06262978911399841, -0.0031387628987431526, 0.12254555523395538, -0.042870644479990005, -0.0028758826665580273, 0.13234543800354004, -0.05769260227680206, 0.03531760349869728, 0.016912776976823807, -0.0695723444223404, 0.10472013801336288, 0.03677626699209213, 0.014248853549361229, 0.04378492385149002, 0.09059195220470428, 0.062424447387456894, 0.10514595359563828, -0.09025755524635315, -0.04556988179683685, 0.05124186724424362, -0.13961279392242432, 0.0403011254966259, -0.04503056779503822, 0.02273898385465145, -0.020503269508481026, -0.044708624482154846, 0.05929107591509819, 0.06710619479417801, -0.049128834158182144, 0.07056118547916412, 0.08697634190320969, -0.020490815863013268, -0.0773843452334404, 0.024693574756383896, -0.023078933358192444, 0.09471061080694199, 0.0062287370674312115, 0.04581333324313164, -0.14037610590457916, 0.09652896970510483, 0.02145376428961754, 0.010061945766210556, 0.04343003034591675, 0.08895505964756012, -0.08305993676185608, 0.01584707200527191, -0.07393967360258102, 0.08342966437339783, -0.017397837713360786, 0.09450266510248184, 0.034413892775774, -0.03857064247131348, -0.10209514945745468, 0.02951083332300186, -0.06073269248008728, 0.049369096755981445, -0.0418223962187767, -0.044045425951480865, -0.13966083526611328, -0.09695443511009216, -0.009241098538041115, -0.005996746011078358, 0.026342524215579033, -0.04847227782011032, -0.03916161134839058, -0.07441800832748413, -0.036095235496759415, 0.015873543918132782, -0.02823372557759285, 0.05573907122015953, -0.04340652376413345, 0.06251488626003265, 0.002750296611338854, -0.06677108258008957, 0.12156106531620026, 0.14862829446792603, 0.06195786967873573, -0.03596977889537811, -0.02616630494594574, -0.1349259465932846, 0.06130275875329971, 0.014487501233816147, -0.07637861371040344, 0.008612257428467274, 0.039206281304359436, -0.14572253823280334, 0.03205360472202301], "\u7f16\u8bd1\u5e94\u7528\u65f6\u62a5\u9519`/usr/bin/ld: warning: libxxx.so\uff0c needed by libmindspore.so\uff0c not found`\u600e\u4e48\u529e\uff1f": [-0.0655604898929596, 0.151948019862175, 0.04401295632123947, 0.052568379789590836, -0.03492692485451698, 0.01980861835181713, 0.0292355939745903, 0.05917401984333992, -0.06983309984207153, 0.05948461964726448, -0.022803684696555138, 0.052282001823186874, 0.03652380034327507, 0.06343402713537216, -0.05390795320272446, 0.1049247533082962, 0.11506916582584381, -0.007740910165011883, -0.028149142861366272, 0.059715576469898224, 0.027675071731209755, -0.05586222559213638, 0.0890907421708107, 0.02221798151731491, -0.0396500863134861, 0.05653053894639015, -0.047134965658187866, -0.03534138575196266, 0.012370781973004341, 0.004337112419307232, 0.06660744547843933, -0.008157094940543175, -0.1328301727771759, 0.0297500342130661, -0.026747360825538635, -0.09987936913967133, -0.019599001854658127, 0.08287201821804047, -0.0038895411416888237, -0.0003835931420326233, 0.0015081900637596846, 0.03216959908604622, -0.03868383169174194, 0.08546295762062073, -0.04899575561285019, -0.04343871772289276, -0.13695496320724487, -0.0005867266445420682, 0.004967506974935532, -0.05876842513680458, -0.006468982435762882, 0.05513261631131172, -0.019239241257309914, 0.01702793687582016, -0.029352594166994095, 0.019151844084262848, 0.06306587904691696, -0.04486441984772682, 0.03873874247074127, -0.0760810375213623, 0.019602399319410324, 0.00036813318729400635, -0.006766488775610924, 0.03740958124399185, -0.1052393838763237, 0.05165120214223862, -0.031422995030879974, -0.06935352087020874, -0.05441370606422424, 0.010399957187473774, -0.058423496782779694, -0.03284671902656555, -0.002454727655276656, 0.13784921169281006, -0.03944607079029083, 0.020871605724096298, -0.015679821372032166, -0.022390972822904587, -0.0011943815043196082, 0.004244308453053236, -0.00939785223454237, 0.13041169941425323, 0.02876509726047516, -0.04447098448872566, -0.10928001254796982, -0.030214862897992134, -0.06351279467344284, 0.029495593160390854, -0.08946940302848816, 0.05500638484954834, -0.014004219323396683, -0.010926327668130398, -0.13628290593624115, 0.07659090310335159, 0.07511680573225021, -0.038540396839380264, -0.039336346089839935, 0.061259832233190536, -0.13127174973487854, -0.011273307725787163, 0.0958772823214531, -0.03709402307868004, -0.05528345704078674, 0.03662360832095146, 0.000800229434389621, -0.11412857472896576, 0.09658496081829071, 0.03804173320531845, 0.01915302686393261, 0.0796419084072113, 0.09091587364673615, 0.06152670830488205, 0.0391809456050396, 0.007064709439873695, -0.028973061591386795, 0.03712968900799751, -0.01820473000407219, 0.012377169914543629, -0.09218557924032211, 0.10178656876087189, 0.13424250483512878, -0.01348377950489521, -0.0013468126999214292, 0.05522674322128296, 0.02930396795272827, -0.026348544284701347, 0.13820365071296692, -0.047133669257164, -0.11507761478424072, -0.07960084080696106, 0.13118863105773926, -0.05423480644822121, 0.18775245547294617, -0.17241787910461426, -0.10943716764450073, 0.1273738294839859, -0.01633552834391594, -0.05936121195554733, 0.04919195547699928, 0.13265685737133026, 0.0069917235523462296, -0.17295758426189423, 0.047573722898960114, 0.020288990810513496, 0.14086340367794037, 0.0615188330411911, -0.05035620555281639, -0.11360672116279602, 0.030085602775216103, -0.02965354174375534, 0.048566702753305435, 0.035399287939071655, 0.004086160566657782, 0.08394381403923035, 0.03383520245552063, 0.04028243571519852, -0.041141629219055176, 0.031215164810419083, -0.08878548443317413, 0.036543942987918854, -0.04918323829770088, 0.029120564460754395, 0.015100270509719849, 0.04258933663368225, -0.016895076259970665, -0.055273570120334625, 0.007627909071743488, -0.05361439660191536, -0.07398039847612381, -0.04886837676167488, -0.02840287610888481, 0.02323846146464348, -0.04591498523950577, -0.06709519028663635, 0.0908190906047821, -0.02381943352520466, 0.07494314759969711, -0.05545550584793091, -0.014099239371716976, 0.011954776011407375, 0.05537071079015732, -0.11692900210618973, -0.013094257563352585, -0.13142554461956024, 0.01930633932352066, 0.04658293351531029, 0.05650590360164642, 0.08022439479827881, 0.0883869081735611, -0.07536689937114716, -0.014770762994885445, 0.09246237576007843, 0.0018476236145943403, 0.09911663085222244, -0.03796098008751869, 0.07225553691387177, 0.024030309170484543, -0.003462829627096653, -0.03052871860563755, -0.009420573711395264, -0.061806850135326385, 0.06003795564174652, 0.0016271607019007206, 0.014137234538793564, -0.06025226041674614, -0.044737473130226135, -0.06669227033853531, -0.13966812193393707, 0.04618581756949425, 0.0337425097823143, 0.07906648516654968, -0.0028365140315145254, -0.09947291761636734, 0.036602988839149475, -0.0679529532790184, -0.014232402667403221, 0.11168797314167023, 0.06804458796977997, 0.02545415237545967, -0.07126740366220474, 0.08125418424606323, -0.007081691175699234, -0.01067178975790739, -0.0774017944931984, -0.1565282940864563, -0.024644875898957253, -0.03199414908885956, -0.13182614743709564, -0.04127338528633118, 0.09025830775499344, 0.0020384276285767555, 0.09678838402032852, 0.02081061340868473, 0.09324746578931808, -0.03138647973537445, 0.04134645685553551, -0.021372191607952118, -0.10539144277572632, 0.04843547195196152, -0.007112020626664162, -0.0035348760429769754, 0.048952940851449966, -0.04246628284454346, -0.07695033401250839, -0.03159108757972717, 0.06063803657889366, 0.05907139927148819, 0.06340430676937103, 0.007656601257622242, -0.015192472375929356, 0.057026948779821396, 0.014938678592443466, 0.04355273395776749, -0.029145967215299606, -0.028303205966949463, 0.10244299471378326, 0.0526285246014595, -0.07231029123067856, 0.013944031670689583, -0.01630852371454239, 0.035227708518505096, 0.042885761708021164, -0.03199663385748863, -0.016167547553777695, -0.04109156131744385, -0.08544095605611801, -0.019644109532237053, 0.03922215849161148, -0.06633096933364868, -0.11173217743635178, 0.028119437396526337, 0.04951515793800354, -0.05500480905175209, 0.047794125974178314, 0.13658644258975983, 0.03363162279129028, -0.024263715371489525, -0.11764967441558838, 0.028437748551368713, 0.05738569051027298, 0.0015477571869269013, 0.01037304475903511, 0.047976549714803696, 0.02933683805167675, 0.09906332194805145, -0.018758561462163925, -0.005507586523890495, -0.031538188457489014, -0.01877085119485855, 0.11701156944036484, -0.10454778373241425, 0.033016055822372437, -0.09546005725860596, 0.05147868022322655, 0.0063694133423268795, 0.061129286885261536, 0.017676575109362602, 0.07038775086402893, -0.025536218658089638, 0.02361861616373062, -0.023757053539156914, -0.025083836168050766, 0.11405263841152191, -0.12750612199306488, -0.05459752306342125, 0.020899668335914612, -0.03186514228582382, 0.0509418286383152, -0.05567518249154091, 0.03697752580046654, 0.08031065762042999, 0.09946662932634354, 0.06341813504695892, 0.07875432819128036, -0.08769514411687851, -0.039397161453962326, 0.09070582687854767, -0.12279170751571655, 0.058804214000701904, -0.09632009267807007, -0.02189573459327221, -0.0522681400179863, -0.015864619985222816, 0.058490969240665436, 0.060851000249385834, -0.0326092466711998, 0.0820021852850914, 0.05375757813453674, -0.020344270393252373, 0.01883285865187645, -0.011504835449159145, -0.11727659404277802, 0.09273693710565567, 0.035506926476955414, 0.018708549439907074, -0.13448841869831085, 0.1273203343153, 0.11696384102106094, 0.004186330828815699, 0.04471493884921074, 0.04403785988688469, -0.13689608871936798, -0.025253264233469963, -0.0916929543018341, 0.03728712722659111, -0.05609114468097687, 0.04219794273376465, 0.06762281060218811, 0.0066979737021028996, -0.046320654451847076, 0.02661428228020668, -0.055923786014318466, 0.09065547585487366, 0.022315358743071556, -0.009776677936315536, -0.14976751804351807, -0.06175518408417702, -0.0413048192858696, 0.02540893666446209, 0.0033489768393337727, -0.08060520142316818, 0.02199600078165531, -0.03449438884854317, -0.08024253696203232, 0.0589708536863327, -0.05983498692512512, 0.0004238076217006892, -0.015358689241111279, 0.055594682693481445, -0.02067721262574196, -0.07718809694051743, -0.0032402758952230215, 0.0841078981757164, 0.013757459819316864, -0.09634734690189362, -0.06116965413093567, -0.0944330245256424, 0.05334360525012016, -0.09096142649650574, -0.06898189336061478, 0.02316361665725708, 0.049986910074949265, -0.11291532218456268, -0.04627557098865509], "\u4f7f\u7528\u6607\u817e310\u8fdb\u884c\u63a8\u7406\u7684\u65f6\u5019\u600e\u4e48\u8bbe\u7f6e\u9ad8\u7cbe\u5ea6\u6216\u8005\u9ad8\u6027\u80fd\u6a21\u5f0f\uff1f": [0.025477798655629158, 0.09748966991901398, 0.03919054940342903, -0.010689540766179562, -0.09201914817094803, -0.06760487705469131, 0.02709481678903103, -0.023120105266571045, 0.01633702963590622, 0.03847840428352356, -0.003563102101907134, -0.03002985753118992, -0.027309488505125046, -0.0130039993673563, 0.01110289990901947, 0.10764060914516449, 0.05092647299170494, 0.04869042709469795, 5.665794014930725e-05, 0.019421542063355446, -0.04627915471792221, -0.0027398131787776947, -0.011586819775402546, -0.05696574226021767, 0.06624884158372879, 0.1649104654788971, -0.015422671101987362, -0.023212512955069542, 0.028940284624695778, 0.04055950045585632, 0.059525784105062485, -0.00538548082113266, -0.04604354873299599, 0.0002637133002281189, -0.05319219082593918, -0.03596750274300575, 0.05195976793766022, 0.09474727511405945, -0.02450357750058174, -0.023489687591791153, 0.08598228543996811, 0.06613416969776154, -0.02331191673874855, 0.08360128104686737, -0.06105417758226395, -0.051937833428382874, -0.18760089576244354, 0.024454239755868912, -0.030950769782066345, 0.06076497212052345, -0.13934892416000366, 0.10476351529359818, 0.04051855579018593, 0.02933155745267868, 0.025778288021683693, 0.03191740810871124, 0.10967577993869781, 0.03358718380331993, -0.038013484328985214, -0.038614749908447266, 0.04275503009557724, -0.03344835340976715, 0.04977848008275032, -0.00863158144056797, -0.12926746904850006, 0.049001578241586685, -0.09638884663581848, -0.04973600432276726, -0.06412359327077866, -0.06220409646630287, -0.014376729726791382, 0.02213769219815731, 0.006926807574927807, 0.039971306920051575, 0.046916186809539795, -0.017437592148780823, -0.03481752797961235, -0.046420618891716, 0.05641394853591919, 0.08373279124498367, 0.06859569996595383, 0.02546231634914875, 0.007795723620802164, -0.06411848962306976, -0.039942607283592224, -0.0723848044872284, -0.01211682241410017, 0.007873867638409138, -0.09356454759836197, 0.10313532501459122, -0.028307626023888588, -0.04519516974687576, -0.1326550841331482, 0.07025039941072464, -0.003092133905738592, -0.08010752499103546, -0.03457549214363098, 0.06347987055778503, -0.1745757758617401, 0.006510567851364613, 0.10238250344991684, -0.012810726650059223, -0.08342589437961578, 0.027146123349666595, -0.06901971995830536, -0.009134232066571712, 0.013483170419931412, 0.04283786937594414, 0.030625363811850548, 0.004147929605096579, 0.12954680621623993, 0.06798593699932098, 0.05389377847313881, 0.03632570803165436, -0.04438642039895058, -0.005377077031880617, -0.021459901705384254, -0.016835235059261322, -0.10473881661891937, 0.09603086858987808, 0.10708024352788925, -0.0490708127617836, 0.028322964906692505, 0.0877179354429245, -0.0008640873711556196, -0.0041557964868843555, 0.06289678812026978, -0.1400453895330429, -0.00565026281401515, -0.054646819829940796, 0.22960032522678375, -0.07301148772239685, 0.014109037816524506, -0.04868195205926895, -0.009945893660187721, 0.05168107524514198, -0.05077756941318512, 0.008386064320802689, 0.02418174035847187, 0.1160014271736145, 0.010035982355475426, -0.1675705760717392, 0.08722160756587982, 0.00012257322669029236, 0.16414552927017212, -0.039420656859874725, -0.09301332384347916, -0.07259202003479004, -0.07669293135404587, -0.02948641963303089, 0.060918085277080536, -0.010300987400114536, -0.061918385326862335, 0.0018070618389174342, -0.059849806129932404, 0.01300379354506731, 0.15039706230163574, 0.008740032091736794, -0.04660825803875923, -0.047617025673389435, -0.057799678295850754, -0.03467746451497078, 0.0739867314696312, -0.08520517498254776, -0.06961897015571594, 0.061369456350803375, -0.017293237149715424, -0.008495403453707695, -0.061548132449388504, 0.03697087615728378, -0.03666241839528084, 0.03248201310634613, -0.07312043756246567, -0.056484125554561615, -0.0016903954092413187, 0.09858077019453049, 0.004928073845803738, -0.08331138640642166, -0.019556129351258278, 0.006475689820945263, 0.05513060465455055, -0.06919337809085846, -0.11964094638824463, -0.021679935976862907, 0.028748810291290283, 0.012806721031665802, 0.05489899963140488, 0.08906105160713196, 0.1708306074142456, -0.034007225185632706, 0.06123201176524162, 0.0007316990522667766, -0.008011650294065475, 0.10759635269641876, -0.07337851822376251, -0.10538087040185928, -0.15033695101737976, -0.002695830073207617, 0.026623491197824478, 0.008281187154352665, 0.03002038598060608, 0.013520929031074047, -0.046873293817043304, -0.005193573422729969, -0.07961490750312805, 0.012737791985273361, -0.042267829179763794, -0.1092061847448349, -0.04020467773079872, 0.07174970209598541, 0.035089943557977676, 0.10723719000816345, 0.02869187667965889, -0.06133563071489334, -0.09586407244205475, -0.004877692554146051, 0.0561937615275383, 0.00517272436991334, 0.10734597593545914, -0.00654731085523963, 0.020638402551412582, -0.03064379282295704, 0.03876608610153198, -0.0913940891623497, -0.07191218435764313, -0.020473355427384377, -0.027214426547288895, -0.07065076380968094, 0.03459453582763672, -0.004822444170713425, -0.14238080382347107, 0.02776411920785904, 0.12283908575773239, 0.18986453115940094, -0.05077265202999115, 0.052496522665023804, -0.08892804384231567, -0.08172086626291275, -0.040970902889966965, -0.06859134137630463, -0.0118213826790452, 0.037608880549669266, -0.028160706162452698, -0.0982360690832138, -0.04754962399601936, 0.04771292954683304, 0.1290261447429657, 0.0669802874326706, 0.033458538353443146, -0.003148128045722842, 0.09475432336330414, -0.03131546452641487, 0.008183002471923828, -0.011058751493692398, 0.005381964147090912, 0.054359447211027145, 0.12641333043575287, -0.02221367135643959, -0.01859118789434433, 0.05949951335787773, 0.034574955701828, -0.0715000182390213, -0.14356768131256104, 0.023458728566765785, 0.025109292939305305, 0.04872327297925949, 0.1415911316871643, -0.044603608548641205, -0.07798779010772705, -0.04148843511939049, 0.12550556659698486, 0.06024321913719177, -0.07552768290042877, -0.01669219136238098, 0.16583095490932465, 0.07262611389160156, 0.08366477489471436, -0.16467614471912384, -0.011737954802811146, -0.05991484969854355, 0.00988314114511013, -0.0010306794429197907, 0.007085379678755999, 0.019498929381370544, 0.13881078362464905, 0.037772756069898605, 0.09000489860773087, 0.02071186527609825, 0.0022842062171548605, 0.15545111894607544, -0.017102837562561035, 0.05370170623064041, -0.049020081758499146, -0.024410951882600784, 0.04647697135806084, 0.15441426634788513, 0.010277809575200081, 0.06690070033073425, 0.020691553130745888, 0.13736380636692047, -0.0483190156519413, 0.047617457807064056, 0.041140832006931305, -0.03327276557683945, 0.0016720391577109694, 0.006918863859027624, 0.029417216777801514, -0.04776643589138985, 0.059488262981176376, 0.012852909974753857, 0.03559286892414093, 0.11301881074905396, 0.06016907840967178, 0.054467204958200455, -0.09135208278894424, -0.009361021220684052, 0.006304517854005098, -0.12268751114606857, 0.004671409260481596, -0.023832974955439568, -0.005079456605017185, -0.10239258408546448, 0.11915978789329529, 0.06386800110340118, 0.12650449573993683, -0.09085504710674286, 0.07170126587152481, 0.11313553899526596, -0.03187436982989311, -0.0850462093949318, -0.022146230563521385, 0.0012818120885640383, 0.044677119702100754, 0.050484973937273026, 0.017638657242059708, -0.1224052906036377, 0.05013537406921387, 0.07663433998823166, 0.010497834533452988, 0.06009819731116295, -0.008395330980420113, -0.08389149606227875, -0.03865776211023331, -0.08461089432239532, 0.12359907478094101, -0.06278305500745773, 0.08203873783349991, 0.005555900279432535, -0.04411323368549347, -0.028462614864110947, 0.051295287907123566, 0.026285963132977486, 0.05391760170459747, -0.1016925573348999, -0.001280156197026372, -0.12963010370731354, -0.0671243667602539, 0.0011078561656177044, 0.03980742394924164, -0.011612271890044212, -0.007797180209308863, -0.019296232610940933, 0.02689019776880741, -0.05179186165332794, 0.011446281336247921, -0.000494789273943752, 0.06816774606704712, -0.03641679510474205, -0.04668993875384331, 0.04787451773881912, -0.07324928790330887, 0.06731174886226654, 0.031460922211408615, 0.05595502257347107, -0.029681112617254257, -0.03192886710166931, -0.040233440697193146, 0.08407752215862274, -0.05397655814886093, -0.0757206603884697, -0.007484709843993187, 0.06254450976848602, -0.12260237336158752, 0.005645460914820433], "AIPP\u6587\u4ef6\u600e\u4e48\u914d\u7f6e\uff1f": [-0.0750885158777237, 0.06072470173239708, -0.015670783817768097, 0.10863398015499115, 0.00977736059576273, -0.04511392116546631, -0.02450725808739662, 0.04510669782757759, -0.012754886411130428, 0.03588937222957611, -0.03357011452317238, 0.019898192957043648, -0.0011140904389321804, 0.02924325317144394, -0.044887475669384, 0.0862472727894783, 0.08569660037755966, 0.06350959092378616, -0.038870275020599365, 0.043428514152765274, 0.003266050945967436, 0.03636777400970459, 0.055006325244903564, 0.004760249052196741, 0.011023834347724915, 0.09300808608531952, 0.03240149840712547, -0.0019781740847975016, -0.011071119457483292, 0.053113941103219986, 0.043224699795246124, -0.007717104163020849, -0.14629541337490082, 0.09285798668861389, -0.11512421071529388, -0.03710692375898361, -0.029818126931786537, 0.14600791037082672, -0.04902930557727814, -0.01568872109055519, 0.07007575780153275, 0.06605794280767441, -0.037663403898477554, 0.061540115624666214, -0.011115295812487602, -0.00040354952216148376, -0.1283474564552307, 0.013953497633337975, 0.056988317519426346, -0.004401335027068853, -0.06815708428621292, 0.09825780242681503, -0.03663260117173195, -0.09165821969509125, -0.03465165197849274, 0.015159106813371181, 0.013765256851911545, 0.0023697868455201387, 0.026106296107172966, -0.021550755947828293, 0.05427028238773346, 0.0002166852355003357, -0.01794610545039177, -0.060014184564352036, -0.13076220452785492, -0.017394863069057465, -0.060034845024347305, -0.1230204850435257, 0.044362664222717285, -0.02596130594611168, -0.0443563237786293, -0.08065085113048553, -0.029524601995944977, 0.10624006390571594, 0.019029583781957626, -0.021253492683172226, -0.049533579498529434, -0.014590268954634666, 0.0051538171246647835, 0.06570325046777725, 0.0466785728931427, 0.0555046983063221, 0.057293932884931564, -0.12126360088586807, -0.10170935839414597, 0.008544438518583775, -0.07619322836399078, 0.019574575126171112, -0.0328659787774086, 0.018518490716814995, 0.030874138697981834, 0.0480315200984478, -0.1510375440120697, 0.0247720405459404, 0.12225038558244705, -0.05077623575925827, -0.09673923254013062, -0.0037810099311172962, -0.10569746792316437, -0.007676121778786182, 0.09004656225442886, -0.03380072861909866, -0.018666310235857964, -0.0538097620010376, 0.09529662877321243, -0.1071612685918808, 0.03121606633067131, -0.0312100388109684, 0.04679271578788757, 0.03793210908770561, 0.06619081646203995, -0.002825126051902771, 0.0385342538356781, 0.0306717436760664, 0.0038795536383986473, 0.026031678542494774, -0.051495686173439026, 0.01166040450334549, -0.060713574290275574, 0.13799582421779633, 0.12332692742347717, -0.08088408410549164, 0.03699684143066406, 0.0036760850343853235, 0.043382734060287476, -0.04550430178642273, 0.11306732892990112, -0.06727243959903717, -0.12351389229297638, -0.0717836543917656, 0.10034602135419846, -0.04954873397946358, 0.08501464128494263, -0.10469722002744675, -0.11685055494308472, 0.0274941548705101, -0.0275021530687809, -0.0004079453647136688, 0.05239139869809151, 0.12862274050712585, 0.01850355789065361, -0.22102251648902893, 0.07085520774126053, 0.029959028586745262, 0.06922336667776108, 0.08788502961397171, -0.07337138801813126, -0.15181566774845123, 0.010508855804800987, -0.027367373928427696, 0.15000244975090027, -0.021682986989617348, -0.04477280378341675, 0.09129239618778229, -0.024631423875689507, -0.05051629617810249, -0.015684986487030983, 0.0014849727740511298, 0.053474001586437225, -0.08920766413211823, -0.11039166152477264, -0.0006659518694505095, 0.020413750782608986, 0.026647772639989853, -0.09772217273712158, 0.04324872046709061, 0.054936014115810394, -0.008852245286107063, -0.060767970979213715, -0.002746081445366144, -0.00027544237673282623, 0.03302837163209915, -0.042339906096458435, -0.07753249257802963, 0.056877538561820984, 0.02716272696852684, 0.09325597435235977, -0.062291067093610764, 0.004915160592645407, -0.009401848539710045, 0.05768038332462311, -0.08060397207736969, -0.03487883135676384, -0.13925042748451233, 0.026060350239276886, -0.013391826301813126, 0.07619272172451019, 0.06440980732440948, 0.1166323646903038, -0.08606060594320297, -0.02218162640929222, 0.04360664635896683, 0.04111352935433388, 0.06429188698530197, -0.041501112282276154, -0.03674999624490738, -0.046994540840387344, -0.03519856557250023, 0.04225093871355057, -0.014311392791569233, -0.013584251515567303, 0.08137649297714233, 0.03817109018564224, -0.02969999425113201, -0.014338409528136253, -0.014958767220377922, -0.06680083274841309, -0.10866755247116089, 0.019574914127588272, 0.06313084065914154, 0.08774793148040771, 0.016723869368433952, -0.09716428816318512, -0.014755967073142529, -0.10954040288925171, -0.07265482097864151, 0.10658809542655945, 0.05305697023868561, 0.08558771759271622, -0.03244660049676895, 0.08373460173606873, 0.04816213995218277, -0.016307275742292404, -0.07743033021688461, -0.04076188802719116, -0.04940001666545868, -0.05275336652994156, -0.1075781062245369, 0.021405814215540886, 0.06661500781774521, -0.05364934727549553, 0.0890515148639679, 0.02000270038843155, 0.12073159217834473, 0.01890111155807972, 0.07253473252058029, -0.08856531232595444, -0.05843779444694519, 0.040536265820264816, 0.030423490330576897, -0.08121825009584427, 0.09947320073843002, -0.11923082917928696, -0.05318545550107956, -0.08538519591093063, 0.06535571813583374, 0.08902112394571304, 0.121747687458992, -0.024370653554797173, -0.07300987839698792, 0.02037246897816658, -0.04288782179355621, -0.057267166674137115, -0.058023639023303986, -0.03939636051654816, 0.040575020015239716, 0.04846567288041115, -0.005877723451703787, 0.052869535982608795, 0.024979818612337112, 0.056635282933712006, -0.001957910368219018, -0.032195258885622025, -0.03561383858323097, 0.014690200798213482, -0.051256611943244934, 0.04387567192316055, -0.013453955762088299, -0.02541114017367363, -0.08982832729816437, 0.03517686948180199, 0.026210404932498932, -0.0405534952878952, -0.03422430902719498, 0.08713971078395844, 0.05416486784815788, -0.021668219938874245, -0.021113594993948936, 0.001142988447099924, -0.0069208270870149136, 0.02199683152139187, 0.027397699654102325, 0.026592830196022987, -0.04158050939440727, 0.08747804164886475, -0.021732497960329056, 0.05642544478178024, 0.04489661753177643, 0.017990900203585625, 0.1995398998260498, 0.01727738417685032, -0.020518310368061066, -0.05665956437587738, 0.029351836070418358, 0.04735375940799713, 0.10042926669120789, -0.00961223617196083, 0.02000008523464203, -0.03809276223182678, 0.07669486850500107, -0.026118079200387, -0.0448392853140831, 0.09911414235830307, -0.06591546535491943, -0.06414158642292023, -0.01453111320734024, -0.08913329243659973, -0.008054728619754314, 0.020407548174262047, -0.0303352028131485, 0.08285962045192719, 0.08737026154994965, 0.0320422537624836, 0.08095844089984894, -0.06574982404708862, 0.014464681036770344, 0.048115137964487076, -0.12827655673027039, 0.018404610455036163, -0.06417331844568253, -0.029350146651268005, -0.1185632050037384, 0.031951069831848145, 0.10292331874370575, 0.013855841010808945, -0.05860840156674385, 0.05911198630928993, 0.013514898717403412, -0.004295204300433397, -0.02885015495121479, -0.017313944175839424, -0.06296878308057785, 0.056369781494140625, 0.14518702030181885, 0.02831730619072914, -0.13941197097301483, 0.06455380469560623, 0.04658305272459984, -0.05488332733511925, 0.08292306959629059, 0.07264844328165054, -0.0552406907081604, -0.004217454232275486, -0.017266398295760155, 0.09900709241628647, -0.08315962553024292, 0.09830490499734879, 0.07551542669534683, 0.047337114810943604, -0.039615027606487274, 0.07127469033002853, -0.014158476144075394, 0.05029215291142464, -0.05411563441157341, -0.012557211332023144, -0.0730573982000351, -0.06329391151666641, 0.005447423085570335, 0.06514846533536911, -0.03274868056178093, 0.039848558604717255, -0.04143568128347397, -0.07461155951023102, -0.11184797435998917, 0.05707003176212311, -0.07551510632038116, 0.048446111381053925, 0.007561433129012585, 0.029691720381379128, 0.041835859417915344, -0.08089162409305573, 0.01510982308536768, 0.09356647729873657, 0.014754733070731163, -0.04487789422273636, -0.06900525838136673, -0.05855126678943634, 0.07212474942207336, -0.08595364540815353, -0.055156175047159195, 0.0918281152844429, 0.007794214878231287, -0.15120233595371246, -0.02918814681470394], "\u600e\u4e48\u8bbe\u7f6e\u6607\u817e310\u63a8\u7406\u8fc7\u7a0b\u4e2d\u7684\u65e5\u5fd7\u7ea7\u522b\uff1f": [0.015086466446518898, 0.06835402548313141, 0.08846589922904968, 0.05923496186733246, -0.12078101933002472, -0.14825265109539032, -0.019373636692762375, 0.026904379948973656, 0.06482410430908203, -0.015804408118128777, 0.0042277611792087555, -0.013539157807826996, 0.03958740830421448, 0.04646952450275421, -0.026570379734039307, 0.0883500725030899, 0.05323914438486099, -0.0219208262860775, 0.033811017870903015, 0.05919656902551651, -0.00038119032979011536, 0.023551002144813538, -0.01556918490678072, -0.07760357856750488, 0.04443151876330376, 0.12429697811603546, -0.030466949567198753, -0.0038219131529331207, 0.07399723678827286, 0.0528855063021183, 0.10946294665336609, 0.007591144647449255, -0.060763414949178696, -0.0646648108959198, -0.04611266776919365, -0.13125550746917725, 0.02310733124613762, 0.05963961035013199, -0.025919649749994278, -0.03612973541021347, 0.04415077716112137, 0.007520969025790691, -0.016085950657725334, 0.11141256988048553, -0.05510836839675903, -0.001905140932649374, -0.16291400790214539, -0.037048593163490295, -0.02745121344923973, 0.050172917544841766, -0.09852892905473709, 0.06767737120389938, 0.029060810804367065, 0.023576240986585617, -0.05216313153505325, 0.02135569229722023, 0.057269204407930374, -0.05356932431459427, 0.023494405671954155, 0.007266650907695293, 0.012694377452135086, 0.05334455519914627, 0.011226581409573555, 0.0024172840639948845, -0.09921248257160187, 1.6942620277404785e-05, -0.08490370959043503, -0.09215948730707169, -0.005290004424750805, -0.017382945865392685, -0.07054510712623596, -0.02498246170580387, 0.0542290061712265, 0.025557201355695724, 0.06475134938955307, -0.044847581535577774, 0.0015007022302597761, 0.0010218728566542268, 0.029631033539772034, 0.10360347479581833, 0.05758314207196236, 0.03261725977063179, 0.037699490785598755, -0.07447890937328339, -0.08609318733215332, -0.07143420726060867, -0.014562724158167839, -0.00581488898023963, -0.0701979324221611, 0.07708680629730225, -0.01150764711201191, -0.12049461156129837, -0.11778736114501953, 0.031065035611391068, -0.010097429156303406, -0.04673175513744354, -0.1057901456952095, 0.03833628445863724, -0.1163414940237999, -0.012336509302258492, 0.08944077789783478, -0.004816809669137001, -0.10705840587615967, -0.022582348436117172, -0.014965696260333061, -0.09187345951795578, 0.033357273787260056, 0.041697364300489426, -0.02493228390812874, 0.03770628571510315, 0.08930289000272751, 0.019493931904435158, 0.03810187801718712, 0.030884744599461555, -0.032916028052568436, 0.03468259423971176, -0.02729029580950737, -0.07502268254756927, -0.07898124307394028, 0.04363584890961647, 0.0702829509973526, 0.0029755071736872196, 0.09325055032968521, 0.04442204162478447, 0.03388294577598572, -0.003125653602182865, 0.09551987051963806, -0.061332330107688904, -0.012718722224235535, -0.050377871841192245, 0.12826880812644958, -0.1280028074979782, 0.03694840148091316, -0.09489676356315613, -0.013886233791708946, 0.09914521127939224, -0.0259245615452528, -0.07715778052806854, 0.08844228088855743, 0.10159750282764435, 0.008575445041060448, -0.14417970180511475, 0.0970977246761322, -0.024744544178247452, 0.1313830465078354, 0.052115313708782196, -0.10090116411447525, -0.06820905953645706, 0.023892808705568314, -0.04467417299747467, 0.09680313616991043, -0.05340735614299774, -0.07663145661354065, 0.05033232644200325, 0.05505090206861496, -0.013904096558690071, 0.029871098697185516, 0.017844995483756065, 0.047382865101099014, -0.09112419933080673, -0.028296343982219696, 0.041157498955726624, 0.03454241156578064, -0.04531281068921089, -0.054065950214862823, 0.06476637721061707, -0.0015495108673349023, 0.02343817427754402, -0.03699458763003349, -0.03221788629889488, -0.051082510501146317, -0.02120153233408928, 0.0028128474950790405, -0.054270870983600616, -0.0337102934718132, 0.09764235466718674, 0.0910840630531311, -0.08806340396404266, -0.014273826964199543, -0.03134285286068916, 0.10628031194210052, -0.0655636265873909, 0.021080004051327705, -0.0455404669046402, -0.01874643750488758, 0.008778078481554985, 0.022860871627926826, 0.07162021845579147, 0.16690368950366974, -0.0885709747672081, 0.013832191936671734, 0.025174587965011597, 0.02704777382314205, 0.08773406594991684, -0.038943879306316376, -0.034521713852882385, -0.09852579981088638, -0.024239545688033104, 0.07127558439970016, 0.02021162025630474, -0.00598809402436018, 0.023393837735056877, -0.03445645794272423, -0.03666270896792412, -0.01729218289256096, 0.014588508754968643, 0.01178574189543724, -0.14932790398597717, 0.032286904752254486, 0.09051012247800827, -0.0003429241478443146, 0.10869906097650528, -0.0027078036218881607, -0.05745474994182587, -0.059802547097206116, -0.0700424388051033, 0.07018695771694183, 0.04179718345403671, 0.09122397005558014, 0.037653688341379166, 0.007198160979896784, 0.00011277943849563599, 0.03388754278421402, -0.05391000956296921, -0.04797001928091049, -0.05499637499451637, -0.019576596096158028, -0.10774878412485123, 0.044985946267843246, 0.017053987830877304, -0.15951469540596008, 0.006779887247830629, 0.05669017136096954, 0.22010895609855652, -0.016936395317316055, 0.08177598565816879, -0.05021325871348381, -0.00662178173661232, 0.05879577621817589, -0.02546602115035057, -0.037788089364767075, 0.14729908108711243, -0.004794629756361246, -0.10511624068021774, -0.029474524781107903, 0.0573735311627388, 0.07304780930280685, 0.04124931991100311, 0.06777319312095642, -0.04603263735771179, 0.005249198526144028, 0.0505906417965889, -0.0910700112581253, -0.026778854429721832, -0.04878951981663704, -0.010636204853653908, 0.12629105150699615, -0.08316446095705032, 0.03385205566883087, 0.014313288033008575, 0.04433272033929825, -0.05920763686299324, -0.10785575211048126, 0.027103018015623093, 0.06261400878429413, -0.011105189099907875, 0.11281892657279968, 0.0042033749632537365, -0.008894690312445164, -0.05508553609251976, 0.06905233860015869, 0.055299870669841766, -0.07701122015714645, -0.019754895940423012, 0.2136678248643875, 0.09124055504798889, 0.06943142414093018, -0.14401192963123322, 0.03477351740002632, -0.07940085977315903, -0.02062850631773472, 0.04738546535372734, -0.011531478725373745, 0.053216349333524704, 0.09583508223295212, 0.0173677746206522, 0.12980219721794128, 0.010792622342705727, 0.014868653379380703, 0.15213140845298767, 0.06410244107246399, 0.004644547589123249, -0.07900718599557877, -0.012663306668400764, -0.0203111469745636, 0.07844403386116028, -0.03409869223833084, 0.07387648522853851, -0.031936489045619965, 0.034318264573812485, -0.12328492105007172, 0.06462705880403519, 0.017691634595394135, -0.07147321105003357, 0.008332514204084873, -0.01575031690299511, 0.019782835617661476, 0.014028394594788551, 0.04746082052588463, -0.060563456267118454, 0.07409171015024185, 0.10497522354125977, 0.049169305711984634, 0.055581897497177124, -0.021326985210180283, -0.08109600841999054, 0.026636473834514618, -0.10151246190071106, 0.03997980058193207, 0.005559960845857859, 0.037516288459300995, -0.09171619266271591, 0.023763097822666168, 0.07295984774827957, 0.05654888600111008, -0.04634181410074234, 0.10958046466112137, 0.047988664358854294, 0.008646504022181034, 0.02955009788274765, -0.006945040076971054, -0.037126343697309494, 0.02122717723250389, 0.10090712457895279, 0.04516870528459549, -0.07138501107692719, 0.03704925626516342, 0.007561725564301014, -0.030799847096204758, 0.04046802967786789, 0.0013484350638464093, -0.09509747475385666, 0.0384850800037384, -0.03140903636813164, 0.09276175498962402, -0.03953978419303894, 0.07283413410186768, -0.04487881064414978, -0.028556175529956818, -0.015505814924836159, 0.04429897665977478, 0.01994667574763298, 0.0324239581823349, -0.026044772937893867, -0.023506702855229378, -0.058965276926755905, -0.06557478755712509, -0.0005444809212349355, 0.052923720329999924, -0.0685848742723465, 0.01861080899834633, -0.06104913726449013, -0.02047908678650856, -0.05796439200639725, 0.08271317183971405, -0.0641159787774086, 0.038430605083703995, -0.04275418817996979, -0.017734767869114876, 0.07618718594312668, -0.09054728597402573, 0.07341886311769485, 0.017071451991796494, 0.06882575154304504, -0.055973637849092484, -0.010071477852761745, -0.0966729149222374, 0.1187024712562561, -0.09750739485025406, -0.05121201276779175, 0.08124209940433502, 0.05927363038063049, -0.12334419786930084, 0.01199178583920002], "\u5b89\u88c5MindSpore\u7248\u672c: GPU\u3001CUDA 10.1\u30010.5.0-beta\uff0c\u51fa\u73b0\u95ee\u9898: `cannot open shared object file:No such file or directory`\u3002": [0.007513508200645447, 0.026565056294202805, -0.018707243725657463, 0.025225913152098656, -0.03914560377597809, -0.03879830986261368, 0.058360252529382706, 0.0773744136095047, -0.0903366431593895, -0.006083368323743343, 0.025984622538089752, 0.07520425319671631, -0.011510258540511131, -0.008254467509686947, -0.05886272341012955, 0.07296541333198547, 0.09891360253095627, -0.04650759696960449, -0.019013576209545135, -0.005152316763997078, -0.020927859470248222, 0.04042644053697586, 0.11595169454813004, -0.0009456292609684169, 0.06252071261405945, -0.0009096188005059958, -0.036713358014822006, 0.04142336547374725, 0.015938149765133858, 0.08556319773197174, 0.08666136860847473, 0.01063595898449421, -0.16354641318321228, 0.014520756900310516, 0.012371720746159554, -0.08159726113080978, -0.061953455209732056, 0.13099589943885803, -0.07342927157878876, 0.03898642212152481, -0.030880140140652657, 0.08998382091522217, -0.04569875821471214, 0.1264527440071106, 0.05918972194194794, -0.025028983131051064, -0.07565735280513763, -0.001973736798390746, 0.06845714896917343, -0.0039932942017912865, -0.13927607238292694, 0.06171271950006485, -0.04537193104624748, 0.0282329972833395, -0.04597390443086624, -0.044548001140356064, 0.011568563058972359, -0.13813762366771698, 0.05364665016531944, 0.05710799619555473, 0.0166490338742733, -0.0004279948479961604, -0.019359661266207695, 0.04416719079017639, -0.1395758092403412, -0.026873726397752762, -0.043757565319538116, -0.044231727719306946, -0.05940716341137886, 0.011367732658982277, -0.10045040398836136, 0.06606250256299973, -0.03997660055756569, 0.08175484836101532, 0.039691440761089325, 0.04314956068992615, -0.0567597970366478, 0.07758954167366028, -0.09428989142179489, -0.013610589317977428, -0.01310758851468563, 0.037731852382421494, 0.06117427349090576, -0.09812407195568085, -0.05057792365550995, -0.055735502392053604, -0.07843391597270966, 0.06449735909700394, -0.04558771476149559, 0.06447621434926987, -0.0257294662296772, -0.07406042516231537, -0.15695598721504211, 0.11191122233867645, 0.03726724907755852, -0.010940809734165668, -0.0654723271727562, -0.0378250814974308, -0.16610337793827057, -0.021254677325487137, -0.01645495370030403, -0.0207472275942564, -0.048473939299583435, 0.052963390946388245, -0.039073050022125244, -0.03280765563249588, 0.08951683342456818, 0.026917368173599243, 0.025902193039655685, 0.04838347062468529, 0.03365759551525116, 0.02843921259045601, -0.01352231577038765, -0.02027859352529049, -0.019874507561326027, 0.06544890254735947, -0.10288393497467041, -0.057694945484399796, -0.027909157797694206, 0.06831821799278259, 0.11218900978565216, -0.052643030881881714, 0.027047183364629745, 0.049628324806690216, -0.008649755269289017, 0.007830706425011158, 0.05221906676888466, -0.027730733156204224, -0.07835114747285843, -0.11420194059610367, 0.17068235576152802, -0.07022488117218018, 0.10571260005235672, -0.1340784877538681, -0.1236758902668953, 0.10915575921535492, -0.14482107758522034, -0.029903389513492584, -0.0012615721207112074, 0.0681571289896965, 0.07369008660316467, -0.058389514684677124, -0.0064644585363566875, -0.034037914127111435, 0.10237441956996918, -0.015802141278982162, -0.08817141503095627, -0.16902664303779602, 0.003967852797359228, -0.009591586887836456, 0.10059204697608948, -0.033884890377521515, 0.01903844065964222, 0.10499240458011627, 0.05916009470820427, 0.05954981595277786, -0.11778934299945831, -0.021904822438955307, -0.05771531164646149, -0.03635883703827858, -0.07755495607852936, -0.006637923885136843, 0.06448350101709366, -0.004902331158518791, 0.06203188747167587, 0.04883607104420662, -0.019369198009371758, 0.000677570584230125, -0.05843895673751831, -0.057307515293359756, -0.023360271006822586, 0.016253482550382614, -0.09171828627586365, -0.011107267811894417, 0.02211383357644081, -0.07246066629886627, 0.005919305607676506, -0.05222303047776222, -0.09727627038955688, -0.09228578209877014, 0.09778637439012527, -0.16169637441635132, -0.05601401627063751, -0.1413464993238449, 0.06666599959135056, 0.03960345312952995, 0.058372240513563156, 0.0676661878824234, 0.1165531650185585, -0.16430070996284485, -0.008919995278120041, 0.037009187042713165, 0.052616801112890244, 0.0961209386587143, -0.005795011762529612, -0.015258034691214561, -0.05122090131044388, -0.06075293570756912, -0.009534960612654686, 0.06721216440200806, -0.01969435252249241, -0.006251425016671419, 0.04880000650882721, 0.06915508210659027, 0.0011963987490162253, -0.008043980225920677, -0.13073037564754486, -0.15645144879817963, 0.042602017521858215, -0.11027036607265472, 0.10462979227304459, -0.03329279273748398, -0.09040495753288269, -0.06256639957427979, -0.1358732283115387, -0.0069460757076740265, 0.09462504088878632, 0.08534909784793854, 0.02513596974313259, -0.0004436261660885066, 0.046629831194877625, 0.018148262053728104, 0.056000966578722, -0.04885236918926239, -0.09549981355667114, 0.08560851216316223, -0.10676555335521698, -0.0696774572134018, 0.0035562068223953247, 0.1785530000925064, -0.041288118809461594, 0.11012474447488785, 0.011851418763399124, 0.11697088927030563, -0.05178786814212799, 0.05334055796265602, -0.0382535345852375, -0.04891306906938553, 0.08652797341346741, 0.014612122438848019, -0.07426854968070984, 0.002439188538119197, -0.08931255340576172, 0.005888509564101696, -0.05281858518719673, 0.04939332604408264, 0.02438303269445896, 0.06292964518070221, 0.032754622399806976, -0.06528852880001068, 0.05121183767914772, 0.024006059393286705, -0.022779913619160652, 0.06499827653169632, 0.14304421842098236, 0.01880207657814026, 0.037237029522657394, -0.0845189243555069, 0.001956840278580785, 0.0031521047931164503, -0.015594063326716423, 0.03711213916540146, -0.11376215517520905, -0.022210896015167236, 0.010649282485246658, -0.05001595616340637, 0.09397438913583755, -0.05497562885284424, 0.04349316284060478, -0.07811713963747025, 0.003825874999165535, 0.058462534099817276, -0.04089028015732765, -0.082268126308918, 0.1521017998456955, 0.017142973840236664, -0.031339697539806366, -0.12380975484848022, 0.040325235575437546, 0.04911935329437256, 0.03321649879217148, 0.06273485720157623, 0.03034968674182892, 0.03548094630241394, 0.07988274097442627, -0.0665256604552269, 0.05923795700073242, 0.03629336878657341, 0.002563861198723316, 0.09442455321550369, -0.09491140395402908, -0.04632078856229782, 0.0115465447306633, 0.025692041963338852, -0.04166830703616142, 0.14362572133541107, 0.09628543257713318, 0.02813662961125374, -0.027825133875012398, 0.08688469231128693, -0.024398185312747955, -0.010258464142680168, 0.06750499457120895, -0.06186225265264511, 0.002719606040045619, -0.020435184240341187, 0.02636440098285675, 0.10317365825176239, 0.002831239253282547, -0.06626903265714645, 0.10179726034402847, 0.04371644929051399, 0.07802081853151321, 0.07488711178302765, -0.11884991079568863, -0.03965078294277191, 0.0497143492102623, -0.13532201945781708, 0.06824374943971634, -0.1220618486404419, 0.010637150146067142, 0.016031742095947266, -0.05979478359222412, 0.0342436283826828, 0.10407868027687073, 0.055677954107522964, 0.04563243314623833, 0.02252800017595291, 0.08270000666379929, -0.01769181527197361, 0.0259185042232275, -0.14042241871356964, 0.04048767685890198, 0.04107549786567688, -0.05229119211435318, -0.1891104131937027, 0.1479121595621109, 0.10146299004554749, -0.0005562528385780752, 0.02293323166668415, 0.058166470378637314, -0.04063452035188675, 0.0242879968136549, -0.05228957533836365, 0.08357701450586319, -0.07579128444194794, 0.05185346305370331, 0.07893747091293335, -0.08886256814002991, -0.059036172926425934, 0.03820295259356499, -0.08815648406744003, 0.032369229942560196, -0.012120633386075497, -0.045940101146698, -0.1359134018421173, -0.15754806995391846, -0.034352678805589676, 0.007209619507193565, -0.023813780397176743, 0.002740544732660055, -0.06563270837068558, -0.14432886242866516, -0.05666319653391838, -0.014984872192144394, 0.021783124655485153, 0.03698224201798439, -0.03807751089334488, 0.0610804557800293, 0.04166789725422859, -0.09879866987466812, 0.06090599298477173, 0.1367548257112503, 0.05782092362642288, -0.08593638241291046, -0.05542724207043648, -0.1599581092596054, 0.07963679730892181, -0.00666668638586998, -0.07501179724931717, 0.06895201653242111, 0.11577118188142776, -0.11854512244462967, 0.03380116447806358], "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519: `ERROR: mindspore_{VERSION}.whl is not a supported wheel on this platform`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.053290076553821564, 0.08231737464666367, -0.03228108957409859, 0.03272389620542526, -0.037358399480581284, -0.012811396270990372, 0.04495502635836601, 0.04686463251709938, -0.006011635065078735, 0.06717825680971146, -0.09157273173332214, 0.05611252784729004, -0.032367028295993805, 0.0091497041285038, -0.00432132463902235, 0.09661553800106049, 0.10992308706045151, -0.03148637339472771, -0.011988823302090168, 0.021267613396048546, -0.029476534575223923, 0.026782022789120674, 0.029825128614902496, -0.04472459852695465, 0.020823415368795395, 0.059287019073963165, -0.04236052930355072, 0.009946485981345177, -0.033251650631427765, 0.051568202674388885, 0.02699393779039383, 0.05511756241321564, -0.09070004522800446, 0.06572912633419037, -0.044928912073373795, -0.012689875438809395, -0.07327692955732346, 0.13173256814479828, -0.06658709049224854, -0.036003228276968, -0.02992965281009674, -0.0053985100239515305, 0.027582647278904915, 0.020701400935649872, 0.04099581018090248, -0.04141926020383835, -0.18091119825839996, -0.031909774988889694, 0.07269454747438431, 0.031990256160497665, -0.08763229846954346, 0.060037508606910706, -0.009424515068531036, -0.04480503499507904, -0.03490467369556427, -0.03697150945663452, -0.003274464514106512, 0.03312021121382713, 0.0663045197725296, -0.06690791994333267, 0.039322465658187866, -0.004759242292493582, -0.09087404608726501, 0.07044684886932373, -0.09620285034179688, -0.02226421609520912, -0.07670469582080841, -0.03372299671173096, 0.02058844268321991, 0.010700322687625885, -0.05492450296878815, 0.011430053040385246, -0.015980739146471024, 0.05185934156179428, 0.06686368584632874, 0.02590770646929741, 0.00958939641714096, -0.022560246288776398, -0.07300741970539093, -0.0037299557588994503, 0.015165019780397415, 0.05109402909874916, 0.10903582721948624, 0.009601022116839886, 0.017234545201063156, -0.013406144455075264, -0.06705457717180252, 0.13157086074352264, 0.012520043179392815, 0.106883704662323, 0.018809648230671883, -0.06196793168783188, -0.08204717934131622, 0.12456926703453064, 0.1325739622116089, 0.006374668795615435, 0.006516533903777599, -0.014631777070462704, -0.16495822370052338, -0.1006554663181305, 0.007297721691429615, -0.018551869317889214, -0.05970119312405586, 0.01505475677549839, -0.001503298757597804, -0.04031725227832794, -0.008344186469912529, 0.029674846678972244, 0.021542217582464218, 0.0261138454079628, 0.07163043320178986, 0.07644829154014587, 0.057663653045892715, 0.004282401874661446, -0.022792797535657883, 0.052697330713272095, -0.03945775702595711, 0.030174627900123596, -0.04958151653409004, 0.07664430141448975, 0.16750575602054596, -0.07036805152893066, -0.010742388665676117, 0.14004507660865784, 0.04193533584475517, -0.10142391920089722, 0.04029509797692299, 0.0012515031266957521, -0.060458727180957794, -0.07077080756425858, 0.14293353259563446, -0.06557711213827133, 0.09365248680114746, -0.0948704332113266, -0.04975718632340431, 0.04851021245121956, -0.06647931784391403, 0.00026394426822662354, -0.047415897250175476, 0.08708710968494415, 0.13778169453144073, -0.14633731544017792, 0.08928506076335907, -0.04923480004072189, 0.12793348729610443, -0.008874250575900078, -0.08134221285581589, -0.08860589563846588, -0.02649996429681778, -0.053788069635629654, 0.0716809630393982, -0.004049493931233883, -0.058055054396390915, 0.11082373559474945, -0.06020428240299225, 0.022721270099282265, 0.052110783755779266, -0.07129935920238495, -0.013155712746083736, 0.06044737622141838, -0.04612771421670914, -0.01205771416425705, -0.02172754518687725, 0.038267508149147034, 0.04184578359127045, -0.005253620445728302, 0.04982965812087059, -0.02329143136739731, -0.019198017194867134, 0.006459911819547415, 0.01386239379644394, -0.08451436460018158, -0.007197907660156488, -0.008836525492370129, 0.04296834021806717, -0.04434344172477722, 0.05154059827327728, -0.0411311499774456, 0.05728188529610634, -0.03554166853427887, 0.09075354784727097, -0.15729713439941406, -0.08614572882652283, -0.04964199662208557, 0.026736874133348465, 0.015062144957482815, -0.002903289394453168, 0.007993943989276886, 0.138456329703331, -0.1845514327287674, 0.0022729698102921247, 0.002519978443160653, 0.028025291860103607, 0.05341384932398796, 0.009924969635903835, 0.023410530760884285, -0.08103018254041672, 0.030461620539426804, 0.025476772338151932, -0.013230889104306698, -0.07519848644733429, -0.009581046178936958, 0.025246543809771538, -0.03946864604949951, -0.05396076291799545, -0.03410902991890907, -0.11411378532648087, -0.13072772324085236, -0.00912809744477272, -0.009449591860175133, 0.00829152762889862, 0.03690298646688461, -0.040193989872932434, -0.013581902720034122, -0.03149806708097458, -0.006010640878230333, 0.0680379718542099, 0.06751085817813873, 0.02686322294175625, -0.05108247697353363, 0.01965288072824478, 0.051763616502285004, -0.02100687474012375, -0.10492195934057236, -0.08809208869934082, 0.04960088059306145, -0.09204064309597015, -0.037509188055992126, 0.0487281009554863, 0.038815997540950775, -0.0212996993213892, 0.0817117765545845, 0.024730123579502106, 0.08307413756847382, -0.0345035158097744, 0.06407607346773148, -0.0047201551496982574, 0.01666831411421299, 0.1086321473121643, 0.07532324641942978, -0.10936184227466583, -0.013974935747683048, -0.13708874583244324, 0.013934578746557236, -0.10410326719284058, 0.07152925431728363, 0.07389003038406372, 0.03221690654754639, -0.036918118596076965, -0.05502402037382126, 0.06093667820096016, 0.05348828434944153, -0.023970196023583412, 0.021862342953681946, -0.018326545134186745, 0.008721900172531605, -0.03836109861731529, -0.08800524473190308, -0.02291378751397133, 0.10316922515630722, -0.0006627942202612758, 0.008959473110735416, -0.01897658407688141, -0.025350283831357956, -0.12731385231018066, -0.03170972317457199, 0.018177295103669167, -0.07882117480039597, -0.04024510085582733, -0.1117040365934372, 0.002541353926062584, 0.07015456259250641, -0.04617819935083389, 0.05068933963775635, 0.08019007742404938, 0.10382173955440521, 0.15642638504505157, -0.10172303020954132, 0.04240589961409569, 0.06702177226543427, 0.055342771112918854, 0.00442278478294611, 0.05558618903160095, -0.052859775722026825, 0.08882032334804535, -0.039582185447216034, 0.04931093752384186, -0.03544298931956291, -0.047059547156095505, 0.12111102044582367, -0.07392486184835434, -0.02485169656574726, -0.06078019365668297, 0.055507246404886246, -0.07818612456321716, 0.09148761630058289, 0.05716913938522339, 0.024001112207770348, -0.017604636028409004, 0.03242212161421776, -0.034852948039770126, -0.019971970468759537, 0.0754845067858696, -0.11516322940587997, -0.031784649938344955, 0.04644007235765457, -0.08725396543741226, 0.09242556244134903, 0.0566481314599514, -0.011252807453274727, -0.01821131817996502, 0.04329243302345276, -0.011065716855227947, 0.0535389706492424, -0.07651752233505249, -0.06388554722070694, 0.04206138104200363, -0.10516420751810074, -0.05274972319602966, -0.07865677028894424, 0.04410696402192116, -0.0159025676548481, -0.03950795158743858, 0.04095274209976196, 0.0951438620686531, -0.04121091961860657, -0.0021816513035446405, 0.0343003086745739, 0.021762948483228683, -0.08543027192354202, 0.061292678117752075, -0.07486264407634735, -0.020874282345175743, 0.053590647876262665, 0.03195546939969063, -0.18519537150859833, 0.09639972448348999, -0.017481667920947075, 0.04602912813425064, 0.04505638778209686, 0.025136375799775124, -0.07653434574604034, 0.0012151034316048026, -0.05674220621585846, 0.1060052290558815, 0.03830592706799507, 0.10865630954504013, 0.048631008714437485, -0.006560695357620716, -0.015397240407764912, 0.06145981699228287, -0.08192814886569977, 0.05256997048854828, -0.07584793865680695, -0.008194887079298496, -0.11180362105369568, -0.047639209777116776, -0.014239592477679253, -0.026705529540777206, 0.015789151191711426, -0.01960558257997036, -0.06335125118494034, 0.013828596100211143, -0.03678091615438461, 0.019065937027335167, -0.16369035840034485, 0.08323060721158981, -0.06174726039171219, 0.10914759337902069, -0.0284336656332016, -0.05325824022293091, -0.03294546157121658, 0.0829240009188652, 0.06850118190050125, -0.04487510025501251, -0.07174408435821533, -0.07800080627202988, 0.04688563570380211, -0.06468808650970459, -0.08331845700740814, -0.01814975216984749, 0.11792407929897308, -0.16265632212162018, 0.044179465621709824], "macOS\u7cfb\u7edf\u6e90\u7801\u7f16\u8bd1\u540e\u4f7f\u7528pip\u5b89\u88c5\u62a5\u9519: `ERROR: mindspore-{VERSION}.whl is not a supported wheel on this platform`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.04651324078440666, 0.06629230082035065, -0.03967222943902016, 0.019556812942028046, -0.04513793811202049, 0.004929592367261648, 0.04892650619149208, 0.06585630774497986, -0.017177561298012733, 0.0625397339463234, -0.06880449503660202, 0.05406034737825394, -0.023553401231765747, 0.0045037041418254375, -0.01523654069751501, 0.09120818972587585, 0.09996376931667328, -0.029915504157543182, -0.03560430556535721, 0.04294022172689438, -0.03851751610636711, 0.029715372249484062, -0.006449612323194742, -0.04273790121078491, 0.0054230643436312675, 0.0570208877325058, -0.02807648479938507, 0.030815834179520607, -0.03037278540432453, 0.0893186405301094, 0.03352215886116028, 0.07785294950008392, -0.10092709958553314, 0.07603801041841507, -0.04687657579779625, -0.015645960345864296, -0.0709783136844635, 0.11336570978164673, -0.07650642096996307, -0.0231209397315979, -0.020723531022667885, 0.011241167783737183, 0.019480157643556595, 0.013554870150983334, 0.04302995279431343, -0.04281578212976456, -0.18535296618938446, -0.006811023689806461, 0.06269744038581848, 0.041028961539268494, -0.08517904579639435, 0.0650482177734375, 0.01898202672600746, -0.058919794857501984, -0.04391627758741379, -0.005152486264705658, -0.017000582069158554, 0.03462095558643341, 0.06574588268995285, -0.06208963692188263, 0.02698667161166668, -0.016911078244447708, -0.08899305760860443, 0.053213030099868774, -0.07967042177915573, -0.017507659271359444, -0.0776912122964859, -0.0034735954832285643, 0.013998573645949364, 0.015181628987193108, -0.04339290037751198, 0.0028874422423541546, -0.0176201481372118, 0.03918880224227905, 0.05331938713788986, 0.047091949731111526, -0.0071165477856993675, -0.013491895981132984, -0.09741335362195969, 0.004989761393517256, 0.002343765925616026, 0.06513085216283798, 0.08886182308197021, 0.0026705351192504168, 0.025104399770498276, -0.01244315318763256, -0.06873800605535507, 0.1258501559495926, 0.025745892897248268, 0.09581639617681503, 0.030989428982138634, -0.08446023613214493, -0.08170162886381149, 0.12676383554935455, 0.12794257700443268, -0.0024990621022880077, 0.02218630723655224, -0.025393683463335037, -0.190214142203331, -0.0965423434972763, 0.00028907693922519684, -0.026122750714421272, -0.06871575117111206, 0.05243818461894989, 0.0068753729574382305, -0.025331400334835052, -0.01815483532845974, 0.06121348589658737, 0.02928975410759449, 0.012723720632493496, 0.05960327759385109, 0.09353450685739517, 0.05408418923616409, 0.026184920221567154, -0.004842265974730253, 0.04437617212533951, -0.0537305548787117, 0.02793792262673378, -0.07036696374416351, 0.09353934228420258, 0.185525581240654, -0.07452795654535294, -0.025316938757896423, 0.09921211004257202, 0.036903511732816696, -0.1072726920247078, 0.026481157168745995, -0.018927475437521935, -0.0644068792462349, -0.06425031274557114, 0.1489228457212448, -0.07615071535110474, 0.06044037640094757, -0.12204547971487045, -0.0631430372595787, 0.03983570635318756, -0.053804732859134674, 0.005603284575045109, -0.08569388836622238, 0.08277621865272522, 0.12842588126659393, -0.1458142101764679, 0.0795891284942627, -0.062224142253398895, 0.11965776234865189, -0.012367739342153072, -0.07109355181455612, -0.10125980526208878, -0.061305154114961624, -0.042271438986063004, 0.056886572390794754, 0.005975206848233938, -0.03650984540581703, 0.10713981837034225, -0.050308894366025925, 0.028712306171655655, 0.07040147483348846, -0.07913689315319061, -0.014780394732952118, 0.04648527503013611, -0.04780605062842369, -0.04340505599975586, -0.013350604102015495, 0.04170294851064682, 0.0574159249663353, -0.0008427563589066267, 0.051210541278123856, -0.02411174774169922, 0.003568442305549979, -0.008708212524652481, 0.028244294226169586, -0.07043178379535675, -0.04366098344326019, -0.019653653725981712, 0.04268880933523178, -0.06010090187191963, 0.03160594031214714, -0.053422711789608, 0.03294852003455162, -0.02494388446211815, 0.06681183725595474, -0.1481262743473053, -0.10983544588088989, -0.03488612174987793, 0.04696083441376686, 0.02506588213145733, -0.0027654808945953846, 0.03714778646826744, 0.11417181044816971, -0.18743877112865448, -0.0074996622279286385, 0.02195383608341217, 0.025138448923826218, 0.05418432503938675, 0.016882892698049545, 0.028137091547250748, -0.08326224982738495, 0.033927593380212784, 0.016517626121640205, 0.007450662553310394, -0.07117223739624023, -0.0046680583618581295, 0.03843926265835762, -0.019668448716402054, -0.08130503445863724, -0.04902215674519539, -0.13376779854297638, -0.12479116022586823, -0.03459777683019638, -0.028618482872843742, 0.0417952686548233, -0.008249697275459766, -0.029279675334692, -0.03333238139748573, -0.04069004952907562, -0.013110284693539143, 0.08364865928888321, 0.051396340131759644, 0.008921047672629356, -0.028890464454889297, 0.033479150384664536, 0.05672420561313629, -0.004820823669433594, -0.07646992802619934, -0.10689236223697662, 0.05490102618932724, -0.08843229711055756, -0.030619937926530838, 0.03530893847346306, 0.023288210853934288, -0.029925242066383362, 0.0580744706094265, 0.03442677855491638, 0.05797332525253296, -0.02974528819322586, 0.06460367143154144, 0.01742621883749962, 0.03799255192279816, 0.09760331362485886, 0.08249103277921677, -0.1094495952129364, -0.02711324952542782, -0.11619867384433746, 0.038396481424570084, -0.0947045236825943, 0.054350219666957855, 0.07926797866821289, 0.03688253089785576, -0.07446455210447311, -0.03195984289050102, 0.05486000329256058, 0.03406268730759621, -0.028645746409893036, 0.014754185453057289, -0.019908450543880463, 0.05675702542066574, -0.03272285684943199, -0.0642370730638504, -0.0067788357846438885, 0.11480191349983215, 0.04672188311815262, 0.002847295952960849, -0.0056130485609173775, -0.03300540894269943, -0.12608125805854797, -0.022170307114720345, 0.05502074211835861, -0.0917079895734787, -0.03830070048570633, -0.13733471930027008, 0.0010202402481809258, 0.07374759763479233, -0.03647765517234802, 0.03499199450016022, 0.05932413041591644, 0.08567097038030624, 0.13547347486019135, -0.10796752572059631, 0.04677416756749153, 0.08100001513957977, 0.05678796023130417, 0.024723555892705917, 0.06989835947751999, -0.06122793257236481, 0.10323561728000641, -0.04556933045387268, 0.03648921102285385, -0.02840728685259819, -0.03593791276216507, 0.1408367156982422, -0.09699703752994537, -0.004612340591847897, -0.06412994116544724, 0.06568394601345062, -0.08923429250717163, 0.08917244523763657, 0.0877547338604927, -0.0007851734408177435, 0.0027221504133194685, 0.02250058203935623, -0.029815740883350372, -0.0493413582444191, 0.07587277144193649, -0.13903553783893585, -0.008574748411774635, 0.04546244814991951, -0.09068445861339569, 0.07871705293655396, 0.033312104642391205, -0.011046743020415306, -0.0013434841530397534, 0.0680200383067131, -0.01312943734228611, 0.04223601892590523, -0.05886072665452957, -0.05088334530591965, 0.04631735756993294, -0.12470905482769012, -0.053746890276670456, -0.09902001172304153, 0.042623378336429596, -0.010583470575511456, -0.04131297767162323, 0.031960275024175644, 0.11151591688394547, -0.022084951400756836, -0.0016897323075681925, 0.05951084941625595, 0.011051394045352936, -0.057808198034763336, 0.058185383677482605, -0.06689345836639404, -0.02132278122007847, 0.04127383977174759, 0.043555647134780884, -0.16777808964252472, 0.09979158639907837, -0.004671890754252672, 0.05583469197154045, 0.040205519646406174, 0.022515663877129555, -0.05433943495154381, 0.0019055097363889217, -0.05054595693945885, 0.0944054052233696, 0.008994586765766144, 0.0921361967921257, 0.03347788006067276, 0.008924292400479317, -0.022623715922236443, 0.07602979987859726, -0.08149096369743347, 0.036368440836668015, -0.06117452308535576, -0.005004703067243099, -0.12660041451454163, -0.03925958275794983, -0.0002715401351451874, -0.033457837998867035, 0.015425032004714012, -0.02969263307750225, -0.026664286851882935, 0.006765075959265232, -0.05622728168964386, -0.035042982548475266, -0.1292005330324173, 0.07502733170986176, -0.06475367397069931, 0.1084609255194664, -0.02785355970263481, -0.07078112661838531, -0.016649145632982254, 0.07672647386789322, 0.05858705937862396, -0.02129705436527729, -0.06297104060649872, -0.08182115852832794, 0.034138936549425125, -0.06416849792003632, -0.07301593571901321, -0.005663425661623478, 0.09993793815374374, -0.1332848221063614, 0.056196313351392746], "arm64\u67b6\u6784\u7684macOS\u7cfb\u7edf\u4f7f\u7528pip\u5b89\u88c5SciPy\u4f9d\u8d56\u5e93\u65f6\u62a5\u9519\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.04214625060558319, -0.0014964572619646788, -0.008390230126678944, 0.031263567507267, -0.010510236024856567, -0.0038926550187170506, 0.04394751042127609, 0.08252214640378952, -0.010304830968379974, 0.0007693947409279644, -0.029713958501815796, 0.10660985857248306, -0.013975906185805798, 0.013188987970352173, -0.0029602868016809225, 0.08691778779029846, 0.10993951559066772, -0.05964863300323486, -0.07529859244823456, 0.10154636204242706, 0.012298987247049809, 0.04147995635867119, 0.00722623523324728, -0.008885239250957966, 0.059732429683208466, 0.13477225601673126, 0.0167224258184433, -0.017170783132314682, 0.0003492028918117285, 0.11125257611274719, -0.011008115485310555, 0.03822632133960724, -0.10274604707956314, 0.01773689314723015, -0.042436644434928894, -0.04082085192203522, -0.019673863425850868, 0.1472049206495285, -0.07080795615911484, -0.000801685091573745, 0.0034341118298470974, 0.06051018834114075, -0.07766163349151611, 0.07788975536823273, 0.04617888852953911, -0.050790973007678986, -0.1271926462650299, -0.006717780139297247, 0.04399111866950989, 0.07697954773902893, -0.09395161271095276, 0.12984073162078857, -0.038877781480550766, -0.030042525380849838, -0.0028415636625140905, 0.0004001520574092865, 0.05372577905654907, 0.02955242618918419, 0.09924241900444031, 0.030135486274957657, 0.038350485265254974, -0.0347089022397995, 0.003510334063321352, -0.01180411595851183, -0.07230591028928757, 0.014135860837996006, -0.04002602770924568, -0.03166734427213669, 0.01929793879389763, 0.0095283892005682, -0.08980414271354675, -0.013377032242715359, -0.016587188467383385, 0.017246412113308907, 0.044278960675001144, 0.03509724512696266, -0.0036040872801095247, 0.029123982414603233, -0.033644214272499084, 0.03365850821137428, -0.06207958608865738, 0.1415109634399414, 0.08332011848688126, -0.04683058708906174, -0.045241519808769226, -0.0367281474173069, -0.07945609837770462, 0.07908827811479568, -0.010034236125648022, 0.04381152614951134, 0.06235465034842491, -0.08063357323408127, -0.13253821432590485, 0.10255561023950577, 0.16849195957183838, -0.06209350377321243, -0.056080128997564316, 0.007561159785836935, -0.17378023266792297, -0.05074939504265785, 0.04378167539834976, 0.005362127907574177, 0.0003327932208776474, 0.0011649704538285732, 0.008013874292373657, -0.08590025454759598, 0.06347732245922089, 0.026906076818704605, -0.0406879223883152, -0.008352675475180149, 0.027386900037527084, 0.04965738207101822, 0.05448540672659874, 0.05599898099899292, -0.05694326013326645, 0.05074426531791687, -0.005886994302272797, 0.07361379265785217, -0.12438803166151047, 0.12719561159610748, 0.07572801411151886, -0.04573622718453407, -0.016322346404194832, 0.015637177973985672, 0.05260900408029556, -0.04877595975995064, 0.036291949450969696, -0.06443759053945541, -0.023371946066617966, -0.09559354186058044, 0.1469336748123169, -0.07066308706998825, 0.0918416753411293, -0.14189201593399048, -0.1244959756731987, 0.05566120520234108, -0.09909935295581818, -0.04842210188508034, -0.029590412974357605, 0.05554846301674843, 0.18853150308132172, -0.15168118476867676, 0.022876249626278877, -0.049254629760980606, 0.14234766364097595, -0.011056240648031235, -0.1497955024242401, -0.10725658386945724, -0.03092963807284832, -0.021109115332365036, 0.12029126286506653, 0.08198156952857971, -0.026472171768546104, 0.129799947142601, -0.07331429421901703, -0.015170257538557053, 0.022537419572472572, 0.0045261988416314125, -0.05897798389196396, 0.0011562458239495754, -0.07160161435604095, -0.052802953869104385, 0.05668298155069351, -0.005560981575399637, 0.025507377460598946, 0.03100522793829441, 0.05524603649973869, -0.011940387077629566, 0.01049237884581089, -0.04310937970876694, 0.016787908971309662, -0.005530234891921282, -0.08760751783847809, -0.07032361626625061, 0.061142925173044205, 0.005453922785818577, 0.041651058942079544, -0.061570048332214355, 0.0007601506658829749, -0.0017399323405697942, -0.0023477324284613132, -0.06742048263549805, -0.07766839116811752, -0.050710491836071014, 0.07061357796192169, 0.019651178270578384, 0.0012020239373669028, 0.005384424701333046, 0.08277875930070877, -0.08590370416641235, -0.03640105947852135, 0.0461324118077755, 0.01117769442498684, 0.04489847272634506, -0.057159602642059326, -0.04814457148313522, -0.03886629641056061, 0.04553085193037987, 0.029592696577310562, -0.04603734239935875, -0.003927819896489382, 0.03665400296449661, 0.07226487249135971, 0.08933814615011215, 0.009389031678438187, -0.06652846932411194, -0.11236989498138428, -0.09212501347064972, -0.02286861650645733, 0.007087722886353731, 0.0887230634689331, -0.005156545899808407, 0.010530518367886543, -0.0377563014626503, -0.053839828819036484, 0.000836400140542537, 0.07714899629354477, 0.11541743576526642, 0.013123656623065472, -0.053049180656671524, 0.03971192240715027, 0.00567984813824296, -0.02930140122771263, -0.008635485544800758, -0.1336960345506668, -0.0039030599873512983, -0.09892367571592331, -0.04057769849896431, -0.038259610533714294, 0.0324200876057148, 0.01648683473467827, 0.04224226996302605, 0.012272831052541733, 0.10782106965780258, 0.045359257608652115, 0.02161327190697193, -0.007814248092472553, 0.006488379091024399, 0.11575080454349518, 0.059078149497509, -0.15951798856258392, 0.03244471549987793, -0.04873106628656387, -0.06400960683822632, -0.02727159485220909, 0.11921460181474686, 0.11322874575853348, 0.014477403834462166, -0.0760168507695198, 0.03103473037481308, 0.02174718677997589, 5.124323070049286e-05, -0.09317132085561752, 0.05006605014204979, -0.009454585611820221, 0.07642462104558945, 0.05090082809329033, -0.03581208363175392, 0.0678490474820137, 0.025375325232744217, 0.11159267276525497, 0.02828896977007389, 0.009910911321640015, -0.11921032518148422, -0.01660986617207527, -0.04143786430358887, 0.08002650737762451, -0.09510047733783722, 0.0016363454051315784, -0.0840967446565628, 0.0637299045920372, 0.010278417728841305, -0.08680858463048935, -0.054216060787439346, 0.052464697510004044, 0.07067041099071503, 0.026441460475325584, -0.10525692999362946, 0.09781486541032791, 0.04356443136930466, -0.0060833110474050045, 0.011434000916779041, 0.06113028898835182, -0.04757888242602348, 0.08058628439903259, -0.03862918168306351, 0.04320518672466278, 0.07564125210046768, 0.017880141735076904, 0.0828322321176529, -0.03328721970319748, -0.056199733167886734, -0.0370626375079155, 0.06240484490990639, -0.08670864999294281, 0.07609313726425171, 0.12442459166049957, 0.03686628118157387, -0.016297338530421257, 0.005771871656179428, -0.05447052791714668, -0.07456200569868088, 0.11408943682909012, -0.10180593281984329, -0.03130367398262024, -0.0459614098072052, -0.042939070612192154, 0.028722774237394333, -0.0010534223401919007, -0.062818244099617, 0.05896654725074768, 0.01885085366666317, 0.09258578717708588, 0.04088922217488289, -0.04732142388820648, -0.03460954874753952, 0.06288087368011475, -0.13735440373420715, 0.03328549116849899, -0.029884736984968185, -0.0212441124022007, -0.07550817728042603, -0.009559483267366886, 0.08219633251428604, 0.12137462943792343, 0.006208846811205149, 0.06006484106183052, 0.04033425822854042, -0.01148755382746458, -0.02140306495130062, 0.06199455261230469, -0.03790436312556267, -0.02087097428739071, 0.057050950825214386, 0.06167332082986832, -0.06024641543626785, 0.13524620234966278, 0.03708159178495407, -0.012661377899348736, -0.01660628244280815, 0.03292667493224144, -0.06541287899017334, -0.06154879927635193, -0.11974291503429413, 0.02103682979941368, -0.10132139921188354, 0.01920635998249054, 0.07986224442720413, -0.02976508066058159, -0.09110008925199509, 0.034494925290346146, -0.11019439995288849, 0.06609399616718292, -0.05550934746861458, 0.03531598299741745, -0.06061553210020065, -0.012959952466189861, 0.06703110784292221, 0.023185083642601967, -0.011240551248192787, -0.0144331194460392, 0.08183842152357101, -0.03371821343898773, -0.06346844881772995, -0.03797732666134834, -0.04784959554672241, 0.07937557995319366, -0.01713322475552559, 0.07670418918132782, 0.0004118122160434723, -0.09864427894353867, 0.03756801784038544, 0.04974081367254257, 0.1017574891448021, -0.05808231234550476, -0.0026996778324246407, -0.12564168870449066, 0.09585844725370407, -0.1389070302248001, -0.09920618683099747, 0.051080331206321716, 0.05788218230009079, -0.06775695085525513, -0.019617747515439987], "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519: `SSL:CERTIFICATE_VERIFY_FATLED`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.013407695107161999, 0.023242995142936707, 0.11635927855968475, 0.09810435771942139, -0.006624925881624222, -0.018873082473874092, 0.03188839927315712, 0.008123645558953285, 0.028309710323810577, 0.02971002459526062, 0.0014638126594945788, 0.11904320865869522, -0.1319371908903122, 0.00971063319593668, -0.045387156307697296, 0.092804454267025, 0.13478730618953705, 0.017920013517141342, -0.041225820779800415, 0.03847396373748779, 0.015210121870040894, -0.03353987634181976, 0.09918846189975739, -0.11874424666166306, -0.0008104087901301682, 0.07187519967556, 0.003740596817806363, -0.032891105860471725, -0.04716387763619423, 0.10622593015432358, -0.03185778856277466, -0.011282091960310936, -0.06614591926336288, 0.0248707327991724, -0.09234968572854996, 0.002234919462352991, 0.00616275891661644, 0.13267983496189117, -0.05248032510280609, -0.07608574628829956, 0.12762022018432617, 0.014848705381155014, -0.07145187258720398, 0.15875335037708282, 0.0007266773609444499, 0.002722452161833644, -0.16790443658828735, -0.037193797528743744, 0.07631760835647583, 0.04788196459412575, -0.09909667074680328, 0.06640397757291794, -0.00703833531588316, -0.029081329703330994, -0.006260290741920471, -0.014761978760361671, 0.05504158139228821, -0.025442879647016525, 0.04262273386120796, -0.08273036777973175, 0.00870768167078495, 0.002755607943981886, 0.0049137151800096035, -0.025743864476680756, -0.07683344185352325, -0.059321291744709015, -0.07733044028282166, -0.07970259338617325, 0.02818688005208969, 0.008782079443335533, -0.17869247496128082, 0.033008966594934464, -0.047459982335567474, -0.003927192185074091, 0.11930781602859497, -0.020189406350255013, -0.0642063245177269, 0.026763824746012688, -0.03541046380996704, -0.008329542353749275, 0.01295013539493084, 0.08211972564458847, 0.1607002317905426, -0.06753423064947128, -0.08775719255208969, -0.03582695126533508, -0.07795365899801254, 0.07995370775461197, -0.0778263732790947, 0.08415260165929794, -0.03300916403532028, -0.0523921400308609, -0.1254425346851349, 0.06821151822805405, 0.16123169660568237, -0.00022573024034500122, -0.04528007283806801, -0.06364630907773972, -0.1722138673067093, 0.001060457550920546, 0.030879057943820953, -0.021026836708188057, 0.05976488068699837, -0.04400122910737991, 0.038739241659641266, -0.10216853022575378, 0.034151557832956314, 0.028811302036046982, 0.02922840602695942, 0.08178534358739853, 0.01564299874007702, 0.014684455469250679, 0.03743728622794151, -0.020817717537283897, -0.1286853402853012, 0.06834319233894348, -0.03467191010713577, 0.032946184277534485, -0.09482783824205399, 0.1055692508816719, 0.11076052486896515, -0.08689883351325989, -0.034912578761577606, 0.08463790267705917, 0.012099457904696465, -0.005691241938620806, 0.08571788668632507, -0.11176393181085587, -0.017379632219672203, -0.11220882833003998, 0.1355859935283661, -0.020836157724261284, -0.006382688879966736, -0.1378747820854187, -0.07363241165876389, -0.008670346811413765, -0.1026502400636673, -0.07021938264369965, -0.017487267032265663, 0.10790189355611801, 0.13902056217193604, -0.13429495692253113, 0.16904102265834808, -0.09393320232629776, 0.10367375612258911, 0.001077453140169382, -0.10599584877490997, -0.10522900521755219, -0.0016601107781752944, -0.033628758043050766, 0.10164903104305267, 0.04586893320083618, -0.008181875571608543, 0.13259878754615784, 0.04102326184511185, -0.002414538525044918, 0.01706993393599987, -0.01891418732702732, -0.03421448916196823, -0.016182633116841316, 0.042456116527318954, 0.03620339184999466, 0.11879934370517731, 0.0007253718795254827, -0.016167379915714264, 0.007037988863885403, 0.08049675077199936, -0.02250533550977707, -0.01953323744237423, -0.041171010583639145, -0.058407314121723175, 0.01536310464143753, -0.03370710834860802, -0.00978122465312481, 0.02670833095908165, 0.04274526983499527, 0.10428135842084885, -0.07825684547424316, -0.013149663805961609, -0.003835599636659026, 0.04202689230442047, -0.028725188225507736, -0.013275405392050743, -0.08423814922571182, 0.05219724029302597, 0.02407844364643097, 0.07415125519037247, 0.0008933281060308218, 0.11024779826402664, -0.0424555204808712, 0.004857557825744152, 0.02334469184279442, 0.019925791770219803, 0.044765882194042206, 0.0254617128521204, 0.006222764030098915, -0.0340459868311882, 0.03422689810395241, 0.026046445593237877, -0.09398054331541061, -0.025512168183922768, 0.05309261009097099, 0.03907008469104767, 0.0469147153198719, -0.023956822231411934, -0.0020030131563544273, -0.036152079701423645, -0.1285262554883957, 0.04132392629981041, 0.012463416904211044, -0.07663571834564209, 0.12779685854911804, 0.04607785865664482, -0.02376762218773365, -0.09294387698173523, 0.022596802562475204, 0.06143971532583237, 0.025055203586816788, 0.14001339673995972, -0.07289788872003555, -0.024066254496574402, 0.0361732617020607, 0.01216457411646843, -0.14471876621246338, -0.057859767228364944, 0.014241615310311317, -0.13820518553256989, -0.03513150289654732, -0.009283320978283882, 0.009267396293580532, 0.0022913699503988028, 0.1295926868915558, 0.07572085410356522, 0.10088721662759781, 0.02794824168086052, 0.030476415529847145, -0.0792539119720459, -0.044399671256542206, 0.10441841930150986, 0.07212969660758972, -0.07618528604507446, 0.01933707296848297, -0.21500083804130554, 0.05070808529853821, -0.06854750961065292, 0.06312818080186844, 0.044104523956775665, 0.08064476400613785, -0.0686265155673027, -0.07052283734083176, 0.020721007138490677, -0.036651141941547394, -0.07074440270662308, 0.05771779641509056, -0.11558017879724503, 0.051968421787023544, 0.09185002744197845, -0.037663184106349945, 0.005605892278254032, 0.01770046539604664, -0.003428658004850149, 0.06101347133517265, -0.06496571004390717, -0.05868571251630783, -0.026827096939086914, -0.07973727583885193, 0.0694001168012619, -0.09404990822076797, 0.028992263600230217, -0.09202878177165985, 0.0688856765627861, 0.018620606511831284, -0.04029224440455437, 0.06352659314870834, 0.10812661796808243, 0.01922527886927128, 0.09291310608386993, -0.14209438860416412, 0.04594683647155762, -0.04505181685090065, 0.03979157283902168, 0.0009818222606554627, 0.029639597982168198, 0.004740645177662373, 0.055321961641311646, -0.04606759920716286, -0.013695064932107925, 0.023220119997859, -0.006397685501724482, 0.10402311384677887, -0.08220665156841278, -0.06958851218223572, -0.07624071091413498, 0.0251330453902483, -0.06643882393836975, 0.09584580361843109, 0.046252816915512085, 0.0406855046749115, 0.022546472027897835, 0.06706885248422623, 0.01562776416540146, -0.04865439236164093, 0.10266038775444031, -0.10903767496347427, 0.05126035585999489, 0.08811876177787781, -0.06941330432891846, 0.03084217570722103, 0.06624782830476761, -0.008747123181819916, 0.005735297221690416, 0.08061228692531586, 0.10970200598239899, 0.004763585980981588, -0.1016688197851181, -0.04191454499959946, -0.044152311980724335, -0.12200663983821869, 0.06550507247447968, -0.10665319859981537, -0.0388115793466568, -0.020326511934399605, 0.007239483296871185, 0.06148422509431839, 0.05307472497224808, -0.03792116418480873, 0.05508486181497574, -0.013844741508364677, -0.08463156968355179, -0.084260955452919, 0.0030616556759923697, -0.006332126446068287, 0.028058305382728577, 0.07990695536136627, 0.021702798083424568, -0.15562018752098083, 0.04755435511469841, 0.03366129472851753, -0.020169207826256752, 0.02062140963971615, 0.06712380796670914, -0.073424331843853, -0.02788405679166317, -0.10898669064044952, -0.04137071594595909, -0.006541423499584198, 0.006370922084897757, 0.0997752994298935, 0.047441285103559494, -0.09438624233007431, 0.013957063667476177, -0.05132601037621498, 0.15933910012245178, -0.043153662234544754, -0.03216171637177467, -0.043957870453596115, -0.06708884984254837, -0.0002692192792892456, 0.07162293046712875, 0.053913138806819916, -0.057886913418769836, -0.07504207640886307, -0.04155459254980087, -0.06284531205892563, 0.029116112738847733, -0.026169084012508392, 0.033568162471055984, 0.022719504311680794, 0.05869842320680618, -0.050832200795412064, -0.051395971328020096, 0.014759919606149197, 0.08986878395080566, 0.028872458264231682, -0.08428719639778137, -0.015521788969635963, -0.11411670595407486, 0.10539358854293823, -0.02632584609091282, -0.025491012260317802, 0.036562975496053696, 0.11364585906267166, -0.13398632407188416, -0.02501199021935463], "MindSpore\u5bf9Protobuf\u7248\u672c\u662f\u5426\u6709\u7279\u522b\u8981\u6c42\uff1f": [-0.034053415060043335, 0.02739083208143711, 0.032127488404512405, -0.019806010648608208, -0.054958488792181015, -0.08179839700460434, 0.027968095615506172, 0.05033198371529579, -0.057741351425647736, 0.09638702869415283, -0.0376792848110199, -0.06564464420080185, -0.04101911932229996, 0.00857744924724102, -0.09018807858228683, 0.09798920154571533, 0.10750740021467209, -0.004377948120236397, -0.030603796243667603, 0.08367694169282913, -0.0185625609010458, -0.0122087262570858, 0.019283942878246307, -0.05865795910358429, 0.012117466889321804, 0.1164609044790268, 0.017627596855163574, 0.02653435803949833, 0.023923737928271294, 0.10999632626771927, 0.052611544728279114, -0.02001391351222992, -0.09859569370746613, 0.02216423861682415, 0.00318513298407197, -0.07599953562021255, -0.03322642296552658, 0.06696395576000214, -0.04545728862285614, 0.018773145973682404, 0.0523102767765522, 0.0022831258829683065, -0.030303742736577988, 0.1538926661014557, -0.08197066932916641, -0.03802952542901039, -0.0804026797413826, -0.008486822247505188, 0.057553768157958984, 0.05275556072592735, -0.15360136330127716, 0.04296605661511421, 0.07772155106067657, 0.02001681923866272, -0.04077174887061119, -0.01721174456179142, 0.028623424470424652, -0.012674541212618351, 0.017772333696484566, -0.015885785222053528, -0.034213241189718246, 0.005291788838803768, -0.012119931168854237, -0.11028196662664413, -0.11331969499588013, -0.015662921592593193, -0.031837549060583115, -0.09637848287820816, -0.057010166347026825, -0.0020510228350758553, -0.03553645312786102, 0.009217359125614166, -0.021250320598483086, 0.061823293566703796, 0.06915315985679626, 0.05927238613367081, -0.04861164838075638, 0.04562019929289818, -0.07173482328653336, 0.0405474491417408, -0.004345956724137068, 0.06601041555404663, 0.012851253151893616, -0.03127789869904518, -0.09008677303791046, 0.013605176471173763, -0.02022494561970234, 0.10143297165632248, -0.05376971513032913, 0.10179696977138519, 0.009622041136026382, -0.021207351237535477, -0.1646261215209961, 0.03341340273618698, 0.033493004739284515, -0.06980103999376297, -0.07758154720067978, -0.013590583577752113, -0.1923595517873764, 0.01119002141058445, 0.014522530138492584, -0.03237232565879822, -0.017840970307588577, 0.052093494683504105, -0.010470348410308361, -0.0844324380159378, 0.08536461740732193, -0.010218298062682152, 0.0732010006904602, 0.05010070651769638, 0.04688620939850807, -0.004443675745278597, 0.047097429633140564, 0.012564592063426971, -0.07170923799276352, 0.006953790318220854, -0.038538094609975815, -0.011853475123643875, -0.1322675347328186, 0.08094905316829681, 0.04016416147351265, -0.033862289041280746, -0.018444648012518883, 0.006440394092351198, -0.004893245175480843, -0.019500765949487686, 0.06594967842102051, -0.1297067105770111, -0.06012542173266411, -0.07605594396591187, 0.12041576206684113, -0.09434325993061066, 0.05190318822860718, -0.07174679636955261, -0.16046872735023499, 0.03576435148715973, -0.02087416499853134, -0.015490245074033737, -0.0067619034089148045, 0.0844581350684166, 0.035204268991947174, -0.11740507185459137, 0.10137378424406052, -0.026177987456321716, 0.13516195118427277, 0.021784834563732147, -0.03756047785282135, -0.05683671310544014, 0.018428154289722443, -0.04007759690284729, 0.0482267364859581, 0.040613699704408646, -0.04714352637529373, 0.055407024919986725, 0.03727288171648979, 0.05945328623056412, -0.052785687148571014, -0.002447762293741107, -0.018051572144031525, -0.053670305758714676, 0.0026222667656838894, -0.01009277068078518, 0.07822749018669128, 0.007305302191525698, -0.030156563967466354, -0.020124297589063644, 0.05979376658797264, 0.012434033676981926, -0.04160993918776512, -0.04860146343708038, -0.05923790484666824, -0.006743455305695534, -0.027661005035042763, -0.01565415784716606, 0.002073474694043398, 0.0008602400775998831, 0.05385110154747963, -0.05866610258817673, 0.023019667714834213, -0.03256027027964592, 0.07357321679592133, -0.07835124433040619, -0.09214000403881073, -0.012996751815080643, 0.016040055081248283, -0.0014888894511386752, 0.08043859153985977, 0.06380344182252884, 0.1278180032968521, -0.08746489882469177, -0.047573648393154144, 0.04110408574342728, 0.025146229192614555, 0.09577464312314987, 0.02566673420369625, -0.00783003680408001, -0.06524147093296051, -0.04212767630815506, 0.028891704976558685, -0.03326457738876343, -0.019158190116286278, 5.319714546203613e-06, 0.07204192131757736, 0.033402618020772934, 0.057257458567619324, -0.03126448392868042, -0.014870405197143555, -0.08910737931728363, 0.026537803933024406, 0.05784168094396591, 0.05026257410645485, 0.0006918756989762187, 0.02112649939954281, -0.07794864475727081, -0.10477141290903091, -0.02197684533894062, 0.08877282589673996, 0.04532841593027115, 0.08130873739719391, -0.048674341291189194, -0.016785116866230965, -0.034304339438676834, 0.0685698464512825, -0.04412132874131203, -0.1008501797914505, 0.04137571156024933, 0.02738870680332184, -0.07466059178113937, -0.00425005005672574, 0.07312876731157303, -0.09220181405544281, 0.09963827580213547, 0.0577765516936779, 0.17323973774909973, -0.0370064377784729, 0.09898748993873596, -0.025023210793733597, -0.03590124845504761, 0.07668708264827728, 0.012523968704044819, -0.14070162177085876, 0.09702671319246292, -0.10425789654254913, -0.057501859962940216, -0.04724431782960892, 0.12352319061756134, 0.07827145606279373, 0.08150830119848251, 0.035645075142383575, -0.06690898537635803, 0.0054422225803136826, 0.05325489863753319, -0.07068683207035065, 0.08749167621135712, 0.0666264146566391, 0.06652086228132248, 0.05078545957803726, -0.007913999259471893, 0.05272320657968521, 0.059242941439151764, 0.06198818236589432, -0.005736899096518755, -0.12980300188064575, -0.007561092730611563, 0.031127650290727615, 0.030745184049010277, 0.12323601543903351, 0.0027960885781794786, 0.059126053005456924, -0.1195564717054367, 0.03706525266170502, -0.003744772868230939, -0.10363515466451645, -0.04002398997545242, 0.07343406975269318, 0.019159268587827682, 0.025642305612564087, -0.1802339255809784, 0.018918167799711227, 0.05512167885899544, 0.04897711053490639, 0.03827836737036705, -0.01060562301427126, -0.0063784560188651085, 0.05970657616853714, -0.049684394150972366, 0.05444001033902168, 0.020656313747167587, 0.0480843111872673, 0.07533391565084457, -0.039140306413173676, -0.010155907832086086, -0.024681750684976578, 0.06466449797153473, -0.035337887704372406, 0.10439078509807587, 0.0789388045668602, 0.02029157429933548, 0.011639662086963654, 0.07033148407936096, -0.03178758919239044, -0.004858925007283688, 0.04333145171403885, -0.07185035943984985, -0.06160684674978256, 0.009283190593123436, -0.018199609592556953, 0.08091519773006439, 0.03817497938871384, 0.02179555967450142, 0.10275862365961075, 0.0983649417757988, 0.049601960927248, 0.07083633542060852, -0.06795897334814072, 0.016344860196113586, 0.08514335751533508, -0.1539643108844757, 0.03237071633338928, -0.08188341557979584, 0.008477045223116875, -0.05059889331459999, 0.03770754486322403, 0.056209638714790344, 0.06514723598957062, -0.09310586750507355, 0.007684603799134493, 0.010322675108909607, -0.029272953048348427, -0.014313114807009697, 0.07537867873907089, -0.05311262235045433, 0.08566774427890778, 0.05807553604245186, -0.021402860060334206, -0.06993932276964188, 0.05682859569787979, 0.05027876794338226, -0.04909735545516014, 0.08056547492742538, 0.06996691972017288, -0.029190953820943832, -0.014128530398011208, -0.06877247989177704, 0.09186772257089615, -0.11639121919870377, 0.0668196901679039, 0.06359034776687622, -0.007463214918971062, -0.06182293966412544, 0.09442154318094254, -0.09624513238668442, 0.012255758978426456, -0.05916353687644005, -0.015399077907204628, -0.10519756376743317, -0.05074410140514374, -0.02182106301188469, 0.06847955286502838, 0.010732578113675117, -0.036336615681648254, 0.005549206398427486, -0.08543634414672852, -0.05747411400079727, 0.0028512084390968084, -0.07263446599245071, 0.036392584443092346, -0.096338652074337, 0.009957952424883842, 0.039244331419467926, -0.02701132372021675, 0.02138281613588333, 0.09213370829820633, 0.07285726070404053, -0.07953374087810516, -0.027304915711283684, -0.1498841643333435, 0.11902983486652374, -0.07078278064727783, -0.08562741428613663, 0.08683496713638306, 0.06949674338102341, -0.16773265600204468, 0.05502647906541824], "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u62a5\u9519`ProxyError(Cannot connect to proxy)`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.013578908517956734, 0.09206615388393402, 0.062031686305999756, 0.018804898485541344, -0.06383083760738373, -0.02108926512300968, 0.06805344671010971, 0.10379613190889359, 0.040378689765930176, 0.0011135232634842396, -0.051622215658426285, 0.09117615222930908, -0.06605710089206696, 0.05636605620384216, 0.010656283237040043, 0.08695448935031891, 0.09910589456558228, 0.015132663771510124, -0.0033535552211105824, 0.023766299709677696, 0.07617606222629547, 0.04512178897857666, 0.1161717027425766, -0.10577839612960815, -0.005606495775282383, 0.11469323933124542, -0.01345561072230339, 0.011441810056567192, -0.06946459412574768, 0.06859654188156128, -0.03617194667458534, 0.012541869655251503, -0.15975560247898102, 0.006697638425976038, -0.10015524923801422, 0.0004886015667580068, -0.011773280799388885, 0.15374962985515594, -0.06332062184810638, -0.04574703797698021, 0.025448674336075783, 0.06857840716838837, 0.037469666451215744, 0.0830550268292427, 0.05177496746182442, -0.010612186044454575, -0.15605026483535767, 0.027831081300973892, 0.035006940364837646, 0.05087759345769882, -0.14076900482177734, 0.07291130721569061, 0.02048671804368496, -0.015757231041789055, 0.07771994173526764, -0.013400333933532238, 0.0867345780134201, -0.07130132615566254, 0.03600146621465683, 0.007680846378207207, 0.005222630687057972, -0.020257949829101562, 0.024121643975377083, 0.02992406114935875, -0.12225835770368576, -0.01994124799966812, -0.06995129585266113, -0.05368426442146301, -0.03888295218348503, -0.059926897287368774, -0.14817780256271362, 0.0037394172977656126, -0.10620147734880447, 0.05425822734832764, 0.05701115354895592, 0.04483553767204285, -0.05328556150197983, 0.024581531062722206, -0.03154880926012993, -0.049828216433525085, 0.03525187447667122, 0.01063176803290844, 0.13833539187908173, -0.07229667156934738, -0.0325859971344471, -0.008939281105995178, -0.13820189237594604, 0.07670895755290985, -0.06424358487129211, 0.05478087440133095, -0.04062405973672867, -0.02251824177801609, -0.06950395554304123, 0.10687361657619476, 0.11102224886417389, 0.010294115170836449, -9.731575846672058e-05, 0.016990147531032562, -0.14439544081687927, -0.04514668136835098, 0.04017454385757446, -0.04292590543627739, -0.03162769228219986, -0.06758765131235123, -0.014073280617594719, -0.06574205309152603, 0.014259896241128445, -0.016287226229906082, -0.021875247359275818, 0.025331024080514908, -0.014375749975442886, 0.032975226640701294, 0.06715639680624008, -0.04882713407278061, -0.060307517647743225, 0.02435918152332306, 0.001139400526881218, 0.077346071600914, -0.05446786433458328, 0.10610854625701904, 0.1050756424665451, -0.09256825596094131, 0.006419455166906118, 0.047703903168439865, 0.007952478714287281, -0.018047839403152466, 0.05141569301486015, -0.09734377264976501, -0.032627493143081665, -0.039213694632053375, 0.2075662612915039, -0.0420188345015049, 0.08248862624168396, -0.14250993728637695, -0.033087484538555145, 0.04665510356426239, -0.10572782903909683, -0.005842295475304127, -0.004274221137166023, 0.1586536467075348, 0.14085930585861206, -0.12165002524852753, 0.1273879110813141, -0.04138406366109848, 0.14046542346477509, 0.02567911520600319, -0.08561359345912933, -0.13807937502861023, -0.004120154306292534, -0.037065714597702026, 0.06486465781927109, 0.006696708966046572, -0.026306523010134697, 0.09507004171609879, -0.04417930170893669, 0.03977344557642937, 0.02581975981593132, 0.0006956792203709483, -0.014012684114277363, 0.004313248675316572, -0.009023618884384632, -0.02901875600218773, 0.1462293118238449, -0.007586076855659485, -0.05034023895859718, 0.05201827734708786, 0.06595435738563538, -0.04888200759887695, -0.060329459607601166, -0.02826661244034767, -0.07183379679918289, -0.0035731520038098097, -0.07761944830417633, -0.05963778868317604, 0.08077939599752426, 0.013822450302541256, 0.07139219343662262, -0.038656461983919144, -0.010542908683419228, -0.013806103728711605, 0.04507178068161011, -0.08877158164978027, -0.010212811641395092, -0.07976305484771729, 0.10292933136224747, -0.007727704010903835, -0.010200951248407364, -0.03134826570749283, 0.09974001348018646, 0.0019044443033635616, -0.004025021102279425, 0.05513651669025421, -0.030870765447616577, -0.017942160367965698, -0.005110457539558411, -0.055600572377443314, -0.0313141904771328, 0.005111571401357651, -0.0109888119623065, -0.10728257894515991, -0.10688278824090958, -0.005180010572075844, 0.004078221973031759, -0.002603227039799094, -0.058781929314136505, -0.04993999004364014, -0.13152430951595306, -0.07192431390285492, 0.022855384275317192, -0.007911204360425472, -0.011386394500732422, 0.1366637945175171, -0.050347764045000076, -0.032056111842393875, -0.05730993300676346, 0.04095087945461273, 0.04578739404678345, 0.032958224415779114, 0.0645744800567627, -0.03057575225830078, -0.016794152557849884, 0.02901875413954258, 0.06055264174938202, -0.11420337855815887, -0.09879675507545471, -0.004232366569340229, -0.04383791610598564, -0.04222310706973076, -0.038196153938770294, 0.03957705944776535, -0.018130717799067497, 0.09680337458848953, 0.031063741073012352, 0.03513325750827789, -0.0004474166489671916, -0.024966027587652206, -0.10069608688354492, -0.07119148969650269, 0.07030384242534637, 0.1151101291179657, -0.09629731625318527, 0.08193002641201019, -0.1132579892873764, 0.04712054878473282, -0.08759801834821701, 0.09380222111940384, 0.03111584298312664, 0.022196676582098007, 0.021542366594076157, -0.021165011450648308, 0.06524807214736938, -0.028810784220695496, -0.1093939021229744, 0.06327639520168304, -0.0073983920738101006, 0.05702163651585579, 0.03238973394036293, -0.07472024112939835, 0.003177125472575426, 0.017415862530469894, 0.03692986071109772, 0.059014417231082916, -0.09280940890312195, -0.052249372005462646, -0.034189026802778244, -0.04960468411445618, 0.05604191869497299, -0.10573793947696686, 0.0697496309876442, -0.07303716242313385, 0.01193659845739603, 0.03840567544102669, -0.08461085706949234, 0.03018125332891941, 0.12552209198474884, 0.05660167336463928, 0.06289347261190414, -0.09702301025390625, 0.06690895557403564, 0.028151605278253555, -0.02815062366425991, 0.024968860670924187, 0.0360814668238163, 0.019471466541290283, 0.04047781601548195, -0.01692730374634266, 0.04909302666783333, 0.020022079348564148, 0.002088407753035426, 0.03602226823568344, -0.13985000550746918, -0.05004754662513733, -0.08396483957767487, -0.04251885414123535, -0.10684196650981903, 0.06537472456693649, -0.006636533420532942, 0.07346794009208679, 0.12087204307317734, 0.05112328380346298, -0.05389738827943802, -0.056946516036987305, 0.11516746878623962, -0.07645328342914581, -0.03569824993610382, 0.036384034901857376, -0.1082487478852272, 0.0024840948171913624, 0.06652432680130005, -0.005345829762518406, -0.022026700899004936, 0.04190222546458244, 0.08541299402713776, 0.0476820133626461, -0.08562278747558594, -0.07460562884807587, -0.0028279107064008713, -0.14853861927986145, 0.06764570623636246, -0.06463924795389175, -0.05384606122970581, -0.06654614210128784, -0.07117026299238205, 0.08898928016424179, 0.05951961502432823, -0.06354324519634247, 0.02010590024292469, 0.00762829277664423, -0.03563909977674484, -0.11081381142139435, 0.008967230096459389, -0.03586156666278839, -0.002965199528262019, 0.08128143101930618, -0.021456066519021988, -0.1458616405725479, 0.06068745627999306, 0.06958413869142532, 0.021168597042560577, 0.037733044475317, 0.01816890761256218, -0.06644844263792038, -0.009863724932074547, -0.10631763935089111, 0.029980100691318512, -0.04966956004500389, 0.0688040554523468, 0.10800231993198395, -0.023005906492471695, -0.06223367899656296, 0.042845048010349274, -0.03557224199175835, 0.12866750359535217, -0.11799422651529312, -0.040427472442388535, -0.058354929089546204, -0.013312561437487602, -0.059229206293821335, 0.033020734786987305, 0.008491025306284428, 0.017191078513860703, -0.07978518307209015, -0.03548604995012283, -0.044751737266778946, -0.005758970510214567, -0.04679965227842331, 0.007082480005919933, 0.017645347863435745, 0.04483798146247864, -0.006547756027430296, -0.06410607695579529, 0.04476513713598251, 0.08688483387231827, 0.045360811054706573, -0.051138028502464294, 0.026979168877005577, -0.13294754922389984, 0.10755683481693268, -0.06581921130418777, -0.15545663237571716, 0.023554259911179543, 0.11883726716041565, -0.15350152552127838, 0.005036341026425362], "\u4f7f\u7528pip\u5b89\u88c5\u65f6\u63d0\u793a\u9519\u8bef\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.06287425756454468, 0.04442345350980759, -0.028915375471115112, 0.0017029216978698969, -0.018510734662413597, -0.026261815801262856, 0.034182626754045486, 0.008414600975811481, -0.004045137669891119, 0.0069332430139184, -0.04127546399831772, 0.09785336256027222, -0.05763855576515198, -0.007608360610902309, -0.0023347320966422558, 0.06720322370529175, 0.08052554726600647, 0.06307391077280045, -0.016927791759371758, 0.027079204097390175, 0.06679761409759521, 0.03839362412691116, 0.06417331844568253, -0.015567416325211525, 0.0494636595249176, 0.12819722294807434, 0.008202474564313889, -0.052713677287101746, -0.09115248918533325, 0.09548161178827286, -0.03397854417562485, 0.004549513105303049, -0.08642523735761642, 0.08440853655338287, -0.05926158279180527, 0.023233072832226753, -0.04159751161932945, 0.15908463299274445, -0.028171371668577194, -0.05186697095632553, 0.06774026900529861, 0.07618135213851929, -0.03384595364332199, 0.0704655721783638, 0.05740867555141449, -0.0532585084438324, -0.14346228539943695, -0.06257655471563339, 0.0879460871219635, 0.02317320927977562, -0.13279755413532257, 0.10146383941173553, 0.025799203664064407, -0.03552113100886345, 0.02606087364256382, -0.015040949918329716, 0.07298512756824493, -0.023525653406977654, 0.018561864271759987, -0.07783880084753036, 0.01721484400331974, -0.053817324340343475, -0.014319210313260555, 0.001959591405466199, -0.09701145440340042, -0.017824139446020126, -0.07744746655225754, -0.049244508147239685, -0.04422838240861893, -0.06379528343677521, -0.06357438862323761, 0.011811984702944756, -0.03365432843565941, 0.028694866225123405, 0.06494555622339249, -0.0019195838831365108, -0.052759088575839996, 0.006013182923197746, 0.0007561918464489281, 0.03425018489360809, 0.03803618997335434, 0.04998244345188141, 0.1002422496676445, -0.044547513127326965, -0.05302450433373451, -0.027760881930589676, -0.09831646084785461, 0.06543401628732681, -0.06530272215604782, 0.01477854885160923, -0.019957881420850754, 0.024924136698246002, -0.10316523164510727, 0.05185684189200401, 0.149283304810524, 0.05074944347143173, -0.010512150824069977, 0.0587151013314724, -0.1308397650718689, -0.015272402204573154, 0.06292562186717987, -0.06264901906251907, -0.0018790221074596047, -0.035844750702381134, 0.024267081171274185, -0.06057969853281975, 0.04471241310238838, -0.02796696498990059, 0.01254583615809679, 0.0034171936567872763, 0.05193103849887848, -0.013915938325226307, 0.07691538333892822, -0.008484170772135258, -0.036797378212213516, 0.045061349868774414, -0.023232806473970413, 0.06896752119064331, -0.05647974833846092, 0.10126011818647385, 0.08130281418561935, -0.0812736302614212, 0.00980003084987402, 0.09879466891288757, 0.011232267133891582, 0.0038315244019031525, 0.09855220466852188, -0.09345728158950806, -0.05457284674048424, -0.042112912982702255, 0.1223975196480751, -0.049772437661886215, 0.055003970861434937, -0.12396063655614853, -0.0798683688044548, 0.05769021064043045, -0.08294719457626343, -0.0010631936602294445, 0.023317456245422363, 0.13445384800434113, 0.0956389456987381, -0.150394007563591, 0.09937133640050888, -0.013335003517568111, 0.12459397315979004, 0.03176990523934364, -0.10073775053024292, -0.08228558301925659, -0.01992170326411724, -0.02834954857826233, 0.08568131923675537, 0.005442019551992416, -0.02501879818737507, 0.12016759812831879, -0.0775076225399971, -0.0191115103662014, 0.05534905940294266, 0.024487728253006935, -0.032595403492450714, -0.023397905752062798, -0.10797702521085739, -0.02927485853433609, 0.057089243084192276, -0.013043928891420364, -0.07424622774124146, 0.024444619193673134, 0.04965061694383621, -0.035664185881614685, -0.08845289051532745, -0.03745049238204956, -0.049297817051410675, -0.01025114394724369, 0.005215221084654331, -0.06458014994859695, 0.07079140841960907, 0.03889213129878044, 0.04294274002313614, -0.038302451372146606, 0.003341651288792491, 0.018302764743566513, 0.02417270466685295, -0.11359523236751556, -0.11556927114725113, -0.07083133608102798, 0.10250425338745117, -0.0025956963654607534, -0.00032856687903404236, -0.014220115728676319, 0.07355494052171707, -0.07735651731491089, 0.02384631335735321, 0.028818581253290176, -0.00916793942451477, 0.016926266252994537, 0.021899141371250153, -0.06419782340526581, -0.083722785115242, 0.023200053721666336, 0.015389171428978443, -0.09168294817209244, -0.06227024644613266, 0.006415104027837515, -0.0009682473610155284, -0.0038231555372476578, -0.016933446750044823, 0.006711438298225403, -0.11107784509658813, -0.07377252727746964, -0.05149044096469879, 0.010645313188433647, 0.017509616911411285, 0.11813612282276154, -0.031616296619176865, -0.037814244627952576, -0.07483207434415817, 0.056053657084703445, 0.05878476798534393, 0.0738195925951004, 0.053935904055833817, -0.027546413242816925, -0.05304989963769913, 0.024354038760066032, 0.030977828428149223, -0.053430087864398956, -0.07475003600120544, -0.02225000038743019, -0.05665116384625435, -0.06780038774013519, -0.016316771507263184, 0.06400231271982193, 0.025997910648584366, 0.1177692785859108, 0.013679543510079384, 0.09763031452894211, -0.0011478750966489315, 0.012525663711130619, -0.11078199744224548, -0.06949200481176376, 0.07157154381275177, 0.13146141171455383, -0.08357703685760498, 0.06631933897733688, -0.1665184199810028, -0.006900290492922068, -0.0825694277882576, 0.06819380819797516, 0.08824163675308228, 0.01644878275692463, -0.00802243035286665, -0.0470130518078804, 0.05958486348390579, -0.040095701813697815, -0.07092505693435669, 0.017956461757421494, -0.013435687869787216, 0.006800442468374968, 0.022248607128858566, -0.03368458151817322, 0.024561358615756035, 0.04515586420893669, 0.02420264482498169, 0.023384345695376396, -0.05871487408876419, 0.01836436428129673, -0.009976653382182121, -0.022766340523958206, 0.05413378030061722, -0.11031095683574677, 0.05135311558842659, -0.10333852469921112, 0.030485913157463074, 0.03406898304820061, -0.0641225129365921, -0.027696453034877777, 0.1453687995672226, 0.06203768029808998, 0.07815475761890411, -0.06514552980661392, 0.07684667408466339, -0.007985562086105347, 0.01577301137149334, 0.0019000670872628689, 0.04214423522353172, -0.021877067163586617, 0.09082362055778503, -0.015095501206815243, 0.05285952612757683, -0.017188992351293564, 0.05424332991242409, 0.06511558592319489, -0.05514295771718025, -0.04272310808300972, -0.09915535151958466, -0.01996951922774315, -0.041494861245155334, 0.12706272304058075, 0.02637193351984024, 0.0461990088224411, 0.050966039299964905, 0.0696801021695137, -0.05328947305679321, -0.02179931476712227, 0.07540203630924225, -0.022744562476873398, -0.08080606907606125, -0.02010256238281727, -0.09989158064126968, 0.027114305645227432, 0.06374730169773102, -0.033681515604257584, 0.0254030991345644, 0.08140229433774948, 0.026841945946216583, 0.04430510103702545, -0.027539944276213646, -0.03853532671928406, 0.004627074580639601, -0.13710762560367584, 0.057973120361566544, -0.06227217987179756, -0.015424173325300217, -0.11097155511379242, -0.02022734098136425, 0.08721859753131866, 0.07065856456756592, -0.10618236660957336, 0.03902117908000946, 0.04671671614050865, -0.007937411777675152, -0.1289764940738678, 0.017312726005911827, -0.05848947539925575, 0.01863980107009411, 0.09463385492563248, 0.03863954544067383, -0.13556912541389465, 0.06983630359172821, 0.053980786353349686, 0.00047577169607393444, 0.0665893629193306, 0.08124063163995743, -0.09503566473722458, -0.011270413175225258, -0.13184982538223267, 0.0234779492020607, -0.08169732242822647, 0.013898487202823162, 0.134568989276886, -0.0160690825432539, -0.02619558945298195, 0.06834389269351959, -0.06821702420711517, 0.03958752751350403, -0.10669303685426712, -0.052809007465839386, -0.1096687987446785, -0.015169801190495491, -0.028083067387342453, 0.014334854669868946, 0.049360692501068115, 0.07279227674007416, -0.03190990537405014, -0.003066327190026641, -0.06820374727249146, 0.008142783306539059, -0.09555663168430328, 0.04563789442181587, -0.005175177473574877, 0.059159502387046814, -0.003428960684686899, -0.07316172868013382, 0.012862315401434898, 0.1031886413693428, 0.042127374559640884, -0.037567347288131714, -0.01714741811156273, -0.09880297631025314, 0.05857781320810318, -0.09833458065986633, -0.11783100664615631, 0.03171033039689064, 0.08660739660263062, -0.18121337890625, -0.037676941603422165], "\u4f7f\u7528pip\u5b89\u88c5\u4f9d\u8d56\u5e93\u65f6\u63d0\u793a`No matching distribution found for XXX`\u9519\u8bef\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.060715965926647186, 0.022039398550987244, -0.0015962631441652775, 0.006283692084252834, -0.015056867152452469, -0.03881516680121422, 0.025467505678534508, 0.014166099950671196, 0.00810718722641468, 0.019472572952508926, -0.024759886786341667, 0.0900423601269722, -0.04491475597023964, -0.02576465904712677, -0.010714560747146606, 0.05846349149942398, 0.1025824174284935, 0.028893733397126198, -0.010728353634476662, 0.029307831078767776, 0.06134264916181564, 0.01210037898272276, 0.04432076960802078, -0.028109237551689148, 0.02367967925965786, 0.1366766095161438, 0.003925558645278215, -0.05356009677052498, -0.07437948137521744, 0.0966966301202774, -0.024367526173591614, -0.00840088352560997, -0.11334367096424103, 0.06388384103775024, -0.01189878024160862, -0.03596819192171097, -0.02101658284664154, 0.1385645717382431, -0.01787281222641468, -0.0018691251752898097, 0.08195295184850693, 0.09011001139879227, -0.04852333292365074, 0.11963401734828949, 0.03829773887991905, -0.059337861835956573, -0.14955683052539825, -0.0679902657866478, 0.08892427384853363, 0.06090790033340454, -0.11584293842315674, 0.07671469449996948, 0.008238040842115879, -0.0242551751434803, 0.017280420288443565, -0.00010137632489204407, 0.055363740772008896, -0.06809061020612717, 0.02099709026515484, -0.027203969657421112, 0.04556461423635483, -0.032313186675310135, -0.024672485888004303, -0.002398771233856678, -0.06629931926727295, -0.01882903277873993, -0.059710241854190826, -0.05485457554459572, -0.05878065526485443, -0.0765947625041008, -0.0732363909482956, 0.019969113171100616, -0.030943021178245544, 0.062370505183935165, 0.06839587539434433, 0.07394612580537796, -0.0524890162050724, 0.003565877443179488, 0.0011667630169540644, 0.03256388008594513, 0.03402731567621231, 0.08050146698951721, 0.09432975202798843, -0.03281218558549881, -0.07190809398889542, -0.032269205898046494, -0.06676435470581055, 0.03516501560807228, -0.06208080053329468, 0.03873518481850624, 0.0015140704344958067, -0.03667113557457924, -0.07120168209075928, 0.0694517120718956, 0.1222984567284584, 8.53557139635086e-05, -0.002286717062816024, 0.01708965189754963, -0.1722196638584137, 0.008708246052265167, 0.035716667771339417, -0.07604356855154037, -0.011300124228000641, -0.04121353477239609, 0.00506054749712348, -0.062268584966659546, 0.08180390298366547, 0.03686828911304474, -0.016638509929180145, -0.003260969650000334, 0.040962785482406616, 0.031907979398965836, 0.06429077684879303, 0.01797669008374214, -0.04445813596248627, 0.04574814438819885, -0.030366625636816025, 0.04895177483558655, -0.0986500084400177, 0.11593976616859436, 0.11273017525672913, -0.07587750256061554, 0.005792258772999048, 0.10388456284999847, -0.02250930294394493, 0.009920870885252953, 0.07830929756164551, -0.08992451429367065, -0.01947188377380371, -0.054481588304042816, 0.10551738739013672, -0.07034540921449661, 0.04677645117044449, -0.15318849682807922, -0.07456841319799423, 0.11850304901599884, -0.05646343529224396, -0.009793922305107117, 0.05418946593999863, 0.10284484922885895, 0.09891398251056671, -0.12277668714523315, 0.10103137791156769, 0.006754275411367416, 0.13444040715694427, 0.0012971118558198214, -0.11772087216377258, -0.10059066861867905, -0.0010889316909015179, -0.032313283532857895, 0.08600570261478424, 0.02643037959933281, -0.024738043546676636, 0.09358803182840347, -0.07591606676578522, -0.03192286193370819, 0.019078560173511505, -0.012454962357878685, -0.02585607022047043, -0.039204180240631104, -0.0857628881931305, -0.023549096658825874, 0.08654321730136871, -0.028251007199287415, -0.0468321368098259, 0.007263182662427425, 0.0634559914469719, -0.03322849050164223, -0.077358677983284, -0.04214600473642349, -0.08502176403999329, -0.01983155682682991, 0.008175523951649666, -0.057996995747089386, 0.051301054656505585, 0.030701326206326485, 0.048795875161886215, -0.062294233590364456, -0.04140165448188782, -0.01570730097591877, 0.05103619396686554, -0.13922299444675446, -0.09846470504999161, -0.05017215386033058, 0.07118822634220123, 0.015376882627606392, 0.0009343407000415027, -0.0050038364715874195, 0.11672534793615341, -0.08468196541070938, -0.006050730589777231, 0.08187154680490494, -0.03451596945524216, 0.03654784709215164, 0.027776213362812996, -0.05101228132843971, -0.04132749140262604, 0.014011812396347523, 0.02954203635454178, -0.0760253369808197, -0.04422782361507416, 0.03021678701043129, 0.02956939861178398, -0.013001881539821625, -0.0033093569800257683, -0.03206422179937363, -0.1016770750284195, -0.0856323093175888, -0.033729419112205505, 0.053133524954319, 0.014733907766640186, 0.1226205825805664, 0.007382228970527649, -0.0366937592625618, -0.09878779947757721, 0.024809658527374268, 0.05046260356903076, 0.07170002162456512, 0.054949622601270676, -0.029726654291152954, -0.008391845971345901, 0.03757806122303009, 0.03203926980495453, -0.07579302042722702, -0.05108920484781265, -0.011023006401956081, -0.05990922823548317, -0.03706350177526474, 0.002615214791148901, 0.035802096128463745, -0.03705437108874321, 0.11518532037734985, 0.0038666215259581804, 0.10874389857053757, 0.005545645020902157, 0.02116755023598671, -0.07949364930391312, -0.03217063471674919, 0.0917971134185791, 0.10239794850349426, -0.09140027314424515, 0.04339383542537689, -0.17868952453136444, 0.0055584111250936985, -0.07975825667381287, 0.09991417080163956, 0.06589152663946152, 0.07516588270664215, 0.0010011676931753755, -0.05659589171409607, 0.05456550791859627, -0.05427777022123337, -0.059190310537815094, 0.033094622194767, -0.028630362823605537, 0.03529243916273117, 0.04440911114215851, -0.05804445967078209, 0.01182549074292183, 0.02802864834666252, -0.0006630680290982127, 0.01807543635368347, -0.0692828819155693, 0.03362710773944855, -0.032763730734586716, -0.010025029070675373, 0.07912367582321167, -0.04543377086520195, 0.05439620465040207, -0.1241980642080307, 0.04015325754880905, 0.03240329399704933, -0.05242427438497543, -0.04279112443327904, 0.12285088747739792, 0.0696152076125145, 0.08053387701511383, -0.10210546851158142, 0.09509561210870743, 0.022576143965125084, 0.017834031954407692, 0.026106540113687515, 0.054388146847486496, -0.03694549947977066, 0.08331650495529175, -0.05778241157531738, 0.050688594579696655, 0.006712289527058601, 0.04801873490214348, 0.07094177603721619, -0.030330099165439606, -0.04751739278435707, -0.09178900718688965, -0.03662502020597458, -0.033616065979003906, 0.0964527577161789, 0.07006368786096573, 0.07108911126852036, 0.014646916650235653, 0.029851460829377174, -0.0656425878405571, -0.031374309211969376, 0.08404026925563812, -0.034671537578105927, -0.06433572620153427, -0.031242333352565765, -0.09146689623594284, 0.012202361598610878, 0.0773659497499466, -0.05346059426665306, 0.03581564128398895, 0.06531104445457458, 0.06654748320579529, 0.01984499953687191, -0.034151241183280945, -0.07369869202375412, 0.0215508621186018, -0.10302779823541641, 0.03553406521677971, -0.08233664184808731, -0.019835656508803368, -0.08510065823793411, -0.048705004155635834, 0.06832344084978104, 0.07758504152297974, -0.10689276456832886, 0.041417092084884644, 0.03306642919778824, -0.03033972904086113, -0.09199901670217514, 0.014198782853782177, -0.08135741949081421, 0.030003845691680908, 0.07611968368291855, 0.048934198915958405, -0.15163429081439972, 0.08315383642911911, 0.029003575444221497, 0.018132800236344337, 0.018418021500110626, 0.07271803915500641, -0.06755156069993973, -0.003130516968667507, -0.10168887674808502, 0.03269181028008461, -0.07074365019798279, 0.022130871191620827, 0.09954370558261871, -0.023735709488391876, -0.016362914815545082, 0.05176464095711708, -0.08768895268440247, 0.057875052094459534, -0.06416776776313782, -0.06761139631271362, -0.09114266186952591, 0.012242211028933525, -0.04161332547664642, 0.03207496553659439, 0.02611640654504299, 0.02580898255109787, -0.010293735191226006, -0.02352914959192276, -0.07378261536359787, 0.010981520637869835, -0.07182865589857101, 0.04273759573698044, 0.028101693838834763, 0.05857282131910324, 0.0013381234603002667, -0.08598816394805908, -0.001400853507220745, 0.11362180858850479, 0.04085009545087814, -0.04308850318193436, -0.01768380030989647, -0.11542078852653503, 0.07273123413324356, -0.12996868789196014, -0.07608166337013245, 0.03244253993034363, 0.05746421590447426, -0.1437676101922989, -0.05816367268562317], "MindSpore\u7f51\u7ad9\u5b89\u88c5\u9875\u9762\u627e\u4e0d\u5230MindInsight\u548cMindArmour\u7684whl\u5305\uff0c\u65e0\u6cd5\u5b89\u88c5\u600e\u4e48\u529e\uff1f": [-0.07406122982501984, 0.07257265597581863, -0.04138146713376045, -0.003557080402970314, -0.014639032073318958, -0.01815342903137207, 0.04361390694975853, 0.10447162389755249, -0.004547479096800089, 0.023466648533940315, -0.040195442736148834, 0.005307914223521948, -0.0018425004091113806, -0.01667811907827854, -0.021233558654785156, 0.04032392054796219, 0.1589236557483673, 0.07707635313272476, -0.07379989326000214, 0.024624647572636604, -0.010541913099586964, 0.051949016749858856, 0.06048749387264252, -0.016766343265771866, 0.010912093333899975, 0.05406307056546211, -0.08608214557170868, 0.02705329842865467, -0.028403110802173615, 0.06346464157104492, 0.05964008346199989, 0.0300026535987854, -0.10606423765420914, 0.015330294147133827, -0.09825750440359116, 0.011397507041692734, -0.10056513547897339, 0.11786748468875885, -0.031664080917835236, 0.02406078763306141, -0.017026469111442566, 0.02592022716999054, 0.01554146409034729, 0.07076471298933029, 0.02855164371430874, -0.10243304073810577, -0.11851471662521362, -0.03249211609363556, 0.04648140072822571, -6.136670708656311e-05, -0.080119788646698, 0.12125479429960251, 0.01605425961315632, -0.035140261054039, -0.054454147815704346, -0.01360317599028349, 0.018768608570098877, 0.025093914940953255, 0.10483437776565552, -0.0649786964058876, -0.04280952364206314, -0.015793489292263985, -0.10427255183458328, -0.04046822339296341, -0.14067858457565308, -0.03879174590110779, -0.09197723865509033, -0.1467542052268982, -0.031555838882923126, -0.04161565750837326, -0.08266884088516235, -0.010593919083476067, -0.007273001596331596, 0.11430098116397858, 0.082876056432724, 0.031689904630184174, -0.03907157480716705, 0.024829357862472534, -0.07253576815128326, 0.019647764042019844, 0.06300536543130875, 0.014809352345764637, 0.06217590346932411, -0.023584410548210144, -0.06720194965600967, 0.009975952096283436, -0.08290427923202515, 0.11105270683765411, 0.033964917063713074, 0.10264720767736435, 0.010742934420704842, 0.005122791975736618, -0.092032290995121, 0.0972166433930397, 0.09636224061250687, -0.018946629017591476, -0.034478310495615005, -0.027628138661384583, -0.11641161143779755, -0.05421893671154976, -0.01780770719051361, -0.0012941129971295595, -0.12027393281459808, 0.05510209500789642, 0.0394088551402092, -0.014028046280145645, 0.06062493100762367, -0.013681893236935139, 0.022701922804117203, 0.012597262859344482, 0.06699937582015991, -0.019279250875115395, 0.09082569926977158, 0.0028269141912460327, 0.015799960121512413, 0.03660232201218605, -0.05706951022148132, 0.05639328435063362, -0.04663735628128052, 0.06742914021015167, 0.05113057419657707, -0.10206418484449387, 0.006425992585718632, 0.018298953771591187, 0.006360969040542841, 0.044029802083969116, 0.05826527997851372, -0.03619964048266411, -0.17065079510211945, -0.13274137675762177, 0.2143954485654831, -0.1267320215702057, 0.10399077087640762, -0.1541121006011963, -0.08571624010801315, 0.09252801537513733, 0.03488759696483612, -0.020000386983156204, -0.044020138680934906, 0.11337090283632278, 0.09624642878770828, -0.12877623736858368, 0.09794779121875763, -0.02424371801316738, 0.10887232422828674, 0.03868216276168823, -0.09190687537193298, -0.11936800181865692, -0.06286568194627762, -0.018481748178601265, 0.09442190825939178, -0.04426022991538048, -0.05442676693201065, 0.1393248736858368, -0.03641193360090256, 0.04411681741476059, -0.05773923546075821, -0.04598931968212128, -0.02299555577337742, -0.015206933952867985, -0.05821759253740311, -0.06872379034757614, 0.04652316868305206, 0.010856774635612965, -0.022286182269454002, -0.029686331748962402, 0.1053895577788353, -0.04462692141532898, -0.06255624443292618, -0.09145341068506241, 0.02216896042227745, -0.04136822000145912, -0.030913738533854485, 0.016062624752521515, 0.09325356781482697, -0.006794640328735113, 0.1111965924501419, -0.06955274939537048, -0.004389163106679916, -0.04446128010749817, 0.0975622609257698, -0.07821620255708694, -0.03846144676208496, -0.085257887840271, 0.07151578366756439, -0.01142977550625801, 0.018580859526991844, -0.003069645492359996, 0.12327910959720612, -0.1544499397277832, -0.02063656784594059, 0.013840790838003159, 0.04912416264414787, 0.06647893041372299, -0.0035421233624219894, 0.017095785588026047, -0.0768468827009201, -0.014993720687925816, 0.015636656433343887, -0.023454751819372177, -0.04480817914009094, -0.012194893322885036, 0.02716057188808918, -0.006289289332926273, 0.010338569059967995, -0.028447777032852173, -0.08614605665206909, -0.07421568781137466, -0.01619407907128334, -0.061041899025440216, 0.08898800611495972, 0.07525388896465302, 0.001651542610488832, -0.017826909199357033, -0.03365283086895943, -0.07015708833932877, 0.13603228330612183, 0.11276170611381531, 0.0327102430164814, -0.020619751885533333, 0.05127951502799988, -0.014549344778060913, 0.05388179421424866, -0.0772896483540535, -0.04905708506703377, -0.052611060440540314, -0.0641009733080864, -0.06680691242218018, -0.0014860992087051272, 0.04507088661193848, -0.081778883934021, 0.02876834012567997, 0.023241814225912094, 0.11929246783256531, -0.011816692538559437, 0.0764174684882164, -0.04444132745265961, -0.02532258629798889, 0.09948497265577316, 0.04874860867857933, -0.11278685182332993, 0.06245315447449684, -0.094702810049057, -0.06810153275728226, -0.054773468524217606, 0.07644717395305634, 0.0918499156832695, 0.07209235429763794, 0.0038689852226525545, -0.024429991841316223, 0.12065643817186356, 0.04757462441921234, -0.07527381926774979, 0.05579538643360138, 0.005018394440412521, 0.035035502165555954, 0.03061707131564617, -0.09146106243133545, 0.006989710032939911, 0.11067807674407959, 0.0049085854552686214, 0.00026997923851013184, -0.040246982127428055, 0.02959027886390686, -0.05129377171397209, 0.042134419083595276, 0.045328862965106964, -0.049177221953868866, 0.08161458373069763, -0.12011248618364334, -0.006600887514650822, 0.07394696027040482, -0.08461163938045502, -0.0021035156678408384, 0.11018940061330795, 0.06838229298591614, 0.08911799639463425, -0.1357811540365219, 0.04338973015546799, 0.04520542174577713, 0.016277896240353584, -0.03870254009962082, -0.051944300532341, -0.00239397119730711, 0.11130746454000473, 0.027754954993724823, 0.03101438656449318, -0.001333867316134274, -0.010483425110578537, 0.13498085737228394, -0.12147950381040573, 0.03708140179514885, -0.037090446799993515, 0.03864020109176636, -0.04225853085517883, 0.1250172108411789, 0.06291413307189941, 0.05652741342782974, -0.0011088117025792599, 0.11189483106136322, -0.03461524099111557, -0.07217080146074295, 0.14047782123088837, -0.10678230226039886, -0.057649776339530945, 0.03923676162958145, -0.054200973361730576, 0.10949259996414185, 0.061007991433143616, 0.006465106271207333, 0.043057508766651154, 0.09050657600164413, -0.02008836530148983, 0.09454575926065445, -0.07978610694408417, -0.032234884798526764, 0.0070434389635920525, -0.14341112971305847, 0.001782415434718132, -0.12085648626089096, 0.031908124685287476, -0.032734934240579605, -0.010521425865590572, 0.07735904306173325, 0.07110102474689484, -0.06642517447471619, -0.029089508578181267, 0.07509627938270569, 0.05661267042160034, -0.08758555352687836, 0.0035353212151676416, -0.048828817903995514, 0.04166864603757858, 0.08119457215070724, -0.0436919704079628, -0.13655711710453033, 0.07759035378694534, 0.007841363549232483, -0.006574910134077072, 0.05937319993972778, 0.1090182512998581, 0.0008083542925305665, 0.02056919038295746, -0.031136520206928253, 0.07443912327289581, -0.027026036754250526, 0.08032296597957611, 0.0181603841483593, -0.06075317785143852, -0.05711427703499794, 0.04814232885837555, -0.013917296193540096, 0.03316223621368408, -0.017816632986068726, 0.02060331031680107, -0.15741737186908722, -0.06337279826402664, -0.027495291084051132, -0.00902515184134245, 0.012129695154726505, 0.020222261548042297, -0.06020958349108696, -0.09916633367538452, -0.06265667080879211, -0.03182334825396538, -0.08526524901390076, 0.07958473265171051, -0.09325696527957916, 0.0749974176287651, -0.036906663328409195, -0.018586913123726845, 0.0788072720170021, 0.16137410700321198, 0.014937068335711956, -0.045479804277420044, -0.0760413408279419, -0.1401771754026413, 0.03785942494869232, -0.016292979940772057, -0.0055414484813809395, 0.03200294449925423, 0.0576302595436573, -0.2128116488456726, 0.04594329744577408], "MindSpore\u662f\u5426\u652f\u6301Nvidia GPU\u72ec\u7acb\u663e\u5361+Windows\u64cd\u4f5c\u7cfb\u7edf\u7684\u4e2a\u4eba\u7535\u8111\uff1f": [-0.037853389978408813, -0.01051291637122631, -0.01685839146375656, 0.010272778570652008, 0.05873911827802658, -0.011605994775891304, 0.009821428917348385, 0.04550599306821823, -0.024628782644867897, -0.03713128715753555, 0.09128160774707794, 0.06161405146121979, 0.012136910110712051, 0.015798406675457954, 0.0005526821478269994, 0.034606363624334335, 0.08731890469789505, -0.05688467621803284, -0.043154362589120865, -0.002567855641245842, -0.10045719146728516, 0.061404190957546234, 0.03547278419137001, 0.009558109566569328, 0.006949861999601126, 0.044925756752491, -0.018467778339982033, -0.02074757032096386, 0.0875195860862732, 0.09220679104328156, 0.09760703891515732, 0.03976971656084061, -0.12236976623535156, 0.043810371309518814, 0.07052689790725708, -0.04652850702404976, -0.037765417248010635, 0.08700226247310638, -0.05279673635959625, -0.08408093452453613, -0.02662563882768154, 0.03866714611649513, -0.07165125757455826, 0.10909922420978546, -0.003856086637824774, -0.05620979145169258, -0.04787491261959076, 0.002753273118287325, 0.05083522945642471, 0.0005710925324819982, -0.09877022355794907, 0.08744842559099197, -0.07564810663461685, 0.02674170210957527, -0.04005805402994156, 0.02226521633565426, -0.024338090792298317, -0.02243473380804062, 0.010889267548918724, 0.011045677587389946, -0.016974899917840958, 0.013553244061768055, -0.031943824142217636, 0.037271272391080856, -0.11204709857702255, 0.03809141367673874, -0.016538646072149277, -0.013850732706487179, -0.06046898663043976, 0.0111796073615551, -0.08538217097520828, 0.0554116815328598, -0.035097137093544006, -0.014411328360438347, 0.08958841115236282, -0.022949106991291046, 0.0006377565441653132, 0.04065323993563652, -0.034516021609306335, -0.018840301781892776, -0.005764653440564871, 0.03354703634977341, 0.07958675920963287, -0.1465209573507309, 0.01448792777955532, -0.03524225205183029, -0.11370646953582764, 0.050545599311590195, -0.08703844994306564, 0.05532309040427208, 0.0025165046099573374, -0.0372442752122879, -0.09770634025335312, 0.09031069278717041, 0.07680445164442062, 0.03293659910559654, -0.01793413981795311, -0.05697628855705261, -0.07800532132387161, -0.07142449915409088, 0.015614178031682968, 0.04847492277622223, -0.035845182836055756, 0.05450573191046715, 9.817071259021759e-06, -0.016732487827539444, 0.013746056705713272, 0.046470630913972855, -0.014015743508934975, 0.05702069029211998, 0.06238538399338722, 0.01897682063281536, 0.0918983519077301, -0.010075567290186882, -0.019655834883451462, 0.05907324701547623, -0.08649963140487671, -0.037432920187711716, -0.07983220368623734, 0.05655565485358238, 0.11832033097743988, -0.011901901103556156, 0.0097612040117383, 0.08068332821130753, 0.08220028877258301, -0.020457705482840538, 0.07128024101257324, -0.03925731033086777, -0.0728076621890068, -0.045831602066755295, 0.15328824520111084, -0.0802246630191803, 0.11855155974626541, -0.12698155641555786, -0.11464448273181915, 0.07244943082332611, -0.05691120773553848, -0.01664748415350914, -0.035960059612989426, 0.08582572638988495, 0.056353721767663956, -0.027181386947631836, -0.012527426704764366, -0.08466563373804092, 0.10054931044578552, 0.0807606652379036, -0.08552539348602295, -0.15896081924438477, 0.02353321947157383, -0.06910499185323715, 0.07520415633916855, -0.025157960131764412, -0.0544644258916378, 0.11765789985656738, 0.04462408274412155, 0.025766436010599136, -0.12319900095462799, -0.029535692185163498, -0.0452374704182148, -0.05520077049732208, -0.07204902172088623, 0.039089497178792953, -0.021246543154120445, -0.07802620530128479, 0.027863634750247, 0.0713750422000885, 0.004006312228739262, -0.029186494648456573, -0.044472090899944305, -0.06727726012468338, -0.03203502669930458, 0.0413476936519146, -0.03312492370605469, 0.007714617531746626, 0.045140158385038376, -0.06482215225696564, 0.06417171657085419, -0.05930103734135628, -0.009211276657879353, -0.07040634006261826, 0.011373691260814667, -0.1784190833568573, 0.021812397986650467, -0.08510120213031769, 0.10823920369148254, 0.010590503923594952, 0.009769782423973083, 0.033231113106012344, 0.13988839089870453, -0.13258162140846252, 0.022979024797677994, 0.046256497502326965, 0.06545399874448776, -0.0009805612498894334, 0.0010532658779993653, -0.09291888773441315, -0.09803032130002975, -0.05327357351779938, 0.034807659685611725, 0.044065382331609726, -0.0229136124253273, 0.019701147451996803, 0.05125841498374939, -0.006461543496698141, -0.034687843173742294, -0.01325453445315361, -0.026885241270065308, -0.11991409957408905, 0.042972154915332794, -0.09432826936244965, 0.09635969251394272, -0.030577953904867172, -0.0842689499258995, -0.04737025126814842, -0.10225601494312286, -0.015386216342449188, 0.08788754045963287, 0.07957460731267929, 0.010579967871308327, 0.009106568992137909, 0.02994517609477043, -0.02443697676062584, 0.04401887208223343, -0.08350151777267456, -0.10634072124958038, 0.024463273584842682, -0.096189945936203, -0.1430625319480896, 0.004815405234694481, 0.14074400067329407, 0.024150613695383072, 0.06568086892366409, -0.010116033256053925, 0.07396560162305832, 0.03224656730890274, 0.004544346127659082, -0.034914616495370865, -0.002459763316437602, 0.08366230875253677, 0.07280772179365158, -0.16223634779453278, -0.07000270485877991, -0.07244190573692322, -0.039261382073163986, -0.05507020279765129, 0.05492846295237541, 0.04751574620604515, 0.047650162130594254, 0.01907213404774666, -0.09858328104019165, 0.007127633783966303, -0.05292445793747902, -0.025462312623858452, 0.0956585630774498, 0.0037027038633823395, 0.029157914221286774, 0.048056140542030334, -0.01091257855296135, 0.042848799377679825, 0.02882140502333641, 0.06096940115094185, 0.0407424196600914, 0.006484730634838343, -0.008280164562165737, -0.028072429820895195, -0.04966052621603012, 0.10127431899309158, -0.01868884637951851, 0.10211315006017685, -0.04405929148197174, 0.025749942287802696, -0.015226179733872414, -0.03405016288161278, -0.02902385964989662, 0.11077471822500229, 0.025016287341713905, -0.02468373253941536, -0.10628349334001541, 0.11546739190816879, 0.02117522805929184, 0.026767265051603317, 0.030952904373407364, -0.02838468924164772, 0.017006443813443184, 0.06128864735364914, -0.04602336138486862, 0.06425660103559494, 0.0557042695581913, 0.04835227131843567, 0.04925602674484253, -0.09219059348106384, -0.07505190372467041, -0.049233779311180115, -0.0022628940641880035, -0.08763277530670166, 0.016004696488380432, 0.03590405732393265, 0.018689393997192383, -0.04205727577209473, 0.04228571802377701, -0.017128029838204384, -0.028236830607056618, 0.044997699558734894, -0.08162570744752884, -0.010628999210894108, -0.022798851132392883, 0.0031918915919959545, 0.06041436642408371, -0.012255997397005558, -0.020438838750123978, 0.10430015623569489, 0.07114895433187485, 0.054759588092565536, 0.06900227069854736, -0.07946781069040298, -0.043704353272914886, 0.02704773284494877, -0.12503837049007416, 0.07135113328695297, -0.08347052335739136, -0.012271366082131863, -0.047327522188425064, -0.055465321987867355, 0.038822755217552185, 0.0846870094537735, 0.07282847911119461, 0.004034791607409716, -0.02024870365858078, 0.10629426687955856, -0.00614846870303154, 0.027163397520780563, -0.031745120882987976, -0.013251148164272308, 0.08824381977319717, 0.005309188272804022, -0.14888031780719757, 0.14489293098449707, 0.0573006197810173, 0.013941878452897072, -0.04207736626267433, 0.08908016979694366, -0.060906440019607544, -0.006920614745467901, -0.09377457946538925, 0.05859772115945816, -0.05112406238913536, 0.06855586171150208, 0.0675271525979042, -0.06763455271720886, -0.02613222971558571, 0.04257027059793472, -0.04189387336373329, 0.04249829053878784, 0.015330610796809196, -0.05883070081472397, -0.087788425385952, -0.09519731253385544, -0.001544992090202868, 0.04467342048883438, -0.044681571424007416, 0.014533036388456821, -0.05971144884824753, -0.089431032538414, -0.06854729354381561, 0.024003170430660248, -0.0479392409324646, 0.0013274309458211064, -0.023278001695871353, 0.020854778587818146, 0.027196675539016724, -0.16945835947990417, 0.12105157226324081, 0.13359028100967407, 0.05264424905180931, -0.012272647581994534, -0.1117347925901413, -0.1130199134349823, 0.004525276832282543, 0.016033995896577835, -0.03933103755116463, 0.04717510566115379, 0.07514618337154388, -0.0792631059885025, 0.031146544963121414], "Ascend\u786c\u4ef6\u5e73\u53f0\uff0c\u5728\u4e2a\u4eba\u7684Conda\u73af\u5883\u4e2d\uff0c\u6709\u65f6\u5019\u51fa\u73b0\u62a5\u9519RuntimeError: json.exception.parse_error.101 parse error at line 1\uff0c column 1: syntax error while parsing value - invalid literal; last read: 'T'\uff0c\u8be5\u600e\u4e48\u5904\u7406\uff1f": [-0.036343399435281754, 0.08928173780441284, 0.06723278760910034, 0.11118701845407486, -0.09236616641283035, -0.04413308948278427, 0.006929448805749416, 0.07304196804761887, -0.047111570835113525, 0.08279766142368317, 0.062666155397892, 0.05717209354043007, 0.09190487116575241, 0.02548012137413025, -0.08828853070735931, 0.14539313316345215, 0.09916023910045624, -0.016677843406796455, 0.0029303771443665028, 0.004342673812061548, -0.010373314842581749, 0.042430002242326736, 0.06055647134780884, -0.05140237882733345, 0.00791581068187952, 0.09756225347518921, 0.024126362055540085, -0.02973933145403862, 0.020497269928455353, -0.005044648423790932, 0.11747483909130096, 0.0631628930568695, -0.11069969832897186, -0.014547226950526237, -0.06987608969211578, -0.019639819860458374, -0.020462840795516968, 0.11094976961612701, -0.046999089419841766, -0.055507589131593704, 0.1461237668991089, 0.015368274413049221, -0.007987448945641518, 0.12055439502000809, -0.02562197856605053, 0.03461207076907158, -0.16694031655788422, 0.014594204723834991, 0.034242894500494, 0.02132422849535942, -0.06275908648967743, 0.09052601456642151, 0.03530251234769821, 0.006029841955751181, -0.06647863239049911, 0.021380256861448288, 0.0653163269162178, -0.01598672941327095, 0.0365268737077713, -0.01960640214383602, 0.008183810859918594, 0.027597591280937195, -0.039223577827215195, -0.001035981927998364, -0.09240402281284332, 0.06983285397291183, -0.06206207722425461, -0.004473811946809292, -0.008635303005576134, -0.009526701644062996, -0.048744991421699524, -0.03409814089536667, -0.013465186581015587, 0.0952848270535469, 0.028591003268957138, 0.11449339985847473, -0.010435611940920353, 0.03769168630242348, -0.08894871175289154, 0.06572240591049194, 0.03230578079819679, 0.08537836372852325, 0.03984525054693222, -0.08496630191802979, -0.041211437433958054, -0.03207889944314957, -0.05717714503407478, 0.022221412509679794, -0.07784532755613327, 0.08788290619850159, -0.030500274151563644, -0.03744152933359146, -0.1497785747051239, 0.05588356405496597, 0.08356957137584686, -0.059488311409950256, -0.11716866493225098, -0.05623737350106239, -0.1568170189857483, -0.008003948256373405, 0.0659622848033905, 0.028947295621037483, -0.013399750925600529, 0.02108895592391491, 0.07703767716884613, -0.13081888854503632, -0.036950547248125076, 0.06038372591137886, 0.004184206947684288, 0.05420374497771263, 0.10940440744161606, 0.0032537707593292, -0.021857401356101036, -0.0031966932583600283, 0.007904930971562862, 0.048098124563694, -0.014669513329863548, -0.053175654262304306, -0.06987643986940384, 0.1384022831916809, 0.15374557673931122, -0.0076647670939564705, 0.00844703707844019, 0.06317701190710068, -0.0029608055483549833, -0.05115843191742897, 0.060559965670108795, -0.11542438715696335, -0.0919535830616951, -0.10276871174573898, 0.1503002792596817, -0.011531478725373745, 0.05072382837533951, -0.12651360034942627, -0.06551768630743027, 0.08978088945150375, -0.019353719428181648, 0.005556650925427675, 0.07544702291488647, 0.17237220704555511, -0.025571681559085846, -0.11167793720960617, 0.08855845034122467, -0.015172602608799934, 0.07864228636026382, 0.053242649883031845, -0.03370271250605583, -0.12561526894569397, -0.048725325614213943, -0.13352349400520325, 0.060162633657455444, 0.05234767124056816, 0.0035628152545541525, 0.07984014600515366, 0.05588507652282715, 0.08550476282835007, 0.059782974421978, -0.020336512476205826, -0.004816975444555283, -0.07978050410747528, -0.031491026282310486, -0.01446118950843811, -0.009759805165231228, 0.05750994756817818, -0.031077956780791283, 0.02642505243420601, -0.006987003609538078, 0.004629157949239016, -0.024146681651473045, 0.01873151771724224, -0.03228888660669327, -0.047861941158771515, -0.11769099533557892, -0.01861668936908245, 0.016799231991171837, -0.04452252388000488, 0.11078979074954987, -0.03897406905889511, 0.008676424622535706, -0.04044894129037857, 0.11119835823774338, -0.0710490345954895, -0.037926122546195984, -0.14456668496131897, -0.014470398426055908, 0.06704524904489517, 0.09527093172073364, 0.12032708525657654, 0.1360231339931488, -0.0864824503660202, -0.03512318432331085, 0.008946258574724197, -0.037587545812129974, 0.104632169008255, -0.037531930953264236, 0.018792305141687393, -0.061898138374090195, -0.03283935412764549, -0.0018915175460278988, -0.013448245823383331, 0.029276292771100998, 0.03986549377441406, 0.029105383902788162, 0.07490888983011246, 0.04378717020153999, -0.004486944060772657, -0.12080772966146469, -0.12118259072303772, 0.058279849588871, -0.004677183460444212, 0.08803384006023407, 0.040208764374256134, -0.07421649992465973, -0.05132966488599777, -0.09378387033939362, 0.0030847243033349514, 0.06527779251337051, 0.07693357020616531, 0.11868482083082199, -0.022143779322504997, -0.0005704969516955316, 0.047357331961393356, -0.022580282762646675, -0.11067286878824234, -0.08783993124961853, -0.041755154728889465, -0.057297516614198685, -0.10921137779951096, -0.0053275395184755325, 0.03360511362552643, -0.04634324461221695, 0.08204372227191925, 0.03030567057430744, 0.13853400945663452, -0.055151283740997314, 0.08192648738622665, -0.04432098940014839, -0.08933880180120468, 0.0727691575884819, 0.02439945377409458, -0.0647139698266983, 0.10606493055820465, -0.08263210952281952, 0.011064010672271252, -0.09618110209703445, 0.09863770008087158, 0.03841742128133774, 0.08405274897813797, 0.0002507530152797699, 0.027104290202260017, 0.04003429785370827, 0.02715253084897995, -0.03963419049978256, -0.008997302502393723, 0.004299640189856291, 0.11408911645412445, 0.08070774376392365, -0.08791835606098175, 0.02613702416419983, 0.01590174436569214, 0.05865524336695671, 0.02925274707376957, -0.10854825377464294, -0.03531666845083237, -0.010792497545480728, -0.07451467961072922, 0.090487539768219, -0.03350753337144852, -0.058962367475032806, -0.03559248894453049, 0.06017051264643669, 0.09904054552316666, -0.08697006851434708, 0.0034047719091176987, 0.12010648101568222, 0.06482362747192383, -0.07301700115203857, -0.12498831003904343, 0.0003503570333123207, 0.08085354417562485, -0.03180071339011192, 0.04084262251853943, -0.00370811834000051, 0.00608668802306056, 0.08044475317001343, -0.033909283578395844, 0.021655432879924774, -0.0038236305117607117, 0.032984692603349686, 0.1408540904521942, -0.009174875915050507, -0.01883620209991932, -0.0841505378484726, 0.001271487446501851, -0.04919945448637009, 0.07356707751750946, 0.08900266140699387, 0.09699060022830963, -0.03466981276869774, 0.022811828181147575, -0.006291422992944717, -0.0418962687253952, 0.07308310270309448, -0.07761334627866745, 0.057673849165439606, 0.0009750916506163776, -0.034083131700754166, 0.0692284107208252, -0.0025527477264404297, 0.08074381947517395, 0.10908746719360352, 0.13946406543254852, 0.0955086201429367, 0.0893751010298729, -0.08605806529521942, -0.021650588139891624, 0.03600577265024185, -0.13496702909469604, 0.06176166236400604, -0.053537968546152115, 0.02415446750819683, -0.0306575745344162, -0.04848155006766319, 0.046505361795425415, 0.021498167887330055, -0.0059701018035411835, 0.04305753484368324, 0.11948947608470917, -0.019744768738746643, 0.019704733043909073, 0.048319604247808456, -0.0449199378490448, 0.09438242018222809, 0.0689396932721138, 0.03271104022860527, -0.11875266581773758, 0.14590217173099518, 0.06858839094638824, -0.016396280378103256, 0.03138229623436928, 0.055785637348890305, -0.1530817747116089, -0.01213456504046917, -0.07957234233617783, 0.05904571712017059, -0.04827796295285225, 0.0698976144194603, 0.043596360832452774, 0.03531765192747116, -0.01562766171991825, 0.045370254665613174, -0.04874272271990776, 0.10812223702669144, 0.031858302652835846, -0.05759946256875992, -0.1527075171470642, -0.08928631246089935, 0.009110704995691776, 0.02654373273253441, 0.0037506939843297005, 0.009637419134378433, -0.03324703499674797, -0.040941182523965836, -0.02851013094186783, 0.13439691066741943, -0.03898082673549652, 0.01987098902463913, -0.025858767330646515, 0.08663647621870041, 0.05095561966300011, -0.04986656829714775, -0.007759512402117252, 0.10516218841075897, 0.02911629155278206, -0.08164281398057938, -0.013545465655624866, -0.11490610241889954, 0.07244051247835159, -0.04510970786213875, -0.11726855486631393, 0.07277745008468628, 0.018343010917305946, -0.13329672813415527, -0.055488474667072296], "pip\u540c\u65f6\u5b89\u88c5MindSpore CPU\u548cGPU\u7248\u672c\uff0cimport\u65f6\u62a5\u9519 `cannot import name\u00a0'context' from 'mindspore'`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.061445802450180054, 0.03926251456141472, -0.03568654507398605, -0.024964025244116783, 0.0010356527054682374, -0.029932500794529915, 0.054184600710868835, 0.04288540408015251, -0.061891570687294006, -0.00789986178278923, 0.012418190948665142, 0.0760323777794838, -0.034855857491493225, 0.0708928108215332, -0.01833278313279152, 0.05260338634252548, 0.12486164271831512, 0.004399532452225685, -0.051977843046188354, 0.059325769543647766, 0.020649604499340057, 0.007447072304785252, 0.0985829085111618, 0.0007152202306315303, 0.031489577144384384, 0.08582670986652374, -0.09872257709503174, -0.019630692899227142, 0.02522917650640011, 0.024572931230068207, -0.009482156485319138, 0.014565503224730492, -0.060447514057159424, 0.01312191691249609, 0.02026791125535965, -0.03724486753344536, -0.06511770188808441, 0.13936635851860046, -0.04504154622554779, -0.03867359459400177, -0.012313861399888992, 0.048581551760435104, 0.016645057126879692, 0.0930880755186081, -0.011372966691851616, -0.03208015486598015, -0.10143161565065384, -0.015097074210643768, 0.056525781750679016, 0.028641706332564354, -0.13769713044166565, 0.026622746139764786, -0.0033164052292704582, 0.022649114951491356, -0.025784729048609734, -0.03077259100973606, -0.036640897393226624, -0.03194987028837204, 0.06885728985071182, -0.07302360236644745, -0.0059364428743720055, 0.022734230384230614, -0.08598506450653076, 0.0015248425770550966, -0.11249786615371704, -0.009101426228880882, -0.08728278428316116, -0.047570668160915375, -0.03968680649995804, 0.05687979608774185, -0.06307521462440491, 0.0576266348361969, -0.05005829781293869, 0.07653079181909561, 0.037995073944330215, -0.0018199820769950747, -0.02973429672420025, 0.0369870625436306, -0.08296346664428711, -0.0049754176288843155, -0.04739754647016525, 0.05112552270293236, 0.08519672602415085, -0.0394127294421196, -0.054258957505226135, -0.04413643106818199, -0.10275471955537796, 0.09259209781885147, -0.0530802458524704, 0.12254122644662857, -0.028914961963891983, -0.011886423453688622, -0.12496598064899445, 0.10945512354373932, 0.07871890068054199, 0.01566091552376747, -0.05182206258177757, -0.016555804759263992, -0.1869686096906662, -0.05189739540219307, -0.012794142588973045, 0.0035523027181625366, -0.041535936295986176, 0.05517621338367462, -0.017180223017930984, -0.07056314498186111, 0.03816656768321991, -0.013157225213944912, 0.09253913164138794, 0.038258206099271774, 0.06122554838657379, 0.013826271519064903, 0.0739634782075882, 0.03230800852179527, -0.06908920407295227, 0.036168064922094345, -0.08475316315889359, 0.05154099687933922, -0.05830361321568489, 0.08795668184757233, 0.0849117562174797, -0.08856164664030075, 0.016688786447048187, 0.07895728200674057, 0.046380382031202316, -0.06677694618701935, 0.04688099026679993, -0.08132418245077133, -0.07112188637256622, -0.09034375846385956, 0.14774955809116364, -0.07076846063137054, 0.14053116738796234, -0.12135180830955505, -0.12329769134521484, 0.06779158115386963, -0.06310674548149109, -0.00875791534781456, -0.028830720111727715, 0.1000613123178482, 0.06706531345844269, -0.10350135713815689, 0.06356628984212875, -0.02677127532660961, 0.11064282804727554, 0.00628222431987524, -0.07859449833631516, -0.16306889057159424, 0.013077843002974987, -0.0755840614438057, 0.040924958884716034, 0.009987080469727516, -0.04355964809656143, 0.10088656097650528, -0.009835503995418549, 0.041326552629470825, -0.059072427451610565, -0.021688537672162056, -0.020261596888303757, -0.007297066040337086, -0.03220764547586441, -0.02905900776386261, 0.04047631472349167, -0.018399959430098534, -0.004983743652701378, -0.011186354793608189, 0.06059060990810394, -0.05344012379646301, -0.08344174176454544, -0.04261074215173721, -0.004432939924299717, -0.006207520607858896, -0.052817296236753464, 0.026457585394382477, 0.04276643693447113, -0.022324997931718826, 0.027431732043623924, -0.058656297624111176, -0.021544620394706726, -0.02994806319475174, 0.050468023866415024, -0.14828330278396606, -0.05352276191115379, -0.10518430918455124, 0.07646972686052322, 0.03929004445672035, 0.08562338352203369, 0.00735646253451705, 0.13376612961292267, -0.16661714017391205, 0.034164655953645706, 0.07060852646827698, 0.04735419899225235, 0.04882889986038208, 0.06101001054048538, -0.024325769394636154, -0.08083747327327728, -0.0505533292889595, -0.02512366883456707, -0.0157629381865263, -0.05857425555586815, -0.02884005941450596, 0.07232183963060379, 0.052354685962200165, -0.028482230380177498, -0.03380371257662773, -0.08170261979103088, -0.08782952278852463, 0.00020569376647472382, -0.04987321048974991, 0.07895292341709137, 0.04740804433822632, -0.046851105988025665, -0.0625646710395813, -0.08732488006353378, 0.01627972722053528, 0.09599291533231735, 0.05041375011205673, -0.0209707859903574, -0.0455801896750927, -0.020301800221204758, 0.020994272083044052, 0.0374765545129776, -0.050445716828107834, -0.12931035459041595, 0.032315753400325775, -0.09914450347423553, -0.07956178486347198, -0.009343970566987991, 0.10577867925167084, -0.017985491082072258, 0.13513313233852386, 0.04992379993200302, 0.125523641705513, -0.006271049380302429, 0.08779776096343994, -0.0009010431822389364, -0.05975227430462837, 0.08925420045852661, 0.060627229511737823, -0.17718535661697388, 0.01075255498290062, -0.12618987262248993, -0.028773540630936623, -0.07147866487503052, 0.07624024897813797, 0.06673909723758698, 0.03036593645811081, 0.06081892549991608, -0.06552968174219131, 0.025455372408032417, 0.04094246029853821, -0.10857483744621277, 0.11842598021030426, 0.08135785162448883, 0.05520588159561157, 0.050242938101291656, -0.0607580840587616, 0.022138532251119614, 0.039192527532577515, 0.04497675597667694, 0.0465463362634182, -0.026926347985863686, -0.04029613733291626, -0.04383689910173416, -0.026067880913615227, 0.06793402135372162, -0.057107701897621155, 0.04952015355229378, -0.10180209577083588, 0.03155047446489334, 0.013250636868178844, -0.07552985846996307, -0.0037341765128076077, 0.11141979694366455, 0.057501137256622314, 0.014553187415003777, -0.13053999841213226, 0.08055531978607178, 0.027132056653499603, -0.01803610846400261, -0.03580692782998085, 0.02611740119755268, -0.02272574044764042, 0.09420090913772583, -0.020763318985700607, 0.0568423718214035, 0.027515171095728874, 0.03609080612659454, 0.07241766899824142, -0.1545582115650177, -0.025347355753183365, -0.01639069803059101, 0.04799443483352661, -0.09084492921829224, 0.10318288952112198, 0.05822621285915375, 0.04043574631214142, 0.0034828046336770058, 0.12205465137958527, -0.01832866296172142, -0.012798858806490898, 0.058927882462739944, -0.08647234737873077, 0.0056587522849440575, 0.019368473440408707, -0.04907825216650963, 0.0989140048623085, 0.04942270368337631, -0.046474918723106384, 0.10178745537996292, 0.07922305166721344, 0.05467795580625534, 0.06803853064775467, -0.08603304624557495, -0.0182366743683815, 0.06085268035531044, -0.17606684565544128, 0.07689874619245529, -0.04850807785987854, 0.008794085122644901, -0.052004143595695496, -0.062217339873313904, 0.05042257905006409, 0.1401400864124298, -0.02032625861465931, 0.019694920629262924, 0.018172621726989746, 0.02589278109371662, -0.09838628023862839, 0.027699710801243782, -0.08579705655574799, 0.04932843893766403, 0.04427982121706009, -0.03761491924524307, -0.18030494451522827, 0.15209229290485382, 0.08978229761123657, 0.008926917798817158, 0.05664924532175064, 0.06832632422447205, -0.06260726600885391, -0.011121382936835289, -0.053609397262334824, 0.07451874762773514, -0.06680049002170563, 0.09538845717906952, 0.04574594646692276, -0.09508434683084488, -0.08937197178602219, 0.05571509152650833, -0.07163874804973602, 0.059881411492824554, -0.0327012799680233, -0.07598889619112015, -0.14916649460792542, -0.10139090567827225, -0.010991704650223255, 0.0005806330009363592, -0.009323088452219963, -0.026735197752714157, -0.06528769433498383, -0.13842256367206573, -0.02566554583609104, -0.034697338938713074, -0.04563749209046364, 0.05571592226624489, -0.08836579322814941, 0.12177429348230362, -0.023165613412857056, -0.08829748630523682, 0.060419436544179916, 0.11824952065944672, 0.04024457558989525, -0.09752688556909561, -0.09183400869369507, -0.17763057351112366, 0.08849799633026123, 0.0158682893961668, -0.07952351868152618, 0.07058729231357574, 0.13254091143608093, -0.09073320776224136, 0.04673382267355919], "\u5728ARM\u67b6\u6784\u7684\u73af\u5883\u4e0a\u4f7f\u7528pip\u5b89\u88c5MindSpore\u65f6\u62a5\u9519: `Could not find a version that satisfies the requirement`\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.016818951815366745, 0.057741448283195496, -0.01949305087327957, 0.05299512296915054, -0.014647151343524456, -0.02431519702076912, 0.033399537205696106, 0.08989080041646957, 0.010496453382074833, 0.03225209563970566, -0.038451433181762695, 0.10731257498264313, -0.05126981437206268, 0.04069216921925545, -0.01984863355755806, 0.13765567541122437, 0.15354222059249878, 0.022566689178347588, -0.05150745064020157, 0.04474691301584244, 0.08944440633058548, -0.004547292832285166, 0.09969539940357208, -0.025878751650452614, 0.0668933168053627, 0.12988363206386566, -0.04842303320765495, -0.07103334367275238, -0.025660568848252296, 0.04583939164876938, 0.006853342987596989, 0.03719986230134964, -0.14375558495521545, 0.04405784234404564, -0.0545218363404274, -0.02859962359070778, -0.06236036866903305, 0.18174847960472107, -0.08076808601617813, -0.01711794175207615, 0.032613687217235565, 0.040592774748802185, 0.01625419594347477, 0.08501732349395752, 0.03226613998413086, -0.0473528653383255, -0.13329200446605682, -0.0657888725399971, 0.08254609256982803, 0.053110964596271515, -0.0535021610558033, 0.12966316938400269, -0.03585152328014374, -0.003602783428505063, 0.038557447493076324, -0.05430668592453003, 0.04618506506085396, -0.04581337422132492, 0.059400878846645355, -0.04933963716030121, 0.0012783065903931856, 0.009936618618667126, -0.03521640971302986, -0.008436096832156181, -0.1308620721101761, 0.024913083761930466, -0.05233209207653999, -0.07670864462852478, -0.02692130208015442, 0.03956134617328644, -0.10512169450521469, 0.020310411229729652, -0.0541720986366272, 0.09482996165752411, 0.06648852676153183, 0.0361500009894371, -0.05538492277264595, 0.0010131929302588105, 0.0027415528893470764, -0.0020150914788246155, -0.02644001878798008, 0.0847943127155304, 0.09534583240747452, -0.04786301776766777, -0.0386727973818779, -0.010387002490460873, -0.05599875748157501, 0.09542922675609589, 0.020408082753419876, 0.09210032969713211, -0.032160986214876175, 0.04429100453853607, -0.14860515296459198, 0.10734479874372482, 0.12161223590373993, -0.05160023272037506, -0.06875376403331757, 0.02056162804365158, -0.15406635403633118, -0.04894772917032242, 0.026109635829925537, -0.0012490779627114534, -0.026614228263497353, 0.0023272684775292873, 0.01490462850779295, -0.12757433950901031, 0.03431662544608116, -0.0638418048620224, 0.023964285850524902, 0.010817981325089931, 0.07584524154663086, -0.03026144579052925, 0.06113772094249725, 0.03572303056716919, -0.09426725655794144, 0.05463197082281113, -0.02204935811460018, 0.116050124168396, -0.07248958945274353, 0.11269673705101013, 0.07792282849550247, -0.060494426637887955, 0.020009508356451988, 0.07156156003475189, 0.035647258162498474, -0.043529801070690155, 0.06151137501001358, -0.07565026730298996, -0.0860624760389328, -0.09546804428100586, 0.16304197907447815, -0.07853379845619202, 0.13141213357448578, -0.11205929517745972, -0.13887454569339752, 0.0812201127409935, -0.03835570067167282, -0.027891727164387703, 0.019434494897723198, 0.08561122417449951, 0.13955926895141602, -0.1664806455373764, 0.09649477899074554, 0.008130811154842377, 0.09540117532014847, 0.007982106879353523, -0.13154326379299164, -0.1256619691848755, -0.03294999897480011, -0.049206942319869995, 0.10906073451042175, 0.02916688099503517, -0.00787043571472168, 0.12919680774211884, -0.0511767640709877, -0.02839798852801323, 0.019324857741594315, -0.04826263338327408, -0.02149784192442894, 0.00015209743287414312, -0.040584735572338104, -0.0011002118699252605, 0.059591665863990784, -0.04352576285600662, -0.03454241901636124, 0.00381309911608696, 0.027981657534837723, -0.0270856823772192, -0.07853762805461884, 0.013574868440628052, -0.006928541697561741, -0.051647644490003586, -0.11192161589860916, -0.038075029850006104, 0.08816114813089371, -0.017574461176991463, 0.09039529412984848, -0.09743776172399521, -0.006644329987466335, 0.0334145687520504, 0.059442188590765, -0.09882310777902603, -0.08048749715089798, -0.12654513120651245, 0.0503261461853981, 0.018321778625249863, 0.018055018037557602, -0.0005564866005443037, 0.07226298749446869, -0.13263186812400818, -0.04375935345888138, 0.023467430844902992, -0.03551655635237694, 0.06296531856060028, -0.04060129448771477, 0.011795594356954098, -0.03352086991071701, 0.013492231257259846, 0.01079644076526165, -0.10787031799554825, -0.06345339864492416, 0.048820775002241135, 0.04017653316259384, 0.032636865973472595, -0.0034252512268722057, -0.04575037956237793, -0.12894923985004425, -0.06861930340528488, 0.029189089313149452, -0.023880787193775177, 0.05272859334945679, 0.05666275694966316, -0.01736561395227909, -0.036550335586071014, -0.06081966683268547, 0.05138363316655159, 0.08789172023534775, 0.0672369971871376, 0.020387711003422737, -0.057360660284757614, -0.013240345753729343, 0.01811979152262211, -0.03765055909752846, -0.07365092635154724, -0.08259531855583191, -0.01619911380112171, -0.09271712601184845, -0.04213613644242287, -0.03267644718289375, 0.06627540290355682, 0.004043594468384981, 0.057321690022945404, 0.01699712499976158, 0.0806184783577919, -0.004472125321626663, 0.013196532614529133, -0.07499845325946808, -0.036495182663202286, 0.14684779942035675, 0.07414538413286209, -0.10994498431682587, 0.048217110335826874, -0.1370166391134262, -0.027413077652454376, -0.026603134348988533, 0.1314617097377777, 0.100157231092453, 0.07068749517202377, 0.027973664924502373, 0.017689174041152, 0.06180327385663986, -0.012062087655067444, -0.08949693292379379, 0.0012216487666592002, 0.029364224523305893, 0.01478805672377348, 0.04717078059911728, -0.048069726675748825, 0.003852113615721464, -0.01668427512049675, 0.06926005333662033, 0.025064019486308098, -0.021422985941171646, -0.07883460819721222, -0.03872623294591904, -0.04757894203066826, 0.08364830166101456, -0.051213160157203674, -0.02014634944498539, -0.08925887197256088, 0.036221183836460114, 0.07051985710859299, -0.07693576067686081, 0.022069912403821945, 0.11679825186729431, 0.0752110630273819, 0.053651776164770126, -0.10293658822774887, 0.06921906769275665, 0.06881169229745865, -0.008002626709640026, -0.0406842902302742, 0.012538319453597069, -0.02494814246892929, 0.12323658168315887, -0.03890187665820122, 0.015635699033737183, 0.008416684344410896, 0.00989604089409113, 0.09414058923721313, -0.09609299153089523, 0.004476645961403847, -0.060656122863292694, 0.030261240899562836, -0.05265914276242256, 0.09920128434896469, 0.11204253882169724, 0.03203245624899864, -0.011737254448235035, 0.0719839408993721, -0.04014615714550018, -0.003453188808634877, 0.11605489999055862, -0.08327293395996094, -0.028197044506669044, -0.012694001197814941, -0.06928016990423203, 0.09533782303333282, 0.04495179280638695, -0.015162384137511253, 0.01704656518995762, 0.022053837776184082, 0.1078106090426445, 0.06721529364585876, -0.10343821346759796, -0.06303063780069351, 0.057035449892282486, -0.13497158885002136, 0.05145739018917084, -0.08203929662704468, -0.02905864641070366, -0.031148025766015053, -0.06335505098104477, 0.06495276838541031, 0.0884767547249794, -0.06250268220901489, 0.016998935490846634, 0.02749624475836754, -6.272643804550171e-05, -0.0734768807888031, 0.009582052007317543, -0.07617253065109253, 0.055452704429626465, 0.09839580953121185, 0.025911832228302956, -0.1748301088809967, 0.14337694644927979, 0.06160053610801697, -0.029724430292844772, -0.009100934490561485, 0.06947997212409973, -0.06983640789985657, -0.05934721603989601, -0.11231713742017746, 0.04732646048069, -0.0600055456161499, 0.08231443166732788, 0.051153168082237244, -0.049568649381399155, -0.09889751672744751, 0.06101027503609657, -0.0634506344795227, 0.07532510906457901, -0.05806056782603264, 0.019358927384018898, -0.11986415833234787, -0.04178600013256073, -0.0036319466307759285, -0.015700586140155792, 0.017069237306714058, -0.039905745536088943, 0.044278401881456375, -0.046508438885211945, -0.03221534192562103, 0.010659588500857353, -0.08708084374666214, 0.09829603880643845, -0.015021441504359245, 0.12273413687944412, -0.0013075482565909624, -0.016509244218468666, 0.014040437527000904, 0.09006879478693008, 0.05013206601142883, -0.05082219839096069, -0.04263768345117569, -0.12238278985023499, 0.07420525699853897, -0.11250399798154831, -0.10927555710077286, 0.012225845828652382, 0.11533346772193909, -0.18385203182697296, -0.02150217443704605], "pip\u5b89\u88c5MindSpore\u65f6\uff0c\u62a5\u9519 `Running setup.py install for pillow: finished with status 'error' ... The headers or library files could not be found for jpeg\uff0c ...`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.02165333181619644, 0.0710289254784584, 0.06069912388920784, -0.0037111712154000998, -0.04327946901321411, -0.05655898526310921, 0.021146032959222794, 0.06281689554452896, -0.026242781430482864, 0.05169834941625595, 0.01228306908160448, 0.0513702817261219, 0.01564747281372547, 0.06340724974870682, -0.08480868488550186, 0.03964471071958542, 0.12274988740682602, -0.04097322002053261, -0.04058336839079857, 0.024343883618712425, 0.06362204253673553, 0.026321005076169968, 0.14497263729572296, -0.0362415611743927, 0.0341983325779438, 0.11087395995855331, -0.027929672971367836, -0.005174329970031977, -0.00246627489104867, 0.07329650968313217, -0.007118554785847664, -0.013417677022516727, -0.11488832533359528, 0.039440203458070755, -0.06202157959342003, -0.07016760855913162, -0.0540553480386734, 0.11595602333545685, -0.05102473869919777, 0.040895551443099976, 0.010389944538474083, 0.05063563585281372, 0.0219577644020319, 0.06982480734586716, -0.00609650369733572, -0.01427906472235918, -0.11781468242406845, -0.033883266150951385, 0.02256198227405548, 0.04903605207800865, -0.14763526618480682, 0.06979922950267792, 0.01221068948507309, 0.0461546890437603, 0.05833277851343155, -0.03679998591542244, 0.048521094024181366, -0.07845450937747955, 0.009237537160515785, 0.03457126021385193, -0.016898255795240402, 0.0199549812823534, -0.074013352394104, 0.005617231596261263, -0.1410200148820877, 0.017000876367092133, -0.024181146174669266, -0.030031755566596985, -0.03349383920431137, -0.046691205352544785, -0.05561439320445061, 0.0254039466381073, -0.03108333796262741, 0.08793652057647705, 0.05662551522254944, -0.024132568389177322, -0.09791376441717148, 0.07126034796237946, -0.03740965574979782, -0.046476490795612335, 0.029699578881263733, 0.04770689457654953, 0.03246603161096573, -0.017507674172520638, -0.09219717979431152, -0.08179401606321335, -0.056884557008743286, 0.07380311191082001, -0.03560440242290497, 0.024146802723407745, -0.03066507913172245, -0.016501640900969505, -0.10558169335126877, 0.1035962700843811, 0.15180116891860962, -0.036695778369903564, -0.07189348340034485, -0.015495197847485542, -0.13779078423976898, -0.021824734285473824, 0.001438046689145267, 0.0037700242828577757, 0.036692775785923004, -0.02723490633070469, 0.03423643112182617, -0.11011778563261032, 0.04830813407897949, -0.009684803895652294, 0.029939165338873863, 0.052117422223091125, 0.07876021414995193, 0.07130741328001022, 0.05155131220817566, 0.046490829437971115, -0.02173691615462303, 0.008389846421778202, 0.0484464205801487, -0.005474803037941456, -0.04838532954454422, 0.10778657346963882, 0.11302316188812256, -0.05234508588910103, 0.007745470851659775, 0.10308582335710526, 0.05940546467900276, 0.01847676746547222, 0.1503550410270691, -0.050115883350372314, -0.09695803374052048, -0.007488084025681019, 0.12183446437120438, -0.1117606833577156, 0.09723543375730515, -0.10069793462753296, -0.048311926424503326, 0.09445913881063461, -0.07272326946258545, -0.03882427141070366, 0.029694760218262672, 0.11694873124361038, 0.10263542830944061, -0.11104479432106018, 0.09723410755395889, -0.053194787353277206, 0.09685839712619781, 0.023180995136499405, -0.09875055402517319, -0.13504604995250702, 0.032993946224451065, -0.05218912661075592, 0.07826624810695648, 0.06004983186721802, -0.007422138936817646, 0.10510529577732086, -0.06298256665468216, 0.035852979868650436, -0.02653929963707924, -0.06489096581935883, -0.030992696061730385, -0.01234362367540598, -0.05568251386284828, -0.05255801975727081, 0.08609806001186371, 0.025720302015542984, -0.017878348007798195, 0.033382900059223175, -0.016890577971935272, 0.02971096709370613, -0.029882341623306274, -0.05003640800714493, -0.007974009029567242, -0.0034625777043402195, -0.0588110014796257, -0.01462680846452713, 0.012328880839049816, -0.01997137814760208, 0.06890592724084854, -0.05760131776332855, -0.05578453838825226, -0.020770937204360962, 0.03536446392536163, -0.09470392763614655, 0.018883971497416496, -0.12392622232437134, 0.06359479576349258, 0.0011340449564158916, 0.06555130332708359, 0.016101505607366562, 0.026977768167853355, -0.10566069185733795, 1.9273720681667328e-05, 0.10504826158285141, 0.013108732178807259, 0.08476613461971283, 0.02631393074989319, -0.04245097190141678, -0.019200457260012627, -0.011244653724133968, 0.011628576554358006, -0.03929437696933746, -0.05058423802256584, 0.03165325149893761, -0.012735770083963871, 0.013635161332786083, -0.03976200520992279, -0.048884741961956024, -0.06467631459236145, -0.03960601985454559, 0.0064895544201135635, -0.06223375350236893, 0.07101787626743317, 0.05641152709722519, -0.04675096645951271, -0.02716473676264286, -0.058149125427007675, -0.010051878169178963, 0.05062826722860336, 0.03232719004154205, 0.05155513435602188, 0.005896106828004122, -0.016330335289239883, 0.044196344912052155, 0.018594667315483093, -0.059738025069236755, -0.12915685772895813, -0.006269926205277443, -0.06584035605192184, -0.08581392467021942, -0.005777711980044842, 0.08675409853458405, -0.05301088094711304, 0.09105584770441055, 0.03755534440279007, 0.1247190609574318, -0.017020517960190773, 0.042484719306230545, -0.015547709539532661, -0.034834299236536026, 0.06511010229587555, 0.06149403005838394, -0.1631750464439392, 0.02499021217226982, -0.06642922759056091, -0.04415600001811981, -0.07932471483945847, 0.11126492917537689, 0.04530205577611923, 0.014486979693174362, 0.007505836430937052, -0.055720254778862, 0.013708548620343208, -0.009444769471883774, -0.1164860650897026, 0.018077006563544273, -0.03967398777604103, 0.04419172182679176, 0.06812209635972977, -0.022112324833869934, 0.03767279535531998, -0.0033800399396568537, 0.012679403647780418, 0.083347849547863, -0.07981817424297333, -0.06221998855471611, -0.0518086813390255, -0.0032280338928103447, -0.02143709361553192, -0.0651112049818039, 0.029349401593208313, -0.07257629185914993, 0.03825880587100983, 0.06910340487957001, -0.0752851814031601, 0.021045006811618805, 0.05630841851234436, 0.06452815234661102, 0.015235025435686111, -0.11872810870409012, 0.03654538467526436, 0.09175649285316467, 0.010595389641821384, 0.012909447774291039, 0.05686221271753311, -0.001379811204969883, 0.03316382318735123, -0.029455317184329033, 0.016909677535295486, -0.008739958517253399, 0.015969794243574142, 0.024274546653032303, -0.09850981831550598, -0.07523670047521591, -0.05387163907289505, 0.02768796682357788, -0.03237079456448555, 0.04715702682733536, 0.10327506065368652, 0.053087830543518066, -0.03464566916227341, 0.05720716714859009, 0.02101065032184124, -0.017311878502368927, 0.07399826496839523, -0.12808160483837128, -0.024200011044740677, 0.1338927149772644, -0.14156463742256165, 0.06041860207915306, 0.002269701799377799, -0.020964842289686203, -0.01581810787320137, 0.0379931777715683, 0.030723612755537033, 0.09408905357122421, -0.1089789941906929, 0.004544450435787439, 0.027185983955860138, -0.11594333499670029, 0.04321655258536339, -0.05246550962328911, 0.013808533549308777, -0.06860151141881943, -0.10060268640518188, 0.08891603350639343, 0.09233834594488144, -0.05335292965173721, 0.04124979302287102, 0.007319099269807339, 0.0068252477794885635, -0.051949355751276016, 0.06370478123426437, -0.06168389692902565, 0.11028890311717987, 0.06942323595285416, 0.016603706404566765, -0.13849599659442902, 0.07494599372148514, 0.06764231622219086, 0.0021323435939848423, 0.0508137121796608, 0.09468687325716019, -0.05789254605770111, 0.007474164944142103, -0.111610546708107, 0.051218822598457336, -0.028067629784345627, 0.023416422307491302, 0.08120095729827881, -0.018453000113368034, -0.03275883197784424, 0.04286910966038704, -0.08136974275112152, 0.08630560338497162, -0.0532388761639595, -0.04961877688765526, -0.0834752544760704, -0.017385927960276604, -0.05013314262032509, 0.009673802182078362, -0.040320951491594315, 0.03062061220407486, -0.06851767748594284, -0.06604424118995667, -0.007511064410209656, 0.006429041735827923, 0.004041388630867004, -0.0045576561242341995, 0.0018133575795218349, 0.11928937584161758, -0.028746284544467926, -0.06040576100349426, 0.026546895503997803, 0.13973253965377808, 0.030293889343738556, -0.09409970790147781, -0.030652539804577827, -0.1505451202392578, 0.07869614660739899, -0.09975895285606384, -0.07615561783313751, 0.019837111234664917, 0.1322905570268631, -0.13281014561653137, -0.020557334646582603], "\u7f16\u8bd1\u65f6`bash -p`\u65b9\u5f0f\u548c `bash -e`\u65b9\u5f0f\u7684\u533a\u522b\uff1f": [-0.06816346198320389, 0.0022599361836910248, 0.015937568619847298, 0.017828918993473053, -0.10543178766965866, -0.09347081184387207, -0.061610378324985504, 0.038024548441171646, -0.06336885690689087, 0.011405459605157375, 0.02507629059255123, 0.06138600781559944, 0.007532182149589062, -0.006402565166354179, -0.012309085577726364, 0.13843482732772827, 0.06594959646463394, 0.0963800922036171, -0.047517191618680954, 0.08777335286140442, -0.0027726669795811176, -0.025914207100868225, 0.08067452162504196, 0.012912788428366184, 0.006795715074986219, 0.09217102080583572, 0.03722681105136871, 0.048767443746328354, 0.03917217627167702, 0.04725691303610802, 0.034737780690193176, 0.06909245997667313, -0.033946067094802856, 0.022777395322918892, 0.04404378682374954, -0.04928936809301376, -0.10791721940040588, 0.11745377629995346, 0.010691627860069275, -0.02927781268954277, 0.09725163131952286, 0.05016063153743744, -0.035100407898426056, 0.0697910487651825, -0.033418625593185425, -0.07700047641992569, -0.20133474469184875, -0.019501198083162308, 0.044997602701187134, -0.04090520739555359, -0.10001665353775024, 0.09936036914587021, 0.10009900480508804, 0.004178067669272423, -0.010027769021689892, -0.005045430734753609, 0.020842216908931732, -0.07714025676250458, 0.0067016929388046265, 0.07839548587799072, -0.03560469299554825, -0.019265517592430115, 0.0017519164830446243, -0.045187197625637054, -0.09639830887317657, -0.026952100917696953, -0.06578933447599411, -0.07696203887462616, -0.09712723642587662, 0.0004095025360584259, -0.010861070826649666, 0.013533785939216614, 0.02826237678527832, 0.10146133601665497, 0.0790090411901474, 0.058816097676754, -0.07368195801973343, -0.028789076954126358, 0.013649513944983482, 0.1165560930967331, 0.008589916862547398, 0.01244259811937809, 0.05115020275115967, -0.07042553275823593, -0.10318858921527863, -0.07338789850473404, -0.07916951924562454, 0.12153682857751846, -0.05514771118760109, 0.08607782423496246, -0.002133751753717661, -0.0437692329287529, -0.11236662417650223, 0.07280908524990082, 0.03243463486433029, -0.02100599743425846, -0.043334126472473145, 0.028313767164945602, -0.07698138803243637, -0.07842929661273956, 0.026714947074651718, -0.04980883002281189, -0.05187856778502464, 0.040636107325553894, 0.06470375508069992, -0.09083639830350876, -0.04093259572982788, 0.04160125181078911, 0.049774445593357086, 0.0555974580347538, 0.05602647364139557, -0.0413510724902153, 0.029367899522185326, 0.03521644324064255, -0.027288489043712616, 0.02878696657717228, -0.05789417028427124, -0.0478433221578598, -0.0716543197631836, 0.12130387127399445, 0.1420113742351532, -0.05464572831988335, 0.06276065856218338, 0.037448685616254807, 0.011845010332763195, -0.0233501847833395, 0.10059212893247604, -0.09818677604198456, -0.17975687980651855, -0.066928930580616, 0.11622971296310425, -0.15828736126422882, 0.09317117184400558, -0.07029586285352707, -0.15679171681404114, 0.10109037905931473, -0.08349352329969406, 0.07111359387636185, -0.03937067091464996, 0.02816266007721424, 0.08220832049846649, -0.15412099659442902, 0.020350024104118347, 0.004615576006472111, 0.13164056837558746, 0.07613085955381393, -0.07743783295154572, -0.11240129172801971, -0.0460488498210907, -0.018544264137744904, 0.10659099370241165, -0.029970264062285423, -0.04337340593338013, 0.04964492470026016, -0.040708351880311966, -0.005466713570058346, 0.01213739812374115, 0.010552923195064068, -0.0985197201371193, -0.09130851924419403, -0.06921102851629257, -0.00943948607891798, 0.0896005630493164, -0.0565241314470768, -0.043764859437942505, -0.01608119159936905, 0.020000126212835312, 0.024824030697345734, -0.0534561350941658, 0.013267550617456436, -0.08607707172632217, 0.06710480898618698, -0.04893910884857178, -0.08145622164011002, 0.007698425557464361, 0.052067529410123825, 0.03925284370779991, -0.1138593852519989, -0.021934304386377335, -0.07005982100963593, -0.003710319986566901, -0.08380069583654404, -0.06105637550354004, -0.0917530357837677, 0.02619512751698494, 0.012697811238467693, -0.018400859087705612, 0.04588259756565094, 0.10368373990058899, -0.05488697439432144, -0.05331192538142204, 0.06463420391082764, 0.03542975336313248, 0.02094850316643715, -0.04789232090115547, -0.08976703137159348, -0.040504805743694305, -0.08366255462169647, -0.014945639297366142, -0.06415998935699463, -0.050692640244960785, 0.13763506710529327, -0.030536791309714317, -0.0016495235031470656, -0.1020745038986206, 0.04596232995390892, -0.06495315581560135, -0.019091319292783737, -0.015259113162755966, -0.06063658371567726, 0.12547935545444489, 0.012858635745942593, -0.12456726282835007, -0.06312278658151627, -0.13374865055084229, 0.06676781177520752, 0.09398088604211807, 0.07915826886892319, 0.08349651098251343, -0.10297972708940506, -0.04012679308652878, -0.05025842413306236, 0.01684357412159443, 0.04149257391691208, -0.051243554800748825, -0.06875697523355484, 0.002471806015819311, -0.05698395520448685, -0.08210720866918564, 0.023207571357488632, 0.004964713007211685, 0.04792352020740509, 0.012362908571958542, 0.116399846971035, -0.023841772228479385, 0.023401033133268356, -0.18249687552452087, -0.05605670064687729, 0.01418822631239891, 0.09158379584550858, -0.11761831492185593, 0.1027272492647171, -0.02793212980031967, -0.01912730187177658, -0.032974015921354294, 0.08561331033706665, 0.07072638720273972, -0.025418560951948166, 0.009514287114143372, -0.05856731906533241, 0.130354642868042, -0.05819617211818695, -0.13969160616397858, 0.029236087575554848, -0.026121100410819054, 0.07187692075967789, 0.09044341742992401, -0.005141034256666899, 0.07550752907991409, -0.0715239867568016, 0.03778795152902603, 0.02865578979253769, 0.027041122317314148, 0.029865335673093796, 0.029454883188009262, -0.038409534841775894, 0.10067892074584961, -0.007260267622768879, 0.04048570245504379, -0.11135736107826233, 0.030193055048584938, 0.031055904924869537, 0.0009091382380574942, -0.009320804849267006, 0.15875107049942017, 0.1347225159406662, -0.004316141828894615, -0.13485977053642273, 0.019405275583267212, 0.05016149580478668, -0.007027683779597282, 0.06565476208925247, -0.04395444318652153, 0.03645484894514084, 0.08163761347532272, -0.010829010978341103, 8.049607276916504e-05, 0.07901621609926224, 0.08514880388975143, 0.13034555315971375, -0.05317601561546326, -0.03368648886680603, -0.024754002690315247, -0.0033657108433544636, 0.03835921734571457, 0.1048397496342659, 0.057539667934179306, 0.06265652179718018, 0.006861696485430002, 0.006447249557822943, -0.038666702806949615, -0.03504633903503418, 0.09169773757457733, -0.05290830135345459, -0.051745880395174026, 0.012005730532109737, 0.014932241290807724, 0.0481400303542614, -0.0611698254942894, -0.054326631128787994, 0.06942148506641388, 0.05207341909408569, -0.016537906602025032, 0.0341334193944931, -0.051670387387275696, -0.08920056372880936, 0.024928579106926918, -0.1083289384841919, 0.05023055151104927, -0.08927057683467865, -0.06018396466970444, -0.13121645152568817, 0.08065392076969147, 0.08808203786611557, 0.09273214638233185, -0.09336470812559128, 0.0676078051328659, 0.04221218079328537, 0.03529973700642586, -0.06800413876771927, 0.07360530644655228, -0.12550972402095795, 0.05692039430141449, 0.07132753729820251, 0.02718908153474331, -0.20981216430664062, 0.04574102163314819, 0.07215069979429245, -0.008011698722839355, 0.046848364174366, 0.02243591472506523, -0.028804713860154152, -0.0874689370393753, -0.12387435138225555, 0.04042504355311394, -0.13955746591091156, 0.13203291594982147, 0.02292557992041111, 0.05195336788892746, -0.03843901306390762, 0.08502603322267532, -0.06454270333051682, 0.044965166598558426, 0.012282301671802998, -0.01732720620930195, -0.09919607639312744, -0.026032622903585434, 0.07394722104072571, 0.020111259073019028, -0.011998491361737251, 0.010835984721779823, 0.10065273195505142, 0.012858754955232143, -0.06731762737035751, 0.04173365235328674, -0.06045553833246231, -5.859602242708206e-05, -0.06839936971664429, 0.0015738612273707986, 0.045099034905433655, -0.09825216233730316, 0.14874303340911865, 0.0638885647058487, -0.025809550657868385, -0.04873915761709213, -0.07045712321996689, -0.13423356413841248, -0.03059595823287964, -0.06449048221111298, -0.05994607135653496, 0.10962042212486267, 0.1410064697265625, -0.1223151758313179, -0.06878022849559784], "\u5728Linux\u4e2d\u5df2\u7ecf\u5b89\u88c5\u4e86\u4ea4\u53c9\u7f16\u8bd1\u5de5\u5177\uff0c\u4f46\u662f\u7f16\u8bd1\u547d\u4ee4\u8981\u600e\u4e48\u5199\u5462\uff1f": [-0.032198067754507065, 0.06714195758104324, 0.04691137745976448, 0.03467612713575363, 0.0022369995713233948, -0.06614077836275101, 0.05873670056462288, 0.09862703830003738, -0.004647047258913517, 0.02459254488348961, -0.030458014458417892, 0.03294168785214424, 0.0173563864082098, -0.04732457920908928, -0.01544561330229044, 0.10460633784532547, 0.09376347810029984, 0.010478390380740166, -0.0318596176803112, 0.06565756350755692, -0.02005583606660366, -0.011940241791307926, 0.06547360867261887, -0.06332553178071976, -0.012779355980455875, 0.10684331506490707, -0.01081086415797472, 0.02225496992468834, 0.06665440648794174, 0.1045205146074295, 0.058839987963438034, 0.061579763889312744, -0.12600275874137878, 0.10402456670999527, -0.031279709190130234, -0.05137543007731438, -0.019819505512714386, 0.11224675178527832, -0.04421627148985863, -0.004868288058787584, 0.0625355914235115, -0.016439327970147133, -0.06175161898136139, 0.0807710736989975, 0.03692127391695976, -0.037414684891700745, -0.13417410850524902, -0.025163697078824043, 0.06639482825994492, 0.03727883845567703, -0.06581352651119232, 0.06628924608230591, 0.01951611414551735, -0.05513586476445198, -0.047480642795562744, -0.015902068465948105, 0.08912393450737, -0.009465772658586502, 0.07482484728097916, 0.03088768757879734, 0.02792258933186531, -0.026447540149092674, 0.015934063121676445, 0.030874647200107574, -0.09901458770036697, -0.040063321590423584, -0.0482710599899292, -0.02531624771654606, -0.007792015094310045, -0.024764927104115486, -0.038164444267749786, 0.0628729909658432, -0.07665499299764633, 0.08522094786167145, 0.06282106041908264, 0.0394134446978569, 0.033835701644420624, 0.014512724243104458, -0.06576284021139145, -0.013347526080906391, 0.029906706884503365, 0.07566656917333603, 0.08482016623020172, -0.08007890731096268, -0.019084634259343147, -0.02749384567141533, -0.09104391187429428, 0.03269939497113228, -0.05966182425618172, 0.06742589920759201, -0.013554896228015423, -0.014611924067139626, -0.11622776091098785, 0.06854672729969025, 0.1173776164650917, -0.045602865517139435, -0.07584653794765472, 0.007912819273769855, -0.07160336524248123, -0.0007349856896325946, 0.03208450227975845, -0.049174025654792786, -0.01008833572268486, -0.01315538864582777, -0.02653748169541359, -0.02992672473192215, 0.022736361250281334, 0.03720554709434509, -0.016145681962370872, 0.07125648111104965, 0.04780237376689911, 0.013865279033780098, 0.07109251618385315, -0.04498002305626869, -0.08750155568122864, 0.05451846867799759, 0.007120820693671703, 0.00759207783266902, -0.0948450118303299, 0.04407069832086563, 0.10743094235658646, -0.06905023008584976, -0.01815282367169857, 0.011116507463157177, 0.02537376806139946, -0.07250603288412094, 0.12344668060541153, -0.03334429860115051, -0.08359641581773758, -0.02741917409002781, 0.12152430415153503, -0.042826324701309204, 0.1043209359049797, -0.15132534503936768, -0.12354479730129242, 0.07427375018596649, -0.0720788761973381, 0.022574789822101593, 0.024786021560430527, 0.08651647716760635, 0.08040887117385864, -0.1492864191532135, 0.027289913967251778, -0.025669176131486893, 0.10059663653373718, 0.0031490277033299208, -0.08221438527107239, -0.1269332319498062, -0.021836962550878525, -0.05091232433915138, 0.07732556015253067, -0.031040389090776443, -0.06470364332199097, 0.07340184599161148, 0.018450692296028137, 0.03922820836305618, -0.06840748339891434, -0.05926765501499176, -0.06567778438329697, -0.019388418644666672, -0.05880606919527054, 0.013604854233562946, 0.03948602452874184, -0.0364266000688076, -0.009205575101077557, 0.03336052596569061, 0.022685151547193527, -0.04767857864499092, 0.0022586695849895477, -0.024698734283447266, -0.002229912206530571, -0.04355285316705704, -0.022715585306286812, -0.04538749158382416, 0.06813887506723404, -0.04423734173178673, 0.06680817157030106, -0.08566246926784515, -0.017377415671944618, -0.0691819041967392, 0.04794109985232353, -0.15675953030586243, 0.002855665748938918, -0.04571486636996269, 0.09147696942090988, 0.04379333555698395, -0.01824053004384041, 0.012262703850865364, 0.14174214005470276, -0.11286582797765732, 0.0003472333773970604, 0.026397602632641792, 0.0108176339417696, 0.10472559183835983, -0.05462420731782913, -0.029011711478233337, -0.029807928949594498, -0.06595157086849213, 0.01908252388238907, -0.045213550329208374, -0.07913022488355637, 0.012988705188035965, 0.07034468650817871, -0.01805427111685276, -0.02974463254213333, -0.015915192663669586, -0.10830908268690109, -0.1031031459569931, 0.02602936327457428, 0.009121976792812347, 0.04624388739466667, 0.030028484761714935, -0.06233477592468262, -0.029122624546289444, -0.07709965109825134, 0.01720210164785385, 0.08723646402359009, 0.11637535691261292, 0.0359717532992363, -0.06945725530385971, -0.00041887909173965454, 0.00043749433825723827, -0.02143118530511856, -0.04711337387561798, -0.07348374277353287, -0.027584657073020935, -0.05827388912439346, -0.07919009029865265, -0.009747572243213654, 0.04474222660064697, -0.002178583526983857, 0.09719672054052353, 0.022959986701607704, 0.14721086621284485, 0.0033828450832515955, 0.03956492245197296, -0.08750413358211517, -0.03921804577112198, 0.08775674551725388, 0.0719115287065506, -0.11022554337978363, 0.022766683250665665, -0.061075981706380844, -0.049474895000457764, -0.038782838732004166, 0.07073577493429184, 0.12594670057296753, 0.05944792553782463, 0.03271559253334999, -0.04452749714255333, 0.026115093380212784, 0.03534841164946556, -0.0628785789012909, 0.008868973702192307, -0.005714651197195053, 0.06306171417236328, -0.019101377576589584, -0.027348816394805908, 0.053786005824804306, 0.0178413987159729, 0.011105420999228954, 0.015284199267625809, -0.1053737923502922, -0.01703018695116043, -0.014815245755016804, -0.0571257546544075, 0.09744121879339218, -0.03742680326104164, 0.030462276190519333, -0.07678716629743576, 0.006033400539308786, 0.019212206825613976, -0.07173860818147659, -0.02144664339721203, 0.09099273383617401, 0.06905066221952438, 0.024743560701608658, -0.11977431178092957, 0.044039804488420486, 0.00039144977927207947, 0.027966178953647614, 0.0158050749450922, 0.0020368490368127823, 0.02817879244685173, 0.02292504347860813, -0.0665362998843193, 0.030938908457756042, -0.010905640199780464, 0.04380696266889572, 0.05940472334623337, -0.04236751049757004, -0.04499692842364311, -0.05284247174859047, 0.02113688737154007, -0.05793697386980057, 0.05004240944981575, 0.078278087079525, 0.05353840813040733, -0.023309122771024704, 0.025650974363088608, -0.058878228068351746, -0.0523657351732254, 0.10720889270305634, -0.011602328158915043, -0.03970860689878464, 0.013320384547114372, 0.005695251747965813, 0.026204656809568405, 0.010275803506374359, 0.011920681223273277, -0.013750230893492699, 0.0661000981926918, 0.08633814752101898, 0.10275968909263611, -0.06696370244026184, -0.030836686491966248, 0.060884881764650345, -0.07185928523540497, 0.04583054035902023, -0.05125939100980759, 0.035600148141384125, -0.0573892667889595, -0.007082582451403141, 0.04358968138694763, 0.05081840604543686, 0.017754139378666878, 0.0341782309114933, 0.0708145946264267, 0.03192337974905968, -0.03721471503376961, 0.08080907166004181, -0.06620727479457855, -0.03275587782263756, 0.11245396733283997, 0.03713217005133629, -0.12193477898836136, 0.0649283304810524, 0.018113162368535995, -0.028216615319252014, 0.015470392070710659, 0.018848491832613945, -0.0911271721124649, 0.005221572704613209, -0.10006825625896454, 0.07424749433994293, -0.06443080306053162, 0.05117015540599823, 0.06014028936624527, -0.016516100615262985, -0.02359207347035408, -0.0024006692692637444, -0.10295244306325912, 0.06597419828176498, -0.04079485684633255, -0.003085135016590357, -0.10426036268472672, -0.04683443903923035, 0.0034261452965438366, 0.013003089465200901, -0.024217138066887856, 0.004420066252350807, -0.018089503049850464, -0.03992835432291031, -0.06866057962179184, 0.0020995258819311857, -0.05711161717772484, 0.08068054914474487, -0.046532440930604935, 0.06750884652137756, -0.00802381057292223, -0.10346338897943497, 0.03527801111340523, 0.1445619910955429, 0.08419366925954819, -0.05478977411985397, -0.039502475410699844, -0.13367033004760742, 0.04537223279476166, -0.08651839196681976, -0.11548099666833878, 0.06998521834611893, 0.119215227663517, -0.12960904836654663, 0.005373368505388498], "MindSpore\u5b89\u88c5: \u7248\u672c0.6.0-beta + Ascend 910 + Ubuntu_aarch64 + Python3.7.5\uff0c\u624b\u52a8\u4e0b\u8f7d\u5bf9\u5e94\u7248\u672c\u7684whl\u5305\uff0c\u7f16\u8bd1\u5e76\u5b89\u88c5gmp6.1.2\u3002\u5176\u4ed6Python\u5e93\u4f9d\u8d56\u5df2\u7ecf\u5b89\u88c5\u5b8c\u6210\uff0c\u6267\u884c\u6837\u4f8b\u5931\u8d25\uff0c\u62a5\u9519\u663e\u793a\u627e\u4e0d\u5230so\u6587\u4ef6\u3002": [-0.03023095242679119, 0.06342635303735733, 0.006258152890950441, -0.007884000428020954, -0.012778324075043201, -0.054130323231220245, 0.09948838502168655, 0.04131857305765152, -0.03876825422048569, 0.032023895531892776, -0.062152691185474396, 0.06862825900316238, 0.009425841271877289, 0.012128275819122791, -0.02574526146054268, 0.0719599574804306, 0.12476284801959991, -0.009229556657373905, -0.0072571225464344025, 0.03353634104132652, 0.053734805434942245, 0.028994625434279442, 0.08815622329711914, -0.04141933470964432, 0.028938228264451027, 0.0706767737865448, -0.05762392655014992, -0.018891427665948868, 0.005511526018381119, 0.07342267781496048, 0.032693490386009216, 0.0586012527346611, -0.13568978011608124, 0.024995189160108566, -0.05039620399475098, -0.0330839566886425, -0.05618531256914139, 0.12956976890563965, -0.058194924145936966, 0.019077664241194725, 0.034686919301748276, 0.05001320689916611, 0.027092695236206055, 0.1091897189617157, -0.004195523913949728, -0.031045231968164444, -0.11289887130260468, -0.028700923547148705, 0.04817450791597366, 0.058008305728435516, -0.1286345273256302, 0.09862686693668365, -0.003888319479301572, -0.045415248721838, -0.020080095157027245, 0.020124424248933792, 0.05802755430340767, -0.05830506980419159, 0.059879228472709656, -0.0009438709239475429, -0.004771838895976543, -0.04475840553641319, -0.06806939840316772, 0.03018070198595524, -0.0900614857673645, -0.04718433693051338, -0.0372333824634552, -0.07177175581455231, 0.013010211288928986, -0.04585356265306473, -0.09540554136037827, 0.0013670037733390927, -0.025736328214406967, 0.07940319925546646, 0.004261951427906752, 0.03485551103949547, -0.04767882823944092, 0.0487033911049366, -0.03977583721280098, 0.05027149245142937, 0.037488192319869995, 0.027202896773815155, 0.05125723406672478, -0.04286148026585579, -0.03468647971749306, -0.02142566815018654, -0.08302827924489975, 0.061776772141456604, -0.04413050785660744, 0.08451917767524719, 0.00513166980817914, -0.004098509903997183, -0.08614303916692734, 0.10063877701759338, 0.1256778985261917, -0.03498029336333275, -0.06170078366994858, -0.022434812039136887, -0.16148319840431213, -0.0413515567779541, 0.010058291256427765, -0.047363750636577606, -0.049478478729724884, -0.014930572360754013, 0.032448578625917435, -0.0771629810333252, 0.09644666314125061, 0.0060614352114498615, 0.0019094622693955898, 0.08076795190572739, 0.049740247428417206, 0.04135416820645332, 0.08596735447645187, 0.0012060696026310325, -0.015237845480442047, 0.07717527449131012, -0.013515759259462357, 0.04174377769231796, -0.07762327045202255, 0.06286539137363434, 0.06531720608472824, -0.07868974655866623, 0.020973283797502518, 0.02789383754134178, 0.03566528111696243, -0.0184085164219141, 0.06803998351097107, -0.03250762075185776, -0.039220236241817474, -0.11086893081665039, 0.13164940476417542, -0.0567796565592289, 0.12055425345897675, -0.12903741002082825, -0.09811229258775711, 0.10864729434251785, -0.030160237103700638, -0.06519719958305359, 0.021688856184482574, 0.10393869876861572, 0.09963811933994293, -0.1512966752052307, 0.044330935925245285, 0.0065874396823346615, 0.09474820643663406, 0.03398703783750534, -0.1039387434720993, -0.11936439573764801, -0.009182349778711796, -0.017078883945941925, 0.062057703733444214, 0.016605423763394356, -0.035864923149347305, 0.08230666816234589, -0.036128655076026917, 0.07816217839717865, -0.05885162577033043, -0.02396206744015217, -0.03136441484093666, -0.0036967042833566666, -0.06497019529342651, -0.025580354034900665, 0.05925779044628143, 0.01710483618080616, -0.01380783412605524, 0.011106794700026512, 0.05929844081401825, -0.04081437736749649, 0.007804464548826218, -0.07537596672773361, -0.016318904235959053, -0.03137052059173584, -0.07586849480867386, -0.016833914443850517, 0.05877042934298515, -0.03009387105703354, 0.08102104067802429, -0.07616930454969406, -0.03915680572390556, -0.04024171084165573, 0.11432511359453201, -0.07902684807777405, -0.01860598288476467, -0.0840902179479599, 0.0795380249619484, 0.005922169890254736, 0.016408724710345268, -0.00024583470076322556, 0.13225454092025757, -0.08966536074876785, -0.03291470184922218, 0.06246287003159523, 0.024855555966496468, 0.09327517449855804, -0.021671224385499954, -0.01829276606440544, -0.04068724438548088, -0.0341692790389061, 0.008412309922277927, -0.04125615954399109, -0.0575651079416275, 0.020863324403762817, 0.05606597289443016, 0.05517728999257088, 0.05085059255361557, 0.002729573054239154, -0.08544796705245972, -0.07952503114938736, 0.018590718507766724, 0.00012589246034622192, 0.09178778529167175, 0.025548337027430534, 0.00045194101403467357, -0.03813015669584274, -0.08710145950317383, -0.009552860632538795, 0.05479102581739426, 0.09896289557218552, 0.012329847551882267, -0.04423464089632034, -0.001844962825998664, -0.0040480270981788635, 0.01750556379556656, -0.04445793479681015, -0.06890673190355301, -0.01372092217206955, -0.11154855787754059, -0.04603312909603119, -0.021325908601284027, 0.07760550081729889, -0.054853539913892746, 0.10336025059223175, 0.012142079882323742, 0.1283498853445053, 0.01672004722058773, 0.03322920948266983, -0.04050637036561966, -0.04257085546851158, 0.10733546316623688, 0.05306187644600868, -0.10844291001558304, 0.07336320728063583, -0.07372866570949554, -0.03956827521324158, -0.07923892885446548, 0.1169612780213356, 0.09444203972816467, 0.06334202736616135, 0.0029807896353304386, 0.009799021296203136, 0.050219953060150146, 0.000533391663338989, -0.11695612967014313, 0.08233245462179184, -0.0234614796936512, 0.03372747078537941, 0.05712088569998741, -0.08075056970119476, 0.03348100185394287, 0.07527405768632889, -0.002453560708090663, 0.01741669327020645, -0.09730356186628342, -0.051705703139305115, -0.05035192519426346, -0.0038826046511530876, 0.0577654205262661, -0.03821207955479622, 0.007716051302850246, -0.02906031720340252, 0.04494412615895271, 0.0406871996819973, -0.08278151601552963, -0.045150142163038254, 0.1140509620308876, 0.07999830693006516, 0.041189368814229965, -0.12059861421585083, 0.04330572485923767, 0.036712512373924255, 0.012648722156882286, -0.0026089749298989773, 0.015318214893341064, -0.021962970495224, 0.09185495972633362, -0.07860422134399414, 0.05702812969684601, 0.003902924945577979, -0.002698478288948536, 0.10137604922056198, -0.05047054588794708, -0.05585750937461853, -0.033225029706954956, 0.03815039247274399, -0.09157256782054901, 0.08931859582662582, 0.09730710089206696, 0.07365138083696365, -0.0694919005036354, 0.06502138823270798, -0.10410894453525543, -0.06630785763263702, 0.11475653946399689, -0.06478606164455414, 0.0005937916575931013, 8.278992027044296e-05, -0.0437580831348896, 0.06926500797271729, 0.007698283065110445, -0.05011024326086044, 0.024002645164728165, 0.029916441068053246, 0.06502404063940048, 0.051334381103515625, -0.07475177943706512, -0.06376364827156067, 0.05281885340809822, -0.15062478184700012, 0.03599231317639351, -0.07783545553684235, -0.0066816071048378944, -0.04640914499759674, -0.06202132999897003, 0.07614444941282272, 0.06833886355161667, 0.020118823274970055, 0.025753898546099663, 0.03238433972001076, -0.014054844155907631, -0.05181880295276642, -0.002827318385243416, -0.0666782408952713, 0.026644809171557426, 0.01322663202881813, 0.03133227676153183, -0.11516010761260986, 0.13141502439975739, 0.013390031643211842, 0.009122628718614578, 0.008521314710378647, 0.05599907413125038, -0.050605107098817825, -0.011421989649534225, -0.0958641767501831, 0.07450264692306519, -0.04890283942222595, 0.042710091918706894, 0.09119955450296402, -0.04113079607486725, -0.08585537225008011, -0.0029701353050768375, -0.10180609673261642, 0.10224643349647522, -0.07173417508602142, -0.03106592409312725, -0.08202612400054932, -0.08135578036308289, -0.04201626405119896, -0.0062299869023263454, 0.016827186569571495, 0.019496649503707886, 0.0026887347921729088, -0.06322061270475388, -0.03542212396860123, -0.011627246625721455, -0.033283498138189316, 0.04083811491727829, -0.05013260617852211, 0.10650218278169632, -0.0037946593947708607, -0.06346150487661362, 0.0629563108086586, 0.12011924386024475, 0.022023078054189682, -0.0778595358133316, -0.017586950212717056, -0.1381986290216446, 0.09918564558029175, -0.0683308094739914, -0.06801039725542068, 0.054392009973526, 0.09885136038064957, -0.10905692726373672, 0.002333748620003462], "\u6e90\u7801\u7f16\u8bd1MindSpore\u8fc7\u7a0b\u65f6\u95f4\u8fc7\u957f\uff0c\u6216\u65f6\u5e38\u4e2d\u65ad\u8be5\u600e\u4e48\u529e\uff1f": [-0.09442594647407532, 0.06967472285032272, 0.06026609241962433, 0.05347564443945885, -0.04117656499147415, -0.09670800715684891, -0.012735472992062569, 0.07218536734580994, 0.060113996267318726, 0.08239515870809555, 0.05233802646398544, -0.00902781542390585, -0.010055486112833023, 0.003839010139927268, -0.042029257863759995, 0.11070467531681061, 0.06262113898992538, 0.008686359040439129, -0.05886027589440346, 0.03680535778403282, -0.06985680013895035, -0.017657894641160965, 0.045504771173000336, -0.041154734790325165, 0.008816324174404144, 0.10720972716808319, 0.002454332308843732, 0.0024688676930963993, 0.016069097444415092, 0.040204983204603195, 0.09891665726900101, 0.07581552863121033, -0.07354652136564255, 0.08249625563621521, -0.07712078839540482, -0.10295114666223526, -0.027582021430134773, 0.04806267097592354, 0.0030909855850040913, -0.06095116585493088, 0.09316898882389069, 0.023289650678634644, -0.06903846561908722, 0.0991160124540329, -0.05937552452087402, -0.03842614218592644, -0.1330147087574005, -0.038209907710552216, 0.019614944234490395, 0.02792946808040142, -0.014933382160961628, 0.040930189192295074, 0.020888954401016235, -0.018674923107028008, -0.07079091668128967, -0.01655394211411476, 0.03346281498670578, 0.03246932104229927, 0.05307874083518982, -0.08373843133449554, 0.05603986978530884, 0.09387007355690002, -0.026066835969686508, 0.006180051248520613, -0.11066729575395584, -0.01763686165213585, -0.10612402111291885, -0.08410821110010147, 0.002139751799404621, 0.04199312627315521, -0.06476113945245743, 0.022418858483433723, -0.03310852870345116, 0.05242141708731651, 0.06853973865509033, 0.04074816405773163, 0.005377997178584337, -0.0390816330909729, -0.03061167523264885, 0.02908916585147381, 0.021677404642105103, 0.08656033873558044, 0.041221268475055695, -0.10412875562906265, -0.053131114691495895, -0.016488339751958847, -0.0665903389453888, 0.03153766691684723, -0.04624893143773079, 0.06031743809580803, -0.013379340060055256, -0.026417823508381844, -0.16260699927806854, -0.005833917297422886, 0.08180660009384155, -0.008318894542753696, -0.08296927809715271, -0.04163844883441925, -0.12349022179841995, -0.03431899473071098, 0.05426229536533356, 0.01660762168467045, -0.01184330228716135, 0.001007616170682013, -0.021963700652122498, -0.08000656962394714, 0.0016837774310261011, 0.012411529198288918, 0.03895745798945427, 0.023511182516813278, 0.09500447660684586, 0.0012925893533974886, 0.07157175987958908, -0.0052312519401311874, 0.024348005652427673, -0.025665365159511566, 0.0069259824231266975, -0.01831110008060932, -0.05877138674259186, 0.0774078220129013, 0.07707279920578003, -0.05915931239724159, -0.0010915915481746197, 0.03183378279209137, -0.0026127840392291546, -0.04478296637535095, 0.10440925508737564, -0.15472006797790527, -0.08733420073986053, -0.057356007397174835, 0.1311262845993042, -0.06928673386573792, 0.03822574391961098, -0.09089242666959763, -0.10432690382003784, 0.07537421584129333, -0.022061564028263092, 0.057995982468128204, -0.00014266278594732285, 0.1225339025259018, 0.03314148262143135, -0.13453489542007446, 0.0669814869761467, -0.04624483734369278, 0.09280573576688766, 0.048846837133169174, -0.08730247616767883, -0.16565051674842834, 0.01314620766788721, -0.06872157007455826, 0.07198737561702728, -0.0703386664390564, -0.015419531613588333, 0.07061298191547394, 0.041886743158102036, 0.054397035390138626, 0.0010721655562520027, -0.054210927337408066, 0.05365458503365517, -0.13053588569164276, -0.04010231792926788, 0.03517135977745056, 0.03180645778775215, -0.02285829558968544, -0.10175244510173798, 0.0319720059633255, -0.007832467555999756, 0.03832824155688286, -0.0679439976811409, 0.0034200900699943304, 0.011538811028003693, -0.013676190748810768, 0.014179682359099388, -0.058031484484672546, 0.021938327699899673, 0.031105106696486473, 0.0854041576385498, -0.03825075179338455, -0.001889492035843432, -0.025573648512363434, 0.028864579275250435, -0.11062085628509521, -0.0024300692602992058, -0.0548924058675766, 0.0655314177274704, 0.0027175096329301596, 0.10120151191949844, -0.0001460649073123932, 0.16996324062347412, -0.1951947659254074, -0.025907883420586586, -0.012311942875385284, -0.0063383979722857475, 0.07936813682317734, -0.02691281959414482, 0.0061833239160478115, -0.10365541279315948, -0.047750793397426605, 0.02171294204890728, -0.0647553950548172, -0.0034069062676280737, -0.016323387622833252, 0.0822882279753685, 0.0008876470383256674, -0.015302322804927826, 0.002071608556434512, -0.08278881013393402, -0.1044447124004364, -0.0019691523630172014, 0.0415806770324707, 0.025775913149118423, 0.07401223480701447, -0.05932938680052757, -0.09482169151306152, -0.10388348251581192, -0.015765095129609108, 0.11559189856052399, 0.037928253412246704, 0.07992156594991684, -0.04757893830537796, -0.02415573038160801, 0.03136700391769409, 0.0043358756229281425, -0.13099798560142517, -0.12742599844932556, -0.057205069810152054, -0.021783996373414993, -0.11637184023857117, -0.034539610147476196, 0.020739106461405754, -0.04291082173585892, 0.04427757114171982, 0.004955959040671587, 0.18687255680561066, -0.024021100252866745, 0.13510949909687042, -0.08528487384319305, -0.024245837703347206, 0.04331982880830765, 0.032719697803258896, -0.08553199470043182, 0.04972902685403824, -0.0589950829744339, -0.06199013441801071, -0.10698402673006058, 0.11360373347997665, 0.040498387068510056, 0.016162605956196785, 0.039615511894226074, -0.10598418861627579, 0.02033613994717598, 0.03876354545354843, -0.05032569169998169, 0.031343016773462296, -0.02847708947956562, 0.05572720617055893, 0.10566549748182297, -0.04691331461071968, -0.0014283126220107079, -0.01064540445804596, 0.0005386648117564619, 0.022903965786099434, -0.0690837949514389, 0.03219101205468178, -0.038050249218940735, -0.06347289681434631, 0.10960297286510468, -0.06328734010457993, 0.07376880943775177, -0.05978085845708847, 0.0007482542423531413, 0.08129623532295227, -0.0802001804113388, 0.021581757813692093, 0.14889994263648987, 0.06553655862808228, 0.03331322222948074, -0.14211636781692505, 0.02469743974506855, 0.03837994486093521, -0.03980160877108574, 0.03946523740887642, -0.03228600695729256, 0.02520596981048584, 0.05109993368387222, -0.054134733974933624, 0.0601431280374527, 0.014251979999244213, 0.03812989220023155, 0.13955144584178925, -0.0013248727191239595, 0.001454007695429027, -0.03727291151881218, -0.035566847771406174, -0.07513449341058731, 0.029558617621660233, 0.015021811239421368, 0.06003878638148308, 0.040401641279459, 0.03782631456851959, -0.018620632588863373, -0.016424069181084633, 0.045350849628448486, -0.05236935243010521, -0.004415166564285755, 0.009668555110692978, 0.016605710610747337, 0.010031038895249367, 0.032953325659036636, -0.017871446907520294, 0.06931228935718536, 0.13196799159049988, 0.04578200727701187, 0.12877164781093597, -0.04528004303574562, -0.03583332896232605, 0.007040994241833687, -0.11288339644670486, 0.03502105548977852, -0.038506701588630676, 0.038197699934244156, -0.07265809178352356, -0.021516995504498482, 0.0790325403213501, 0.047736864537000656, -0.057435207068920135, 0.06114613264799118, 0.07703099399805069, 0.022728025913238525, -0.08142747730016708, 0.055731549859046936, -0.02187347412109375, 0.03619347885251045, 0.10025767982006073, 0.04716486483812332, -0.11169406771659851, 0.056752465665340424, -0.01811353862285614, 0.0001351209357380867, 0.03515073284506798, 0.03325367718935013, -0.09363532811403275, 0.011402742937207222, -0.019548600539565086, 0.09089688956737518, -0.07053432613611221, 0.14699693024158478, 0.014429818838834763, -0.008062735199928284, -0.05212293937802315, 0.037980418652296066, -0.05986062437295914, 0.04548908770084381, -0.039132483303546906, -0.05205187946557999, -0.1412069946527481, -0.07425108551979065, -0.005938333459198475, 0.021364279091358185, -0.06087955832481384, -0.040143463760614395, -0.04515979811549187, -0.05946812033653259, -0.10098591446876526, 0.02576313726603985, -0.0962362289428711, 0.04429442808032036, -0.04722844064235687, 0.07828329503536224, -0.00801833812147379, -0.07857893407344818, 0.04758911207318306, 0.14896368980407715, 0.05934356153011322, -0.03883170336484909, -0.09581102430820465, -0.12507586181163788, 0.05326497182250023, 0.0016508906846866012, -0.08548936247825623, 0.09797787666320801, 0.01677579991519451, -0.09345155954360962, 0.05579434335231781], "\u5982\u4f55\u6539\u53d8\u7b2c\u4e09\u65b9\u4f9d\u8d56\u5e93\u5b89\u88c5\u8def\u5f84\uff1f": [-0.12392964214086533, 0.02294786460697651, -0.007832285016775131, 0.054864175617694855, 0.006004291120916605, -0.03623942285776138, 0.023295419290661812, 0.09012169390916824, 0.004906403832137585, -0.02670297957956791, 0.004554183222353458, 0.03873918950557709, 0.006271667312830687, -0.030262324959039688, 0.025192875415086746, 0.12536130845546722, 0.13902725279331207, 0.06813781708478928, -0.0400589182972908, 0.060865141451358795, 0.009686055593192577, 0.06586722284555435, 0.024954456835985184, -0.043402161449193954, 0.015523106791079044, 0.05167234316468239, -0.04238402098417282, 0.004639947786927223, -0.0009359639952890575, 0.060066089034080505, 0.031046386808156967, 0.024341218173503876, -0.122853122651577, 0.05496387928724289, -0.041195936501026154, 0.018669454380869865, -0.09919247031211853, 0.14394329488277435, -0.020006148144602776, -0.009417046792805195, 0.11602558195590973, 0.040809012949466705, -0.050603535026311874, 0.0742683857679367, 0.0487753227353096, -0.09374211728572845, -0.1680433750152588, -0.026019657030701637, 0.07850819081068039, 0.0036737846676260233, -0.04791564494371414, 0.11282893270254135, 0.008477061055600643, -0.04656187444925308, -0.031149884685873985, -0.004124938510358334, 0.06757514178752899, 0.01308719627559185, 0.07716039568185806, -0.05171234533190727, -8.711591362953186e-06, -0.07576805353164673, -0.005015263333916664, 0.04873271659016609, -0.14708514511585236, -0.031353358179330826, -0.11566662788391113, -0.03636408969759941, -0.0003020577132701874, -0.046676263213157654, 0.0206888560205698, 0.015157420188188553, -0.048448596149683, 0.08752460777759552, 0.0766611099243164, 0.031654518097639084, 0.0017295052530243993, 0.007193717174232006, -0.006690747104585171, 0.059877052903175354, 0.0786784216761589, 0.024992167949676514, 0.045156292617321014, -0.13838309049606323, -0.03215428814291954, -0.006660746410489082, -0.15399864315986633, 0.05718925595283508, -0.04199589788913727, 0.024778850376605988, 0.019107140600681305, 0.023803556337952614, -0.12743957340717316, 0.07514070719480515, 0.09349220991134644, -0.014896620996296406, -0.06892205029726028, 0.03186516463756561, 9.292736649513245e-05, -0.061427004635334015, 0.06606567651033401, -0.05400104075670242, -0.08033061027526855, -0.0106675885617733, 0.027018176391720772, -0.02537461183965206, 0.01295136846601963, -0.04189629480242729, -0.015505918301641941, 0.03938226401805878, -0.0021154400892555714, -0.027075717225670815, 0.08634550869464874, -0.034701086580753326, -0.0032526811119168997, 0.08020990341901779, 0.012330322526395321, 0.02560235559940338, -0.0025635305792093277, 0.09314405918121338, 0.11864211410284042, -0.12326186150312424, 0.059572331607341766, 0.014820354990661144, 0.025118744000792503, 0.07436638325452805, 0.14773625135421753, -0.023886505514383316, -0.13644874095916748, -0.041509948670864105, 0.18986870348453522, -0.0927022248506546, 0.12280665338039398, -0.1844242364168167, -0.04254651069641113, 0.0861441045999527, -0.03375672921538353, 0.0510278046131134, -0.020219409838318825, 0.16413459181785583, 0.10885061323642731, -0.14103788137435913, 0.06059502437710762, -0.017405059188604355, 0.09024801105260849, 0.06938336044549942, -0.08550862222909927, -0.14055326581001282, -0.030430493876338005, 0.003686850890517235, 0.10825178027153015, 0.004046671558171511, -0.051990900188684464, 0.11580407619476318, -0.04225461930036545, 0.006261718459427357, 0.012966440990567207, -0.02964749000966549, -0.0723748505115509, -0.07031414657831192, -0.07314793020486832, -0.016304630786180496, 0.06819203495979309, -0.09919999539852142, -0.03667465224862099, 0.02251609042286873, 0.027891146019101143, -0.018149960786104202, -0.07834269106388092, -0.036500461399555206, 0.037031590938568115, 0.02817724645137787, -0.02552575245499611, -0.07853540778160095, 0.10676167905330658, 0.021495306864380836, 0.10462096333503723, -0.09405405074357986, -0.034312691539525986, -0.003106453688815236, 0.06002821400761604, -0.047284044325351715, -0.03332168608903885, -0.06872410327196121, 0.14620620012283325, 0.006220678333193064, 0.011038271710276604, -0.0017803516238927841, 0.0823303833603859, -0.05665942654013634, -0.027068598195910454, -0.025939909741282463, 0.046097658574581146, 0.08054739236831665, -0.014810231514275074, -0.049000613391399384, -0.04042251035571098, -0.041280511766672134, -0.00070446718018502, -0.0268546212464571, -0.06337077170610428, -0.036904968321323395, -0.010200774297118187, -0.06070530787110329, -0.013413950800895691, -0.0462724044919014, -0.1136399507522583, -0.04124286025762558, -0.01223435252904892, -0.15625670552253723, 0.07586799561977386, 0.06354540586471558, -0.05040859058499336, 0.02164895087480545, -0.05997993052005768, 0.033978674560785294, 0.11233894526958466, 0.0882132276892662, 0.05541627109050751, -0.04146694391965866, 0.023224446922540665, 0.02560623362660408, 0.03188310191035271, -0.0031460567843168974, -0.054802440106868744, -0.060013800859451294, -0.11001609265804291, -0.057591088116168976, -0.04302486404776573, 0.023088496178388596, -0.010314914397895336, 0.019427917897701263, 0.014498923905193806, 0.09784285724163055, 0.04723548889160156, 0.020993907004594803, -0.1517794132232666, -0.08458693325519562, 0.04422120377421379, 0.1104327142238617, -0.1039147675037384, 0.07449435442686081, -0.06842022389173508, -0.044284287840127945, -0.027712902054190636, 0.02632744051516056, 0.08212625235319138, 0.05396981164813042, 0.024143224582076073, -0.07075090706348419, 0.09725631028413773, -0.059182874858379364, -0.08294638246297836, -0.016896365210413933, -0.07740861922502518, 0.06966236233711243, -0.013804540038108826, -0.06051117554306984, 0.016653994098305702, 0.008562440052628517, 0.041398219764232635, 0.004659032449126244, -0.04117632284760475, 0.06556228548288345, -0.007861191406846046, -0.009056147187948227, 0.0739905834197998, -0.09257900714874268, 0.08077030628919601, -0.06018883362412453, 0.01976395584642887, 0.10954287648200989, -0.09743950515985489, 0.003199820639565587, 0.165176659822464, 0.048796847462654114, 0.016812773421406746, -0.06557503342628479, 0.008154185488820076, -0.015195857733488083, -0.019888080656528473, -0.024827640503644943, -0.0037931124679744244, 0.021370939910411835, 0.08126915991306305, -0.009647197090089321, 0.0026213168166577816, 0.02427254617214203, 0.05722733214497566, 0.053027886897325516, -0.08999188244342804, 0.01794252172112465, -0.0976291298866272, -0.06371583789587021, -0.05291932448744774, 0.06792985647916794, 0.020669644698500633, 0.05179872736334801, 0.03625444322824478, 0.08750493824481964, -0.05352882295846939, -0.0728556364774704, 0.12494031339883804, -0.03591504693031311, 0.009283080697059631, -0.019123312085866928, -0.029625721275806427, 0.019165100529789925, 0.050946369767189026, -0.014409844763576984, -0.020136822015047073, 0.07378391921520233, 0.05004653334617615, 0.030888741835951805, -0.04269044101238251, -0.07351916283369064, -0.017495479434728622, -0.13335204124450684, 0.04822657257318497, -0.12688961625099182, 0.004147880245000124, -0.11512342095375061, -0.022461799904704094, 0.14838752150535583, 0.07401131093502045, -0.08401282131671906, -0.021609244868159294, 0.058324430137872696, 0.036253124475479126, -0.06856830418109894, 0.023570165038108826, -0.06585223972797394, -0.02476121485233307, 0.09055445343255997, -0.02085147239267826, -0.0982665941119194, 0.019329385831952095, 0.08244721591472626, -0.03667677193880081, 0.07341864705085754, 0.05838962271809578, -0.055243514478206635, -0.0005585029139183462, -0.11805024743080139, 0.0761127918958664, -0.06674471497535706, 0.05700251832604408, 0.03742789849638939, -0.011683204211294651, -0.011370057240128517, 0.05182413011789322, -0.04348955303430557, 0.03259846195578575, -0.006379465572535992, 0.05333404615521431, -0.10202999413013458, -0.03995518758893013, 0.007230904884636402, 0.02313799038529396, 0.006346207577735186, 0.05975378304719925, -0.03677176311612129, -0.047753334045410156, -0.06889569759368896, 0.023012593388557434, -0.05552748590707779, 0.03158535435795784, -0.0461510606110096, 0.03714778646826744, -0.022746194154024124, -0.044217683374881744, 0.09516104310750961, 0.19004155695438385, 0.0012100626481696963, -0.01700686290860176, -0.015586791560053825, -0.1129365935921669, 0.09033003449440002, -0.021692849695682526, -0.0855385810136795, 0.021503526717424393, 0.1066862940788269, -0.20502969622612, -0.004905497655272484], "MindSpore\u8981\u6c42\u7684\u914d\u5957\u8f6f\u4ef6\u7248\u672c\u4e0eUbuntu\u9ed8\u8ba4\u7248\u672c\u4e0d\u4e00\u81f4\u600e\u4e48\u529e\uff1f": [-0.05325475335121155, 0.08086168020963669, 0.016399556770920753, 0.01958456262946129, -0.040793322026729584, -0.00686696358025074, -0.0007233604555949569, 0.08916370570659637, -0.04980449005961418, 0.03001026064157486, -0.005312522407621145, 0.017393061891198158, 0.005779043771326542, 0.01950838416814804, -0.04026869684457779, 0.0765492245554924, 0.12270935624837875, 0.042272865772247314, -0.029654057696461678, 0.07210710644721985, 0.017828214913606644, -0.05815810337662697, 0.01948360539972782, -0.04452815279364586, -0.03442651405930519, 0.0728873535990715, 0.03119000233709812, -0.004866429138928652, 0.04492730647325516, 0.07468120008707047, 0.09111376106739044, -0.03331264108419418, -0.10559854656457901, -0.009362800046801567, -0.018833579495549202, -0.05802636221051216, -0.017849572002887726, 0.05959155037999153, -0.04919961839914322, -0.014161627739667892, 0.06247127801179886, 0.02728905715048313, -0.03961217403411865, 0.13096551597118378, -0.054162152111530304, -0.05177517607808113, -0.10346101224422455, 0.02460569515824318, 0.009472121484577656, 0.01989974081516266, -0.10544323176145554, 0.0649445652961731, 0.05693219602108002, 0.016666876152157784, -0.0366053581237793, -0.0028092768043279648, 0.03773103654384613, -0.016448935493826866, 0.058896686881780624, 0.005291434936225414, 0.015142330899834633, -0.02201683446764946, -0.04225124418735504, -0.06228908151388168, -0.07445020973682404, -0.01602569967508316, -0.03790958970785141, -0.10061392933130264, 0.014601616188883781, -0.014248384162783623, -0.04326005280017853, 0.011673434637486935, -0.004346175584942102, 0.08754788339138031, 0.035747651010751724, 0.04424181580543518, -0.020529495552182198, -0.006380484439432621, -0.062627874314785, 0.012495703995227814, -0.005114223808050156, 0.07794739305973053, 0.05666843429207802, -0.07929617166519165, -0.06281760334968567, -0.016528211534023285, -0.04596145823597908, 0.06062006950378418, -0.08297260105609894, 0.08199568092823029, 0.01872917078435421, -0.03214632719755173, -0.13305231928825378, 0.06746302545070648, 0.09938902407884598, -0.053296033293008804, -0.04606179893016815, -0.0273728109896183, -0.15845218300819397, -0.02342904731631279, -0.0019157282076776028, -0.03375538811087608, -0.040768664330244064, 0.02710605598986149, 0.015404930338263512, -0.01787552610039711, 0.12061614543199539, 0.016543863341212273, 0.07167647778987885, 0.054119773209095, 0.08050061762332916, 0.007485611364245415, 0.07918329536914825, 0.020316867157816887, -0.05946248769760132, 0.05445393547415733, -0.09137758612632751, 0.049347370862960815, -0.11921745538711548, 0.07411182671785355, 0.07533842325210571, -0.0320393331348896, -0.004397550132125616, -0.0007201245753094554, -0.011229614727199078, -0.036348260939121246, 0.10385770350694656, -0.07097730785608292, -0.05003182217478752, -0.08628155291080475, 0.12763448059558868, -0.0625891387462616, 0.11427859961986542, -0.1994568407535553, -0.12411718815565109, 0.06285540014505386, -0.018460609018802643, -0.022796062752604485, 0.029641395434737206, 0.12480819225311279, 0.044672027230262756, -0.13615888357162476, 0.07056125998497009, -0.006658854428678751, 0.08134229481220245, 0.026318760588765144, -0.029119303449988365, -0.05449343100190163, -0.008852526545524597, -0.06541283428668976, 0.026151029393076897, -0.01504144910722971, -0.030499428510665894, 0.03715727850794792, 0.06278949975967407, 0.045923247933387756, -0.013261389918625355, -0.004272535443305969, -0.02277027815580368, -0.004112399183213711, -0.04924448952078819, -0.03293243423104286, 0.06180528551340103, 0.013376917690038681, -0.014814121648669243, -0.004009805154055357, 0.03585578501224518, -0.054907940328121185, -0.044842466711997986, -0.037877414375543594, -0.03690169379115105, -0.024221248924732208, -0.0458073616027832, -0.059478841722011566, 0.02815263904631138, -0.025397256016731262, 0.0754946693778038, -0.09714874625205994, -0.005632210057228804, -0.08196809142827988, 0.036488812416791916, -0.12978722155094147, -0.005841118283569813, -0.0723755955696106, 0.03404778614640236, 0.026996849104762077, 0.04227285832166672, 0.03718952089548111, 0.15684115886688232, -0.10766153782606125, 0.014885924756526947, 0.10405935347080231, 0.009382113814353943, 0.060246191918849945, -0.011379399336874485, 0.0037260977551341057, -0.04707751423120499, -0.026472702622413635, 0.056580156087875366, -0.03375840559601784, -0.01414995826780796, 0.06855282187461853, 0.05392850190401077, 0.020319025963544846, -0.0367286242544651, -0.014060948975384235, -0.07101808488368988, -0.10546601563692093, 0.022489795461297035, 0.07159014791250229, 0.08854905515909195, 0.033417996019124985, -0.01421595923602581, -0.03400939330458641, -0.09173644334077835, 0.025863701477646828, 0.11252516508102417, 0.08638174086809158, 0.037228915840387344, -0.06072469800710678, 0.029750319197773933, -0.006413491442799568, 0.06415899842977524, -0.0284418985247612, -0.07363875210285187, -0.016740238294005394, 0.007266692817211151, -0.0859738439321518, -0.023137645795941353, 0.0694100558757782, -0.0849611684679985, 0.09122468531131744, 0.02442682534456253, 0.14695951342582703, -0.012579161673784256, 0.0617826022207737, 0.007086519617587328, -0.040233273059129715, 0.08109646290540695, 0.019458042457699776, -0.04541236162185669, 0.06987608224153519, -0.09187870472669601, -0.05743177980184555, -0.011775609105825424, 0.09378096461296082, 0.1217339038848877, 0.12999923527240753, 0.018773645162582397, -0.03430866822600365, 0.05963699892163277, 0.03800254687666893, -0.02406858652830124, 0.07423309981822968, -0.011274099349975586, 0.13740873336791992, 0.029391257092356682, -0.04488373547792435, 0.018655680119991302, 0.03786768391728401, 0.05230681598186493, -0.020135540515184402, -0.06969402730464935, 0.0005806767730973661, -0.01415017619729042, -0.004166127182543278, 0.05483169108629227, -0.0017117529641836882, 0.023631436750292778, -0.1362917721271515, 0.025693416595458984, 0.026909220963716507, -0.06252060830593109, -0.04956354573369026, 0.08560191094875336, 0.07059457153081894, 0.02595452032983303, -0.17752142250537872, 0.01113538071513176, 0.034454595297575, 0.003999192733317614, 0.0027675223536789417, -0.019096478819847107, -0.01842399127781391, 0.05208311975002289, -0.03930070996284485, 0.0572761595249176, 0.012978792190551758, 0.04365433007478714, 0.11824604868888855, -0.08816803246736526, -0.010846642777323723, -0.07809340208768845, 0.05718362331390381, -0.08154205232858658, 0.08653619885444641, 0.032549988478422165, 0.03725148364901543, 0.009436544962227345, 0.02295415662229061, -0.0860898494720459, -0.055411770939826965, 0.09288828074932098, -0.0724310576915741, -0.025968732312321663, 0.03098110295832157, -0.023896824568510056, 0.07033693045377731, -0.003437457140535116, 0.026452668011188507, 0.11176705360412598, 0.11280682682991028, 0.04609432816505432, 0.041471969336271286, -0.06335186213254929, 0.0168333500623703, 0.04319621995091438, -0.12676019966602325, 0.0191285852342844, -0.09132349491119385, -0.033428486436605453, -0.05894467234611511, 0.04118216782808304, 0.033189259469509125, 0.09045093506574631, -0.04054873436689377, 0.07110685110092163, 0.08395124971866608, -0.004252368118613958, -0.027229992672801018, 0.01761820539832115, -0.07298202067613602, 0.053479261696338654, 0.1100141629576683, -0.021222690120339394, -0.11870291829109192, 0.08733556419610977, 0.08457520604133606, 0.015484333969652653, 0.013158980756998062, 0.04213058948516846, -0.06411430239677429, -0.03109617903828621, -0.06132069230079651, 0.05744815617799759, -0.09255609661340714, 0.0482783317565918, 0.047482069581747055, -0.0031946294475346804, -0.049561310559511185, 0.050538718700408936, -0.07335935533046722, 0.054716821759939194, -0.0013278118567541242, -0.03596775606274605, -0.12068787962198257, -0.09234856069087982, -0.01074596494436264, 0.041923049837350845, 0.021147774532437325, -0.01674610562622547, -0.010459747165441513, -0.08137334883213043, -0.06731365621089935, -0.0254833847284317, -0.0017038213554769754, 0.0797717422246933, -0.06277486681938171, 0.051171038299798965, 0.016115477308630943, -0.08186451345682144, 0.008961353451013565, 0.11731694638729095, 0.08918248116970062, -0.05805933475494385, -0.04651886597275734, -0.10519883781671524, 0.09167885035276413, -0.029310211539268494, -0.02141401171684265, 0.08790874481201172, 0.040798090398311615, -0.12716759741306305, 0.02071097120642662], "\u6267\u884c\u7528\u4f8b\u62a5\u9519`No module named 'mindpore.version'`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.044499993324279785, 0.11607107520103455, 0.01913977600634098, -0.045491836965084076, -0.07054737210273743, -0.02992589771747589, 0.015324149280786514, 0.0345999039709568, -0.019100071862339973, 0.06764765083789825, -0.001390102319419384, -0.00751607958227396, 0.055034201592206955, 0.07070931792259216, -0.0663481056690216, 0.03632811829447746, 0.10304227471351624, 0.05026307329535484, -0.06797410547733307, 0.004725182428956032, 0.0015082021709531546, -0.04652838036417961, 0.12618623673915863, 0.008044049143791199, 0.03513297811150551, 0.08929884433746338, -0.0760330930352211, 0.04664444550871849, 0.010046594776213169, 0.025196418166160583, 0.02841242030262947, 0.04196355119347572, -0.08784925937652588, -0.013522803783416748, -0.08397804945707321, -0.051517412066459656, -0.05036273971199989, 0.05421949550509453, -0.02536749467253685, -0.04217413440346718, 0.016303762793540955, 0.04773581027984619, 0.04045454412698746, 0.10045552253723145, -0.04867691174149513, -0.00028409622609615326, -0.19795940816402435, 0.04192907363176346, 0.03319681063294411, 0.03207199275493622, -0.08139222860336304, 0.06387782096862793, 0.015289874747395515, -0.012000287882983685, -0.03123597614467144, 0.004217616282403469, -0.04167820140719414, 0.06742075085639954, 0.01477314718067646, -0.10851260274648666, -0.005468284245580435, 0.0620962530374527, -0.08192147314548492, -0.0559585839509964, -0.13489139080047607, -0.010131563991308212, -0.06855502724647522, -0.10051784664392471, -0.00679117813706398, 0.06008894741535187, -0.038270942866802216, -0.00139674823731184, -0.029605045914649963, 0.04602020978927612, 0.02931174263358116, 0.033502861857414246, -0.06338468939065933, 0.025384826585650444, -0.07813949137926102, 0.03385944664478302, 0.05351109430193901, 0.05820845812559128, 0.04041431099176407, -0.030350763350725174, -0.05313590541481972, -0.05630727857351303, -0.012795144692063332, 0.11228778213262558, 0.012290976010262966, 0.13135872781276703, 0.0024413985665887594, 0.021788079291582108, -0.13589730858802795, 0.07226677983999252, 0.014443930238485336, -0.019516585394740105, -0.04416004568338394, -0.06004917249083519, -0.19262902438640594, -0.02074110321700573, -0.030105577781796455, 0.006628807634115219, -0.03791709989309311, 0.06814178824424744, 0.010123255662620068, -0.0835610032081604, 0.05991550534963608, 0.03919157385826111, 0.09708085656166077, 0.05088121071457863, 0.1110944151878357, 0.040537863969802856, 0.11264412105083466, -0.0023456267081201077, 0.06388723850250244, 0.03189818188548088, -0.08062207698822021, 0.015496067702770233, -0.09439603239297867, 0.1215844452381134, 0.10548827797174454, 0.012480389326810837, -0.01287857722491026, 0.04429110139608383, 0.024629725143313408, -0.017070738598704338, 0.06316615641117096, -0.09988318383693695, -0.11669817566871643, -0.08371783792972565, 0.16624365746974945, -0.08322297781705856, 0.10811686515808105, -0.09825510531663895, -0.05638361722230911, 0.06261470168828964, 0.03187183663249016, 0.023327644914388657, -0.05605005472898483, 0.1284378319978714, 0.02385304681956768, -0.14353753626346588, 0.11892497539520264, -0.031691476702690125, 0.05488114058971405, 0.08379997313022614, -0.04459281638264656, -0.1238827258348465, -0.019167684018611908, -0.05403132364153862, 0.06400308758020401, 0.0012868682388216257, -0.06994713842868805, 0.07858342677354813, -0.040509119629859924, 0.10932048410177231, 0.006565808784216642, -0.025973791256546974, -0.012523441575467587, -0.006783684715628624, -0.014749139547348022, -0.03475073724985123, 0.05446220189332962, 0.011584892868995667, -0.06366585195064545, -0.002631975105032325, 0.0464722216129303, -0.024725694209337234, -0.02266959846019745, -0.04757829010486603, -0.03346351906657219, -0.01221707183867693, -0.08932004868984222, 0.017839238047599792, 0.057047922164201736, -0.041777677834033966, 0.08519428968429565, -0.07953696697950363, -0.023792168125510216, -0.05340070649981499, 0.11294198036193848, -0.09640436619520187, 0.0056964438408613205, -0.06763388216495514, 0.04386952519416809, -0.014371469616889954, 0.0901053175330162, 0.008390032686293125, 0.15136319398880005, -0.1756850630044937, -0.02439052239060402, 0.046675316989421844, 0.008303546346724033, 0.07142505049705505, 0.030738037079572678, 0.04937732592225075, -0.032649651169776917, -0.05005068704485893, -0.02103479579091072, -0.004885023459792137, -0.04857087507843971, 0.030587855726480484, -0.015739642083644867, 0.04428757727146149, -0.05255643278360367, -0.043132707476615906, -0.0464276522397995, -0.051127079874277115, -0.006289268843829632, 0.0012543417979031801, 0.13359469175338745, 0.03208073228597641, 0.03803857043385506, -0.0793798640370369, -0.09648952633142471, -0.03819740191102028, 0.09315411001443863, 0.07805344462394714, -0.00017014704644680023, -0.04517924785614014, 0.023152777925133705, 0.015551555901765823, -0.0078160734847188, -0.1384202539920807, -0.13477522134780884, -0.028541071340441704, -0.04208600893616676, -0.12324576079845428, -0.026811368763446808, 0.07047539204359055, -0.11507029831409454, 0.0771782398223877, 0.037539899349212646, 0.17615912854671478, -0.030203111469745636, 0.12899288535118103, 0.002891907002776861, 0.00757703697308898, 0.024485526606440544, -0.006916990038007498, -0.12809480726718903, 0.043688468635082245, -0.059214115142822266, -0.03340449184179306, -0.06860765814781189, 0.12163684517145157, 0.050455715507268906, 0.05594576150178909, 0.01503544021397829, -0.03030703216791153, 0.04869230464100838, 0.028259463608264923, -0.05642566829919815, 0.10578843206167221, -0.04554160684347153, 0.025223778560757637, 0.0471574105322361, -0.07994018495082855, 0.003123869188129902, 0.04843786731362343, -0.014226951636373997, 0.036170780658721924, -0.08057847619056702, -0.003966934513300657, -0.06893197447061539, 0.003974882420152426, 0.07591726630926132, -0.03718798607587814, 0.011805924586951733, -0.11446796357631683, 0.015975482761859894, 0.04081142693758011, -0.12415671348571777, 0.08754630386829376, 0.08781158924102783, 0.12432828545570374, -3.326311707496643e-05, -0.14102691411972046, 0.02934211492538452, 0.08273603767156601, -0.03742426261305809, 0.022134855389595032, 0.0067014265805482864, 0.03504958376288414, 0.056886278092861176, 0.0012907155323773623, 0.047208622097969055, -0.027674317359924316, 0.0555829182267189, 0.13678434491157532, -0.08020054548978806, -0.008887327276170254, -0.10312052816152573, 0.06373487412929535, -0.05214590206742287, 0.06739088892936707, 0.08208701759576797, 0.03760123252868652, 0.03210221976041794, 0.09336359798908234, -0.03730546683073044, -0.024121424183249474, 0.11706675589084625, -0.13395453989505768, 0.02267582155764103, 0.08497324585914612, -0.09631669521331787, 0.11042117327451706, 0.03442529961466789, 0.006175256799906492, 0.0936068594455719, 0.0964222177863121, 0.020268701016902924, 0.08676960319280624, -0.152500182390213, -0.045040667057037354, 0.09513416886329651, -0.10575976222753525, 0.022358061745762825, -0.1028641015291214, 0.03468330577015877, -0.024794889613986015, -0.05060415342450142, 0.08705516159534454, 0.068441241979599, -0.11145486682653427, 0.009321628138422966, 0.05822688341140747, -0.027625879272818565, -0.05939168483018875, 0.02410675585269928, -0.053936198353767395, 0.050164274871349335, 0.04813478887081146, -0.025261152535676956, -0.1453990638256073, 0.03237444907426834, 0.08115766197443008, 0.017626803368330002, 0.08773893117904663, 0.09944937378168106, -0.0406394824385643, 0.021103765815496445, -0.058400996029376984, 0.09978272765874863, -0.06255608797073364, 0.10053446888923645, -0.024807153269648552, -0.08263188600540161, -0.09267459809780121, 0.006807238794863224, 0.001714891055598855, 0.07675538957118988, 0.019045310094952583, -0.030459877103567123, -0.14694280922412872, -0.11257615685462952, -0.008554287254810333, -0.01870892569422722, -0.00238351640291512, -0.04573774337768555, -0.03450623154640198, -0.048926372081041336, -0.029011178761720657, 0.027080100029706955, -0.07860063016414642, 0.07259714603424072, -0.030135635286569595, 0.07649266719818115, -0.03659944608807564, -0.07905043661594391, 0.09161855280399323, 0.08159087598323822, 0.05475622043013573, -0.09275558590888977, -0.1383672058582306, -0.11832555383443832, 0.05532870441675186, 0.002072236267849803, -0.0689045861363411, 0.03199019283056259, -0.035578783601522446, -0.16223479807376862, 0.06638248264789581], "\u6e90\u7801\u7f16\u8bd1\u65f6\uff0c\u62a5\u9519`MD5 does not match`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.00789853185415268, 0.09218902885913849, 0.04237649589776993, 0.03167315945029259, -0.05749887228012085, -0.09107938408851624, -0.016685253009200096, -0.021217238157987595, 0.0036940500140190125, 0.0042101009748876095, 0.039740387350320816, 0.03233242779970169, 0.08526472747325897, -0.04643099009990692, -0.05799596756696701, 0.06776826828718185, 0.07647300511598587, -0.0504758395254612, 0.01159757561981678, 0.09961787611246109, -0.014416728168725967, 0.021106945350766182, 0.0418567955493927, 0.016222920268774033, 0.0015819395193830132, 0.0736808329820633, -0.04681912064552307, -0.056529197841882706, 0.01661120541393757, -0.0675537958741188, 0.11180268973112106, 0.08732743561267853, -0.058458101004362106, 0.06458374112844467, -0.010479622520506382, -0.025178950279951096, -0.08349165320396423, 0.1266302764415741, -0.030872873961925507, 0.05432998016476631, 0.05313217639923096, 0.05022691562771797, -0.09038691222667694, 0.06474617123603821, -0.0576760359108448, -0.033000364899635315, -0.1068466529250145, 0.02165856584906578, -0.08011374622583389, -0.032168906182050705, 0.03511010855436325, 0.0023624852765351534, 0.042451996356248856, 0.059823814779520035, -0.04339561611413956, -0.1114310622215271, 0.044194962829351425, 0.026312926784157753, 0.10119267553091049, -0.029519585892558098, 0.01587863080203533, 0.050734806805849075, 0.029118262231349945, -0.015112362802028656, -0.04176463559269905, -0.09137526899576187, -0.04308461397886276, -0.13540390133857727, -0.005007374100387096, 0.09589429199695587, -0.07769803702831268, -0.09570841491222382, -0.03446493297815323, 0.05070589482784271, 0.08005751669406891, 0.032866571098566055, -0.055986545979976654, 0.03485744073987007, 0.05591032654047012, 0.010985316708683968, -0.012516019865870476, 0.10597872734069824, 0.043770868331193924, -0.02693215198814869, -0.12264290452003479, -0.04504699632525444, 0.05617582052946091, 0.16710638999938965, -0.04336009547114372, 0.023195117712020874, 0.07390216737985611, -0.0013744747266173363, -0.039853472262620926, 0.11319120228290558, 0.14456816017627716, -0.11284181475639343, 0.015388261526823044, -0.03645655885338783, -0.07990439236164093, 0.017683368176221848, 0.11105193197727203, 0.008415634743869305, -0.0035885567776858807, 0.03515451401472092, 0.04859346151351929, -0.1306227445602417, 0.006157741416245699, 0.1130092516541481, 0.08208387345075607, 0.014293401502072811, 0.0881395936012268, -0.043150585144758224, 0.03722464293241501, 0.04499876871705055, 0.0163684394210577, -0.009018482640385628, 0.01292510237544775, -0.04409731924533844, -0.06355073302984238, 0.16699036955833435, 0.13899613916873932, -0.05181954428553581, 0.0916207879781723, 0.05891973525285721, 0.019759295508265495, 0.04928093031048775, 0.16980910301208496, -0.09130976349115372, -0.19161134958267212, -0.061019040644168854, 0.047019366174936295, -0.07966575026512146, 0.12466107308864594, -0.1043238639831543, -0.14273203909397125, 0.08975882083177567, -0.015086653642356396, -0.010706709697842598, -0.03548339381814003, 0.10173860192298889, 0.1189509928226471, -0.13120396435260773, 0.043181173503398895, 0.004943701438605785, 0.05145256221294403, 0.07595741003751755, -0.10957382619380951, -0.08228529244661331, 0.05736886337399483, -0.10586746782064438, 0.1648772805929184, 0.04993237555027008, 0.021830569952726364, 0.07932395488023758, 0.018786771222949028, 0.13405147194862366, 0.019734829664230347, -0.003471813164651394, -0.014470163732767105, -0.16651733219623566, -0.039344675838947296, -0.0019429674139246345, 0.07049766927957535, 0.055902689695358276, -0.06705929338932037, -0.03603452816605568, 0.004111434333026409, 0.11161364614963531, -0.0621679425239563, -0.09093694388866425, -0.006603044457733631, 0.08397254347801208, -0.05895543843507767, -0.031227530911564827, 0.04925037547945976, 0.06777741014957428, 0.12941162288188934, -0.16554760932922363, 0.02874366194009781, -0.07042250037193298, 0.048840396106243134, -0.03042951598763466, 0.1024961769580841, -0.010826390236616135, 0.0768093466758728, 0.007401011418551207, 0.10984102636575699, -0.04378792643547058, 0.19134779274463654, -0.1211104691028595, 0.019323889166116714, 0.02493540197610855, 0.017057523131370544, 0.10505922883749008, -0.03284027799963951, 0.05930227041244507, -0.03453324735164642, -0.045641813427209854, 0.028491243720054626, -0.014411907643079758, 0.02080921269953251, -0.04061441868543625, -0.020346399396657944, 0.057545989751815796, -0.05491846054792404, -0.025086406618356705, -0.0872427225112915, -0.07201649248600006, -0.022118067368865013, 0.02174019254744053, 0.08001649379730225, 0.07208861410617828, -0.06449096649885178, 0.04731662571430206, -0.16439464688301086, -0.04478616267442703, 0.15407916903495789, 0.05587778985500336, 0.08856815099716187, -0.058390915393829346, 0.03327962011098862, -0.0014000199735164642, 0.012436207383871078, -0.038315918296575546, -0.13644307851791382, -0.06177077442407608, 0.005363369360566139, -0.10588408261537552, -0.10330171883106232, 0.015268687158823013, 0.02846035733819008, 0.11229224503040314, -0.022258862853050232, 0.17833028733730316, -0.08566649258136749, 0.07181679457426071, -0.041551318019628525, -0.009160584770143032, 0.08164111524820328, 0.012876722030341625, -0.11845406144857407, -0.021963465958833694, -0.004067465662956238, -0.1021512895822525, -0.06524215638637543, 0.04835286736488342, 0.049917127937078476, -0.04933815449476242, 0.0331072099506855, -0.022685827687382698, 0.04197506606578827, 0.07307550311088562, -0.08080609887838364, 0.0297098346054554, -0.08668580651283264, 0.11023916304111481, 0.1430310606956482, 0.055808503180742264, 0.06953951716423035, 0.0030997556168586016, -0.0029138021636754274, 0.030010009184479713, -0.02055024355649948, -0.02408725954592228, 0.010305386036634445, -0.07288188487291336, 0.1260262131690979, -0.0650211051106453, 0.03279801830649376, -0.13045555353164673, 0.07301187515258789, 0.01763252727687359, -0.08837469667196274, 0.0689907968044281, 0.11580752581357956, 0.05396396666765213, -0.0007265432504937053, -0.17821787297725677, 0.01736495830118656, 0.06364060193300247, -0.052239734679460526, 0.007986834272742271, 0.11075019836425781, 0.03015148639678955, 0.09045179933309555, -0.030172858387231827, -0.01866353303194046, 0.014406673610210419, 0.05200085788965225, 0.09354843199253082, 0.016065537929534912, 0.06984880566596985, -0.011824948713183403, -0.006918197497725487, 0.018647557124495506, 0.0453982874751091, 0.05477176979184151, 0.06049206852912903, 0.00954405590891838, 0.008190815337002277, -0.03589821979403496, -0.07907047867774963, 0.1638070046901703, -0.1300508826971054, -0.04280056804418564, 0.005765958223491907, -0.02511853538453579, 0.040479447692632675, -0.06206602603197098, -0.02360581047832966, 0.04185333475470543, 0.08940237760543823, 0.04585115611553192, 0.03841772302985191, -0.08150443434715271, -0.06371478736400604, 0.10038242489099503, -0.11798416078090668, -0.03555101901292801, -0.023498646914958954, -0.08272004127502441, -0.07813334465026855, 0.07163647562265396, 0.07490388303995132, 0.11606703698635101, -0.10878804326057434, 0.06557007133960724, 0.031358134001493454, 0.031663067638874054, -0.03629979118704796, 0.05366290733218193, -0.09136483818292618, 0.14468146860599518, 0.1417369395494461, 0.045381058007478714, -0.14916138350963593, 0.056069351732730865, 0.005114030092954636, 0.009551547467708588, -0.07032334804534912, 0.01419184822589159, -0.10202459990978241, -0.03133431822061539, -0.06891755759716034, 0.08674461394548416, -0.03960489481687546, -0.005602189339697361, 0.030389994382858276, 0.08228646963834763, -0.04727628454566002, -0.046836141496896744, -0.07981596142053604, 0.1286599338054657, -0.006766890175640583, -0.044062234461307526, -0.10337502509355545, -0.01618480496108532, 0.00852334313094616, 0.05562315881252289, 0.05626152828335762, -0.06908102333545685, 0.13523931801319122, 0.011565141379833221, -0.05082207918167114, -0.08436568826436996, -0.04766704887151718, 0.010128132998943329, -0.05225127562880516, 0.08814714103937149, -0.142486110329628, -0.0623432882130146, -0.02964153327047825, 0.08932679891586304, 0.04192512854933739, -0.03432762250304222, -0.11916358023881912, -0.17622879147529602, 0.1150723323225975, -0.069972924888134, -0.03314867988228798, 0.05050899088382721, 0.1404639184474945, -0.07012332230806351, 0.0008375307661481202], "\u73af\u5883\u4e0a\u5b89\u88c5\u4e86Python3.7.5\uff0c\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\u6b63\u786e\uff0c\u7f16\u8bd1MindSpore\u65f6\u4ecd\u7136\u62a5\u9519`Python3 not found`\uff0c\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.024652499705553055, 0.09102843701839447, 0.03172670677304268, -0.010901708155870438, -0.06607981771230698, -0.03266794979572296, 0.04333137720823288, 0.04239317774772644, -0.004999070428311825, 0.0991189181804657, -0.0077115921303629875, 0.08906427025794983, 0.014232654124498367, 0.01907583326101303, -0.09754491597414017, 0.07632873207330704, 0.1297634243965149, 0.00620656693354249, -0.0018665079260244966, 0.044919878244400024, 0.028191298246383667, -0.01607268862426281, 0.07330074161291122, -0.10343465209007263, 0.043610505759716034, 0.07857134938240051, -0.06988732516765594, 0.01755371503531933, -0.014787333086133003, 0.03810012340545654, -0.040447767823934555, 0.08008777350187302, -0.09406709671020508, 0.01670464500784874, -0.09030358493328094, -0.04888279736042023, -0.07134361565113068, 0.09831414371728897, -0.030956435948610306, -0.02179582417011261, 0.001726260525174439, 0.06618925929069519, -0.017361490055918694, 0.09873345494270325, 0.03618025407195091, -0.049715556204319, -0.14886412024497986, -0.03285966441035271, 0.07898982614278793, 0.032186008989810944, -0.09394009411334991, 0.040891923010349274, -0.02987559139728546, -0.04860604554414749, 0.002301400061696768, -0.05301867797970772, 0.006778151262551546, -0.024061407893896103, 0.05332176014780998, -0.05868101865053177, -0.011246687732636929, 0.04375692456960678, -0.03276617079973221, -0.021338721737265587, -0.07314644753932953, -0.04414628446102142, -0.018908731639385223, -0.04295516759157181, 0.007530237548053265, -0.048253849148750305, -0.10437691956758499, 0.02034255862236023, -0.10049044340848923, 0.11082561314105988, 0.045803673565387726, 0.04237426817417145, -0.0015143740456551313, 0.0377071239054203, -0.09514858573675156, 0.029234018176794052, -0.030848806723952293, 0.07001892477273941, 0.07239580899477005, 0.004467848688364029, -0.04606509953737259, 0.006317047402262688, -0.08137542009353638, 0.07746995985507965, -0.04751350358128548, 0.06688212603330612, -0.021667921915650368, -0.02508317120373249, -0.1284165233373642, 0.09330971539020538, 0.14510247111320496, -0.004013688303530216, -0.07869651913642883, -0.016142074018716812, -0.18915808200836182, -0.03127208352088928, 0.019118139520287514, 0.003973956685513258, -0.032756563276052475, -0.0004617869562935084, 0.04536733031272888, -0.09171873331069946, 0.0757305771112442, -0.028558233752846718, 0.012971281073987484, 0.03726370632648468, -0.02591356448829174, 0.05812765657901764, 0.060507796704769135, -0.041970767080783844, 0.01834271103143692, 0.11312689632177353, -0.04628489911556244, 0.016293417662382126, -0.032385971397161484, 0.11586778610944748, 0.09580230712890625, -0.09605639427900314, -0.011668533086776733, 0.05752887949347496, 0.03801525756716728, -0.041282251477241516, 0.06266424804925919, -0.06046565994620323, -0.018024535849690437, -0.08470034599304199, 0.14076338708400726, -0.0648592934012413, 0.037242382764816284, -0.048010554164648056, -0.07996781170368195, 0.0862177237868309, -0.0918186753988266, -0.007225767709314823, -0.015945017337799072, 0.10749412328004837, 0.061369530856609344, -0.12194773554801941, 0.08193542808294296, -0.06178523227572441, 0.13275280594825745, 0.05869238078594208, -0.1228673905134201, -0.12000458687543869, -0.00024194642901420593, -0.04550401493906975, 0.04420120269060135, -0.0006833624793216586, -0.0595674067735672, 0.11930310726165771, -0.04162716120481491, 0.09129021316766739, -0.06460517644882202, -0.07073050737380981, -0.02392463944852352, -0.07708729803562164, -0.061926860362291336, -0.002747436985373497, 0.05459842085838318, 0.024030881002545357, -0.017255263403058052, -0.018536830320954323, 0.03200200945138931, -0.0023315311409533024, 0.004718853626400232, -0.051895491778850555, -0.008074736222624779, 0.010993216186761856, -0.08673791587352753, -0.003575082402676344, 0.05055832117795944, -0.04450906440615654, 0.08322421461343765, -0.12201478332281113, -0.004108850844204426, -0.020978499203920364, 0.07652587443590164, -0.04876726493239403, -0.02424289472401142, -0.03047845885157585, 0.02289775386452675, 0.041128940880298615, 0.05651446804404259, 0.030113376677036285, 0.11144118010997772, -0.0863579586148262, -0.043384481221437454, 0.034543562680482864, -0.03319584205746651, 0.053326234221458435, 0.014209953136742115, 0.029767198488116264, -0.07689552754163742, -0.022112835198640823, -0.008320095017552376, -0.042022205889225006, -0.03536202386021614, 0.010773027315735817, 0.045812323689460754, 0.07638002932071686, 0.02135862037539482, 0.009581726975739002, -0.14680592715740204, -0.0848718136548996, -0.02502390369772911, -0.029573902487754822, 0.06360830366611481, 0.07293689996004105, -0.0244673453271389, -0.08690519630908966, -0.1097949892282486, 0.022001270204782486, 0.06723885983228683, 0.10125331580638885, 0.06893330812454224, -0.012831633910536766, 0.010901158675551414, 0.04167685657739639, 0.01172745879739523, -0.05607542395591736, -0.09294864535331726, 0.0181741863489151, -0.10764076560735703, -0.049443986266851425, 0.0260405745357275, 0.07911581546068192, 0.015117443166673183, 0.09884428232908249, 0.027127206325531006, 0.10634960234165192, -0.021590035408735275, 0.09175612032413483, -0.03653133288025856, -0.03881857171654701, 0.07897122949361801, 0.06219138950109482, -0.14643369615077972, 0.06868840008974075, -0.05940886586904526, -0.039236247539520264, -0.09732885658740997, 0.1399371176958084, 0.06954944133758545, -0.023988908156752586, 0.0036735183093696833, 0.02242807298898697, 0.01746204122900963, 0.06778858602046967, -0.16906222701072693, 0.10429394990205765, -0.021027272567152977, 0.04984276741743088, 0.08691270649433136, -0.08609181642532349, 0.05690354108810425, 0.09658584743738174, -0.021204017102718353, 0.10037757456302643, -0.10839184373617172, -0.04470287635922432, -0.03454682230949402, -0.056475214660167694, 0.01767496019601822, -0.09376001358032227, 7.813051342964172e-05, -0.034004032611846924, 0.052141111344099045, 0.03912153095006943, -0.10366608947515488, 0.024323873221874237, 0.07302398979663849, 0.031418103724718094, 0.07285252958536148, -0.14383701980113983, -0.005807889625430107, 0.08505882322788239, -0.037201885133981705, -0.0010351833188906312, 0.0712813138961792, -0.05630198493599892, 0.07915200293064117, -0.059005215764045715, 0.007090034894645214, 0.021731313318014145, -0.001107304822653532, 0.07528682798147202, -0.03621211647987366, -0.016077470034360886, -0.08120217174291611, 0.0352487787604332, -0.07994511723518372, 0.0969545990228653, 0.041383400559425354, 0.04918355122208595, 0.026996124535799026, -0.0010990067385137081, -0.037463635206222534, -0.07648080587387085, 0.05160337686538696, -0.11923949420452118, 0.019201062619686127, 0.006285539828240871, -0.06032256782054901, 0.02951388619840145, -0.022743675857782364, 0.010101916268467903, 0.007086944300681353, 0.06770680099725723, 0.08037278056144714, 0.091534323990345, -0.08528819680213928, -0.09458594024181366, 0.06835661083459854, -0.1377822309732437, 0.04963817447423935, -0.040516238659620285, 0.01612910069525242, -0.037601400166749954, -0.07213509827852249, 0.024056239053606987, 0.09834602475166321, -0.013151401653885841, 0.0643073171377182, 0.006253089290112257, -0.004509917460381985, -0.0782141238451004, 0.03356494382023811, -0.10128918290138245, 0.07470445334911346, 0.037679944187402725, -0.006659303326159716, -0.06535172462463379, 0.14743652939796448, 0.039274170994758606, 0.00779049564152956, 0.0353403203189373, 0.02912602201104164, -0.07743972539901733, -0.01594177447259426, -0.09783732146024704, 0.02979295141994953, -0.10921157151460648, 0.056857962161302567, 0.05622325465083122, -0.07836169004440308, -0.04292573779821396, 0.011877411976456642, -0.07418303936719894, 0.06294574588537216, -0.07370895892381668, -0.07874119281768799, -0.12018784880638123, -0.08178652822971344, -0.01614653877913952, 0.0064278775826096535, -0.026199033483862877, -0.010003780946135521, -0.03651290759444237, -0.043419525027275085, -0.04832106828689575, 0.006154451984912157, -0.07486539334058762, 0.04594191908836365, -0.038092948496341705, 0.133710578083992, -0.04539906233549118, -0.07238820195198059, 0.03381968289613724, 0.08615510910749435, 0.05006010830402374, -0.10154292732477188, -0.05347641929984093, -0.15482176840305328, 0.1422952562570572, -0.03031577356159687, -0.1248500719666481, 0.04305817186832428, 0.08285802602767944, -0.1415676474571228, 0.03361826390028], "\u7f16\u8bd1\u5931\u8d25\u540e\uff0c\u5e94\u8be5\u6e05\u7406\u54ea\u4e9b\u8def\u5f84\u4ee5\u786e\u4fdd\u4e0a\u6b21\u5931\u8d25\u7684\u7f16\u8bd1\u7ed3\u679c\u4e0d\u4f1a\u5f71\u54cd\u5230\u4e0b\u4e00\u6b21\u7f16\u8bd1\uff1f": [0.009762364439666271, 0.11015232652425766, 0.03530598431825638, 0.1247435137629509, -0.05856451392173767, -0.020653994753956795, -0.02479812130331993, 0.07542075961828232, 0.041975297033786774, 0.020252110436558723, -0.012057055719196796, 0.08846921473741531, -0.04108364135026932, 0.001712592551484704, -0.023800525814294815, 0.09130296111106873, 0.10578653961420059, 0.04252031072974205, -0.03541628643870354, 0.01511290855705738, -0.004227933473885059, -0.005179277621209621, 0.026320215314626694, -0.0017218851717188954, -0.010385383851826191, 0.0631411150097847, 0.019102733582258224, -0.0639306828379631, -0.03081340342760086, 0.11235899478197098, 0.08214478194713593, 0.005345200654119253, -0.10142926871776581, 0.024217138066887856, -0.06849388033151627, -0.06236449256539345, -0.0005207862122915685, 0.14898525178432465, -0.028567813336849213, -0.07467532902956009, 0.14103510975837708, 0.042806606739759445, -0.0835646465420723, 0.08980080485343933, 0.0018110572127625346, -0.02364356257021427, -0.14694072306156158, 0.005448749288916588, 0.05710682272911072, 0.033989764750003815, -0.022340398281812668, 0.10492703318595886, 0.007272171322256327, 0.0008521068375557661, -0.08092502504587173, 0.03382798656821251, 0.031641799956560135, 0.04109136015176773, 0.046876948326826096, -0.010136193595826626, -0.005425627343356609, -0.037828344851732254, -0.020826680585741997, 0.005093329586088657, -0.10520447790622711, 0.019961141049861908, -0.1079816147685051, -0.09738092124462128, -0.015902403742074966, -0.004431834910064936, -0.031139817088842392, -0.02080434560775757, -0.050331465899944305, 0.04432282596826553, 0.0719890370965004, 0.0704309344291687, 0.0030577087309211493, -0.07063368707895279, -0.04230222478508949, 0.05485790967941284, 0.015820113942027092, 0.08628332614898682, 0.0683850422501564, -0.10136549174785614, -0.041396237909793854, -0.04080472141504288, -0.08433612436056137, -0.007676264271140099, -0.06762900203466415, 0.038669154047966, -0.003333206055685878, 0.04355933889746666, -0.11340133845806122, -0.005957144778221846, 0.10185776650905609, -0.03739021718502045, -0.056701868772506714, 0.011026609688997269, -0.13182510435581207, -0.00099950993899256, 0.08500966429710388, -0.01166747510433197, -0.06081245839595795, 0.022364482283592224, 0.033687084913253784, -0.06652024388313293, 0.04365234449505806, -0.013395527377724648, -0.01049203984439373, 0.02182357758283615, 0.041426416486501694, 0.021665845066308975, 0.0461554192006588, 0.009697213768959045, 0.02943522483110428, 0.09163685142993927, -0.10116004198789597, -0.061310622841119766, -0.1235310360789299, 0.07046937942504883, 0.1036623939871788, -0.03925047442317009, 0.013609049841761589, 0.038226403295993805, -0.024858731776475906, 0.00786225963383913, 0.0756988376379013, -0.09031985700130463, -0.09878428280353546, -0.06196177378296852, 0.15454018115997314, -0.045733436942100525, 0.10501537472009659, -0.17028649151325226, -0.09115922451019287, 0.07882191240787506, -0.05383599177002907, -0.012644711881875992, -0.016094282269477844, 0.14983177185058594, 0.05185428261756897, -0.16545651853084564, 0.0547744557261467, 0.03820090740919113, 0.09260096400976181, 0.07837909460067749, -0.0703723356127739, -0.13663314282894135, -0.042996108531951904, -0.01646232418715954, 0.04512830078601837, -0.030205294489860535, 0.004503009375184774, 0.10613853484392166, 0.00565763283520937, 0.015592942014336586, 0.053551360964775085, -0.018655797466635704, -0.021527081727981567, -0.05684822052717209, -0.09374023228883743, -0.009595976211130619, 0.054044198244810104, -0.03158026933670044, -0.023819569498300552, 0.03510170802474022, 0.0063394950702786446, -0.018334856256842613, -0.02786683663725853, 0.028914665803313255, 0.004808885045349598, 0.0019757722038775682, -0.03723856806755066, -0.09466535598039627, 0.016207169741392136, 0.003038620576262474, 0.10125703364610672, -0.08370115607976913, -0.0036650169640779495, 0.015910351648926735, 0.04301246255636215, -0.028321772813796997, -0.044226206839084625, -0.04679989814758301, 0.026490192860364914, 0.05431099236011505, 0.003978063818067312, 0.0804494172334671, 0.05174583941698074, -0.09148206561803818, 0.028977323323488235, -0.00535652507096529, -0.016422247514128685, 0.0703517496585846, -0.005431524012237787, 0.044975824654102325, -0.07020170986652374, 0.007737418636679649, -0.016674954444169998, 0.027203280478715897, -0.0029911533929407597, 0.09827961027622223, 0.05772636458277702, -0.032892026007175446, -0.011022627353668213, -0.02837236039340496, -0.11462198942899704, -0.09103195369243622, -0.01782555691897869, -0.005946688819676638, 0.058797746896743774, 0.0381695032119751, -0.09713408350944519, -0.05019431188702583, -0.06809668987989426, 0.027487751096487045, 0.15372629463672638, 0.06498204171657562, 0.12203609943389893, -0.0052375029772520065, 0.01909063570201397, 0.004506945610046387, 0.04199664294719696, -0.05809483677148819, -0.101542629301548, -0.01954975351691246, 0.008179288357496262, -0.1439247578382492, 0.03679069131612778, 0.05073213577270508, -0.02201690524816513, 0.0644284188747406, 0.05120132863521576, 0.09019030630588531, -0.028283709660172462, 0.08415304124355316, -0.06128218024969101, -0.07082557678222656, 0.07131901383399963, 0.043513454496860504, -0.047074511647224426, 0.08132429420948029, -0.1489914357662201, -0.05467192083597183, -0.02508443593978882, 0.02082115411758423, 0.06873391568660736, 0.07589814066886902, -0.07383421808481216, 0.016692031174898148, 0.07583500444889069, 0.02504446543753147, -0.01006123423576355, 0.009105131030082703, 0.003357237670570612, 0.1256331354379654, 0.053671445697546005, 0.0020761897321790457, 0.053195878863334656, 0.053017910569906235, 0.026169784367084503, -0.004763124044984579, -0.06949977576732635, 0.039137016981840134, 0.013742106966674328, -0.04342920333147049, 0.11142951995134354, -0.046977583318948746, 0.03646669164299965, -0.08739586174488068, 0.04043125361204147, 0.08438776433467865, -0.07736936211585999, -0.022065186873078346, 0.19513337314128876, 0.018351424485445023, -0.052754294127225876, -0.04185470938682556, 0.051118817180395126, -0.04972706735134125, 0.0004367790825199336, 0.05048399046063423, -0.007214625831693411, 0.012627835385501385, 0.0773671343922615, 0.014920818619430065, 0.06729743629693985, 0.011220021173357964, 0.037129662930965424, 0.15399518609046936, -0.024030400440096855, 0.04419425129890442, -0.11150982230901718, 0.032947152853012085, -0.05046214535832405, 0.07626861333847046, -0.017585638910531998, 0.002872664015740156, 0.022120043635368347, 0.03399346396327019, -0.05785099044442177, -0.005527108442038298, 0.1042260080575943, -0.027082590386271477, 0.008289435878396034, 0.0058896830305457115, -0.044959019869565964, 0.05718349292874336, -0.017763668671250343, 0.06040458008646965, 0.12102603912353516, 0.12298353016376495, 0.03895149379968643, 0.067405104637146, -0.018057294189929962, 0.0030783317051827908, -0.05141495540738106, -0.12183717638254166, 0.08525209128856659, -0.02691861242055893, 0.013591562397778034, -0.1339251697063446, 0.03380659595131874, 0.08811540901660919, 0.021211747080087662, -0.03936712071299553, 0.09447147697210312, 0.05579369515180588, -0.015330170281231403, -0.004925251938402653, 0.01464340090751648, -0.03366154804825783, 0.0428365059196949, 0.1259278804063797, 0.03918619453907013, -0.07947858422994614, 0.08233299851417542, 0.11729223281145096, -0.041751619428396225, 0.03821226581931114, 0.05412910133600235, -0.042219050228595734, 0.000929222209379077, -0.0628308579325676, 0.010398361831903458, -0.10739821195602417, 0.016451211646199226, 0.07060647010803223, 0.01928878389298916, -0.05885583162307739, 0.02252066694200039, -0.01953953132033348, 0.05132142826914787, -0.0027729379944503307, 0.026966692879796028, -0.10024958103895187, -0.09330348670482635, -0.03370431438088417, 0.07484553009271622, 0.08086631447076797, 0.030092742294073105, -0.04132823646068573, -0.07210195064544678, -0.07876028120517731, 0.03715962916612625, -0.02527141571044922, 0.038942236453294754, -0.05216730013489723, 0.021731169894337654, -0.03955486789345741, -0.1263241171836853, 0.029251646250486374, 0.09584464877843857, 0.019596263766288757, -0.042194757610559464, -0.05290180444717407, -0.0573272630572319, 0.12170273065567017, -0.0005868160515092313, -0.06457161158323288, 0.09466316550970078, 0.021146753802895546, -0.14250832796096802, -0.023365002125501633], "\u7f16\u8bd1\u65f6\u62a5\u9519\uff0c\u6253\u5f00CMakeError.txt\u63d0\u793apthread\u627e\u4e0d\u5230\u600e\u4e48\u529e\uff1f": [-0.07563385367393494, 0.012796947732567787, -0.0289072934538126, 0.0030918060801923275, -0.1286945343017578, -0.03369034826755524, 0.023877384141087532, -0.019803989678621292, -0.02684379741549492, 0.016798492521047592, -0.05211310088634491, 0.0355152003467083, 0.00012020394206047058, -0.022435598075389862, -0.05315724015235901, 0.0691072940826416, 0.06215236708521843, 0.02530284970998764, -0.048761945217847824, 0.04339030385017395, 0.07645105570554733, 0.006461628247052431, 0.08777867257595062, 0.0028445532079786062, -0.03002363070845604, 0.11119207739830017, 0.04953743517398834, -0.05754049867391586, -0.021962396800518036, 0.09360847622156143, 0.04049689322710037, 0.004795454908162355, -0.052993979305028915, 0.08625388890504837, -0.050365958362817764, -0.04256976395845413, -0.01477474719285965, 0.09886765480041504, -0.012872546911239624, 0.009212737902998924, 0.07524751871824265, 0.0459975004196167, -0.06510087102651596, 0.04114628583192825, -0.013375703245401382, -0.07038640975952148, -0.16277004778385162, -0.0341549888253212, 0.06958683580160141, 0.03889665752649307, -0.0673748329281807, 0.036969415843486786, 0.05981523543596268, -0.03226562216877937, -0.07992909848690033, 0.01301612053066492, 0.07066868990659714, -0.020531924441456795, 0.013088860549032688, -0.026759961619973183, 0.03875305876135826, -0.049647096544504166, -0.046672143042087555, -0.014570088125765324, -0.11002282798290253, 0.020104072988033295, -0.044552091509103775, -0.030802665278315544, 0.02045145444571972, -0.04005949944257736, -0.034882802516222, -0.03738557547330856, -0.025205371901392937, 0.04025945067405701, 0.04555881768465042, 0.11274906247854233, -0.024873385205864906, 0.017841342836618423, -0.026811474934220314, -0.02559112384915352, 0.0016737080877646804, 0.03874051570892334, -0.009015237912535667, -0.08855029195547104, -0.06971237063407898, -0.09509213268756866, -0.07699734717607498, 0.059335947036743164, -0.07459764182567596, 0.03645188733935356, -0.03487347811460495, -0.03094877302646637, -0.12181387841701508, 0.009071924723684788, 0.09330323338508606, 0.0017039983067661524, -0.05603085458278656, 0.03759543225169182, -0.17371127009391785, 0.07764919102191925, 0.06629087030887604, -0.08082494139671326, -0.06870047748088837, 0.022909194231033325, 0.013082651421427727, -0.07485846430063248, 0.008591693826019764, 0.030894644558429718, 0.057125724852085114, 0.05216437578201294, 0.05056068301200867, 0.043786726891994476, 0.010101540945470333, 0.02636786922812462, -0.018614139407873154, 0.05168793350458145, -0.034263577312231064, -0.03168359398841858, -0.07020268589258194, 0.06018637865781784, 0.1278616487979889, -0.04651065915822983, -0.048055797815322876, 0.05729681998491287, -0.02772502601146698, 0.006513225845992565, 0.13448894023895264, -0.06182513386011124, -0.030707182362675667, -0.06504914164543152, 0.026395123451948166, -0.05353827401995659, 0.055826131254434586, -0.13214436173439026, -0.03636940196156502, 0.0439094714820385, -0.052673447877168655, -0.006443271413445473, -0.0014292793348431587, 0.1255592405796051, 0.01944437064230442, -0.16092725098133087, 0.10106576979160309, 0.01976514235138893, 0.08464821428060532, 0.04073568433523178, -0.06625206023454666, -0.01445543672889471, -0.0530816949903965, 0.002470760140568018, 0.03287819027900696, -0.019855204969644547, 0.01896778866648674, 0.1530192792415619, 0.014687743037939072, -0.06199995428323746, -0.027929475530982018, 0.01950758881866932, -0.037327639758586884, -0.0011083451099693775, -0.06520489603281021, -0.0023801468778401613, 0.009850528091192245, 0.024732235819101334, -0.01396310143172741, 0.0762932226061821, 0.003151577664539218, 0.02126999944448471, -0.020456569269299507, -0.028961628675460815, -0.009396628476679325, 0.014449800364673138, 0.028386592864990234, -0.06523746252059937, 0.062054120004177094, 0.004317239858210087, 0.10501685738563538, -0.024319229647517204, 0.013142514042556286, 0.010829279199242592, 0.02353466860949993, -0.11456483602523804, -0.08133365213871002, -0.08038057386875153, 0.016806483268737793, -0.0009148602839559317, 0.05580591410398483, 0.07647049427032471, 0.09394969791173935, -0.13559214770793915, 0.01519637368619442, 0.12129409611225128, -0.000763308082241565, 0.0838811844587326, -0.07112084329128265, 0.02962089329957962, -0.026666348800063133, 0.00974350981414318, 0.04243776202201843, -0.04383742809295654, 0.05493045598268509, 0.07377462834119797, 0.03563456982374191, 0.023797690868377686, -0.008298954926431179, -0.027253419160842896, -0.1442355215549469, -0.08826927840709686, 0.011972429230809212, 0.10917873680591583, 0.031039312481880188, 0.0008985174354165792, -0.06910581141710281, -0.013151153922080994, -0.10457825660705566, 0.06854315102100372, 0.11390301585197449, 0.024503715336322784, 0.11583320796489716, -0.058923326432704926, 0.06346388161182404, 0.062192630022764206, 0.05434229597449303, -0.07812878489494324, -0.05037432909011841, -0.10371223092079163, -0.008417250588536263, -0.09582509845495224, 0.032094404101371765, 0.0822695940732956, -0.06022614240646362, 0.15395626425743103, 0.043452873826026917, 0.09827885031700134, -0.036994025111198425, 0.11416935175657272, -0.05196182057261467, -0.09564466774463654, 0.11324532330036163, 0.0025412803515791893, -0.019471121951937675, 0.06572701781988144, -0.07067003846168518, 0.005094991065561771, -0.08204622566699982, 0.02624485269188881, 0.09996965527534485, 0.07899148017168045, -0.0051904600113630295, -0.08298534899950027, 0.029227280989289284, 0.07626532018184662, 0.013533544726669788, -0.011480322107672691, -0.0313907153904438, 0.09065761417150497, 0.09137571603059769, -0.040634408593177795, 0.04688040167093277, -0.017064610496163368, 0.01564278081059456, 0.05220382288098335, -0.09265413135290146, -0.028916623443365097, 0.04104382544755936, -0.051415544003248215, 0.06195832043886185, -0.0885889083147049, -0.02803369238972664, -0.08041668683290482, 0.048834338784217834, -0.013422366231679916, -0.0910855159163475, -0.00834124069660902, 0.1131553202867508, 0.04177834838628769, 0.01659548655152321, -0.05354803800582886, 0.08400161564350128, 0.027942465618252754, 0.0026271208189427853, 0.03446703404188156, 0.0695086270570755, -0.020690683275461197, 0.0626700222492218, -0.004819609224796295, 0.028393801301717758, -0.022610923275351524, 0.005524825304746628, 0.15431061387062073, -0.012367014773190022, -0.057365354150533676, -0.06022992730140686, 0.01189306378364563, -0.027984458953142166, 0.05732018128037453, 0.06517373770475388, 0.04500231146812439, 0.031722504645586014, 0.013261009939014912, -0.03642896190285683, -0.060110822319984436, 0.1096939891576767, -0.03592705354094505, -0.03184333071112633, 0.03423695266246796, -0.0654066726565361, -0.0037782553117722273, 0.027024369686841965, -0.01861817203462124, 0.00392344081774354, 0.12082456797361374, 0.0095287524163723, 0.03480185195803642, -0.008960189297795296, -0.02585267461836338, -0.023854641243815422, -0.14306679368019104, -0.017098018899559975, -0.08346442878246307, 0.0020485641434788704, -0.053315360099077225, -0.008718165569007397, 0.013165087439119816, 0.03359343111515045, -0.0884540006518364, 0.05793554708361626, 0.06018606945872307, 0.0017837705090641975, -0.0370798334479332, 0.021728046238422394, -0.08139491081237793, 0.04166126623749733, 0.10706508159637451, 0.03766309469938278, -0.14590612053871155, 0.0874696671962738, -0.004147188272327185, -0.008243386633694172, 0.11892702430486679, 0.039537280797958374, -0.09301799535751343, -0.00026599736884236336, -0.12301667779684067, 0.029968595132231712, -0.08777138590812683, 0.03994397819042206, 0.07134771347045898, -0.019440094009041786, 0.01912797801196575, 0.06478022783994675, -0.06606606394052505, 0.05678263306617737, 0.02344672381877899, -0.053243063390254974, -0.10094861686229706, -0.022565841674804688, -0.012140951119363308, 0.07243547588586807, 0.023325487971305847, 0.01408886443823576, -0.0208380576223135, -0.03275703266263008, -0.09644846618175507, 0.10856881737709045, -0.1129160076379776, -0.009792022407054901, -0.02740255370736122, 0.03167053684592247, -0.05359416455030441, -0.05889736860990524, -0.030976854264736176, 0.14295542240142822, 0.038701578974723816, -0.04863743111491203, -0.03007270023226738, -0.09038709104061127, 0.04166092723608017, -0.08925427496433258, -0.08690027892589569, 0.07161988317966461, 0.08830399811267853, -0.1355772614479065, -0.01835780031979084], "\u7f16\u8bd1\u6210\u529f\u540e\uff0c\u8fd0\u884c\u65f6\u62a5\u9519`undefined reference to XXXX`\u6216`undefined symbol XXXX`\u600e\u4e48\u529e\uff1f": [-0.007319718133658171, 0.12811972200870514, 0.059923604130744934, 0.01603872887790203, -0.0630979910492897, -0.05405864864587784, -0.06808064132928848, 0.02715672180056572, -0.0486186146736145, 0.03795585408806801, -0.013741197064518929, -0.00442122109234333, 0.03555884584784508, -0.014263191260397434, 0.0073052155785262585, 0.11456473916769028, 0.07343722879886627, 0.010047498159110546, -0.011206226423382759, -0.022049905732274055, -0.035349637269973755, -0.06726536899805069, 0.122674360871315, 0.12394014745950699, 0.062012456357479095, 0.07178401947021484, -0.0206215251237154, 0.030623968690633774, -0.0577782467007637, 0.1227068081498146, 0.06747861951589584, 0.058915697038173676, -0.10007137060165405, 0.037107665091753006, -0.022146183997392654, -0.06539216637611389, 0.039130184799432755, 0.09726337343454361, -0.03431447595357895, 0.019565949216485023, 0.07264828681945801, 0.05760975182056427, -0.031721048057079315, 0.14261598885059357, 0.008723707869648933, 0.02171715721487999, -0.2232924997806549, 0.07698488235473633, 0.028592340648174286, -0.0060604470781981945, -0.07546962797641754, 0.07627105712890625, 0.05274708941578865, 0.04483824968338013, 0.01827371120452881, -0.0026401723735034466, 0.004065131768584251, 0.0024849907495081425, 0.032543767243623734, -0.01479061134159565, 0.034252066165208817, 0.0015477897832170129, -0.07485433667898178, -0.042994819581508636, -0.17406988143920898, 0.06299088150262833, -0.05633482709527016, -0.06445323675870895, 0.015336190350353718, 0.05906038358807564, -0.05235102400183678, -0.0332498699426651, -0.04616634547710419, 0.0003293342888355255, 0.040720611810684204, 0.029267188161611557, -0.04808185622096062, 0.05052153021097183, -0.07989472150802612, 0.06370144337415695, 0.004474379122257233, 0.08810988068580627, -0.0006145572988316417, -0.06023169681429863, 0.013530653901398182, -0.004991668742150068, -0.04155159741640091, -0.0003342926502227783, -0.08124461024999619, 0.04915666580200195, -0.053292661905288696, -0.01102803647518158, -0.12935908138751984, 0.06204715371131897, 0.050975605845451355, -0.07151469588279724, -0.009485169313848019, -0.07700473815202713, -0.14978618919849396, 0.0026065735146403313, -0.006856829393655062, -0.09460464864969254, -0.009304951876401901, 0.05464743450284004, -0.01965060830116272, -0.10363520681858063, 0.06037922576069832, 0.041814904659986496, 0.0699639543890953, 0.10798802226781845, 0.10191740095615387, 0.07265739142894745, 0.0723772943019867, 0.01891879364848137, 0.0864153578877449, 0.029719989746809006, -0.0792536735534668, -0.12103405594825745, -0.0736398994922638, 0.16169385612010956, 0.13125073909759521, 0.08114992082118988, 0.056737080216407776, 0.07464378327131271, 0.0379469096660614, 0.012882529757916927, 0.08317887783050537, -0.07597295194864273, -0.04497448354959488, -0.07309912145137787, 0.16437286138534546, 0.008119694888591766, 0.06676261872053146, -0.0399165004491806, 0.007167832925915718, 0.08237093687057495, -0.05723661184310913, -0.025096194818615913, 0.0111644696444273, 0.11769065260887146, 0.009899728931486607, -0.1913597583770752, -0.00122666300740093, -0.004740329459309578, 0.07684314996004105, 0.00752020999789238, -0.054570939391851425, -0.09814378619194031, 0.013394467532634735, -0.022822735831141472, 0.1375933587551117, -0.0074200499802827835, -0.03856571018695831, 0.07058558613061905, -0.048522401601076126, 0.11532685160636902, 0.024881208315491676, -0.024423114955425262, -0.05672873929142952, 0.026433978229761124, -0.035816267132759094, -0.0482562892138958, 0.07974430918693542, -0.011032475158572197, -0.08770899474620819, 0.0787551999092102, -0.015239772386848927, 0.017216917127370834, 0.01258612610399723, -0.013824982568621635, -0.059257231652736664, -0.03199939429759979, -0.09926296025514603, -0.04672149941325188, 0.09104299545288086, 0.022134197875857353, 0.1064254492521286, -0.04332548752427101, -0.01897468976676464, -0.06863179057836533, 0.10336432605981827, -0.0651513859629631, -0.038451746106147766, 0.011120546609163284, 0.08195249736309052, -0.017522862181067467, 0.06462071090936661, 0.0684538334608078, 0.2117282748222351, -0.14560705423355103, -0.03675945848226547, 0.0018613243009895086, 0.019541680812835693, 0.12413367629051208, 0.035401489585638046, 0.060402512550354004, 0.020512698218226433, -0.006362461484968662, 0.014784262515604496, 0.030105628073215485, -0.056225620210170746, 0.05464998260140419, -0.06538047641515732, 0.016913026571273804, 0.006308780983090401, -0.049441512674093246, -0.07022751122713089, -0.0955149382352829, -0.004555877298116684, -0.0336284264922142, 0.11600828915834427, -0.054728228598833084, -0.060284316539764404, -0.05801628530025482, -0.15230703353881836, -0.07574501633644104, 0.06575622409582138, 0.1154119223356247, 0.036417920142412186, -0.02073623239994049, 0.008752827532589436, -0.011473494581878185, -0.001532501308247447, -0.11707165837287903, -0.16752631962299347, 0.007922526448965073, -0.04414108768105507, -0.1307297796010971, -0.024456163868308067, 0.05858532339334488, -0.13175895810127258, 0.07927462458610535, -0.0643162950873375, 0.10305330157279968, 0.0009468083153478801, 0.07351776957511902, -0.0701320469379425, 0.014829524792730808, 0.04343070089817047, -0.05651252716779709, -0.07579731941223145, 0.039342284202575684, -0.11017497628927231, -0.01062122080475092, -0.10207463800907135, 0.08148883283138275, 0.014552661217749119, 0.041855718940496445, -0.01010339055210352, 0.01842566207051277, 0.03534694388508797, -0.05427705869078636, 0.04584360495209694, 0.03983437642455101, -0.02486090548336506, 0.04465095326304436, -0.0009776257211342454, -0.050421092659235, 0.009881997480988503, 0.04967530444264412, 0.010354212485253811, 0.04857295751571655, -0.0686175748705864, 0.005270648282021284, -0.0383513979613781, -0.08465726673603058, 0.021339036524295807, 0.004323539324104786, 0.009503697045147419, -0.10482839494943619, 0.02264479734003544, 0.0637139081954956, -0.040000490844249725, 0.05123229697346687, 0.1436174362897873, 0.1060832291841507, -0.06752409785985947, -0.07620254904031754, 0.04872135818004608, 0.0840461403131485, -0.03836192935705185, 0.03290676325559616, 0.022441888228058815, 0.030971091240644455, 0.07932673394680023, -0.023959513753652573, 0.014847435057163239, 0.05704164505004883, 0.09466525167226791, 0.10784735530614853, 0.022077301517128944, -0.004058621823787689, -0.0562228262424469, 0.040654607117176056, 0.03840012475848198, 0.05264284461736679, 0.05123348534107208, 0.013642864301800728, 0.03517179191112518, 0.09934842586517334, -0.0464150495827198, 0.027014920487999916, 0.14116109907627106, -0.03269638866186142, 0.06589847803115845, 0.004319590516388416, -0.0819936990737915, 0.08838163316249847, 0.011433056555688381, 0.018418433144688606, 0.09120450913906097, 0.043653592467308044, 0.04535679519176483, 0.07350379973649979, -0.12831927835941315, -0.055429961532354355, 0.06958277523517609, -0.10626057535409927, 0.08280080556869507, -0.07931745797395706, 0.030962657183408737, -0.08596296608448029, 0.010338909924030304, 0.05029721185564995, 0.05399506539106369, -0.05810323357582092, 0.05525187402963638, 0.02648593857884407, -0.019747775048017502, 0.018237631767988205, 0.022190243005752563, -0.05896158516407013, 0.04198044165968895, 0.01921394094824791, 0.02009599469602108, -0.14214958250522614, 0.0349145345389843, 0.08839492499828339, 0.04944533854722977, 0.026511836796998978, 0.12234432250261307, -0.07982683181762695, 0.02965681068599224, -0.11845685541629791, 0.08236087113618851, 0.008690577931702137, 0.08166190981864929, 0.04361165314912796, -0.037850938737392426, -0.0764700174331665, -0.05650932341814041, -0.07247994840145111, 0.03742610290646553, -0.005502720829099417, -0.0027854128275066614, -0.10786318778991699, -0.1462310552597046, -0.033779263496398926, 0.0997522696852684, 0.06721373647451401, -0.0214326661080122, 0.07669691741466522, -0.04442831128835678, -0.08353859186172485, 0.05480816960334778, -0.07570706307888031, 0.04888862371444702, 0.050476908683776855, 0.025175515562295914, 0.049657683819532394, -0.15423895418643951, 0.12278322875499725, 0.060238830745220184, 0.07220509648323059, -0.07427023351192474, -0.1293247789144516, -0.12654900550842285, 0.020659562200307846, -0.01969520002603531, -0.13200359046459198, -0.020633284002542496, -0.08581078797578812, -0.12698522210121155, -0.003133145160973072], "\u5982\u4f55\u5378\u8f7dMindSpore\uff1f": [-0.053904250264167786, 0.11494433879852295, 0.018983323127031326, -0.020832858979701996, -0.07008424401283264, -0.011841531842947006, -0.006113272160291672, 0.043923407793045044, 0.01887800544500351, 0.06685403734445572, -0.021500620990991592, -0.0016693504294380546, 0.06462681293487549, 0.07539724558591843, -0.11338216066360474, 0.09919701516628265, 0.12264851480722427, 0.03838659077882767, -0.0680164322257042, 0.08149708807468414, -0.00256253220140934, -0.006735334638506174, 0.10420972853899002, -0.016997480764985085, 0.0028270110487937927, 0.07603825628757477, -0.02525983192026615, 0.009443467482924461, 0.03678349778056145, 0.008594934828579426, 0.08467978239059448, 0.022651758044958115, -0.042049795389175415, 0.018131393939256668, -0.04679068922996521, -0.05944857373833656, -0.09824778139591217, 0.039118800312280655, -0.003991707228124142, -0.04526647925376892, 0.019831795245409012, 0.04808162897825241, -0.028226416558027267, 0.08676152676343918, -0.019525818526744843, -0.06157856062054634, -0.14257515966892242, 0.0049507697112858295, -0.010644660331308842, -0.060010574758052826, -0.055206816643476486, 0.08628729730844498, 0.0348440557718277, -0.02608771249651909, -0.06390640884637833, -0.036269888281822205, 0.012063417583703995, 0.045941948890686035, 0.056621335446834564, -0.15877342224121094, -0.014398349449038506, 0.04271646589040756, -0.060528434813022614, -0.050313159823417664, -0.12532705068588257, -0.0135978814214468, -0.07235554605722427, -0.09638074785470963, -0.04203486442565918, 0.04391346126794815, -0.019167739897966385, -0.021106552332639694, -0.022456612437963486, 0.0734918937087059, 0.05133527144789696, -0.0031431512907147408, -0.007289206143468618, 0.006182293873280287, -0.06702323257923126, -0.004387525841593742, 0.02689310908317566, 0.08091552555561066, 0.041547488421201706, -0.05976616218686104, -0.08713139593601227, -0.002285171067342162, -0.07056556642055511, 0.09447380155324936, -0.034787680953741074, 0.09796832501888275, -0.013113223947584629, 0.001249839784577489, -0.17846253514289856, 0.049124207347631454, 0.05782220885157585, 0.005620759446173906, -0.06529790163040161, -0.004521275870501995, -0.12794288992881775, -0.03407404571771622, 0.03980096057057381, 0.02144451253116131, -0.06304579973220825, 0.06961612403392792, 0.010123884305357933, -0.08051043748855591, 0.06621244549751282, -0.01760648936033249, 0.10868176072835922, 0.0337875634431839, 0.08219850808382034, -0.013538330793380737, 0.09311755001544952, -0.01757756806910038, 0.04624065011739731, 0.0322721041738987, -0.05992981791496277, 0.008040329441428185, -0.04013948142528534, 0.10398456454277039, 0.0931260734796524, -0.0677696093916893, 0.00719305407255888, 0.044870536774396896, 0.03852780908346176, -0.029824398458003998, 0.10651319473981857, -0.10644800961017609, -0.12718668580055237, -0.08910315483808517, 0.14798827469348907, -0.1023319736123085, 0.13359904289245605, -0.09672264754772186, -0.13407357037067413, 0.061037320643663406, 0.00848181452602148, 0.02563139609992504, -0.04546337574720383, 0.11431369930505753, -0.01552525907754898, -0.141708642244339, 0.12472429871559143, -0.04211541265249252, 0.09192951768636703, 0.09314387291669846, -0.04659472405910492, -0.1124441996216774, 0.0015475718537345529, -0.08445172756910324, 0.04064544290304184, -0.0370485819876194, -0.0596018061041832, 0.13406747579574585, 0.022302504628896713, 0.05846630409359932, -0.010384864173829556, -0.015879975631833076, -0.029828142374753952, -0.03969775512814522, -0.004369093105196953, -0.001518177567049861, 0.016818877309560776, 0.011255569756031036, -0.044537752866744995, -0.05411987379193306, 0.03778419271111488, 0.021074693650007248, -0.08673495799303055, -0.059542544186115265, -0.024155205115675926, -0.013484440743923187, -0.03552057966589928, 0.05793929472565651, 0.03525258228182793, -0.031162342056632042, 0.1269407719373703, -0.08977881073951721, 0.016839878633618355, -0.019520290195941925, 0.017859844490885735, -0.0821211114525795, -0.0045365081168711185, -0.08500038087368011, -0.002122018951922655, 0.0024254098534584045, 0.10806283354759216, 0.013699466362595558, 0.09696349501609802, -0.13892686367034912, 0.006296830251812935, 0.038595180958509445, 0.01048868428915739, 0.06520166248083115, 0.023679938167333603, 0.07413394004106522, -0.07100716978311539, -0.052401576191186905, -0.00689611816778779, -0.02492576092481613, -0.02145370841026306, -0.018131526187062263, 0.022319648414850235, 0.040368206799030304, -0.030609367415308952, 0.034380532801151276, -0.07939234375953674, -0.061185479164123535, -0.01635824516415596, -0.05484554171562195, 0.07805037498474121, 0.04845073074102402, -0.04245157912373543, -0.05061020702123642, -0.10137882083654404, -0.011591659858822823, 0.13457053899765015, 0.05341870337724686, 0.0056697167456150055, -0.06503013521432877, 0.013516265898942947, 0.040987759828567505, 0.023419218137860298, -0.06139761209487915, -0.15901753306388855, -0.05471925437450409, -0.03767714649438858, -0.13991515338420868, -0.03041939064860344, 0.06953263282775879, -0.029453950002789497, 0.045790549367666245, 0.04183352738618851, 0.16016612946987152, -0.02902177721261978, 0.1522621214389801, 0.0010103188687935472, -0.022991670295596123, 0.064755380153656, 0.021888375282287598, -0.11074141412973404, 0.06392454355955124, -0.05388065055012703, -0.05213995277881622, -0.04765382781624794, 0.0894135981798172, 0.07049700617790222, -0.0014180159196257591, 0.04841351509094238, -0.051425088196992874, 0.043615080416202545, 0.01978694647550583, -0.08777936547994614, 0.031108705326914787, -0.01900375261902809, 0.050902944058179855, 0.08311887085437775, -0.05267554521560669, -0.005330028012394905, 0.04101099073886871, 0.019003497436642647, 0.04778829589486122, -0.03607402369379997, -0.006089313887059689, -0.013406649231910706, -0.018732424825429916, 0.06796260923147202, -0.07368236780166626, 0.012230278924107552, -0.10919619351625443, -0.002678687684237957, 0.02898784540593624, -0.13096082210540771, 0.048764266073703766, 0.130825012922287, 0.08647762984037399, 0.007362578064203262, -0.1842084527015686, 0.02287176437675953, 0.0483674630522728, -0.012210378423333168, -0.015885571017861366, -0.027514763176441193, 0.011404800228774548, 0.044081203639507294, 0.035399384796619415, 0.01115563977509737, -0.01600724086165428, 0.06801079958677292, 0.13922737538814545, -0.0901675820350647, 0.01445605605840683, -0.09647272527217865, 0.08068162947893143, -0.021276872605085373, 0.06144746020436287, 0.015414387919008732, 0.034361857920885086, 0.049129825085401535, 0.02556687965989113, 0.0008668319787830114, -0.03916177526116371, 0.10885676741600037, -0.10334805399179459, -0.031189091503620148, 0.049512188881635666, -0.0527060441672802, 0.11686548590660095, 0.01589996926486492, 0.031377047300338745, 0.08508116006851196, 0.14311133325099945, 0.03299212083220482, 0.06594681739807129, -0.06887692213058472, -0.01707136258482933, 0.03216679021716118, -0.16214752197265625, 0.07485955953598022, -0.09786146134138107, 0.0162934809923172, -0.02802295982837677, -0.016037289053201675, 0.08585736900568008, 0.08398325741291046, -0.07672283053398132, 0.041317418217659, 0.050294969230890274, 0.06726205348968506, -0.08109623938798904, 0.02320769801735878, -0.10358955711126328, 0.04396576061844826, 0.05186225473880768, 0.001406691037118435, -0.08620983362197876, 0.08541763573884964, 0.10562583059072495, -0.02546611614525318, 0.10227642208337784, 0.05282457917928696, -0.07020506262779236, -0.016729071736335754, -0.07166053354740143, 0.09660471975803375, -0.1027335599064827, 0.06367191672325134, -0.02524694986641407, -0.050250258296728134, -0.07278671115636826, 0.06756801903247833, -0.020833376795053482, 0.059620581567287445, -0.031277962028980255, -0.016328107565641403, -0.1655048131942749, -0.08737005293369293, -0.009396052919328213, 0.0004547405696939677, 0.009400180540978909, -0.06614742428064346, 0.002311868127435446, -0.06229243054986, -0.0489046536386013, 0.01856682077050209, -0.0672147125005722, 0.013628387823700905, -0.12871848046779633, 0.11146542429924011, -0.03227360546588898, -0.06532014906406403, 0.059598736464977264, 0.08563955873250961, 0.04710911586880684, -0.10303038358688354, -0.11574488133192062, -0.12157153338193893, 0.08103058487176895, 0.017050469294190407, -0.05853477865457535, 0.09169251471757889, 0.03968504071235657, -0.1588076651096344, 0.10053084790706635], "\u4e00\u4e9b\u5e38\u7528\u7684\u73af\u5883\u53d8\u91cf\u8bbe\u7f6e\uff0c\u5728\u65b0\u542f\u52a8\u7684\u7ec8\u7aef\u7a97\u53e3\u4e2d\u9700\u8981\u91cd\u65b0\u8bbe\u7f6e\uff0c\u5bb9\u6613\u5fd8\u8bb0\u5e94\u8be5\u600e\u4e48\u529e\uff1f": [-0.07093820720911026, 0.08874606341123581, 0.016396773979067802, 0.14271248877048492, -0.048283517360687256, -0.0068205357529222965, 0.004437357187271118, 0.08183051645755768, 0.014863766729831696, -0.009707577526569366, 0.014250309206545353, 0.013207784853875637, -0.013250512070953846, -0.08484626561403275, -0.031502872705459595, 0.12607435882091522, 0.08133037388324738, -0.01959383860230446, -0.04499751329421997, 0.05699075758457184, -0.07680235803127289, 0.035198990255594254, 0.04146461933851242, -0.03252546861767769, 0.02862647734582424, 0.08980719745159149, -0.0045047118328511715, 0.004235207103192806, -0.03549724817276001, 0.09367882460355759, 0.13260042667388916, -0.011820302344858646, -0.0935961976647377, 0.05106838792562485, -0.059597261250019073, -0.08362217992544174, -0.015165558084845543, 0.09924662858247757, 0.02562246471643448, 0.01144943106919527, 0.09161412715911865, 0.029280858114361763, -0.07980974018573761, 0.054137807339429855, -0.016525495797395706, -0.011322922073304653, -0.12712650001049042, -0.005168837029486895, 0.05924960970878601, 0.0021921435836702585, -0.03961450979113579, 0.08389177173376083, 0.038760650902986526, -0.006474572233855724, -0.02843630127608776, 0.02180127426981926, 0.015544131398200989, -0.028644956648349762, 0.10570263862609863, -0.0031782719306647778, 0.007615722715854645, -0.009497961029410362, -0.023464379832148552, -0.052176035940647125, -0.13519977033138275, 0.017079081386327744, -0.09075165539979935, -0.09938295930624008, -0.007875827141106129, -0.0181720033288002, -0.04858383163809776, 0.008516128174960613, -0.020777856931090355, 0.052347227931022644, 0.023657891899347305, 0.05068183317780495, -0.037238746881484985, -0.0732029378414154, 0.0002767415717244148, 0.044951848685741425, -0.03193315491080284, 0.043405868113040924, 0.030351314693689346, -0.07259123772382736, -0.07247874140739441, 0.001038811751641333, -0.06560850143432617, 0.015800923109054565, -0.056063972413539886, 0.02100474201142788, 0.06207888573408127, -0.023062268272042274, -0.19463421404361725, -0.0030429447069764137, 0.0644911527633667, -0.0669001042842865, -0.12124981731176376, -0.020185109227895737, -0.1013379693031311, 0.0017425791593268514, 0.04955184459686279, -0.06502477079629898, -0.03666187822818756, 0.03929140791296959, 0.013207892887294292, -0.08990262448787689, 0.039113450795412064, 0.08194117248058319, -0.038365382701158524, 0.02426934987306595, 0.09603873640298843, -0.008017811924219131, 0.08025127649307251, -0.012385665439069271, -0.007108792662620544, 0.07413393259048462, -0.03762830048799515, -0.016149848699569702, -0.06729444116353989, 0.06958860903978348, 0.1331005096435547, -0.052371226251125336, 0.03697013854980469, 0.013823363929986954, -0.024658020585775375, -0.026785019785165787, 0.06586191803216934, -0.1016075536608696, -0.0725812166929245, -0.05736258625984192, 0.19221164286136627, -0.05077934265136719, 0.10058193653821945, -0.10712268203496933, -0.08036168664693832, 0.08603830635547638, -0.04857930168509483, -0.004801718983799219, 0.016791950911283493, 0.08113668859004974, 0.05263066291809082, -0.12456578016281128, 0.03957192599773407, -0.03734533488750458, 0.1265968680381775, 0.03878864645957947, -0.08669892698526382, -0.10940717905759811, -0.024659624323248863, -0.053220950067043304, 0.09174913913011551, -0.002426731400191784, -0.0043314797803759575, 0.04263656586408615, 0.024625908583402634, 0.017474811524152756, 0.0344524085521698, 0.007979216054081917, 0.02370510995388031, -0.040724508464336395, -0.08800975978374481, 0.013620970770716667, 0.02117759734392166, -0.020493313670158386, -0.09017182141542435, 0.0171184279024601, 0.018507355824112892, -0.00784692820161581, -0.12414924800395966, 0.009809046983718872, -0.009236954152584076, 0.02000908926129341, -0.010238006711006165, -0.07400687038898468, 0.08721345663070679, 0.019457893446087837, 0.10590146481990814, -0.1003047376871109, -0.02134382352232933, 0.02464882656931877, 0.06341881304979324, -0.10830455273389816, 0.009640145115554333, -0.06356963515281677, 0.05493985489010811, 0.08389084041118622, 0.04945112019777298, 0.05635309964418411, 0.18246391415596008, -0.10083823651075363, -0.03928455710411072, 0.012343195267021656, 0.06752953678369522, 0.11326416581869125, -0.058025818318128586, 0.02825029008090496, -0.0699443593621254, 0.02581309899687767, -0.0008454637136310339, 0.026664037257432938, -0.002269539749249816, 0.061656903475522995, 0.032618291676044464, -0.04768062010407448, -0.008459634147584438, -0.039305441081523895, -0.11228853464126587, -0.10149793326854706, -0.001471628318540752, 0.013194777071475983, 0.009563273750245571, 0.02179926261305809, -0.07844114303588867, -0.03223387524485588, -0.1055537685751915, -0.00882659386843443, 0.19819602370262146, 0.021809427067637444, 0.11902248114347458, 0.0031588550191372633, 0.04318392276763916, 0.006569568533450365, -0.005330251529812813, -0.08086135238409042, -0.1121278628706932, -0.04364461451768875, -0.007715668994933367, -0.13501980900764465, 0.04463104158639908, -0.017240727320313454, -0.027711186558008194, 0.050435248762369156, -0.01876526139676571, 0.12205067276954651, 0.009423483163118362, 0.07747910916805267, -0.14088162779808044, -0.05572877079248428, 0.01247690711170435, 0.06691418588161469, -0.05654039978981018, 0.05993148684501648, -0.09540440142154694, -0.02471739426255226, -0.012857726775109768, 0.10894826054573059, 0.06193701922893524, 0.04969847947359085, 0.016539406031370163, -0.08296865224838257, 0.04209131374955177, 0.01833481900393963, -0.005355780012905598, 0.048242174088954926, -0.04087720438838005, 0.13385455310344696, 0.04479961469769478, -0.04938269034028053, 0.034409549087285995, 0.019395552575588226, 0.007209467701613903, -0.026082927361130714, 0.0012908980716019869, 0.02325614169239998, -0.009854387491941452, 0.016462409868836403, 0.1354806274175644, -0.01542501151561737, 0.054795026779174805, -0.0961381122469902, 0.0006849312921985984, 0.130462646484375, -0.03451904281973839, -0.06220134720206261, 0.12344060838222504, 0.04794291779398918, -0.018999772146344185, -0.12627096474170685, -0.01583852805197239, 0.03225918486714363, -0.010631470941007137, 0.023260829970240593, -0.018338603898882866, 0.04230474680662155, 0.02217283472418785, -0.041557677090168, 0.057253170758485794, 0.0415818877518177, 0.07744484394788742, 0.1267608106136322, 0.002710857894271612, 0.05214451998472214, -0.02785560116171837, 0.0010806354694068432, -0.0559425950050354, 0.0786404013633728, 0.016788119450211525, 0.06279925256967545, 0.05199481546878815, 0.06264940649271011, -0.011788947507739067, -0.03939569368958473, 0.09317626804113388, -0.019920000806450844, 0.00692087272182107, -0.011804214678704739, 0.0077096037566661835, -0.001301649259403348, -0.05213053524494171, 0.03478577360510826, 0.10955195128917694, 0.07068277895450592, 0.0043023074977099895, 0.0486292727291584, -0.012624161317944527, -0.08332762122154236, 0.044840700924396515, -0.10423223674297333, -0.018495578318834305, -0.04472522810101509, 0.01683921553194523, -0.10311625897884369, 0.044976092875003815, 0.09165570884943008, -0.00251044356264174, -0.04462040960788727, 0.06460210680961609, 0.06937509775161743, 0.044812820851802826, 0.0065997145138680935, 0.020170951262116432, -0.09745682775974274, 0.06935640424489975, 0.11915256083011627, 0.01734202727675438, -0.10552822053432465, 0.08520574867725372, 0.05910811200737953, -0.018213734030723572, 0.03571831434965134, 0.06028987094759941, -0.09547045826911926, -0.018743736669421196, -0.05084343999624252, 0.04281030222773552, -0.08203095942735672, 0.08294492959976196, 0.03633251413702965, 0.026973538100719452, -0.006929751485586166, 0.01853753626346588, -0.05093197524547577, 0.0022045711521059275, 0.05906900763511658, -0.045502498745918274, -0.10320211201906204, -0.08479864150285721, -0.006131069269031286, 0.02757633663713932, 0.03195400908589363, 0.014751032926142216, -0.016331596300005913, -0.026350459083914757, -0.11218433082103729, 0.05115926265716553, -0.020420195534825325, 0.03700288012623787, -0.03535859286785126, 0.07896777987480164, 0.012503737583756447, -0.10280562937259674, 0.029577357694506645, 0.09127361327409744, 0.007299092598259449, 0.00820571556687355, -0.020817259326577187, -0.07068941742181778, 0.04899583011865616, -0.034922875463962555, -0.05634906888008118, 0.08829014003276825, 0.04278719797730446, -0.09711318463087082, -0.038424309343099594], "\u4f7f\u7528GPU\u7248\u672cMindSpore\u65f6\uff0c\u5982\u4f55\u8bbe\u7f6e`DEVICE_ID`\u73af\u5883\u53d8\u91cf": [-0.027135226875543594, 0.015168583020567894, 0.008262842893600464, 0.025753851979970932, 0.024283424019813538, -0.032205257564783096, 0.015476048924028873, 0.017020894214510918, -0.050797510892152786, -0.013804949820041656, 0.06127985939383507, 0.037575434893369675, -0.005013360641896725, 9.456276893615723e-05, -0.018467778339982033, 0.04343400150537491, 0.08303411304950714, -0.05140090733766556, -0.03553963452577591, 0.020519152283668518, -0.04683302715420723, 0.02385656349360943, 0.024296723306179047, -0.01356755942106247, 0.007945500314235687, 0.023908643051981926, -0.07384757697582245, 0.004180793184787035, 0.05295034497976303, 0.04304654523730278, 0.07540574669837952, 0.046505510807037354, -0.08335059881210327, -0.01774710789322853, 0.031981728971004486, -0.02661031484603882, -0.057878877967596054, 0.0646689161658287, -0.06780855357646942, -0.03962114825844765, -0.0032248608767986298, 0.03288665786385536, -0.08284185081720352, 0.11095413565635681, -0.03795606270432472, -0.013732037506997585, -0.07888419926166534, 0.04490473493933678, 0.027862172573804855, -0.004779201932251453, -0.13237720727920532, 0.026732441037893295, -0.050874315202236176, 0.03589693456888199, -0.0638444572687149, -0.009328056126832962, 0.002552514895796776, 0.0016974734608083963, 0.07568027079105377, 0.040779080241918564, 0.011711089871823788, 0.05475969612598419, -0.014757269993424416, 0.0582926943898201, -0.09436149150133133, 0.003356410190463066, -0.012862395495176315, -0.07378679513931274, 0.0017807595431804657, 0.047855451703071594, -0.05643229931592941, 0.018809879198670387, -0.06014043465256691, 0.02786640264093876, 0.035898301750421524, -0.01348459254950285, -0.007374093402177095, 0.05350742116570473, -0.04983086138963699, 0.004115301184356213, 0.005210304167121649, 0.07431451231241226, 0.06524509191513062, -0.07350027561187744, -0.0245800893753767, -0.04352513700723648, -0.07606995105743408, 0.05813869088888168, -0.10306818783283234, 0.07051065564155579, -0.009296642616391182, -0.06492584943771362, -0.12646208703517914, 0.08432524651288986, 0.10801231116056442, -0.04175621271133423, -0.05570583790540695, -0.043034281581640244, -0.09618993103504181, -0.005974737461656332, 0.005060347728431225, 0.05063585937023163, -0.02948463335633278, 0.06641478091478348, -0.016156112775206566, -0.06468893587589264, 0.07355697453022003, 0.03628966957330704, 0.03052680939435959, 0.011605650186538696, 0.05963074043393135, 0.048082154244184494, 0.03337747976183891, 0.0021777378860861063, -0.0669577494263649, 0.016650322824716568, -0.08381719142198563, -0.02382168173789978, -0.08509375900030136, 0.1055331826210022, 0.10449561476707458, -0.026309145614504814, -0.01393461786210537, 0.03319145739078522, 0.03198041394352913, -0.05574437975883484, 0.06672701239585876, -0.050040557980537415, -0.05470553785562515, -0.06953337788581848, 0.13214583694934845, -0.012026936747133732, 0.11414534598588943, -0.17036312818527222, -0.13281121850013733, 0.06374908238649368, -0.057852938771247864, -0.039988499134778976, 0.009912948124110699, 0.08300009369850159, 0.02455541305243969, -0.04193766042590141, -0.0007336883572861552, -0.04887430742383003, 0.10876363515853882, 0.026514960452914238, -0.07458942383527756, -0.14139539003372192, 0.033735841512680054, -0.06909395754337311, 0.08478829264640808, 0.02762976661324501, -0.01920151896774769, 0.10931813716888428, 0.051268987357616425, 0.06264404952526093, -0.11143575608730316, -0.008822984993457794, -0.04736417531967163, -0.0276013370603323, -0.06975635886192322, -0.008552217856049538, 0.020760219544172287, -0.009466186165809631, 0.05071787163615227, -0.011008156463503838, -0.011645312421023846, -0.006027604918926954, -0.052208300679922104, -0.05653323233127594, -0.027671542018651962, 0.043241191655397415, -0.05598512664437294, -0.006931782700121403, 0.021290607750415802, -0.05745038390159607, 0.02001000940799713, -0.0946887955069542, -0.014921779744327068, -0.11535228788852692, 0.0360393300652504, -0.13096484541893005, 0.0004295110411476344, -0.10786300152540207, 0.06296093761920929, 0.006151276174932718, 0.026466483250260353, -0.01692107692360878, 0.1534484326839447, -0.14903496205806732, 0.039620377123355865, 0.0594731830060482, 0.07848995923995972, 0.08740092813968658, 0.06669501960277557, -0.058727044612169266, -0.08126165717840195, -0.04947168380022049, 0.048734426498413086, 0.052195727825164795, -0.02649572864174843, 0.02367437072098255, 0.044144533574581146, 0.03785146772861481, -0.0495782308280468, 0.011463859118521214, -0.07534058392047882, -0.13885881006717682, 0.04438144713640213, -0.0499112531542778, 0.12222282588481903, -0.025844432413578033, -0.10533671081066132, -0.04440763220191002, -0.11120539158582687, 0.02747504599392414, 0.08618004620075226, 0.0834520012140274, 0.011354532092809677, -0.00036136992275714874, -0.008012674748897552, -0.04257911816239357, 0.05287095904350281, -0.05044761300086975, -0.1165003627538681, 0.08968725055456161, -0.0700291246175766, -0.11511656641960144, 0.012151448056101799, 0.15437939763069153, -0.04040788114070892, 0.09973987936973572, 0.018630027770996094, 0.07722973823547363, -0.03630312532186508, 0.054576341062784195, 0.0037680184468626976, -0.01421008538454771, 0.04597462713718414, 0.04526500776410103, -0.1159287542104721, -0.03631054610013962, -0.08460962027311325, -0.01530375424772501, -0.05963096767663956, 0.05672145634889603, 0.12444533407688141, 0.046860720962285995, 0.04413697123527527, -0.07831080257892609, 0.036667730659246445, -0.020922213792800903, -0.033795066177845, 0.058501727879047394, 0.047561436891555786, 0.06604624539613724, 0.06372430175542831, -0.020496228709816933, 0.021113699302077293, -0.013919214718043804, 0.049856122583150864, 0.00814525131136179, -0.004298779647797346, -0.027261901646852493, -0.031079689040780067, -0.03932150825858116, 0.07998398691415787, 5.663745105266571e-05, 0.011285707354545593, -0.060587555170059204, 0.05447470769286156, 0.003289866494014859, -0.061580948531627655, -0.06532330811023712, 0.0866457000374794, 0.05053529143333435, -0.0834677517414093, -0.16287855803966522, 0.06256522983312607, 0.02347634732723236, -0.00488304253667593, 0.033643074333667755, -0.012542379088699818, -0.018224801868200302, 0.07794362306594849, -0.010005349293351173, 0.032429277896881104, 0.02739153802394867, 0.025537338107824326, 0.05474713817238808, -0.06794287264347076, -0.037199508398771286, -0.038615670055150986, 0.0567011795938015, -0.06586102396249771, 0.030691280961036682, 0.06187849119305611, 0.024251598864793777, -0.02498953603208065, 0.0807347372174263, -0.04432161524891853, -0.04587284475564957, 0.048151154071092606, -0.06035809963941574, -0.009888015687465668, 0.0036621340550482273, -0.008072509430348873, 0.06666427850723267, -0.03231242671608925, 0.0022472599521279335, 0.16999824345111847, 0.08913743495941162, 0.10115886479616165, 0.027955111116170883, -0.11345511674880981, -0.01615983434021473, 0.08201100677251816, -0.17724642157554626, 0.06420353055000305, -0.05795149505138397, 0.036224428564310074, -0.05723603069782257, -0.033770546317100525, 0.05728250369429588, 0.08470992743968964, 0.04610428959131241, 0.019539885222911835, 0.04154978320002556, 0.04990052059292793, -0.0035231267102062702, 0.032151270657777786, -0.08679342269897461, 0.020010363310575485, 0.077806755900383, -0.013644826598465443, -0.14531831443309784, 0.12810346484184265, 0.09640902280807495, 0.00844493880867958, -0.05782227963209152, 0.07880907505750656, -0.08942824602127075, -0.024266459047794342, -0.06182818487286568, 0.06286177039146423, -0.11295013874769211, 0.03349051624536514, 0.06079941615462303, -0.0734802633523941, -0.02335413172841072, 0.010545252822339535, -0.09735550731420517, 0.06366816908121109, 0.0022983138915151358, -0.027096819132566452, -0.13084334135055542, -0.1128607764840126, 0.006854658015072346, 0.054833829402923584, -0.029828157275915146, -0.0197931919246912, 0.011754016391932964, -0.11176358163356781, -0.07454121857881546, 0.02015462890267372, -0.028360169380903244, 0.014989236369729042, -0.040702737867832184, 0.08591170608997345, -0.0033212946727871895, -0.12947037816047668, 0.08137398958206177, 0.08571325987577438, 0.06101764366030693, -0.06430520117282867, -0.11692363023757935, -0.16021862626075745, 0.07400331646203995, -0.022842492908239365, -0.025122106075286865, 0.09803075343370438, 0.0606968067586422, -0.046580467373132706, 0.05461828038096428], "\u8fd0\u884c\u5e94\u7528\u65f6\u51fa\u73b0`ModuleNotFoundError: No module named 'te'`\u600e\u4e48\u529e\uff1f": [-0.02991180494427681, 0.10396549850702286, 0.027442585676908493, 0.013927516527473927, -0.1337423026561737, -0.0070896390825510025, -0.020327869802713394, 0.09482401609420776, 0.046685636043548584, 0.057001031935214996, -0.07010446488857269, -0.03197520226240158, 0.08679844439029694, -0.023328226059675217, -0.05604676529765129, 0.06860332936048508, 0.0869143158197403, -0.004222589544951916, -0.03888282924890518, -0.011212866753339767, -0.021738765761256218, 0.01947803609073162, 0.11639119684696198, 0.0014178669080138206, 0.08799493312835693, 0.05903492122888565, -0.015230686403810978, -0.0033859554678201675, -0.04321864992380142, 0.0517834834754467, 0.015036133117973804, 0.02972755953669548, -0.10321885347366333, 0.010557867586612701, -0.04716143384575844, -0.024174610152840614, 0.016036253422498703, 0.14352744817733765, -0.09054937958717346, -0.025365713983774185, 0.08399142324924469, 0.04712119325995445, 0.06241162493824959, 0.17637516558170319, 0.04248920455574989, 0.005571376532316208, -0.1816677302122116, 0.10763639956712723, 0.0509418286383152, 0.04389936849474907, -0.13504847884178162, 0.025880208238959312, 0.03439794108271599, -0.008490077219903469, -0.01267259195446968, -0.043485596776008606, 0.008113074116408825, -0.04904661327600479, 0.042142197489738464, 0.03964275121688843, -0.025743547827005386, -0.01883270964026451, 0.005924056749790907, -0.02634093165397644, -0.1592736691236496, -0.015226870775222778, -0.015464719384908676, -0.029166322201490402, 0.07601474970579147, 0.01937960274517536, -0.11743500083684921, -0.014437186531722546, -0.08174891024827957, 0.030462905764579773, 0.028508786112070084, 0.057296574115753174, -0.0997583195567131, 0.00789802148938179, -0.10891186445951462, 0.0037051455583423376, -0.021050605922937393, 0.03665022552013397, -0.029902145266532898, -0.046867333352565765, 0.03350594639778137, -0.005996617488563061, -0.09242314100265503, 0.034032851457595825, -0.10875316709280014, 0.10786280781030655, -0.0544828362762928, -0.015950040891766548, -0.1714896708726883, 0.06328888982534409, 0.12007418274879456, -0.008379855193197727, -0.06799307465553284, -0.014498044736683369, -0.243299663066864, -0.027993738651275635, 0.04247233271598816, -0.07101142406463623, -0.01619192212820053, 0.017145466059446335, 0.018540428951382637, -0.1165909469127655, 0.05650237202644348, 0.04592443257570267, 0.04525686055421829, 0.023875664919614792, 0.05508420243859291, 0.09430088847875595, -0.01018237229436636, -0.09647966176271439, 0.20196612179279327, 0.03255701810121536, -0.02823607623577118, -0.11960163712501526, 0.015865983441472054, 0.09423164278268814, 0.17455369234085083, 0.09604737162590027, -0.0016234517097473145, 0.1113947331905365, 0.07276681810617447, 0.010894338600337505, 0.05005837604403496, 0.0034400946460664272, -0.0791361927986145, -0.10467012971639633, 0.16414839029312134, -0.05667589604854584, 0.04366973042488098, -0.045979153364896774, -0.0042372168973088264, 0.06472457945346832, -0.1118885949254036, -0.061569198966026306, 0.025323813781142235, 0.10863132029771805, 0.06603006273508072, -0.09489317983388901, 0.040229085832834244, -0.05304662510752678, 0.10017983615398407, 0.037386566400527954, -0.11485733091831207, -0.10009422898292542, 0.02800409495830536, -0.05489428713917732, 0.1619613766670227, 0.026750000193715096, -0.054246868938207626, 0.061433494091033936, -0.0732554942369461, 0.09223350882530212, 0.0035431813448667526, -0.02641744539141655, -0.07924291491508484, 0.004171440377831459, -0.04787324741482735, 0.03144730255007744, 0.05131109058856964, 0.05790894106030464, -0.005688615143299103, 0.05282239988446236, -0.017491014674305916, 0.05189468339085579, 0.02697269804775715, -0.01909862644970417, 0.007882506586611271, 0.02102510631084442, -0.15514177083969116, 0.013071738183498383, 0.03938285633921623, -0.010681375861167908, 0.03957880288362503, -0.07023564726114273, 0.03516136109828949, -0.05866898223757744, 0.1307527869939804, -0.05736261606216431, -0.07184489816427231, -0.02119256556034088, 0.03601871430873871, 0.004725592210888863, -0.014415472745895386, 0.10187818109989166, 0.19089427590370178, -0.1599307358264923, -0.0456378273665905, -0.030870135873556137, -0.07558532804250717, 0.07260167598724365, 0.10771804302930832, 0.08139854669570923, -0.062085121870040894, -0.040770698338747025, -0.007229864597320557, 0.04587048664689064, -0.012053227052092552, 0.04817881062626839, -0.05687478557229042, 0.05792425200343132, 0.02303195185959339, -0.06840386986732483, -0.1356719434261322, -0.11769255250692368, -0.06350347399711609, -0.09158597886562347, 0.02813059464097023, -0.02985929697751999, -0.01461408007889986, -0.13567805290222168, -0.13422471284866333, -0.02732430025935173, 0.10518629848957062, 0.09588480740785599, 0.10633794963359833, -0.0036426845472306013, -0.01613297313451767, -0.003129232209175825, -0.02296089567244053, -0.0018555314745754004, -0.09183008223772049, 0.0786789059638977, -0.09677425771951675, -0.059744104743003845, -0.014993377029895782, 0.1166326254606247, -0.022925270721316338, 0.13268545269966125, -0.027755487710237503, 0.08024433255195618, -0.06806076318025589, 0.12156400084495544, -0.08253570646047592, -0.0067925238981842995, -0.03930937498807907, -0.02188345044851303, -0.1125270426273346, 0.04174114391207695, -0.08432497084140778, 0.06825463473796844, -0.1546066254377365, 0.10265569388866425, -0.0013899048790335655, -0.026837384328246117, 0.05170692130923271, 0.035378701984882355, 0.02907119132578373, 0.007067933212965727, -0.0412612184882164, 0.08469527214765549, 0.01049457211047411, 0.045837294310331345, 0.04734545573592186, -0.05863567441701889, 0.0627959594130516, 0.05886010080575943, -0.04960091784596443, 0.17160238325595856, -0.14789043366909027, 0.01189909502863884, 0.08479034155607224, -0.1245127022266388, 0.08506754785776138, -0.05707485228776932, -0.025454824790358543, -0.1115199625492096, 0.03906602784991264, 0.05968371033668518, -0.07445564866065979, 0.061185989528894424, 0.06684661656618118, 0.11287844181060791, -0.06420861929655075, -0.05219738185405731, 0.029497478157281876, 0.09664876013994217, 0.025957932695746422, 0.04847050458192825, -0.000278666615486145, 0.06621946394443512, 0.07511401921510696, -0.0402657575905323, 0.0653267353773117, 0.051754895597696304, 0.04372613504528999, 0.12880784273147583, 0.059722017496824265, -0.00784695241600275, -0.060163021087646484, 0.062082644551992416, -0.052011363208293915, 0.0994439423084259, 0.04746551439166069, 0.0011644414626061916, 0.04199085757136345, 0.07166831195354462, -0.06431365758180618, -0.0443362295627594, 0.10201467573642731, -0.09469103068113327, 0.030420325696468353, 0.03274008259177208, -0.08177649229764938, 0.07545015960931778, 0.003402024507522583, 0.06543412804603577, 0.05244428664445877, 0.07793287187814713, 0.03504621237516403, 0.14110824465751648, -0.13291646540164948, -0.02402852289378643, 0.09257348626852036, -0.08636964112520218, 0.05363237112760544, -0.06052766740322113, 0.13090550899505615, 0.00857024546712637, -0.01132386177778244, -0.0031342720612883568, 0.027829347178339958, -0.09203911572694778, 0.06903830915689468, 0.047054801136255264, 0.005987233482301235, -0.07958609610795975, 0.01900278590619564, -0.05964422598481178, 0.08047151565551758, 0.037263207137584686, -0.027093680575489998, -0.15220612287521362, 0.12518595159053802, 0.13787448406219482, 0.0630057230591774, 0.057048145681619644, 0.06277517974376678, -0.11244222521781921, -0.021210329607129097, -0.11276063323020935, 0.01271118875592947, -0.025827929377555847, 0.013510677963495255, 0.04046310856938362, -0.06617408990859985, 0.004590926226228476, 0.04027783125638962, -0.077358178794384, 0.058499716222286224, -0.05098837986588478, 0.022439932450652122, -0.08687320351600647, -0.11951602250337601, -0.06242067739367485, -0.000711507978849113, 0.0407128632068634, 0.04677552729845047, 0.025089871138334274, -0.048320408910512924, -0.04427458718419075, 0.13779377937316895, -0.07433034479618073, 0.054796818643808365, -0.01895836740732193, 0.03172989562153816, -0.003449010895565152, -0.10415686666965485, 0.12060856074094772, 0.07020793855190277, 0.0220793467015028, -0.06156695634126663, -0.05038754642009735, -0.1339433193206787, 0.05166219174861908, -0.07020730525255203, -0.20516429841518402, 0.0032341592013835907, -0.017040399834513664, -0.16104894876480103, 0.05221734195947647], "\u8fd0\u884c\u5e94\u7528\u65f6\u51fa\u73b0`error while loading shared libraries: libpython3.so: cannot open shared object file: No such file or directory`\u600e\u4e48\u529e\uff1f": [0.009245202876627445, 0.1152108758687973, 0.059775449335575104, -0.032338377088308334, -0.06418051570653915, 0.03531560301780701, -0.027933478355407715, 0.07152023911476135, -0.015882430598139763, 0.10195909440517426, -0.010754796676337719, 0.039642583578825, 0.07078983634710312, 0.02302282489836216, -0.033857736736536026, 0.11906209588050842, 0.056630924344062805, 0.011204006150364876, 0.014032263308763504, 0.009198449552059174, -0.005815788637846708, -0.01741715706884861, 0.14437811076641083, 0.006328267510980368, 0.11956032365560532, 0.05474276840686798, 0.0031401263549923897, 0.04143876954913139, -0.03680361807346344, 0.10175814479589462, 0.016831405460834503, 0.06466946005821228, -0.149370014667511, 0.06673994660377502, -0.03278364986181259, -0.03585432097315788, -0.016137132421135902, 0.10750303417444229, -0.047702960669994354, 0.037952013313770294, -0.004207839723676443, 0.03180716931819916, 0.062374286353588104, 0.10566680133342743, 0.06804201751947403, -0.03933308646082878, -0.16625674068927765, 0.06993833184242249, 0.12987877428531647, 0.057638078927993774, -0.14121858775615692, 0.07447223365306854, 0.02942754700779915, -0.021966421976685524, -0.006092074327170849, -0.02314496785402298, 0.025970278307795525, -0.04954769089818001, 0.017034711316227913, -0.018406525254249573, 0.004938111640512943, 0.04313197731971741, -0.012609913013875484, -0.007105657365173101, -0.13322801887989044, 0.02567249909043312, -0.009304134175181389, -0.01126210205256939, 0.026803389191627502, -0.009821903891861439, -0.12124992907047272, 0.019050825387239456, -0.1045931875705719, 0.07597669214010239, 0.01790028251707554, 0.10033315420150757, -0.05198507383465767, 0.06873874366283417, -0.14011156558990479, 0.02667190320789814, -0.03637731447815895, 0.11473573744297028, 0.037559811025857925, -0.06533672660589218, 0.03876877948641777, -0.045378077775239944, -0.09556993097066879, 0.04198705404996872, -0.11886132508516312, 0.03754771128296852, -0.14174601435661316, -0.030699655413627625, -0.08820392936468124, 0.10095060616731644, 0.13199584186077118, 0.019134901463985443, -0.03990764170885086, -0.038195300847291946, -0.1956079602241516, 0.014205875806510448, 0.0436636283993721, -0.0348229706287384, -0.027249235659837723, -0.0004301331646274775, 0.05831465125083923, -0.0700870156288147, 0.09505213052034378, 0.013670295476913452, 0.014984127134084702, 0.04563696309924126, 0.03709740936756134, 0.06987734884023666, 0.046887148171663284, 0.004625954199582338, 0.14160765707492828, 0.03155912831425667, -0.06542287766933441, -0.12759430706501007, 0.004423943348228931, 0.12304167449474335, 0.16956201195716858, 0.01992690935730934, 0.060886673629283905, 0.09084959328174591, 0.027478059753775597, 0.010074498131871223, 0.03421521559357643, -0.030252140015363693, -0.095699742436409, -0.023455576971173286, 0.15332043170928955, -0.04574963450431824, 0.06107066571712494, -0.05956152454018593, 0.02120378613471985, 0.1435079127550125, -0.1147616058588028, -0.039829712361097336, 0.05537175014615059, 0.12114492803812027, 0.022090833634138107, -0.15767398476600647, 0.008343284949660301, -0.04426379129290581, 0.0925428718328476, 0.02652311697602272, -0.10517802089452744, -0.11117776483297348, 0.007991925813257694, -0.10832195729017258, 0.12564021348953247, 0.018752321600914, -0.025523731485009193, 0.08128449320793152, -0.09149707853794098, 0.14117230474948883, -0.053025852888822556, -0.0021516303531825542, -0.03421580791473389, -0.04880276322364807, -0.13203753530979156, -0.08208177983760834, 0.02676214650273323, 0.0335627906024456, -0.013929540291428566, 0.06350995600223541, 0.016026465222239494, 0.03206457942724228, 0.016413971781730652, -0.0420488566160202, 0.003044835291802883, -0.005595534574240446, -0.1595821976661682, -0.05268531292676926, 0.0399288609623909, -0.031557925045490265, 0.01134640071541071, -0.03711574897170067, -0.06007828190922737, -0.08549995720386505, 0.10882142186164856, -0.10381154716014862, -0.08628710359334946, -0.027321474626660347, 0.06409318000078201, 0.05965279042720795, 0.014848850667476654, 0.09373388439416885, 0.15310172736644745, -0.11620800197124481, -0.04449448734521866, 0.015558751299977303, -0.07387740164995193, 0.10209543257951736, -0.0020454274490475655, 0.04473983123898506, -0.021201293915510178, -0.002421802841126919, -0.03284097835421562, 0.014069854281842709, -0.0647626519203186, 0.051344241946935654, -0.031804464757442474, 0.05842922627925873, 0.027040161192417145, -0.011507472954690456, -0.12434583902359009, -0.12239713966846466, -0.0030345916748046875, -0.05395735427737236, 0.09780343621969223, -0.004753486718982458, -0.0806337296962738, -0.12497531622648239, -0.14741382002830505, 0.03245006874203682, 0.030365686863660812, 0.07699867337942123, 0.07142020016908646, 0.0021944886539131403, 0.015941565856337547, 0.003656442277133465, -0.03754633292555809, -0.08257356286048889, -0.1481928825378418, 0.0028838827274739742, -0.0708824023604393, -0.12085577845573425, 0.02484714984893799, 0.11062930524349213, -0.059823088347911835, 0.15217225253582, -0.0442141517996788, 0.09006929397583008, -0.02604815363883972, 0.07202760875225067, -0.032737381756305695, -0.03613319247961044, 0.01539277657866478, 0.007106974255293608, -0.10493236035108566, 0.06489744037389755, -0.0833236575126648, -0.016824066638946533, -0.14181771874427795, 0.14314673840999603, 0.052411749958992004, 0.022990757599473, 0.017526453360915184, 0.019029632210731506, 0.012145238928496838, 0.026982322335243225, -0.0406632237136364, 0.0868888795375824, 0.0148943355306983, 0.024809924885630608, 0.03468608856201172, -0.0861249789595604, 0.025279618799686432, 0.06503162533044815, -0.009245063178241253, 0.06572135537862778, -0.17788156867027283, -0.024052215740084648, 0.01911916956305504, -0.07667291909456253, 0.015541411936283112, -0.07346177101135254, -0.04580700770020485, -0.057977743446826935, 0.009230554103851318, 0.0732918307185173, -0.12837710976600647, 0.057934414595365524, 0.06865256279706955, 0.06393786519765854, -0.05379045009613037, -0.06316554546356201, -0.010797625407576561, 0.10137645900249481, -0.027530469000339508, 0.07296117395162582, 0.0357942208647728, 0.021153481677174568, 0.03133542090654373, -0.08835072070360184, 0.051056891679763794, 0.022195708006620407, 0.010524078272283077, 0.11240604519844055, -0.011108694598078728, 0.014841465279459953, -0.029003888368606567, 0.028538653627038002, 0.010146329179406166, 0.09420989453792572, 0.09551103413105011, 0.03250303119421005, 0.027241762727499008, 0.022505776956677437, -0.08436260372400284, -0.006876447703689337, 0.0778510645031929, -0.10318368673324585, 0.03162461519241333, 0.039846472442150116, -0.07265111804008484, 0.058160342276096344, -0.08586131036281586, 0.018173109740018845, 0.11755521595478058, 0.039795562624931335, 0.08996564894914627, 0.09390817582607269, -0.16296744346618652, -0.06477227061986923, 0.09444219619035721, -0.08183268457651138, 0.03855862468481064, -0.05856436863541603, 0.028781579807400703, -0.08579812943935394, -0.05929131060838699, 0.04216046631336212, 0.05219701677560806, -0.03895705193281174, 0.028017081320285797, 0.06684507429599762, -0.02693292312324047, -0.03433969244360924, 0.015077379532158375, -0.09512779116630554, 0.033088568598032, -0.012871208600699902, -0.009665816091001034, -0.1485884189605713, 0.13075265288352966, 0.12002013623714447, 0.05770336091518402, 0.03440876677632332, 0.0778360664844513, -0.08074819296598434, -0.00019862689077854156, -0.11378762125968933, 0.026997048407793045, -0.0989057645201683, 0.038852259516716, 0.05844615027308464, -0.08652852475643158, -0.006815178785473108, -0.0032875866163522005, -0.0429898239672184, 0.06467469036579132, -0.03612140938639641, -0.06623341888189316, -0.10311537235975266, -0.1099623441696167, -0.042192041873931885, 0.029214918613433838, 0.011234685778617859, 0.049678388983011246, -0.007276011630892754, -0.04677727073431015, -0.08102920651435852, 0.057397760450839996, -0.03828434273600578, 0.0761033147573471, -0.007849450223147869, 0.06069183722138405, 0.03320571780204773, -0.10987423360347748, 0.10844781249761581, 0.05173012614250183, 0.029349563643336296, -0.12486928701400757, -0.084505096077919, -0.1483294516801834, 0.06322808563709259, -0.0688844844698906, -0.180483877658844, -0.01543143019080162, -0.005872863810509443, -0.1383959949016571, -0.009825754910707474], "Ascend AI\u5904\u7406\u5668\u914d\u5957\u8f6f\u4ef6\u5305\u4e0e\u5176\u4ed6\u4f9d\u8d56\u8f6f\u4ef6\u5df2\u5b89\u88c5\uff0c\u4f46\u662f\u6267\u884cMindSpore\u65f6\u63d0\u793a`Cannot open shared objectfile: No such file or directory`\u8be5\u600e\u4e48\u529e\uff1f": [-0.020077751949429512, 0.0809263363480568, -0.009420635178685188, 0.04605105519294739, -0.009655611589550972, -0.05128331854939461, 0.02364574745297432, 0.020526394248008728, -0.017386365681886673, 0.0352620929479599, -0.01670919358730316, 0.05552203580737114, 0.006788704544305801, 0.012980557046830654, -0.05067930743098259, 0.07597184181213379, 0.0961822047829628, 0.0017814673483371735, -0.011182170361280441, -0.028597094118595123, 0.050818897783756256, -0.037862151861190796, 0.11401309818029404, 0.04031991958618164, 0.014853916130959988, 0.06624376773834229, -0.00010450929403305054, -0.030241888016462326, -0.01862669736146927, 0.06713701039552689, 0.03481132537126541, 0.06715332716703415, -0.12499330937862396, 0.035696860402822495, -0.029067814350128174, -0.019501645117998123, -0.04569920152425766, 0.07920696586370468, -0.06722665578126907, 0.0015421051066368818, 0.056616298854351044, 0.04839421808719635, -0.046936217695474625, 0.12057793885469437, 0.006059512961655855, -0.007184422574937344, -0.14483843743801117, -0.0008842952083796263, 0.09539414197206497, 0.03677649050951004, -0.12044064700603485, 0.07732970267534256, 0.03811237961053848, -0.03564692661166191, -0.007124459836632013, -0.003608342492952943, 0.018657799810171127, -0.023847563192248344, -0.0061729829758405685, -0.037214554846286774, 0.02585846744477749, -0.007477667648345232, -0.08231110870838165, 0.018606174737215042, -0.1045071929693222, -0.00909577589482069, -0.0496114157140255, -0.09729798883199692, 0.024235665798187256, -0.011063550598919392, -0.07362546026706696, -0.03766766935586929, -0.03391532599925995, 0.052903912961483, 0.053323134779930115, 0.04985058307647705, -0.0481131486594677, 0.05540688335895538, -0.055967312306165695, 0.0385407917201519, 0.08511028438806534, 0.028035465627908707, 0.0662049651145935, -0.07540318369865417, -0.040048982948064804, -0.02513713762164116, -0.0429525226354599, 0.06112305447459221, -0.04432641714811325, 0.04084847867488861, -0.015976574271917343, -0.0015230539720505476, -0.09016837924718857, 0.10802683234214783, 0.09367233514785767, -0.03904230520129204, -0.060455821454524994, -0.07298232614994049, -0.1350594311952591, 0.012515047565102577, 0.008048159070312977, -0.0563768595457077, -0.014567929320037365, 0.0023459619842469692, 0.04978019744157791, -0.08577288687229156, 0.054780300706624985, 0.04254955053329468, 0.06948027014732361, 0.05917493626475334, 0.09433136880397797, 0.024985503405332565, 0.05811004340648651, 0.03913658484816551, 0.018375307321548462, 0.06608951836824417, -0.062147051095962524, -0.029752381145954132, -0.06685476750135422, 0.09414823353290558, 0.1049964502453804, -0.02688942849636078, 0.020291756838560104, 0.044424187391996384, 0.009136027656495571, 0.018139798194169998, 0.079591304063797, -0.06538203358650208, -0.0670262947678566, -0.07761327177286148, 0.1305231750011444, -0.03455998748540878, 0.07954885810613632, -0.1258128434419632, -0.08444982767105103, 0.09209591150283813, -0.007731566671282053, -0.02174178883433342, 0.049553364515304565, 0.1552554965019226, 0.02634517475962639, -0.14459769427776337, 0.04462109133601189, -0.01438369881361723, 0.04080185294151306, 0.022401731461286545, -0.06777109205722809, -0.11672326177358627, -0.03592546284198761, -0.016315409913659096, 0.07429816573858261, -0.00748094916343689, 0.0119243199005723, 0.11507627367973328, -0.03273000195622444, 0.04002603515982628, -0.04163462668657303, -0.024676498025655746, -0.03435550257563591, -0.019077619537711143, -0.07502888143062592, -0.00856178067624569, 0.024966098368167877, 0.011726091615855694, 0.006768436171114445, 0.03839555382728577, -0.03886375576257706, -0.039895664900541306, 0.010302377864718437, -0.042332202196121216, 0.01761411502957344, -0.043898504227399826, -0.10332263261079788, -0.018867656588554382, 0.05915514752268791, -0.047568731009960175, 0.045972321182489395, -0.06282376497983932, -0.02247721701860428, -0.06982838362455368, 0.13187702000141144, -0.101829893887043, -0.04349511116743088, -0.12032578140497208, 0.09406966716051102, 0.037854522466659546, 0.05046702176332474, 0.03969120979309082, 0.1185193583369255, -0.06727323681116104, -0.007294412702322006, 0.04527582228183746, -0.009004158899188042, 0.1109633669257164, -0.033321622759103775, 0.019094793125987053, -0.02337513118982315, -0.04373735561966896, 0.018074946478009224, -0.02120688371360302, -0.045321986079216, 0.05843978002667427, 0.02239140309393406, 0.023044312372803688, -0.003150512231513858, 0.026064302772283554, -0.11511322855949402, -0.05751645192503929, 0.04271918907761574, -0.022085927426815033, 0.12843486666679382, 0.02079317532479763, -0.027302846312522888, -0.08358139544725418, -0.11923151463270187, 0.007596469484269619, 0.0339260958135128, 0.09945636987686157, 0.04374590516090393, -0.019701974466443062, -0.0021160454489290714, 0.06991733610630035, -0.016848983243107796, -0.10371266305446625, -0.0725773274898529, -0.018764154985547066, -0.10631649196147919, -0.08803439885377884, -0.003431891556829214, 0.07834522426128387, -0.020230311900377274, 0.0898018479347229, 0.025870904326438904, 0.12029583752155304, -0.025887001305818558, 0.027084043249487877, -0.07704877108335495, -0.01811208575963974, 0.10248024761676788, 0.032626256346702576, -0.09063122421503067, 0.06918419152498245, -0.10961809754371643, 0.028103243559598923, -0.07289081811904907, 0.11675117164850235, 0.07632268965244293, 0.11141374707221985, -0.009880573488771915, -0.017769228667020798, 0.051022015511989594, -0.02169070765376091, 0.002974205184727907, -0.02012234553694725, -0.028445981442928314, 0.03865780681371689, 0.05077427253127098, -0.05733814463019371, 0.023934347555041313, 0.01726672798395157, 0.0036259412299841642, -0.010584158822894096, -0.09590334445238113, -0.007790203206241131, -0.0651688426733017, -0.027034658938646317, 0.0269036702811718, -0.04591704159975052, -0.06997256726026535, -0.06034698337316513, 0.02258015237748623, 0.04908032715320587, -0.06250807642936707, 0.012454520910978317, 0.1037733182311058, 0.06565433740615845, -0.03324306011199951, -0.10954747349023819, 0.0151823116466403, 0.035313498228788376, 0.012052017264068127, 0.031060487031936646, 0.023069841787219048, -0.025615401566028595, 0.07716470956802368, -0.07727309316396713, 0.030254531651735306, 0.008755486458539963, 0.01480010524392128, 0.10325230658054352, -0.054757099598646164, -0.04031198471784592, -0.040578000247478485, -0.02097932994365692, -0.02298761159181595, 0.06607198715209961, 0.11442696303129196, 0.04811183735728264, -0.046236906200647354, 0.0686941146850586, -0.04473897069692612, -0.009186793118715286, 0.12159989774227142, -0.06901959329843521, -0.011084047146141529, -0.008189673535525799, -0.05070986598730087, 0.05815073847770691, 0.0012747005093842745, -0.03280889615416527, 0.03485097736120224, 0.07192810624837875, 0.07374954968690872, 0.06595967710018158, -0.106756791472435, -0.04127877578139305, 0.05686867982149124, -0.10397733747959137, 0.033073317259550095, -0.12124437093734741, -0.03157918155193329, 0.004768212325870991, -0.07089178264141083, 0.06124706566333771, 0.04207286611199379, -0.036229103803634644, 0.020405318588018417, 0.08144957572221756, -0.010516507551074028, -0.047468993812799454, 0.034259133040905, -0.09204894304275513, 0.07545353472232819, 0.043014854192733765, 0.04813016951084137, -0.19620303809642792, 0.11425842344760895, 0.035483233630657196, -0.016551150009036064, -0.003919611219316721, 0.08723998814821243, -0.09440690279006958, 0.02720622904598713, -0.10914615541696548, 0.10060492157936096, -0.03790928050875664, 0.04826023057103157, 0.09971471130847931, -0.03719185292720795, -0.0696726143360138, 0.01298454962670803, -0.11190955340862274, 0.10033529251813889, -0.010646697133779526, -0.05002349987626076, -0.11507058143615723, -0.09284230321645737, -0.04647592827677727, 0.003864924656227231, 0.02249639853835106, 0.018842525780200958, 0.009168070740997791, -0.04826352000236511, -0.02961023338139057, 0.012988697737455368, -0.0658612996339798, 0.031099390238523483, 0.02252328395843506, 0.06682886928319931, -0.007702128496021032, -0.04028170555830002, 0.044975630939006805, 0.13531455397605896, 0.03518984466791153, -0.06534001231193542, -0.07326728850603104, -0.0818532183766365, 0.06383924186229706, -0.06711969524621964, -0.03571578860282898, 0.019512120634317398, 0.05020095035433769, -0.14510363340377808, -0.035003259778022766], "MindSpore\u7684GPU\u7248\u672c\u5bf9\u8bbe\u5907\u7684\u8ba1\u7b97\u80fd\u529b\u6709\u9650\u5236\u5417\uff1f": [-0.008418360725045204, -0.004331263713538647, -0.021934861317276955, 0.01882818154990673, 0.0039694602601230145, -0.02336897701025009, 0.015932690352201462, 0.031066644936800003, -0.0798371434211731, -0.034558478742837906, 0.05899784713983536, 0.014849331229925156, -0.025103379040956497, 0.015943452715873718, -0.020709704607725143, 0.02422160468995571, 0.05546450614929199, -0.008710731752216816, -0.050641268491744995, 0.029063206166028976, -0.05769612640142441, 0.03415383771061897, 0.017826229333877563, -0.006488291546702385, 0.023896725848317146, 0.044858723878860474, -0.058737099170684814, -0.006217233370989561, 0.04240059107542038, 0.07843316346406937, 0.03866644948720932, 0.026315081864595413, -0.09473437070846558, -0.03089803084731102, 0.04525105655193329, -0.03524908423423767, -0.07325353473424911, 0.08735185116529465, -0.057018496096134186, -0.03965910151600838, -0.006786316633224487, 0.0037374135572463274, -0.10192393511533737, 0.10555591434240341, -0.003321087919175625, -0.06031502038240433, -0.09188267588615417, 0.03335645794868469, 0.06599956750869751, 0.010284846648573875, -0.12105477601289749, 0.06451663374900818, -0.05300984904170036, 0.042698994278907776, -0.04724935442209244, -0.0034196709748357534, -0.026552509516477585, -0.020417993888258934, 0.046658966690301895, 0.03255745768547058, 0.004504422657191753, 0.034354787319898605, -0.05955708771944046, 0.03987078741192818, -0.09261573106050491, 0.015827273949980736, -0.0361206941306591, -0.06672903150320053, -0.054791297763586044, 0.08656832575798035, -0.05660782754421234, 0.010462376289069653, -0.03335198014974594, 0.05623076856136322, 0.08703181147575378, -0.0042501878924667835, -0.009115095250308514, 0.040068529546260834, -0.07284457236528397, 0.00630614161491394, 0.011093038134276867, 0.05622895807027817, 0.046168986707925797, -0.06761492788791656, -0.010864551179111004, -0.02615080401301384, -0.07843625545501709, 0.07991897314786911, -0.0944211333990097, 0.08859159797430038, -0.03469816595315933, -0.04509224742650986, -0.134877547621727, 0.08283785730600357, 0.02510186657309532, -0.012092897668480873, -0.0404379777610302, -0.04941025376319885, -0.09650812298059464, -0.03067624755203724, 0.016350481659173965, 0.06958300620317459, -0.030528856441378593, 0.06198342889547348, -0.015074890106916428, -0.04493311420083046, 0.024350518360733986, 0.009520779363811016, 0.0368964709341526, 0.022257907316088676, 0.03725649043917656, 0.016941644251346588, 0.04206613451242447, 0.025330759584903717, -0.06312376260757446, 0.021315980702638626, -0.12375590205192566, -0.05297120660543442, -0.0901995301246643, 0.06205511838197708, 0.08618156611919403, -0.021621601656079292, 0.02311435528099537, 0.04780884087085724, 0.05546700954437256, -0.004661283455789089, 0.05257497355341911, -0.057830534875392914, -0.05326952412724495, -0.05137845501303673, 0.12870770692825317, -0.05058017373085022, 0.10476891696453094, -0.16788004338741302, -0.12524020671844482, 0.08419322222471237, -0.022913016378879547, -0.03332566097378731, -0.02080235816538334, 0.07795774936676025, 0.03937733918428421, -0.04536086320877075, 0.021223904564976692, -0.07724162191152573, 0.12264257669448853, 0.02395557053387165, -0.10055866092443466, -0.11285825073719025, 0.002244815230369568, -0.07220463454723358, 0.06361962854862213, 0.02394731156527996, -0.024746155366301537, 0.11962974071502686, 0.05431440845131874, 0.05326821282505989, -0.09591004252433777, 5.702674388885498e-05, -0.0519595742225647, -0.008365018293261528, -0.04262229800224304, -0.01735493540763855, 0.0030536630656570196, -0.0425541028380394, 0.0816984623670578, 0.015917997807264328, 0.011306541040539742, -0.03215641900897026, -0.08497541397809982, -0.07718470692634583, -0.024434996768832207, 0.03497405722737312, -0.054209738969802856, 0.02374814823269844, 0.03827090561389923, -0.018587734550237656, 0.057558394968509674, -0.09993958473205566, -0.003005832666531205, -0.061768628656864166, 0.0823373943567276, -0.1310454159975052, -0.032906606793403625, -0.103035569190979, 0.06785949319601059, 0.02363821677863598, 0.06787192076444626, 0.03095417656004429, 0.13694533705711365, -0.14177565276622772, 0.06640457361936569, 0.0897267684340477, 0.09213974326848984, 0.0506342351436615, 0.06674851477146149, -0.06958630681037903, -0.09647185355424881, -0.04494983330368996, 0.017396051436662674, 0.061772748827934265, -0.052399151027202606, 0.05799335986375809, 0.06442500650882721, 0.054080113768577576, -0.04150225967168808, 0.014078074134886265, -0.0655219703912735, -0.1493745595216751, 0.016984181478619576, -0.0510367751121521, 0.1301177740097046, -0.007003483362495899, -0.10094112157821655, -0.06402408331632614, -0.1358627825975418, 0.026453688740730286, 0.0851718932390213, 0.12509924173355103, 0.007983503863215446, -0.014462371356785297, -0.007105028722435236, -0.026301894336938858, 0.0847577378153801, -0.062365658581256866, -0.0861772745847702, 0.06934204697608948, -0.05710682272911072, -0.08542615175247192, 0.01951276883482933, 0.13106894493103027, -0.03190700709819794, 0.09676298499107361, -0.010823996737599373, 0.06679842621088028, -0.03287138417363167, 0.027733253315091133, 0.010006401687860489, -0.010464202612638474, 0.05645861104130745, 0.0818738043308258, -0.1680385321378708, -0.00864225160330534, -0.11408877372741699, -0.022636502981185913, -0.03534353896975517, 0.05618518218398094, 0.11722929775714874, 0.041340894997119904, 0.023864135146141052, -0.09165062755346298, 0.05034773424267769, -0.009824102744460106, -0.03434547036886215, 0.1081240102648735, 0.04471825808286667, 0.04446027800440788, 0.08823715895414352, -0.026245886459946632, 0.04098236933350563, 0.026960620656609535, 0.046852026134729385, 0.007608270272612572, -0.023784616962075233, 0.009011806920170784, -0.027314215898513794, -0.004206018056720495, 0.055654268711805344, -0.0034544675145298243, 0.051615022122859955, -0.07679597288370132, 0.027760175988078117, -0.02017873525619507, -0.04085470736026764, -0.053705111145973206, 0.10778219997882843, 0.05289363116025925, -0.08446533977985382, -0.15618659555912018, 0.06409786641597748, 0.015362238511443138, 0.0070015499368309975, 0.026824157685041428, -0.02410534769296646, -0.0018651798600330949, 0.09385589510202408, -0.029080690816044807, 0.0836523249745369, 0.03777013719081879, -0.0006946007488295436, 0.0366460420191288, -0.07303658127784729, -0.025144338607788086, -0.051951341331005096, 0.06722349673509598, -0.07695023715496063, 0.06083325669169426, 0.0486920028924942, 0.0198421198874712, -0.01042558066546917, 0.06403184682130814, -0.054447248578071594, -0.01798158511519432, 0.07032357156276703, -0.06644924730062485, -0.03338897228240967, -0.030772406607866287, -0.01415904052555561, 0.058081887662410736, -0.015101536177098751, -0.026773517951369286, 0.1765141785144806, 0.09673751145601273, 0.104216068983078, 0.04526336491107941, -0.10659992694854736, -0.017271671444177628, 0.08522159606218338, -0.18771374225616455, 0.09795088320970535, -0.1070200651884079, -0.019552309066057205, -0.045077189803123474, -0.030299801379442215, 0.03745506331324577, 0.11507688462734222, 0.008865087293088436, 0.02520785667002201, 0.03441552445292473, 0.06519893556833267, -0.016405371949076653, 0.030985986813902855, -0.06101474165916443, 0.04146246612071991, 0.07258091866970062, -0.03156714141368866, -0.16468384861946106, 0.1464659422636032, 0.1336459368467331, 0.0020631987135857344, -0.059274256229400635, 0.05977718159556389, -0.0731453001499176, -0.039328981190919876, -0.05623912066221237, 0.08507329970598221, -0.11536131054162979, 0.036238037049770355, 0.029084622859954834, -0.09489988535642624, -0.0562051385641098, 0.058417364954948425, -0.06966044008731842, 0.04702349379658699, -0.00954930018633604, -0.05143910273909569, -0.11970362067222595, -0.11005643010139465, -0.0004207249730825424, 0.06588264554738998, -0.01947401463985443, -0.01753217726945877, -0.011293870396912098, -0.1591966152191162, -0.06794396042823792, 0.0032004716340452433, -0.04875142499804497, 0.04072560369968414, -0.06308905780315399, 0.07855787873268127, 0.011237971484661102, -0.11680002510547638, 0.13357801735401154, 0.08095293492078781, 0.062000129371881485, -0.06391000002622604, -0.1040232703089714, -0.1450384110212326, 0.06700679659843445, 0.006971833296120167, -0.007033925037831068, 0.08961902558803558, 0.06261919438838959, -0.09170997142791748, 0.05705729126930237], "\u4e2a\u4eba\u7535\u8111CPU\u73af\u5883\u5b89\u88c5MindSpore\u540e\u9a8c\u8bc1\u4ee3\u7801\u65f6\u62a5\u9519: `the pointer[session] is null`\uff0c\u5177\u4f53\u4ee3\u7801\u5982\u4e0b\uff0c\u8be5\u5982\u4f55\u9a8c\u8bc1\u662f\u5426\u5b89\u88c5\u6210\u529f\u5462\uff1f": [-0.06999953091144562, 0.026827717199921608, -0.06845991313457489, 0.018051600083708763, -0.046941742300987244, -0.07469359040260315, -0.011533304117619991, 0.02294030971825123, -0.007436738349497318, -0.01319517008960247, -0.02577079087495804, 0.007473079487681389, -0.03390941768884659, 0.023880604654550552, -0.039479296654462814, 0.09430980682373047, 0.07551178336143494, -0.028161048889160156, 0.00282413512468338, 0.0509500652551651, 0.003465324640274048, 0.011999798938632011, 0.058271680027246475, -0.05260992795228958, -0.017311368137598038, 0.1191500574350357, -0.07609792053699493, -0.0037498106248676777, 0.06610027700662613, 0.0755506306886673, 0.05800922214984894, 0.03880201280117035, -0.09505893290042877, 0.0034784572198987007, -0.02237345650792122, -0.059846214950084686, -0.016399016603827477, 0.11797075718641281, -0.09409939497709274, -0.009514791890978813, 0.08638986945152283, 0.0002831611782312393, -0.037648480385541916, 0.10053588449954987, -0.030556079000234604, -0.052512798458337784, -0.109659343957901, -0.06878182291984558, 0.04385004937648773, -0.017440523952245712, -0.0945289134979248, 0.05650390684604645, -0.0072107501327991486, -0.036899976432323456, -0.06129585951566696, -0.021098937839269638, -0.005063298624008894, -0.007502489723265171, 0.044408898800611496, -0.030184036120772362, 0.028260817751288414, -0.009298449382185936, -0.0959583967924118, -0.0030990925151854753, -0.10509742796421051, 0.018108490854501724, -0.061368513852357864, -0.05391715094447136, -0.051954932510852814, 0.03617691993713379, -0.02023771032691002, -0.011538403108716011, -0.03376567363739014, 0.04790371283888817, 0.04141371697187424, 0.06963793933391571, -0.04863531142473221, 0.04443128779530525, -0.07101496309041977, 0.02691962756216526, 0.009405113756656647, 0.023832770064473152, 0.050373516976833344, -0.059203699231147766, -0.030276166275143623, -0.027991944923996925, -0.07227994501590729, 0.05435786023736, -0.01427864283323288, 0.09789471328258514, 0.03838256374001503, -0.002248823642730713, -0.12308262288570404, 0.0726354792714119, 0.11731520295143127, -0.03736402466893196, -0.06425181776285172, 0.017880188301205635, -0.09214146435260773, -0.012549269013106823, 0.07176322489976883, -0.03240654990077019, -0.02720273658633232, 0.022944267839193344, 0.03791968151926994, -0.12611019611358643, 0.04683984816074371, 0.03325120732188225, 0.008059588260948658, 0.02869703806936741, 0.10358487069606781, 0.010743847116827965, 0.05242649093270302, 0.040195219218730927, -0.07200217247009277, 0.014057513326406479, -0.05297020077705383, 0.050536755472421646, -0.054676204919815063, 0.11221068352460861, 0.07954872399568558, -0.11539781093597412, -0.01255311444401741, 0.053453825414180756, 0.004512661136686802, -0.042406972497701645, 0.07674998044967651, -0.0507083535194397, -0.11876395344734192, -0.027200156822800636, 0.1506655365228653, -0.05793529003858566, 0.05616108700633049, -0.14983129501342773, -0.12125886231660843, 0.06442052870988846, -0.019795391708612442, -0.03163335099816322, 0.0382956936955452, 0.08394106477499008, 0.06001311168074608, -0.13429217040538788, 0.07779859751462936, -0.001243462087586522, 0.058019157499074936, 0.025632455945014954, -0.08697959780693054, -0.13983650505542755, -0.025051183998584747, -0.04479478299617767, 0.061610881239175797, 0.005635840818285942, -0.06708499789237976, 0.1213233470916748, 0.0035179522819817066, -0.0007966270786710083, -0.03798547387123108, -0.05301940441131592, -0.0015251587610691786, -0.036838598549366, -0.013340316712856293, -0.041909463703632355, 0.03938848152756691, -0.014691700227558613, -0.015547757968306541, 0.058481648564338684, 0.037986982613801956, 0.0035857497714459896, 0.01785730943083763, -0.02584625966846943, 0.02393941394984722, -0.03185729309916496, -0.0750306248664856, -0.008453233167529106, 0.01154137123376131, -0.010874512605369091, 0.039489977061748505, -0.05968443676829338, 0.061210907995700836, -0.024732187390327454, 0.08001208305358887, -0.09212731570005417, -0.07544159144163132, -0.05782442167401314, 0.04716522619128227, 0.030748214572668076, 0.028161322697997093, 0.05717354267835617, 0.12814778089523315, -0.09963913261890411, 0.039008889347314835, 0.04151390492916107, 0.03752756491303444, 0.06018134951591492, -0.0010622140252962708, -0.06360660493373871, -0.06420230865478516, -0.044168055057525635, 0.00985038187354803, -0.03556113690137863, 0.007224063389003277, 0.04776052013039589, 0.03590654581785202, 0.04712574928998947, 0.05064964294433594, -0.016451520845294, -0.14053533971309662, -0.07725155353546143, 0.04581418260931969, 0.001984085189178586, 0.08117465674877167, 0.04563324153423309, -0.01778135448694229, -0.054850317537784576, -0.09301473200321198, 0.017424238845705986, 0.09356584399938583, 0.045193180441856384, 0.05371319502592087, -0.0765504390001297, -0.003906665835529566, 0.0018500970909371972, 0.02058100700378418, -0.0708925724029541, -0.11880446970462799, -0.05013042315840721, -0.04371154308319092, -0.031417250633239746, 0.00790537428110838, 0.06419586390256882, -0.03870991989970207, 0.09966631233692169, -0.022636331617832184, 0.12902140617370605, 0.019116651266813278, 0.07125958800315857, 0.0028976548928767443, -0.10101012140512466, 0.10651377588510513, 0.07162633538246155, -0.10942718386650085, 0.052353210747241974, -0.05687684565782547, 0.006482915952801704, -0.05204135179519653, 0.05500097572803497, 0.09744107723236084, 0.018776612356305122, 0.037116628140211105, -0.02801588736474514, -0.004508051089942455, 0.02586236409842968, -0.02480452135205269, 0.05051972344517708, -0.005852609872817993, 0.05431802570819855, 0.10600775480270386, -0.09551265090703964, 0.017566725611686707, 0.03965305909514427, 0.041471950709819794, -0.02262548916041851, -0.011513752862811089, 0.0026097982190549374, -0.03374909237027168, -0.032509613782167435, 0.10770699381828308, -0.0742390975356102, -0.02341306209564209, -0.05689850449562073, 0.06402184814214706, -0.02235923893749714, -0.07312269508838654, -0.00543425465002656, 0.13835667073726654, 0.016399329528212547, 0.015611550770699978, -0.109112448990345, 0.027249867096543312, 0.009868688881397247, -0.0032140612602233887, 0.02161513641476631, -0.028486276045441628, -0.0416463203728199, 0.1389853060245514, 0.047996554523706436, 0.05234793946146965, -0.038584012538194656, 0.04028384014964104, 0.11323760449886322, -0.07330593466758728, -0.030861871317029, -0.002688242122530937, -0.010889410972595215, -0.07095234841108322, 0.07947090268135071, 0.02595582976937294, -0.008677249774336815, -0.017154298722743988, 0.05231333151459694, -0.021167876198887825, -0.03303889185190201, 0.09136795252561569, -0.055817488580942154, -0.0010912134312093258, -0.011210750788450241, 0.007776785176247358, 0.05401363596320152, 0.014054883271455765, -0.004347232636064291, 0.0389648973941803, 0.08333392441272736, 0.05833803489804268, 0.09365526586771011, -0.025352809578180313, -0.04911215230822563, 0.03654002398252487, -0.16200682520866394, 0.05233906954526901, -0.040134917944669724, 0.045867159962654114, -0.09317326545715332, -0.07826659828424454, 0.01887453719973564, 0.06916213780641556, -0.017448028549551964, 0.03713834658265114, 0.061250656843185425, 0.047865185886621475, -0.0145177086815238, 0.04546916484832764, -0.031159712001681328, 0.03291444852948189, 0.09717971831560135, 0.046812500804662704, -0.104559026658535, 0.10235728323459625, 0.022233430296182632, -0.026487870141863823, 0.012594393454492092, 0.042755089700222015, -0.08816949278116226, 0.017166225239634514, -0.08090788871049881, 0.06438463926315308, -0.04565827548503876, 0.09543139487504959, 0.006000817287713289, -0.014575173147022724, -0.028345029801130295, 0.04408726841211319, -0.13048416376113892, 0.01980154775083065, -0.02549051120877266, -0.025524621829390526, -0.1384095549583435, -0.10611376911401749, -0.017970746383070946, 0.017744282260537148, -0.019384583458304405, -0.0418776199221611, -0.013552471064031124, -0.07534489780664444, -0.051030974835157394, 0.04951084405183792, -0.03801005706191063, 0.06566737592220306, -0.02427765168249607, 0.06934278458356857, -0.04560672864317894, -0.10993750393390656, 0.054349977523088455, 0.10359402745962143, 0.010257089510560036, -0.06350771337747574, -0.0621366947889328, -0.12406839430332184, 0.052192509174346924, -0.027903830632567406, -0.09981903433799744, 0.06444162875413895, 0.09765880554914474, -0.08875932544469833, 0.027908211573958397], "`Linux`\u5e73\u53f0\u4e0b\u6267\u884c\u7528\u4f8b\u7684\u65f6\u5019\u4f1a\u62a5\u9519`sh:1:python:not found`\u6216\u8005\u7531\u4e8e\u94fe\u63a5\u5230\u4e86Python2.7\u7684\u7248\u672c\u4e2d\u800c\u62a5\u9519`No module named mindspore._extends.remote`\uff0c\u8be5\u600e\u4e48\u5904\u7406\uff1f": [0.0070816995576024055, 0.11556480824947357, 0.07671906054019928, -0.023475471884012222, -0.08669479936361313, -0.051541343331336975, 0.02683943696320057, 0.01671992801129818, -0.01783323660492897, 0.09216409921646118, -0.06251323968172073, 0.06927232444286346, 0.02035929262638092, 0.016459036618471146, -0.08745428919792175, 0.0815441906452179, 0.09195791184902191, 0.021446820348501205, -0.014149755239486694, 0.020442605018615723, -0.008289786987006664, -0.04922696202993393, 0.09822377562522888, -0.06290144473314285, 0.0214023869484663, 0.10267069190740585, 0.004148975480347872, 0.027530578896403313, 0.01633577048778534, 0.07860878854990005, 0.033604979515075684, 0.07008060067892075, -0.07758115977048874, 0.031885650008916855, -0.05904431268572807, -0.04862852394580841, -0.034639596939086914, 0.08735108375549316, -0.029438283294439316, -0.020453965291380882, 0.031830210238695145, 0.045049626380205154, -0.02225896343588829, 0.11615307629108429, 0.015691043809056282, -0.008494553156197071, -0.16720637679100037, 0.012991287745535374, 0.06468471884727478, 0.043073005974292755, -0.07510851323604584, 0.04569676145911217, 0.03951898217201233, -0.032646387815475464, 0.0028938197065144777, -0.026004983112215996, -0.016962699592113495, 0.00646801944822073, 0.04532157629728317, -0.038753442466259, 0.024686474353075027, 0.032445214688777924, -0.07756934314966202, -0.01772596500813961, -0.08703792095184326, -0.02642638236284256, -0.006074145901948214, -0.04426192492246628, -0.004906622227281332, -0.0022441931068897247, -0.07196920365095139, 0.011851910501718521, -0.07909983396530151, 0.09151145070791245, 0.044901564717292786, 0.06782662868499756, -0.007669536862522364, 0.009593171067535877, -0.11476662755012512, 0.0016670156037434936, -0.01981305330991745, 0.08062919974327087, 0.06037985533475876, -0.04492004215717316, -0.0850137248635292, -0.03718762844800949, -0.03889283165335655, 0.11642797291278839, -0.017536139115691185, 0.09762224555015564, 0.01756894960999489, -0.010915376245975494, -0.09866829961538315, 0.09425123035907745, 0.1015409305691719, -0.02431749738752842, -0.04078526049852371, -0.07366263121366501, -0.1964985579252243, -0.023301849141716957, -0.0001234486699104309, 0.0065985312685370445, -0.039332300424575806, 0.019392535090446472, -0.0005557205877266824, -0.08555389195680618, 0.049741264432668686, 0.02401048317551613, 0.0553855299949646, 0.026915347203612328, 0.060235656797885895, 0.05311308056116104, 0.0638422742486, -0.0183547530323267, -0.026290200650691986, 0.07009138911962509, -0.060707103461027145, 0.011664386838674545, -0.07973764836788177, 0.10367386043071747, 0.10656100511550903, -0.05098823457956314, -0.034046269953250885, 0.04619188606739044, 0.03387518599629402, -0.07192093878984451, 0.09042290598154068, -0.10405426472425461, -0.03952604904770851, -0.06080599129199982, 0.13694585859775543, -0.043598372489213943, 0.05997668206691742, -0.0856570228934288, -0.06552945822477341, 0.05188775807619095, -0.06910942494869232, 0.00763992452993989, -0.008380209095776081, 0.10906512290239334, 0.04213869571685791, -0.14922434091567993, 0.09820868819952011, -0.029655704274773598, 0.1175689697265625, 0.05791996791958809, -0.07983171939849854, -0.1082543209195137, -0.014558736234903336, -0.07970774918794632, 0.009602845646440983, 0.006893336772918701, -0.05268982797861099, 0.08776214718818665, -0.021053925156593323, 0.10517477989196777, -0.02070077694952488, -0.05264576897025108, -0.03608052432537079, 0.01531913597136736, -0.01864517852663994, -0.032107021659612656, 0.016838500276207924, 0.04426827281713486, -0.033285751938819885, 0.007788015529513359, 0.025471242144703865, -0.02328430488705635, -0.006910465657711029, -0.01332903653383255, -0.010036136955022812, -0.014258898794651031, -0.06003331393003464, -0.01768084056675434, 0.04789514094591141, -0.019000770524144173, 0.062088340520858765, -0.11322781443595886, -0.013658103533089161, -0.08292682468891144, 0.07637783885002136, -0.10390293598175049, -0.021211035549640656, -0.037541940808296204, 0.0455189123749733, 0.03624194487929344, 0.05775313451886177, -0.004155945498496294, 0.13302601873874664, -0.12651000916957855, -0.022360891103744507, 0.06653104722499847, -0.010183028876781464, 0.0770730972290039, -0.008281598798930645, 0.002734438283368945, 0.00798349641263485, -0.03087601810693741, 0.0026092915795743465, -0.08703676611185074, -0.05588911101222038, 0.02420029230415821, 0.044666603207588196, 0.043822210282087326, -0.009255046024918556, -0.009853573516011238, -0.11915959417819977, -0.05334046483039856, -0.010014582425355911, 0.01174570620059967, 0.08829693496227264, 0.0298822782933712, -0.0450519397854805, -0.0832003802061081, -0.07876121997833252, 0.008695528842508793, 0.09439420700073242, 0.07817012816667557, 0.04570065066218376, -0.07447491586208344, -0.027302484959363937, 0.03228859603404999, -0.010419505648314953, -0.08445458114147186, -0.10816401243209839, -0.02043546549975872, -0.06293842941522598, -0.12550069391727448, 0.007129183039069176, 0.05986804515123367, -0.04087478667497635, 0.11888915300369263, 0.04616810381412506, 0.1418275088071823, -0.02166050672531128, 0.12196731567382812, 0.007371089421212673, -0.016348864883184433, 0.07243369519710541, 0.05258624628186226, -0.13943934440612793, 0.06338627636432648, -0.08115299046039581, -0.037967316806316376, -0.0745576024055481, 0.13600094616413116, 0.11324264109134674, 0.04366094619035721, 0.028352724388241768, -0.002482133451849222, 0.022756587713956833, 0.05482872575521469, -0.08059996366500854, 0.10009074211120605, -0.027091117575764656, 0.09593627601861954, 0.03478742763400078, -0.0819043442606926, 0.05423849821090698, 0.0805874615907669, -0.01454969309270382, 0.06439030915498734, -0.07813095301389694, -0.04630337655544281, -0.07305791229009628, -0.02286560833454132, 0.07292799651622772, -0.0471901036798954, 0.0011844983091577888, -0.061755746603012085, 0.05284762755036354, 0.022036751732230186, -0.07447843998670578, 0.014941228553652763, 0.07958821952342987, 0.09720756113529205, 0.05248606577515602, -0.16245588660240173, 0.034635454416275024, 0.054891616106033325, -0.04717113822698593, 0.03936613351106644, 0.028844641521573067, -0.055410027503967285, -0.007830873131752014, -0.04378654435276985, 0.014600154012441635, -0.0019705083686858416, 0.011068086139857769, 0.1202838271856308, -0.07168067991733551, -0.03914153203368187, -0.07829226553440094, 0.07736583054065704, -0.06423605978488922, 0.04370336979627609, 0.0903376117348671, 0.028779730200767517, 0.05138703063130379, 0.0007454043952748179, -0.042704422026872635, -0.07397622615098953, 0.07963990420103073, -0.06836109608411789, -0.0139310322701931, 0.03374212607741356, -0.060500454157590866, 0.05195668339729309, -0.023364068940281868, -0.03827182203531265, 0.052569858729839325, 0.05112290382385254, 0.05439511314034462, 0.0948617085814476, -0.05553252995014191, -0.041231364011764526, 0.06973116844892502, -0.08765516430139542, 0.04611806571483612, -0.04481038078665733, 0.03140679746866226, -0.06325986236333847, -0.03513093292713165, 0.027884505689144135, 0.06682983040809631, -0.008370732888579369, 0.056773848831653595, 0.03467663377523422, -0.045877665281295776, -0.04299422353506088, 0.05091138929128647, -0.06873252242803574, 0.046395398676395416, 0.06458751857280731, 0.031510379165410995, -0.10880016535520554, 0.11510570347309113, 0.026235904544591904, 0.004462696611881256, 0.04344971850514412, 0.01833559013903141, -0.03791944310069084, 0.013409617356956005, -0.11829833686351776, 0.0747557133436203, -0.08646959066390991, 0.07625333219766617, 0.029309242963790894, -0.07481396198272705, -0.059053100645542145, -0.020046589896082878, -0.07518653571605682, 0.086051806807518, -0.014854366891086102, -0.08744243532419205, -0.12371397018432617, -0.0675007626414299, -0.010265734978020191, 0.0069132111966609955, 0.005930622573941946, -0.039619266986846924, -0.047308292239904404, -0.038381338119506836, -0.04437558352947235, 0.023751677945256233, -0.06579061597585678, 0.03222166746854782, -0.05701213330030441, 0.12290279567241669, -0.012943804264068604, -0.09828083217144012, 0.037643153220415115, 0.0989275574684143, 0.058258336037397385, -0.11115358769893646, -0.06323853880167007, -0.10912215709686279, 0.0637347623705864, -0.05295638367533684, -0.11101550608873367, 0.050233978778123856, 0.06830158084630966, -0.08275175839662552, 0.03487035632133484], "\u5728\u811a\u672c\u4e2d`import mindspore`\u4e4b\u524dimport\u4e86\u5176\u4ed6\u4e09\u65b9\u5e93\uff0c\u63d0\u793a\u5982\u4e0b\u9519\u8bef(`/{your_path}/libgomp.so.1: cannot allocate memory in static TLS block`)\u8be5\u600e\u4e48\u89e3\u51b3?": [-0.0474848747253418, 0.1352248191833496, 0.0034225652925670147, 0.02338763326406479, -0.14057372510433197, -0.02761736512184143, 0.006275210529565811, 0.06565273553133011, -0.028172370046377182, 0.049231622368097305, -0.02517315372824669, 0.049864571541547775, -0.027419405058026314, 0.07317293435335159, -0.022949833422899246, 0.09804876148700714, 0.0401051789522171, -0.017298370599746704, -0.02976808324456215, 0.0016514196759089828, 0.010071832686662674, -0.017852315679192543, 0.10118548572063446, 0.02752760238945484, -0.05443824455142021, 0.13316282629966736, -0.0166530292481184, -0.007172051817178726, 0.012699988670647144, 0.07897894084453583, 0.04896576702594757, -0.010573168285191059, -0.1004890650510788, -0.008830415084958076, -0.027298957109451294, -0.05703740566968918, 0.015786953270435333, 0.1321042776107788, -0.027195902541279793, -0.012168516404926777, 0.04271361604332924, 0.04124926030635834, -0.03309563547372818, 0.04883505031466484, -0.03143204003572464, -0.0451870895922184, -0.17652055621147156, -0.017899107187986374, 0.0038723305333405733, 0.031178360804915428, -0.07231976836919785, 0.06042829900979996, 0.010860618203878403, -0.006214899010956287, -0.0996164008975029, -0.019701140001416206, 0.05636622756719589, -0.011624040082097054, 0.039353445172309875, -0.060497939586639404, 0.005189606919884682, 0.0593097098171711, -0.06825827062129974, -0.07556518167257309, -0.10020777583122253, 0.04266457259654999, -0.0610525906085968, -0.10577366501092911, -0.06065622717142105, 0.020042693242430687, -0.08464089035987854, -0.011125165037810802, -0.023617291823029518, 0.07785063982009888, 0.007049548905342817, 0.0791449099779129, -0.08405879884958267, 0.048890866339206696, -0.06738355755805969, -0.03838164731860161, -0.019237607717514038, 0.07950587570667267, 0.06895561516284943, -0.08357159793376923, -0.06315898150205612, -0.0627346932888031, -0.019247258082032204, 0.06706538796424866, -0.04079580679535866, 0.11643590033054352, -0.04255560040473938, 0.005035365466028452, -0.04484933614730835, 0.09015107154846191, 0.03961443156003952, -0.02338525280356407, -0.04207484424114227, -0.02181215211749077, -0.21412621438503265, 0.02709810808300972, 0.06823217123746872, -0.049426306039094925, -0.08242030441761017, 0.031474169343709946, 0.014354933984577656, -0.08717374503612518, 0.051990218460559845, 0.06531694531440735, 0.05406036972999573, 0.026629112660884857, 0.08905856311321259, 0.008495490998029709, 0.018226483836770058, -6.08786940574646e-05, 0.0198067557066679, 0.03551246598362923, -0.07278946042060852, -0.03634261339902878, -0.05950456112623215, 0.06303812563419342, 0.12260420620441437, -0.057260654866695404, 0.021152488887310028, 0.04682053625583649, 0.028427140787243843, -0.017944607883691788, 0.09475702047348022, -0.11116737872362137, -0.0833447277545929, -0.03677796572446823, 0.08990494161844254, -0.061679624021053314, 0.1103527769446373, -0.17660954594612122, -0.10326794534921646, 0.06006135419011116, -0.055213604122400284, -0.016132140532135963, 0.02466594986617565, 0.14515003561973572, 0.04008040949702263, -0.13092200458049774, 0.08268789947032928, -0.030415844172239304, 0.08240535855293274, 0.07032429426908493, -0.031645335257053375, -0.1448381394147873, 0.03280317783355713, -0.042494941502809525, 0.0740932822227478, -0.060258712619543076, -0.01972946710884571, 0.08287400007247925, 0.01296104397624731, 0.019205421209335327, -0.018894096836447716, -0.0142079321667552, 0.02537713572382927, -0.034235503524541855, -0.016385769471526146, 0.0014090603217482567, 0.07569713145494461, -0.006319237407296896, -0.10407652705907822, 0.03143761307001114, 0.04698888957500458, -0.05893431603908539, -0.00631220918148756, -0.042304616421461105, -0.005084541626274586, -0.012925672344863415, -0.03864992409944534, -0.031121771782636642, 0.025593264028429985, 0.000991865643300116, 0.10889766365289688, -0.09043905884027481, -0.000412624329328537, -0.04403700307011604, 0.03545067459344864, -0.0943329855799675, -0.030042501166462898, -0.09306799620389938, 0.05572245270013809, 0.0460091158747673, 0.06984477490186691, 0.09492460638284683, 0.11427061259746552, -0.17058534920215607, -0.009004266001284122, 0.03593243286013603, -0.008874909952282906, -0.015357162803411484, -0.03194212168455124, -0.009997813031077385, -0.04432917386293411, -0.031037338078022003, -0.011497993022203445, -0.0180776659399271, -0.002276594517752528, 0.05099044367671013, 0.028111424297094345, 0.0502641499042511, 0.02686619758605957, -0.06450878083705902, -0.040770020335912704, -0.14144763350486755, -0.03651128336787224, 0.061305999755859375, 0.07795067131519318, 0.06838858127593994, -0.012939505279064178, -0.06275074928998947, -0.11815290153026581, 0.02252103202044964, 0.10884018242359161, 0.08648762851953506, 0.09235256910324097, -0.04510563239455223, -0.004900624975562096, 0.012912641279399395, 0.00354829803109169, -0.08808894455432892, -0.09580519795417786, -0.05945102125406265, 0.020442891865968704, -0.12283153086900711, -0.04463619366288185, 0.06559263914823532, -0.09483969211578369, 0.09628921747207642, 0.04007368162274361, 0.0756857693195343, -0.01002416666597128, 0.13730452954769135, -0.036602672189474106, -0.0578899160027504, 0.10550367832183838, 0.028077024966478348, -0.10394653677940369, 0.05795612931251526, -0.10789072513580322, -0.055384956300258636, -0.0925368070602417, 0.0955222025513649, 0.062368109822273254, 0.05584654211997986, 0.053478069603443146, -0.048909105360507965, 0.016814105212688446, 0.04540298879146576, 0.009306685999035835, 0.0610555000603199, -0.034145940095186234, 0.08199408650398254, 0.08718118816614151, -0.03415815159678459, 0.008239667862653732, 0.009399586357176304, 0.07166344672441483, 0.06210572272539139, -0.11221517622470856, 0.0177727323025465, 0.02910575456917286, -0.026923710480332375, 0.07480958104133606, -0.05985857546329498, -0.004399335011839867, -0.12141583859920502, 0.04160149767994881, 0.04839272424578667, -0.08657068014144897, 0.00454440014436841, 0.16557011008262634, 0.057802338153123856, 0.016408512368798256, -0.11724381148815155, 0.05622578412294388, 0.043422091752290726, 0.0005097500397823751, 0.050136733800172806, 0.012709337286651134, 0.0050259423442184925, 0.07750248163938522, -0.01901225745677948, 0.0781811773777008, -0.004721558187156916, 0.03327813744544983, 0.13091978430747986, -0.10624870657920837, -0.02361905388534069, -0.07617489993572235, 0.050195321440696716, -0.050262246280908585, 0.08400717377662659, 0.05827544629573822, 0.029010865837335587, 0.014370949938893318, 0.06478144228458405, -0.06518694013357162, -0.02799825742840767, 0.08366933465003967, -0.06263972073793411, -0.04401499405503273, 0.05120379105210304, -0.07386709749698639, 0.04935750365257263, 0.023670418187975883, -0.029011087492108345, 0.07604485750198364, 0.14307157695293427, 0.08516434580087662, 0.07196978479623795, -0.054201915860176086, -0.01535288617014885, 0.012418673373758793, -0.18377205729484558, 0.0519784651696682, -0.07882147282361984, 0.01777687296271324, -0.09536600112915039, -0.026820681989192963, 0.04273767024278641, 0.02255021221935749, -0.10878637433052063, 0.06311632692813873, 0.02663833647966385, -0.021727990359067917, -0.06847525388002396, 0.04451590031385422, -0.047078635543584824, 0.042521364986896515, 0.047293905168771744, 0.02529618889093399, -0.10874754935503006, 0.08977428823709488, 0.08189777284860611, -0.012359630316495895, 0.015891872346401215, 0.01846211589872837, -0.05917235463857651, 0.02014842815697193, -0.09596582502126694, 0.007185463793575764, -0.04375665262341499, 0.09117301553487778, 0.0005505522130988538, -0.03234608471393585, -0.0057470956817269325, 0.06794031709432602, -0.0831896960735321, 0.059864819049835205, -0.0005838833167217672, -0.02577284723520279, -0.11299118399620056, -0.01613360084593296, -0.04206345975399017, 0.031784843653440475, -0.014776994474232197, -0.041102200746536255, -0.015170570462942123, -0.08880990743637085, -0.058776725083589554, 0.061548180878162384, -0.10827971994876862, -0.00026046670973300934, -0.05412860959768295, 0.06959366798400879, -0.028459729626774788, -0.08602011203765869, 0.0005017956136725843, 0.10069440305233002, -0.012951813638210297, -0.032678842544555664, -0.03995523601770401, -0.05751018971204758, 0.002197098219767213, -0.03902371600270271, -0.05688915029168129, 0.0024891062639653683, 0.05141270533204079, -0.15725070238113403, 0.06635765731334686], "mindspore\u548cgmp\u90fd\u5df2\u7ecf\u901a\u8fc7\u6e90\u7801\u7f16\u8bd1\u5b89\u88c5\u540e\uff0c\u5728\u811a\u672c\u4e2d\u6267\u884c`import mindspore`\uff0c\t\u63d0\u793a\u5982\u4e0b\u9519\u8bef(`ImportError: libgmpxx.so: cannot open shared object file: No such file or directory`)\u8be5\u600e\u4e48\u89e3\u51b3?": [-0.049912046641111374, 0.08037351816892624, -0.03259662911295891, -0.0010900548659265041, -0.07771743834018707, -0.030397430062294006, 0.015514004975557327, 0.04805316776037216, -0.05017426982522011, 0.08578380942344666, -0.031082244589924812, 0.07149846106767654, 0.006619246676564217, 0.09241963177919388, -0.06178592890501022, -0.0018962225876748562, 0.08554257452487946, -0.001927827950567007, 0.00022661685943603516, 0.021059446036815643, 0.024746984243392944, -0.05041727051138878, 0.07860159128904343, -0.01829373463988304, -0.0007638426613993943, 0.093873031437397, -0.07732591032981873, 0.02925013191998005, -0.04376325011253357, 0.051934629678726196, 0.05420469492673874, 0.0740870013833046, -0.10578300803899765, 0.000130336731672287, -0.029555777087807655, -0.04153897985816002, -0.05112237483263016, 0.0812050849199295, -0.04812992364168167, 0.021071380004286766, 0.034974608570337296, 0.07207174599170685, 0.037317756563425064, 0.08878102898597717, 0.013171376660466194, -0.03251921758055687, -0.14363238215446472, -0.043666087090969086, 0.06425882875919342, 0.028865911066532135, -0.07928568869829178, 0.06253521889448166, -0.017644254490733147, -0.018669908866286278, -0.05312832072377205, -0.02947264537215233, -0.06006597355008125, -0.030690480023622513, 0.019529255107045174, -0.04293994605541229, -0.030842149630188942, 0.029004361480474472, -0.11828263103961945, -0.015818649902939796, -0.09670073539018631, -0.055281877517700195, -0.06396018713712692, -0.11587284505367279, -0.04671744257211685, 0.041863247752189636, -0.06723646819591522, -0.012502392753958702, -0.013738595880568027, 0.08151562511920929, 0.05826921388506889, 0.07961492240428925, -0.0728197991847992, -0.01202972698956728, -0.05892382189631462, 0.0013646959559991956, -0.0005407705320976675, 0.027019944041967392, 0.04955882951617241, -0.037611037492752075, -0.036685846745967865, -0.040623344480991364, -0.07676150649785995, 0.10366417467594147, -0.030279865488409996, 0.1201528012752533, -0.02768119052052498, -0.0024117855355143547, -0.10280633717775345, 0.06377962976694107, 0.0856287032365799, -0.0153780747205019, -0.036828894168138504, -0.029068581759929657, -0.1588418185710907, 0.03275983780622482, -0.022110942751169205, -0.011881951242685318, -0.060462284833192825, 0.05033024773001671, 0.004228453151881695, -0.09359154850244522, 0.10128537565469742, 0.04438491538167, 0.0594659298658371, 0.02915610745549202, 0.08290408551692963, 0.020599527284502983, 0.07377108931541443, 0.04949527606368065, -0.021406879648566246, 0.018529336899518967, -0.08781439810991287, -0.012407343834638596, -0.09448859095573425, 0.08847552537918091, 0.10765574872493744, -0.03366894647479057, -0.019838031381368637, 0.022314857691526413, 0.03396949917078018, -0.007937866263091564, 0.07742465287446976, -0.09660455584526062, -0.09650105237960815, -0.04713059589266777, 0.15431949496269226, -0.08834300935268402, 0.1344090700149536, -0.1187070906162262, -0.08234208822250366, 0.10467805713415146, -0.017792142927646637, -0.011595876887440681, -0.015195569023489952, 0.11917933821678162, 0.04818132147192955, -0.10234897583723068, 0.04426899552345276, -0.019302120432257652, 0.05732155591249466, 0.05385385453701019, -0.06543249636888504, -0.14526580274105072, 0.011021065525710583, -0.014454174786806107, 0.06697054207324982, -0.05702076852321625, -0.035150233656167984, 0.08327310532331467, -0.05528120696544647, 0.06996521353721619, -0.04454856738448143, -0.011039197444915771, 0.0190991573035717, -0.04673527926206589, -0.055539123713970184, -0.02867072820663452, 0.07701323926448822, 0.016496222466230392, 0.014438919723033905, 0.02241591177880764, 0.021186280995607376, -0.038146987557411194, -0.029498158022761345, -0.03073599562048912, -0.003914168570190668, 0.011787486262619495, -0.06571333855390549, -0.019146088510751724, 0.04988466948270798, -0.06005853787064552, 0.046486832201480865, -0.11330445855855942, -0.047787465155124664, -0.048151712864637375, 0.07592418044805527, -0.15362128615379333, -0.022329682484269142, -0.0576477125287056, 0.1001533642411232, 0.022676080465316772, 0.05670136585831642, 0.0535091906785965, 0.12471740692853928, -0.15165969729423523, -0.04543645679950714, 0.07779581099748611, 0.005352186970412731, 0.04544169083237648, -0.029837068170309067, 0.027397479861974716, -0.05004437267780304, -0.055008091032505035, -0.011069973930716515, -0.04917152598500252, -0.028471412137150764, 0.02781275287270546, 0.02458224631845951, 0.03715993091464043, -0.014315880835056305, -0.0011619026772677898, -0.06890103220939636, -0.07676257193088531, -0.04304838925600052, 0.02671746164560318, 0.15863248705863953, 0.04598451405763626, 0.043545179069042206, -0.08512047678232193, -0.13192297518253326, -0.012157834134995937, 0.056199222803115845, 0.07556817680597305, 0.04919716715812683, -0.046070780605077744, 0.051851969212293625, 0.03005632571876049, 0.030301079154014587, -0.0765947699546814, -0.09757456928491592, -0.07010690867900848, -0.03407033160328865, -0.10382877290248871, -0.024755751714110374, 0.10753389447927475, -0.09544914215803146, 0.13822969794273376, 0.045332688838243484, 0.0883951261639595, -0.03930652514100075, 0.12071658670902252, -0.024973340332508087, -0.04084526747465134, 0.12326081842184067, 0.04808620736002922, -0.13615043461322784, 0.08016736060380936, -0.06622269004583359, -0.04997125267982483, -0.09550974518060684, 0.1243741512298584, 0.04393240809440613, 0.06984500586986542, 0.015803253278136253, 0.01790347881615162, 0.030703188851475716, 0.0577932633459568, -0.08717688918113708, 0.10365569591522217, 0.04224351793527603, 0.04390088468790054, 0.10218611359596252, -0.07077464461326599, 0.0328664667904377, 0.06572915613651276, 0.028636302798986435, 0.04894423857331276, -0.09500189870595932, 0.009534059092402458, -0.06544272601604462, -0.03393152356147766, 0.08818836510181427, -0.05958178639411926, -0.007110585458576679, -0.08975973725318909, 0.009636424481868744, 0.09223832935094833, -0.11500940471887589, 0.025199539959430695, 0.14267495274543762, 0.06698596477508545, 0.009698775596916676, -0.14319422841072083, 0.06981144845485687, 0.027969995513558388, -0.012108600698411465, 0.022832827642560005, 0.04777811840176582, 0.005264883860945702, 0.07929541915655136, -0.009040392935276031, 0.07190342247486115, -0.004531746730208397, -0.005166689399629831, 0.1464078426361084, -0.10534723103046417, -0.048365019261837006, 0.0016050771810114384, 0.0021715157199651003, -0.06959133595228195, 0.08784342557191849, 0.08184894174337387, 0.04494275897741318, -0.018667545169591904, 0.0830591544508934, -0.05158963054418564, 0.0041228001937270164, 0.08017274737358093, -0.0781761035323143, -0.024897411465644836, 0.029332026839256287, -0.0776229202747345, 0.13388927280902863, 0.0056381914764642715, -0.050594761967659, 0.052367858588695526, 0.09536747634410858, 0.012019215151667595, 0.10628444701433182, -0.09554505348205566, -0.09309080988168716, 0.05818352848291397, -0.12437626719474792, 0.039937179535627365, -0.0877675861120224, 0.002318571787327528, -0.009736975654959679, -0.057804547250270844, 0.04070670157670975, 0.07891867309808731, -0.05628059059381485, -0.007197307422757149, 0.017246093600988388, 0.02220034971833229, -0.035356856882572174, 0.006390335503965616, -0.1029512956738472, 0.11076343059539795, 0.04862239584326744, 0.022800635546445847, -0.17508147656917572, 0.09982988983392715, 0.03263840824365616, -0.007424885872751474, 0.07084892690181732, 0.09730551391839981, -0.008510435931384563, 0.035886555910110474, -0.08155803382396698, 0.12561340630054474, -0.07342633605003357, 0.09361592680215836, 0.03824244439601898, -0.0748576670885086, -0.07993665337562561, -0.010710994713008404, -0.08348634839057922, 0.034068264067173004, 0.017425108700990677, -0.062490276992321014, -0.14242501556873322, -0.08507822453975677, -0.035552311688661575, -0.029022546485066414, 0.0025288595352321863, -0.019805550575256348, -0.009535491466522217, -0.06036482751369476, -0.043603070080280304, 0.019276143983006477, -0.09088745713233948, 0.02140098437666893, -0.05934889242053032, 0.08540826290845871, -0.02861669659614563, -0.06294999271631241, 0.06449367105960846, 0.13603883981704712, 0.0037172394804656506, -0.09270204603672028, -0.08537766337394714, -0.1344468742609024, 0.10093583166599274, -0.032322682440280914, -0.030779482796788216, 0.007980156689882278, 0.040214620530605316, -0.14819367229938507, -0.0018930486403405666], "\u8fd0\u884cMindSpore\u65f6\u51fa\u73b0\u544a\u8b66 `UserWarning: The value of the smallest subnormal for type is zero.` \u5e94\u8be5\u600e\u4e48\u89e3\u51b3\uff1f": [0.01715349592268467, 0.03179146721959114, -0.009424358606338501, 0.05840698257088661, -0.07861741632223129, -0.006452625617384911, 0.002445787889882922, 0.09130381047725677, -0.049571651965379715, 0.012840509414672852, -0.006101968232542276, 0.10853846371173859, 0.04655899107456207, 0.03641233220696449, -0.00981222651898861, 0.06492745131254196, 0.05739302188158035, -0.029724910855293274, -0.029974788427352905, 0.03542093187570572, 0.020878417417407036, 0.024385370314121246, 0.048099879175424576, 0.015442680567502975, 0.037532988935709, 0.12382865697145462, -0.029601318761706352, -0.04713817313313484, 0.03230145573616028, 0.06657662242650986, 0.03853265941143036, -0.012091229669749737, -0.02607867680490017, -0.023252731189131737, -0.04044122248888016, -0.05223289504647255, 0.005961257964372635, 0.08434136211872101, -0.04391554370522499, -0.013691464439034462, 0.07498932629823685, 0.05691460520029068, -0.06417325884103775, 0.09319745004177094, 0.03087996318936348, -0.045499805361032486, -0.15986333787441254, 0.027313392609357834, 0.0216254573315382, 0.044434282928705215, -0.10038000345230103, 0.08622464537620544, -0.018025632947683334, -0.0061510358937084675, -0.020182784646749496, -0.009252883493900299, 0.018318798393011093, 0.01786886528134346, 0.04983881860971451, -0.015488427132368088, -0.008655283600091934, 0.014248516410589218, -0.008509398438036442, -0.014006219804286957, -0.12439192086458206, -0.023390645161271095, 0.0021663710940629244, -0.11921979486942291, -0.003231871873140335, -0.023311462253332138, -0.0754302591085434, -0.016522981226444244, -0.06670305877923965, -0.002983414102345705, 0.07035642117261887, 0.06130237504839897, -0.02460610307753086, 0.028561804443597794, -0.04777786508202553, 0.010098010301589966, 0.012728143483400345, 0.05325040593743324, 0.07557915151119232, -0.08218730986118317, -0.04023894667625427, -0.07577577233314514, -0.049234651029109955, 0.09227479994297028, -0.08052735030651093, 0.010696634650230408, 0.011750280857086182, -0.03070002980530262, -0.14515285193920135, 0.11627694964408875, 0.13178671896457672, -0.01869143545627594, -0.07197100669145584, -0.05119965225458145, -0.13684126734733582, -0.0008826793637126684, 0.05631699040532112, -0.029661795124411583, 0.0021371138282120228, 0.044063568115234375, 0.03661183640360832, -0.10628783702850342, 0.08651941269636154, 0.030133770778775215, 0.018584391102194786, 0.0007053370354697108, 0.047335296869277954, 0.0339803546667099, 0.03745146468281746, 0.05768965929746628, -0.007298802491277456, 0.06827042251825333, -0.03606174886226654, -0.06084552779793739, -0.09831170737743378, 0.09014321118593216, 0.10165808349847794, -0.06119263544678688, 0.024874718859791756, 0.04917320981621742, 0.06292895972728729, -0.007926062680780888, 0.07124850153923035, -0.0692402571439743, -0.05341647192835808, -0.048601727932691574, 0.1476970613002777, -0.04382041096687317, 0.07178536802530289, -0.14651046693325043, -0.052940063178539276, 0.03505467250943184, -0.03809434920549393, -0.04555859789252281, 0.005910156294703484, 0.13606823980808258, 0.06793831288814545, -0.11462821811437607, 0.10466980189085007, -0.09468328952789307, 0.08102013915777206, 0.04292656481266022, -0.11312780529260635, -0.14552488923072815, 0.019422415643930435, -0.052620649337768555, 0.12635760009288788, 0.025490807369351387, -0.05760100856423378, 0.09181787073612213, -0.0633736327290535, 0.06762104481458664, 0.015335285104811192, 0.00345082045532763, -0.09262846410274506, -0.0030246544629335403, -0.08411761373281479, -0.04652562364935875, 0.14852288365364075, 0.017051631584763527, -0.03891405463218689, 0.06341177225112915, 0.008985921740531921, -0.014367258176207542, -0.058395639061927795, -0.09882721304893494, 0.021816300228238106, -0.008593025617301464, -0.0884813517332077, -0.06115351617336273, 0.030978642404079437, -0.020966609939932823, 0.09184904396533966, -0.14325572550296783, 0.0035349430982023478, -0.014393925666809082, 0.08347328752279282, -0.07315653562545776, -0.043068140745162964, -0.10824839770793915, 0.11446402221918106, 0.05760633945465088, 0.04272615164518356, 0.022671109065413475, 0.16308635473251343, -0.10388132929801941, 0.015753235667943954, 0.06656742095947266, -0.013778002932667732, 0.022612985223531723, 0.02952459640800953, 0.0013919947668910027, -0.039618510752916336, -0.003908785525709391, 0.0010024603689089417, 0.053897351026535034, 0.023878542706370354, 0.07288955897092819, -0.021997664123773575, 0.09937039762735367, 0.04104035720229149, -0.008698269724845886, -0.09593220055103302, -0.10953011363744736, -0.07198791205883026, 0.021898020058870316, 0.10875862836837769, 0.06963663548231125, 0.030605118721723557, -0.042206745594739914, -0.12122232466936111, -0.04049968719482422, 0.07013673335313797, 0.0844011902809143, 0.08070537447929382, -0.080062635242939, 0.021170973777770996, -0.004562425427138805, -0.05533643066883087, -0.05769238620996475, -0.11438652873039246, -0.007604519370943308, -0.10279015451669693, -0.14758557081222534, 0.005273738410323858, 0.1379459798336029, -0.06565707176923752, 0.06254854798316956, -0.026628166437149048, 0.10649717599153519, 0.01564883626997471, 0.09046274423599243, -0.059431035071611404, 0.012459274381399155, 0.04732262343168259, 0.009870698675513268, -0.1743704378604889, 0.13969716429710388, -0.07715941220521927, -0.062069203704595566, -0.09241476655006409, 0.0863068699836731, 0.07944560050964355, 0.04256194829940796, 0.014348472468554974, -0.03210700303316116, 0.052089616656303406, 0.07193750143051147, -0.05347338318824768, 0.11119252443313599, -0.04973786324262619, 0.023708084598183632, 0.04179847612977028, -0.06781680136919022, 0.030897509306669235, 0.06482001394033432, -0.0472431480884552, 0.04107151925563812, -0.13963216543197632, -0.008350884541869164, -0.016495052725076675, -0.039560459554195404, 0.03642033785581589, -0.09791838377714157, -0.03956158086657524, -0.06937316060066223, 0.06785617023706436, 0.038010384887456894, -0.14694170653820038, 0.06766802817583084, 0.14727964997291565, 0.05433601513504982, -0.0334620475769043, -0.12902285158634186, 0.05172751843929291, 0.03947184234857559, -0.0323050357401371, 0.011061590164899826, 0.05435342714190483, 0.020358871668577194, 0.0825158953666687, -0.0709485337138176, 0.053695693612098694, 0.02856368198990822, 0.09584558755159378, 0.0552421398460865, -0.02422616444528103, -0.06560098379850388, -0.0924132764339447, 0.023616310209035873, -0.050511106848716736, 0.07023005932569504, -0.017421655356884003, 0.08037053793668747, 0.0463758260011673, 0.022921068593859673, -0.03571677207946777, -0.02969440445303917, 0.12270916998386383, -0.08078426122665405, 0.024867571890354156, 0.06743623316287994, -0.08120519667863846, 0.041778020560741425, -0.11894560605287552, 0.0010510055581107736, 0.07441206276416779, 0.03246580436825752, 0.07273255288600922, 0.049684759229421616, -0.09952577948570251, -0.0698779970407486, 0.036347635090351105, -0.1421622484922409, 0.04585524648427963, -0.022287093102931976, 0.007682738360017538, -0.020758358761668205, -0.0198823269456625, 0.10041782259941101, 0.08751235902309418, -0.04859910160303116, 0.008236505091190338, 0.07104751467704773, 0.015502853319048882, -0.0220828577876091, 0.058451950550079346, -0.09444482624530792, 0.06982909142971039, 0.049258239567279816, 0.017378248274326324, -0.12578128278255463, 0.1087409108877182, 0.05823519080877304, -0.013650182634592056, 0.030002685263752937, 0.054997287690639496, -0.09662874042987823, 0.022498395293951035, -0.16711638867855072, 0.04164538532495499, -0.12679269909858704, 0.00592233007773757, 0.04237959533929825, -0.0700722187757492, -0.00755683658644557, -0.025491416454315186, -0.11255297809839249, 0.08895573765039444, 0.005159017629921436, -0.058946069329977036, -0.07326970249414444, -0.03982251137495041, 0.06382672488689423, 0.01632019504904747, 0.0020871988963335752, -0.02493400312960148, -0.02263755165040493, -0.0442638136446476, -0.021893959492444992, 0.09154358506202698, -0.04872628673911095, 0.012132116593420506, -0.02209993079304695, 0.07754845917224884, -0.05792146921157837, -0.10220280289649963, 0.05706069618463516, 0.055179163813591, 0.08128770440816879, -0.07572934776544571, -0.006450089626014233, -0.11298780888319016, 0.1299206167459488, -0.08038914948701859, -0.07815717160701752, -0.04321713745594025, 0.020808976143598557, -0.10963954031467438, -0.02674238570034504], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201c'self.xx' should be defined in the class '__init__' function.\u201d\u600e\u4e48\u529e\uff1f": [0.006037099286913872, 0.13641849160194397, 0.037318870425224304, 0.12753668427467346, -0.05998963862657547, -0.04463116079568863, 0.03273811191320419, 0.057687193155288696, -0.015051228925585747, 0.03060026839375496, -0.04399721324443817, 0.0551961287856102, 0.08152832090854645, 0.06697831302881241, -0.0913909375667572, 0.12324494123458862, 0.12489073723554611, -0.019636381417512894, -0.058320268988609314, 0.08132518082857132, 0.04677651450037956, 0.008851239457726479, 0.05719413980841637, -0.03641226515173912, -0.017288124188780785, 0.04711927846074104, -0.03507668524980545, -0.017848914489150047, 0.006671971175819635, -0.015440372750163078, 0.09153981506824493, -0.020324619486927986, -0.035155147314071655, 0.014622652903199196, -0.06814023852348328, -0.04641072452068329, -0.018543437123298645, 0.09739384055137634, -0.011969191953539848, -0.023494990542531013, 0.06495969742536545, 0.034880273044109344, -0.07294297963380814, 0.07629837840795517, -0.03840450197458267, 0.013566693291068077, -0.11063739657402039, -0.00030865613371133804, 0.02363480255007744, -0.0022022987250238657, -0.051104769110679626, 0.014578851871192455, -0.004194115754216909, -0.0336432047188282, -0.025155220180749893, -0.08943505585193634, 0.056807518005371094, -0.04863343760371208, 0.0963020995259285, -0.05559838190674782, 0.01179575640708208, 0.007152763195335865, -0.005242277402430773, 0.0010742205195128918, -0.11578952521085739, -0.020785097032785416, -0.011980218812823296, -0.047105446457862854, -0.04340515285730362, -0.004095002543181181, -0.07280118018388748, -0.03304380923509598, -0.03320600092411041, 0.029839860275387764, 0.01968655362725258, -0.0162360817193985, -0.022863753139972687, 0.043503280729055405, -0.040060050785541534, -0.003591574262827635, 0.06693520396947861, 0.09835211932659149, 0.03582804277539253, -0.08685673028230667, -0.0968548059463501, -0.03689858689904213, -0.05687177553772926, 0.017221622169017792, -0.10857705026865005, 0.049992457032203674, 0.008241829462349415, 0.038474634289741516, -0.167793869972229, 0.05371587723493576, 0.0729525163769722, -0.04699376970529556, -0.06944745779037476, 0.02550611086189747, -0.1453070342540741, -0.03849714249372482, 0.1154395043849945, 0.008462096564471722, -0.03588628023862839, -0.024659782648086548, 0.039038918912410736, -0.12244395911693573, -0.02807973511517048, 0.00016667693853378296, 0.033540841192007065, 0.03970776125788689, 0.020375829190015793, 0.02085743099451065, 0.04922177642583847, 0.007821709848940372, -0.004536257591098547, 0.05097629502415657, 0.029346995055675507, -0.02113237977027893, -0.03173613175749779, 0.0942889004945755, 0.10952334851026535, -0.08167380094528198, 0.022945983335375786, 0.07728833705186844, 0.06038970872759819, -0.04924165457487106, 0.10080026835203171, -0.09623020142316818, -0.08581902831792831, -0.11211016774177551, 0.13412632048130035, -0.024331793189048767, 0.08559301495552063, -0.08688987791538239, -0.09001235663890839, 0.12423642724752426, -0.07096943259239197, -0.03501717746257782, -0.002751524094492197, 0.1530696451663971, -0.01142092328518629, -0.16368597745895386, 0.11735320091247559, -0.045411366969347, 0.0532340332865715, 0.05811869353055954, -0.09079758822917938, -0.15143297612667084, -0.0026531510520726442, -0.09544537961483002, 0.060042209923267365, -0.03343455120921135, 0.005890210159122944, 0.08392433822154999, 0.016796767711639404, 0.08343227207660675, 0.036408182233572006, -0.0038924477994441986, -0.014326326549053192, 0.02748957835137844, -0.029149163514375687, 0.021556230261921883, -0.047534216195344925, 0.012759007513523102, -0.05653369426727295, 0.015253275632858276, -0.032257989048957825, 0.04454053193330765, -0.08032054454088211, -0.016888882964849472, -0.0430523157119751, -0.014690306968986988, -0.05238906666636467, -0.03961769863963127, 0.06647097319364548, 0.019644713029265404, 0.11237892508506775, -0.06058556213974953, 0.02484607696533203, -0.008076162077486515, 0.11543603986501694, -0.09928212314844131, 0.014575257897377014, -0.13289301097393036, 0.03725479543209076, 0.02733907476067543, 0.05296066775918007, 0.07386483252048492, 0.13862250745296478, -0.04427849501371384, 0.020426586270332336, 0.061682380735874176, -0.00608281372115016, 0.07446803152561188, 0.000985033460892737, 0.04611298441886902, -0.007760533131659031, -0.015594147145748138, 0.01892686076462269, -0.009490832686424255, 0.004719190765172243, 0.05105368420481682, 0.011018947698175907, 0.0476580373942852, -0.014908713288605213, -0.05195339024066925, -0.13203305006027222, -0.12086747586727142, 0.01523915957659483, -0.034283597022295, -0.0033282700460404158, 0.020081233233213425, -0.10669977217912674, 0.0071111926808953285, -0.09937787055969238, -0.02120632864534855, 0.16763554513454437, 0.09588854014873505, 0.07734852284193039, -0.04705220088362694, 0.06421910226345062, 0.059628378599882126, 0.020843826234340668, -0.06463829427957535, -0.08311653882265091, -0.016955439001321793, -0.05513396114110947, -0.14880484342575073, 0.006289827637374401, 0.04167315363883972, -0.020001694560050964, 0.04133562743663788, 0.00021816231310367584, 0.1230301558971405, 0.009391147643327713, 0.06729322671890259, -0.04392143711447716, 0.00036315619945526123, 0.04009517654776573, 0.005812378600239754, -0.09213414043188095, 0.16909022629261017, -0.07257529348134995, -0.0075977519154548645, -0.07521232962608337, 0.04308604076504707, 0.021421369165182114, 0.035615094006061554, 0.0656299889087677, -0.011248724535107613, 0.039132215082645416, 0.007880259305238724, -0.06132735684514046, -0.05251411348581314, -0.01473836787045002, 0.11450555920600891, 0.044348061084747314, -0.03656679391860962, -0.012866070494055748, 0.03362778201699257, 0.003568953601643443, 0.016387097537517548, -0.03316863998770714, -0.01197296753525734, -0.027152281254529953, -0.10133783519268036, 0.02279135026037693, -0.0227065347135067, -0.04194936901330948, -0.04667188599705696, -0.024256648495793343, 0.04420700669288635, -0.05444301292300224, 0.012363672256469727, 0.11931701749563217, 0.09175068885087967, -0.04730333760380745, -0.12182208150625229, 0.005896807182580233, 0.0007441983325406909, -0.024924129247665405, 0.05336105450987816, 0.022696012631058693, 0.02204754576086998, 0.07075344771146774, -0.0021605114452540874, 0.01561206765472889, -0.010706131346523762, 0.058987122029066086, 0.11285543441772461, 0.001903472002595663, 0.042694251984357834, -0.08789262175559998, -0.009518365375697613, -0.0032022634986788034, 0.025277607142925262, -0.007154176943004131, 0.05217508226633072, 0.02653128281235695, 0.01919388771057129, 0.028850357979536057, -0.023359820246696472, 0.08898774534463882, -0.0824672132730484, -0.017807703465223312, -0.008544153533875942, -0.06482372432947159, 0.028443247079849243, -0.029874179512262344, 0.013220055028796196, 0.06049376726150513, 0.09806904196739197, 0.048267584294080734, 0.08735300600528717, -0.08481553196907043, -0.04714535176753998, 0.08268515765666962, -0.1318989396095276, 0.05005766451358795, -0.01964692771434784, -0.07983379065990448, -0.08511929214000702, -0.02998553216457367, 0.10618782043457031, 0.0520838126540184, -0.03447404503822327, 0.09368870407342911, 0.06931157410144806, 0.0389474593102932, -0.007254456635564566, 0.03756050020456314, -0.12943926453590393, 0.10520505905151367, 0.147792249917984, 0.024509761482477188, -0.09888263791799545, 0.10951738804578781, 0.10569741576910019, -0.018142027780413628, 0.03552183508872986, 0.008033191785216331, -0.11126206070184708, -0.032302144914865494, -0.09431389719247818, 0.0678136795759201, -0.11103222519159317, 0.030236203223466873, 0.0544317252933979, -0.009836914949119091, -0.01239797007292509, 0.01739359274506569, -0.009835101664066315, 0.11409175395965576, -0.02635294198989868, -0.09822020679712296, -0.10662546753883362, -0.06877453625202179, 0.019700031727552414, 0.07156890630722046, 0.0006342957494780421, -0.012811022810637951, -0.05815828591585159, 0.0116912592202425, -0.054124996066093445, 0.06656324863433838, -0.0039244783110916615, -0.012425295077264309, -0.06198808178305626, 0.08998565375804901, -0.005786315072327852, -0.12661685049533844, 0.029564866796135902, 0.08829432725906372, 0.10044567286968231, -0.062101900577545166, -0.01612752676010132, -0.10282464325428009, 0.06903260201215744, -0.10082484781742096, -0.047238629311323166, 0.06412717700004578, 0.06495626270771027, -0.07451776415109634, 0.04394084960222244], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThis comparator 'AnyValue' is not supported. For statement 'is'\uff0c only support compare with 'None'\uff0c 'False' or 'True'\u201d\u600e\u4e48\u529e\uff1f": [-0.06456689536571503, 0.11254717409610748, 0.07102407515048981, 0.06767065823078156, -0.08448733389377594, -0.06235454976558685, -0.029108179733157158, 0.039377227425575256, 0.009802374057471752, 0.105753093957901, -0.05382191017270088, 0.04141698777675629, 0.07224541157484055, 0.027406755834817886, -0.05700821802020073, 0.08839081227779388, 0.14253902435302734, 0.03610551357269287, -0.04577500745654106, 0.1275968700647354, 0.009681145660579205, -0.021062131971120834, 0.10256148129701614, -0.00196863547898829, -0.0069458624348044395, 0.08906850963830948, 0.03227054700255394, -0.06745298951864243, 0.028158482164144516, -0.02760970965027809, 0.030816849321126938, 0.007405186537653208, -0.06711545586585999, -0.012394558638334274, -0.06682418286800385, -0.016444042325019836, -0.025655360892415047, 0.1319936364889145, -0.05697445943951607, -0.01586092635989189, 0.07708725333213806, 0.061904024332761765, -0.05948498845100403, 0.051376231014728546, -0.0713299885392189, -0.07899153232574463, -0.14509351551532745, -0.021382350474596024, -0.01508827693760395, 0.0019265986047685146, 0.0127180814743042, 0.09412112087011337, 0.04597267881035805, 0.0003549540415406227, -0.0981956496834755, 0.027977297082543373, 0.11314830183982849, 0.02960020676255226, 0.03247595950961113, -0.036212705075740814, -0.008932304568588734, -0.005006538704037666, -0.059097737073898315, -0.03931503742933273, -0.09769758582115173, -0.019863998517394066, -0.01704440452158451, -0.05356696993112564, -0.04686800017952919, -0.009924964979290962, -0.026843225583434105, -0.0302265752106905, -0.016480065882205963, 0.05506683886051178, 0.008216422982513905, -0.0025669950991868973, -0.0020172419026494026, -0.005947232712060213, -0.034079261124134064, 0.03693076968193054, -0.007602247409522533, 0.04790930077433586, 0.11673840135335922, -0.05701952055096626, -0.0861210748553276, -0.03383554518222809, -0.005029967520385981, 0.05619940906763077, -0.10994872450828552, 0.05821820721030235, 0.02480587549507618, -0.033345773816108704, -0.15809570252895355, 0.058639172464609146, 0.07567809522151947, -0.06503408402204514, -0.05555187538266182, 0.023200687021017075, -0.12336600571870804, 0.02911168336868286, 0.11868609488010406, -0.007418395951390266, 0.007096748799085617, 0.0311305932700634, 0.021673303097486496, -0.08259441703557968, -0.005880727432668209, 0.01591324619948864, 0.07413531094789505, 0.09866921603679657, 0.1036200150847435, 0.008851272985339165, 0.019487915560603142, 0.024164272472262383, 0.006942685693502426, 0.10144347697496414, 0.010157589800655842, 0.023872142657637596, -0.06889458745718002, 0.09841519594192505, 0.11498211324214935, -0.011169441975653172, 0.03608512878417969, 0.0698624700307846, 0.06391004472970963, -0.06834685802459717, 0.15121494233608246, -0.10240273922681808, -0.07765036076307297, -0.10730823874473572, 0.09825253486633301, -0.010811680927872658, 0.06473448872566223, -0.11460541188716888, -0.11310010403394699, 0.06698241084814072, -0.03902159631252289, -0.043427251279354095, 0.0461336113512516, 0.23108935356140137, 0.041455384343862534, -0.12484696507453918, 0.09085491299629211, -0.005796512588858604, 0.042376141995191574, 0.07946944981813431, -0.04294817894697189, -0.09959535300731659, 0.018245255574584007, -0.03838101029396057, 0.13957691192626953, -0.003762205131351948, 0.010664379224181175, 0.0643383339047432, 0.0420735739171505, 0.018456915393471718, 0.046437181532382965, 0.01613757759332657, -0.0467631071805954, -0.07459602504968643, -0.01595398224890232, 0.02868902124464512, 0.07153280079364777, 0.03882160037755966, -0.0660305917263031, -0.012567449361085892, -0.016832659021019936, 0.03369453176856041, -0.052141062915325165, -0.06483733654022217, -0.009750224649906158, -0.03937014192342758, -0.018942905589938164, 0.010726938024163246, 0.0684577152132988, 0.014727866277098656, 0.1128356084227562, -0.038591157644987106, 0.018364859744906425, -0.052921880036592484, 0.01669524423778057, -0.0700882077217102, 0.012748533859848976, -0.14837712049484253, -0.0019140406511723995, 0.004197330679744482, 0.08295673131942749, 0.0583806186914444, 0.11036812514066696, -0.12920184433460236, -0.03618481755256653, 0.060580089688301086, -0.004780587740242481, 0.07793010026216507, -0.03337812423706055, 0.022944621741771698, -0.01610765978693962, -0.03309807926416397, -0.015651924535632133, -0.01699771173298359, -0.0031881374306976795, -0.04949529096484184, -0.025840407237410545, -0.02063593454658985, 0.005142674781382084, 0.02827352285385132, -0.08067311346530914, -0.18096987903118134, -0.05507250502705574, -0.019364062696695328, 0.09420622885227203, 0.09288489818572998, -0.0573900081217289, 0.055737078189849854, -0.11192815005779266, -0.029163045808672905, 0.15299974381923676, 0.05007151514291763, 0.08400017023086548, -0.04240268096327782, 0.042447954416275024, 0.0542910099029541, 0.05482421815395355, -0.04938226938247681, -0.13580644130706787, -0.027796359732747078, -0.027634283527731895, -0.09068755060434341, -0.038122717291116714, 0.06428515911102295, -0.05973898991942406, 0.04295957833528519, -0.03464560955762863, 0.1245945617556572, -0.009210344403982162, 0.06826770305633545, -0.0830187052488327, -0.02180659957230091, 0.11114540696144104, -0.028643598780035973, -0.0002724975347518921, 0.11654025316238403, -0.1091558039188385, 0.018303126096725464, -0.08041584491729736, 0.055116187781095505, 0.0025617647916078568, 0.06316779553890228, 0.0036775676999241114, -0.06760194897651672, 0.0340360552072525, -0.017501620575785637, 0.0037282737903296947, -0.052872732281684875, -0.055620644241571426, 0.12135956436395645, 0.0707763284444809, 0.020885199308395386, 0.012761250138282776, -0.02965492755174637, 0.07106851041316986, 0.02333017997443676, -0.016485128551721573, 0.0007793752592988312, -0.011379345320165157, -0.052953071892261505, 0.010485026985406876, -0.02584724687039852, -0.023221679031848907, -0.049422960728406906, 0.01105652004480362, 0.06767074763774872, -0.06029718369245529, 0.039855021983385086, 0.1686006784439087, 0.05303157493472099, -0.09011431038379669, -0.10385316610336304, 0.08879724144935608, 0.05727752670645714, -0.009955144487321377, 0.010867060162127018, -0.011687936261296272, 0.03711668774485588, 0.05349360778927803, -0.022240540012717247, 0.009328750893473625, -0.010223537683486938, 0.0852966383099556, 0.17468154430389404, -0.07369822263717651, -0.029495369642972946, -0.09788209944963455, 0.02755024842917919, 0.05866291746497154, 0.08747205883264542, -0.01026899553835392, 0.13099105656147003, -0.006170950829982758, -0.003396201878786087, -0.018417851999402046, -0.015562660060822964, 0.0921773910522461, -0.12537887692451477, 0.026097631081938744, -0.028016166761517525, -0.12832650542259216, 0.007486073300242424, 0.003478660248219967, -0.017625004053115845, 0.008442030288279057, 0.14133137464523315, 0.06145145371556282, 0.044048186391592026, -0.005796382203698158, 0.0019873727578669786, 0.008907213807106018, -0.08672836422920227, 0.09593269228935242, -0.09371553361415863, -0.011404444463551044, -0.06839951872825623, -0.009931684471666813, 0.0954095870256424, 0.04097038879990578, -0.08045469969511032, 0.08524110168218613, 0.014203613623976707, 0.03485288470983505, -0.07908035069704056, 0.019676171243190765, -0.10921827703714371, 0.10626556724309921, 0.12941762804985046, 0.0820227563381195, -0.12309721857309341, 0.06924538314342499, 0.14121028780937195, -0.020008431747555733, 0.07508396357297897, 0.004359255079180002, -0.06848783791065216, -0.00677157286554575, -0.05509154871106148, 0.074769988656044, 0.004789110738784075, 0.061495341360569, 0.08849306404590607, 0.04165041074156761, 0.007823838852345943, 0.021563662216067314, -0.041894569993019104, 0.12695175409317017, -0.008830221369862556, -0.04768122360110283, -0.11094728857278824, -0.04312071204185486, -0.006422282196581364, 0.013419370166957378, 0.03533542901277542, -0.01876414380967617, -0.013512522913515568, 0.031084192916750908, -0.04737040400505066, 0.07825133204460144, -0.08258799463510513, -0.047613028436899185, -0.05994970351457596, 0.05073653161525726, -0.06310266256332397, -0.11104606091976166, -0.019025659188628197, 0.13217473030090332, 0.0743425041437149, -0.045034296810626984, -0.06461918354034424, -0.15426327288150787, 0.10084398090839386, -0.04563607648015022, -0.0342901274561882, 0.05827959626913071, 0.0331779345870018, -0.16833548247814178, -0.019142545759677887], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cMindSpore does not support comparison with operators more than one now\uff0c ops size =2\u201d\u600e\u4e48\u529e\uff1f": [-0.04890626296401024, 0.08375812321901321, 0.0005334168090485036, -0.02134830877184868, -0.08562611788511276, -0.02666489966213703, -0.004967913031578064, 0.067542664706707, -0.030352085828781128, 0.08735267072916031, -0.07884575426578522, -0.0280095636844635, 0.07499847561120987, 0.08315056562423706, -0.14639174938201904, 0.09285495430231094, 0.17224042117595673, 0.027076007798314095, -0.20113664865493774, 0.09760566800832748, -0.019540276378393173, -0.023643532767891884, 0.13931843638420105, -0.040306176990270615, -0.06019245833158493, 0.11387554556131363, -0.041320763528347015, 0.03277171030640602, 0.023253099992871284, -0.05137224495410919, 0.018858671188354492, -0.0049928887747228146, -0.05713587626814842, -0.0291741993278265, -0.04424352943897247, -0.02210492640733719, -0.13258658349514008, 0.05520861968398094, -0.013846349902451038, 0.016037430614233017, -0.033870477229356766, 0.0870545282959938, 0.009553942829370499, 0.04227135330438614, -0.062127627432346344, -0.07335959374904633, -0.15325039625167847, -0.02536073513329029, -0.0319993793964386, 0.017364248633384705, -0.08778026700019836, 0.1010013222694397, -0.016877274960279465, -0.08038268238306046, -0.04503995552659035, 0.03521599993109703, -0.009262073785066605, -0.042111776769161224, 0.07324379682540894, -0.07868942618370056, -0.011111662723124027, 0.07272261381149292, -0.08803927898406982, -0.06756135076284409, -0.1583785116672516, -0.022920839488506317, -0.13074985146522522, -0.12637943029403687, -0.08940555155277252, 0.0030500085558742285, 0.01046375185251236, 0.034387581050395966, -0.013527116738259792, 0.047095246613025665, 0.06736103445291519, 0.02437964454293251, 0.012723534367978573, 0.022767778486013412, -0.09262356907129288, 0.027153216302394867, 0.035729896277189255, 0.0012814321089535952, 0.07518740743398666, 0.017301587387919426, -0.15232115983963013, -0.05972670763731003, -0.018079478293657303, 0.05257566273212433, -0.02927435003221035, 0.13773362338542938, -0.0030638815369457006, 0.03423186391592026, -0.18159142136573792, 0.05516617000102997, 0.03356963023543358, -0.046716101467609406, -0.13850605487823486, -0.05240607634186745, -0.18913596868515015, -0.004007688723504543, 0.023758092895150185, -0.06960587948560715, -0.07621951401233673, 0.06221388280391693, 0.008319783955812454, -0.09573999792337418, 0.02411658875644207, 0.004714301321655512, 0.07983484864234924, 0.0431690439581871, 0.12679149210453033, 0.024241339415311813, 0.06858428567647934, 0.03323782980442047, 0.0364125594496727, 0.05825372785329819, -0.026642797514796257, 0.041547149419784546, -0.07840576767921448, 0.08910869061946869, 0.10105982422828674, -0.13972198963165283, 0.0023070680908858776, 0.08872853219509125, 0.07173319160938263, -0.08638423681259155, 0.03213178366422653, -0.08754541724920273, -0.14664356410503387, -0.11806771904230118, 0.11421045660972595, -0.08350172638893127, 0.11988001316785812, -0.12916874885559082, -0.16493496298789978, 0.10000047832727432, -0.00728942034766078, -0.03618768975138664, -0.07108785957098007, 0.14208684861660004, 0.011951816268265247, -0.121109738945961, 0.09123716503381729, -0.07132972776889801, 0.07226820290088654, 0.04159418120980263, -0.07105635106563568, -0.09720125794410706, 0.007938445545732975, -0.022054290398955345, 0.041583336889743805, 0.014549311250448227, -0.07871789485216141, 0.12534451484680176, -0.05919981002807617, 0.04528193175792694, 0.0020032478496432304, -0.040572188794612885, -0.021188978105783463, -0.03833523020148277, 0.009325273334980011, -0.0017198624555021524, 0.05804850906133652, 0.026069527491927147, -0.03662421181797981, -0.05085889250040054, 0.05474673584103584, -0.017222121357917786, -0.06156668812036514, -0.0812629908323288, -0.04492287337779999, -0.06767324358224869, -0.02049287036061287, 0.04746801033616066, 0.027706773951649666, 0.028217630460858345, 0.0975002571940422, -0.10906904935836792, -0.015325075015425682, 0.002469599712640047, 0.012659171596169472, -0.11278331279754639, -0.025322360917925835, -0.09837719053030014, 0.08435694873332977, -0.009663142263889313, 0.05912960693240166, 0.018723882734775543, 0.04651615768671036, -0.13750769197940826, -0.029998626559972763, 0.08028458058834076, 0.034455932676792145, 0.07362574338912964, 0.05474752560257912, 0.04729054495692253, -0.07638097554445267, -0.04701821506023407, -0.03584100678563118, -0.033974386751651764, -0.029620280489325523, 0.02238016575574875, 0.010650848969817162, 0.06867393106222153, -0.003977713640779257, 0.004383580759167671, -0.1122259721159935, -0.06814560294151306, -0.06141459941864014, -0.04653056338429451, 0.12345365434885025, 0.005688318982720375, -0.013083143159747124, -0.046268269419670105, -0.06978292763233185, -0.01850656419992447, 0.12133030593395233, 0.05364765226840973, -0.009880929253995419, -0.07031557708978653, 0.06058530509471893, 0.07285815477371216, -0.027320360764861107, -0.12797459959983826, -0.15217915177345276, -0.02231922373175621, -0.04176579788327217, -0.059242404997348785, -0.07120117545127869, 0.0796881690621376, -0.07114007323980331, 0.013174016028642654, 0.07266509532928467, 0.12579403817653656, -0.0388026162981987, 0.10765346139669418, 0.02384912222623825, -0.02705065906047821, 0.0776795968413353, 0.01784849353134632, -0.15228058397769928, 0.059337835758924484, -0.10540951043367386, 0.0332995280623436, -0.061891838908195496, 0.09034280478954315, 0.038210202008485794, 0.06130955368280411, 0.022311463952064514, -0.012598235160112381, 0.07489002496004105, -0.0051971543580293655, -0.060482870787382126, 0.004410342779010534, -0.04291977733373642, 0.029315443709492683, 0.1436065137386322, -0.05225681886076927, -0.01063765212893486, 0.04966524988412857, -0.001069533172994852, 0.09299037605524063, -0.01152154989540577, -0.037566378712654114, -0.04339536279439926, -0.01892773248255253, 0.018410054966807365, -0.05301685631275177, 0.001363042858429253, -0.08274179697036743, 0.0036566522903740406, 0.0645204409956932, -0.04817289486527443, 0.047104764729738235, 0.11314793676137924, 0.11560823023319244, 0.04022113233804703, -0.20309758186340332, 0.026296600699424744, 0.05932523310184479, -0.0013214845675975084, -0.0038910498842597008, -0.01723245158791542, -0.018866024911403656, 0.03563806042075157, 0.0014658187283203006, 0.05525129288434982, -0.013866180554032326, 0.05797399580478668, 0.08361590653657913, -0.13574445247650146, 0.03664776682853699, -0.05329097434878349, 0.09893590211868286, 0.00414910027757287, 0.10116060078144073, 0.1112782210111618, -0.017135106027126312, 0.025339264422655106, 0.015191794373095036, -0.0296391062438488, -0.031410787254571915, 0.13645271956920624, -0.08504468947649002, -0.047000281512737274, 0.05884907394647598, -0.08308906853199005, 0.0962432399392128, -0.009765727445483208, -0.020516429096460342, 0.07082116603851318, 0.11405002325773239, 0.039001185446977615, 0.0595003217458725, -0.11092759668827057, -0.08064347505569458, 0.09117963910102844, -0.18163447082042694, 0.06161276623606682, -0.05269964784383774, 0.0186802688986063, 0.022526178508996964, -0.049723103642463684, 0.050020936876535416, 0.09745141863822937, -0.12288393825292587, -0.008098496124148369, 0.06168990209698677, 0.03826383873820305, -0.05210436135530472, 0.013446612283587456, -0.14608508348464966, 0.12469542771577835, 0.04767640680074692, -0.05119650810956955, -0.0665503591299057, 0.07757565379142761, 0.1169222965836525, 0.013676749542355537, 0.08532441407442093, 0.05639177933335304, -0.04554300382733345, -0.0163772851228714, -0.08046597987413406, 0.09602458775043488, -0.040650397539138794, 0.05050763860344887, 0.0027047591283917427, -0.08999751508235931, -0.10004444420337677, 0.011819449253380299, -0.046872254461050034, 0.07232572138309479, -0.010572363622486591, -0.04790196940302849, -0.12757626175880432, -0.07466787844896317, -0.014986447058618069, -0.006740401033312082, 0.00871251430362463, -0.12358053028583527, -0.008238591253757477, -0.025921693071722984, -0.04449385777115822, -0.09152740985155106, -0.07063077390193939, -0.05386326089501381, -0.10773882269859314, 0.20923784375190735, -0.07721999287605286, -0.04423864930868149, 0.024759642779827118, 0.07648599147796631, 0.07126621156930923, -0.07053497433662415, -0.08575017750263214, -0.14198996126651764, 0.05878661200404167, 0.04304977133870125, -0.0006295515922829509, 0.055224861949682236, 0.10044628381729126, -0.15024623274803162, 0.04710695147514343], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cTypeError: The function construct need 1 positional argument and 0 default argument\uff0c but provided 2\u201d\u600e\u4e48\u529e\uff1f": [-0.050778135657310486, 0.12194643914699554, 0.09738972038030624, 0.06382866203784943, -0.07191421836614609, -0.03889962658286095, -0.003216414712369442, 0.05772232636809349, 0.010609086602926254, 0.09544727206230164, -0.03257051855325699, 0.05777483433485031, 0.05695471912622452, 0.055729322135448456, -0.06826010346412659, 0.11125367879867554, 0.10276555269956589, -0.03507204353809357, -0.0637945830821991, 0.07709475606679916, 0.02927768975496292, -0.010737872682511806, 0.13531464338302612, -0.007337781134992838, -0.04471263661980629, 0.06021440029144287, 0.027793938294053078, -0.0038698662538081408, 0.03749183565378189, -0.06210564076900482, 0.05344038084149361, 0.04344028979539871, -0.08685633540153503, 0.011573907919228077, -0.05615128576755524, -0.022848516702651978, -0.03309226036071777, 0.09906288236379623, -0.03446682170033455, -0.016295891255140305, 0.022285284474492073, 0.059834711253643036, -0.02764672040939331, 0.05108250305056572, -0.11145633459091187, -0.027195127680897713, -0.1450604945421219, -0.01648666337132454, 0.018510982394218445, -0.006785627454519272, 0.002829013392329216, 0.12764282524585724, -0.011224169284105301, -0.03491721674799919, -0.07784079015254974, -0.0007278862176463008, 0.06692084670066833, -0.04297506436705589, 0.09167724847793579, -0.02967265248298645, 0.040078844875097275, 0.06271263211965561, -0.05490872263908386, -0.03361009061336517, -0.14261338114738464, 0.002253655344247818, -0.07528596371412277, -0.08474159240722656, 0.0040534380823373795, -0.016129247844219208, -0.002345466520637274, -0.06158136576414108, 0.011786273680627346, 0.08168908953666687, 0.015714524313807487, 0.024733399972319603, 0.008576767519116402, 0.03018489107489586, -0.02050282061100006, -0.0035503115504980087, 0.04478013515472412, 0.05408830568194389, 0.0833149328827858, -0.04596376046538353, -0.09985668957233429, -0.032037489116191864, -0.0699707418680191, 0.030871853232383728, -0.09351645410060883, 0.0626850500702858, -0.001761685125529766, 0.029187431558966637, -0.13341931998729706, 0.09953583776950836, 0.08307020366191864, -0.05334599316120148, -0.10666859149932861, 0.030148636549711227, -0.08926620334386826, -0.006713676732033491, 0.10270103812217712, -0.03722459077835083, -0.02830662950873375, 0.0010080008069053292, 0.053818125277757645, -0.12485019117593765, -0.010588324628770351, -0.03338126838207245, 0.03801148757338524, 0.06570228189229965, 0.0975966602563858, -0.0034277900122106075, -0.0067705633118748665, -0.032759685069322586, 0.011805345304310322, 0.07266873866319656, 0.05641009286046028, 0.014376644045114517, -0.07827425748109818, 0.08729991316795349, 0.140351802110672, -0.07682522386312485, 0.0003897920250892639, 0.07965157181024551, 0.06157655641436577, -0.051343467086553574, 0.11030426621437073, -0.14736540615558624, -0.1408732533454895, -0.11612676084041595, 0.12539292871952057, -0.08049400895833969, 0.10562948882579803, -0.08310937881469727, -0.1038905531167984, 0.07364725321531296, -0.028116745874285698, -0.03956805169582367, -0.03937352076172829, 0.21422210335731506, 0.005192531272768974, -0.20388777554035187, 0.05608111247420311, 0.01659337431192398, 0.090988390147686, 0.11575768142938614, -0.0838911160826683, -0.1016145795583725, 0.011392751708626747, -0.06807119399309158, 0.09779122471809387, 0.03425416722893715, 0.0007575264316983521, 0.1182517558336258, -0.03555440157651901, 0.09215972572565079, 0.0885680690407753, -0.014862817712128162, -0.02831764705479145, -0.022542955353856087, -0.039104558527469635, 0.03606528416275978, 0.02250620536506176, 0.02770182117819786, -0.09727926552295685, -0.008320164866745472, 0.025400735437870026, 0.042438313364982605, -0.07214556634426117, -0.046967025846242905, -0.03771158680319786, -0.038351915776729584, -0.05760277062654495, -0.02758600190281868, 0.08152268081903458, 0.05425889045000076, 0.17206507921218872, -0.02221088856458664, 0.002393561415374279, 0.07556016743183136, 0.06301070004701614, -0.10235241055488586, 0.0326044075191021, -0.12925294041633606, 0.05214892327785492, -0.0073990290984511375, 0.10140642523765564, 0.05208967998623848, 0.0888436958193779, -0.07302091270685196, -0.006946991663426161, 0.07803614437580109, -0.009785061702132225, 0.02280302345752716, -0.014900840818881989, 0.07412250339984894, -0.032621484249830246, -0.07618625462055206, -0.006314720958471298, -0.03565492853522301, -0.031200338155031204, 0.00043247637222521007, -0.019221143797039986, 0.05109533295035362, -0.01672147773206234, -0.06619596481323242, -0.14558467268943787, -0.10751195251941681, -0.03345939517021179, -0.02151288092136383, 0.06511884927749634, 0.06385591626167297, -0.08860283344984055, 0.0008194761467166245, -0.09413361549377441, 0.03041141852736473, 0.16822440922260284, 0.05344390124082565, 0.04859739542007446, -0.06960532069206238, 0.058783672749996185, 0.07719946652650833, -0.013401588425040245, -0.09568435698747635, -0.1184944286942482, -0.057656168937683105, -0.05454074963927269, -0.11310318112373352, -0.047219883650541306, 0.04704032093286514, -0.025792431086301804, 0.03378655016422272, 0.017447596415877342, 0.13604791462421417, 0.0002883477136492729, 0.04146832600235939, -0.058035753667354584, -0.04931522160768509, 0.08843676000833511, 0.01579795964062214, -0.026594052091240883, 0.10087813436985016, -0.028771985322237015, 0.01450787577778101, -0.0435326024889946, 0.09284993261098862, 0.006794902961701155, 0.04847706854343414, 0.02239726297557354, -0.03489230200648308, 0.06325877457857132, -0.02429596520960331, -0.0773167833685875, -0.0506226010620594, -0.040652722120285034, 0.09910807758569717, 0.09233048558235168, -0.04510047286748886, 0.00799532700330019, -0.012540804222226143, 0.03789537400007248, 0.0233469121158123, -0.011989639140665531, -0.02604682743549347, -0.015351962298154831, -0.07143710553646088, 0.0249087605625391, -0.04715462774038315, -0.0477239191532135, 0.004695845767855644, 0.015460384078323841, 0.07983087748289108, -0.08139082789421082, 0.050873901695013046, 0.11621112376451492, 0.12040413916110992, -0.03461270034313202, -0.13096962869167328, 0.017637155950069427, 0.041597165167331696, -0.044646672904491425, 0.03019222803413868, -0.012906409800052643, -0.026802748441696167, 0.020677123218774796, -0.03281531110405922, -0.019445572048425674, -0.02959280274808407, 0.08574114739894867, 0.13768954575061798, -0.010445347055792809, 0.02173636108636856, -0.04437248036265373, 0.05759822577238083, 0.010868888348340988, 0.0720229297876358, 0.04832308366894722, 0.09490115195512772, 0.016354132443666458, -0.027415212243795395, -0.07163157314062119, -0.05052546039223671, 0.09221262484788895, -0.09858512133359909, -0.029919952154159546, 0.06365644931793213, -0.036626625806093216, 0.003758705221116543, -0.03312116488814354, 0.01177543867379427, 0.04577028751373291, 0.12058259546756744, 0.06557402014732361, 0.10819675028324127, -0.06625454127788544, -0.06711731106042862, 0.032512832432985306, -0.14173591136932373, 0.05171271413564682, -0.0387197807431221, -0.035485632717609406, -0.047653134912252426, -0.07118693739175797, 0.08458521962165833, 0.06110099330544472, -0.06289604306221008, 0.07815125584602356, 0.053040653467178345, 0.0013824263587594032, 0.06477316468954086, 0.03222166374325752, -0.13917624950408936, 0.10115225613117218, 0.12712039053440094, -0.019346831366419792, -0.10432568192481995, 0.08306141942739487, 0.1191180944442749, 0.02934597246348858, 0.046336911618709564, 0.06743623316287994, -0.09524327516555786, -0.051068611443042755, -0.10358717292547226, 0.07495705783367157, -0.08251699805259705, 0.03561830520629883, 0.09783497452735901, -0.014980882406234741, -0.03454418107867241, 0.014089603908360004, -0.04125948250293732, 0.11805462837219238, -0.006055035162717104, -0.05894169956445694, -0.0989978089928627, -0.026308313012123108, 0.023267550393939018, 0.0626760870218277, 0.0088930893689394, -0.05764826014637947, 0.012176822870969772, -0.013108327984809875, -0.03318304568529129, 0.05994849279522896, -0.010272168554365635, -0.05368844047188759, -0.02644088864326477, 0.15829770267009735, -0.03721237555146217, -0.0716608390212059, -0.011160401627421379, 0.06294282525777817, 0.07572657614946365, -0.08376973122358322, -0.06970386952161789, -0.12259383499622345, 0.09467416256666183, -0.10274694859981537, -0.05040789023041725, 0.05913391336798668, 0.10702908039093018, -0.10863906890153885, -0.0036224620416760445], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cType Join Failed\u201d\u6216\u201cShape Join Failed\u201d\u600e\u4e48\u529e\uff1f": [0.008746666833758354, 0.038863781839609146, 0.08838936686515808, 0.015478385612368584, 0.01793755777180195, -0.07604485750198364, 0.02314039319753647, 0.08652240037918091, -0.01477376651018858, 0.034313324838876724, 0.019710006192326546, 0.07030754536390305, -0.003870950313284993, 0.0436248779296875, -0.09221169352531433, 0.06604370474815369, 0.12280677258968353, -0.003977447282522917, -0.030580010265111923, 0.07965952157974243, 0.029249586164951324, 0.017185643315315247, 0.11403835564851761, 0.0032756500877439976, -0.03483262658119202, 0.03701073303818703, 0.0033599198795855045, 0.035299595445394516, 0.04343065619468689, 0.00984269566833973, 0.04928142949938774, 0.03559323772788048, -0.08891193568706512, -0.012930088676512241, 0.019548507407307625, -0.0819597914814949, -0.059190478175878525, 0.03163126856088638, -0.08444835990667343, -0.02521020546555519, 0.09165140986442566, 0.08987423777580261, -0.03281131386756897, 0.20446494221687317, -0.09560487419366837, -0.05562867224216461, -0.14227348566055298, -0.07443536072969437, 0.02854183502495289, -0.009405562654137611, -0.12893949449062347, 0.08247726410627365, -0.03788800165057182, -0.061390090733766556, -0.0031503706704825163, -0.06417357921600342, 0.04447154700756073, -0.03992485627532005, 0.016536705195903778, -0.02210763841867447, 0.07668063789606094, -0.0074585299007594585, -0.024785323068499565, 0.0007453354774042964, -0.12392684072256088, -0.018236733973026276, -0.004657421261072159, -0.038052357733249664, 0.00634711654856801, 0.021780673414468765, -0.026943255215883255, -0.039266638457775116, -0.06339657306671143, 0.054836779832839966, 0.02951904386281967, 0.029076822102069855, -0.05002101510763168, -0.02730235829949379, -0.04194275662302971, -0.005121301859617233, 0.032019056379795074, 0.06434332579374313, 0.04965273290872574, -0.0741647481918335, -0.09288457036018372, -0.020734652876853943, -0.094718337059021, 0.09124483168125153, -0.03288281708955765, 0.03292025998234749, 0.09520340710878372, -0.04751036688685417, -0.2237214595079422, 0.12941160798072815, 0.17827248573303223, -0.012533233501017094, -0.06680376082658768, -0.051056645810604095, -0.07089203596115112, 0.0032157357782125473, 0.07700302451848984, 0.030659306794404984, 0.015810342505574226, -0.03966069221496582, -0.014178365468978882, -0.10288769751787186, 0.05460457131266594, 0.07883886247873306, 0.04318681359291077, -0.04399259015917778, 0.09391739219427109, 0.09792681783437729, 0.02351773902773857, 0.07423210889101028, -0.11721865832805634, 0.014308204874396324, -0.04307107627391815, -0.002982864622026682, -0.10082985460758209, 0.15276792645454407, 0.1283111274242401, -0.025615882128477097, 0.028090106323361397, 0.10963171720504761, 0.06926312297582626, 0.04311753064393997, 0.07809927314519882, -0.070081926882267, -0.06310620903968811, -0.10168829560279846, 0.15374703705310822, -0.05989158898591995, 0.002343460451811552, -0.03197188675403595, -0.07286279648542404, 0.046465177088975906, -0.13155058026313782, -0.05671585351228714, -0.07544871419668198, 0.0871187224984169, 0.09482413530349731, -0.05246318504214287, 0.05461541563272476, -0.035370439291000366, 0.02751963585615158, 0.03550954908132553, -0.04986461624503136, -0.025478793308138847, 0.009254583157598972, -0.04897543787956238, 0.1324109584093094, 0.004885448142886162, -0.1041182428598404, 0.06434385478496552, -0.07885878533124924, 0.025248415768146515, -0.016852347180247307, -0.07279708981513977, -0.11412352323532104, -0.03990727663040161, -0.04941615089774132, -0.040131937712430954, 0.07047966867685318, -0.00974209327250719, 0.029858674854040146, 0.02791113220155239, -0.037468742579221725, 0.09735000133514404, -0.031087726354599, -0.014290539547801018, -0.038566578179597855, 0.050604261457920074, -0.021604547277092934, -0.044261716306209564, 0.032899267971515656, 0.04837724566459656, 0.06436074525117874, 0.0006570740370079875, -0.05347123369574547, -0.005360065959393978, 0.04722047224640846, -0.08459881693124771, -0.00012423843145370483, -0.12229322642087936, 0.12439803779125214, 0.028503768146038055, 0.07803656160831451, -0.02345067635178566, 0.07472142577171326, -0.12677425146102905, 0.03286504000425339, 0.04837370663881302, 0.007469647563993931, 0.06357716768980026, -0.016663871705532074, -0.0929289385676384, -0.02623114548623562, -0.05399348586797714, 0.04762464761734009, -0.05244484543800354, 0.07416298985481262, 0.025178121402859688, 0.03573980927467346, 0.015011734329164028, 0.023667560890316963, 0.0362045019865036, -0.12285206466913223, -0.07302029430866241, 0.03658391907811165, -0.10798956453800201, 0.04701491445302963, 0.053861118853092194, -0.020229699090123177, -0.020322229713201523, -0.08533022552728653, -0.016956541687250137, 0.09764912724494934, 0.04150671139359474, 0.026327136904001236, -0.07012645900249481, 0.1044972613453865, 0.07171257585287094, 0.024812960997223854, -0.09868701547384262, -0.11548840999603271, -0.00021361559629440308, -0.059535250067710876, -0.035142455250024796, 0.016119137406349182, 0.003555634990334511, -0.04384220391511917, 0.04375476390123367, 0.018207184970378876, 0.09900957345962524, 0.005266102962195873, 0.06316690146923065, -0.005897051189094782, 0.047375064343214035, 0.08597400784492493, -0.021656766533851624, -0.12745864689350128, -0.009479173459112644, -0.08373667299747467, 0.014392253942787647, -0.05227519944310188, 0.142152339220047, 0.00675596809014678, 0.05830724537372589, 0.0013822587206959724, -0.09392238408327103, 0.038851235061883926, -0.09597736597061157, 0.02629401721060276, -0.00018417276442050934, -0.06555076688528061, 0.020858151838183403, 0.12292861938476562, -0.05128012225031853, 0.029097074642777443, -0.058858390897512436, 0.029518727213144302, 0.037014640867710114, 0.018833711743354797, 0.0203138068318367, -0.07664816826581955, -0.0419364795088768, 0.04177587479352951, -0.056764766573905945, -0.04833391308784485, -0.07134279608726501, 0.0879073515534401, 0.03631426766514778, -0.028430934995412827, 0.0453299842774868, 0.14160920679569244, 0.07508508116006851, -0.007057227194309235, -0.11904070526361465, 0.06974807381629944, 0.0022219717502593994, 0.03586305305361748, 0.09414700418710709, 0.014408701099455357, -0.07051675021648407, 0.0673532709479332, 0.049723971635103226, -0.022306831553578377, 0.01864292472600937, 0.08529521524906158, 0.09038249403238297, -0.024400411173701286, -0.08303657919168472, -0.05904702469706535, 0.011701757088303566, -0.008178014308214188, 0.09406772255897522, 0.0843212753534317, 0.09389675408601761, -0.014274019747972488, 0.04881766811013222, 0.0951768010854721, -0.02219207212328911, 0.07055261731147766, -0.05066549405455589, 0.01981143280863762, 0.038132257759571075, -0.08614656329154968, 0.05647624656558037, 0.024499909952282906, -0.043180618435144424, -0.039552491158246994, -0.0001418301835656166, 0.016793053597211838, 0.009420285932719707, -0.09244202822446823, 0.006101483944803476, 0.06058494374155998, -0.06760784983634949, 0.06003155559301376, -0.11241940408945084, 0.06241847202181816, -0.014093615114688873, 0.006303066853433847, 0.11642275750637054, 0.09447425603866577, -0.023922046646475792, -0.016741221770644188, 0.0359317846596241, -0.027491562068462372, 0.06548940390348434, 0.0377696231007576, -0.11100021004676819, 0.08056370168924332, 0.050663240253925323, 0.07023202627897263, -0.17342284321784973, 0.03854836896061897, 0.0799628272652626, 0.030090738087892532, 0.07599197328090668, 0.032741788774728775, -0.10659261047840118, -0.027374431490898132, -0.1581411510705948, 0.029913276433944702, 0.007805885747075081, 0.09471067041158676, 0.07145179808139801, 0.00762817170470953, -0.030468886718153954, 0.07907069474458694, -0.12375257909297943, 0.09636260569095612, 0.009801126085221767, -0.045007750391960144, -0.12363530695438385, -0.12013157457113266, 0.02859480492770672, 0.08855140954256058, -0.012137610465288162, -0.05478435382246971, -0.046167463064193726, 0.0032071510795503855, -0.15158256888389587, 0.0969335213303566, 0.04710303246974945, 0.04042651876807213, 0.06347306817770004, 0.053413841873407364, -0.0035740870516747236, -0.11882952600717545, -0.01710345596075058, 0.1465216726064682, 0.021931588649749756, -0.10808383673429489, -0.08179571479558945, -0.1627759039402008, 0.08626927435398102, 0.011606894433498383, -0.10438420623540878, -0.00046452131937257946, 0.027874071151018143, -0.050532788038253784, -0.007964174263179302], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThe params of function 'bprop' of Primitive or Cell requires the forward inputs as well as the 'out' and 'dout'\u201d\u600e\u4e48\u529e\uff1f": [-0.07862163335084915, 0.01824588142335415, 0.09311811625957489, 0.034417591989040375, -0.035339973866939545, -0.06532154232263565, -0.010706458240747452, 0.11792293190956116, 0.019779471680521965, -0.014019906520843506, 0.019080808386206627, -0.024193935096263885, 0.013349667191505432, 0.005175190512090921, -0.10796630382537842, 0.14797449111938477, 0.13000236451625824, 0.04562322795391083, -0.13347375392913818, 0.10136128216981888, -0.036681730300188065, -0.007996409200131893, 0.14494135975837708, -0.008693593554198742, 0.004327219910919666, 0.11814559251070023, 0.018107334151864052, 0.005209016148000956, 0.019222209230065346, 0.050904516130685806, 0.07042298465967178, -0.024457216262817383, -0.04597838222980499, 0.095478855073452, -0.014931092038750648, -0.06409861892461777, -0.06474920362234116, 0.08014754205942154, -0.004862495232373476, -0.00015880074352025986, 0.036413758993148804, 0.014147235080599785, -0.0531042143702507, 0.1329251080751419, -0.03764929249882698, -0.017321381717920303, -0.11093205213546753, 0.01664264313876629, 0.06458379328250885, 0.054893918335437775, -0.06545987725257874, 0.10195596516132355, 0.05731334164738655, -0.03676052391529083, -0.08045130968093872, -0.021777363494038582, 0.044140372425317764, 0.019562173634767532, 0.05516501143574715, -0.02661457657814026, 0.043598487973213196, -0.026057954877614975, -0.02456006594002247, -0.05815943330526352, -0.14563068747520447, 0.01051893550902605, -0.03593045845627785, -0.05034844949841499, -0.0862945094704628, 0.010687059722840786, -0.03565360605716705, -0.04917512461543083, -0.01416100189089775, 0.06791601330041885, 0.0014234606642276049, 0.058840855956077576, -0.0694025531411171, -0.014949500560760498, -0.1319456696510315, 0.051158539950847626, 0.026158463209867477, 0.05433773621916771, -0.0012137697776779532, -0.0715094804763794, -0.095279261469841, -0.025756025686860085, -0.01183494832366705, 0.030279681086540222, -0.06651273369789124, 0.08049163222312927, -0.019103683531284332, 0.013994292356073856, -0.18886375427246094, 0.06905905157327652, 0.04034709185361862, -0.09177032113075256, -0.09910479187965393, 0.06525586545467377, -0.13915295898914337, 0.0063278223387897015, 0.07402878999710083, -0.05309285968542099, -0.02602235972881317, -0.026349568739533424, 0.0039004560094326735, -0.10508142411708832, -0.016767483204603195, 0.06064695492386818, 0.12466669082641602, 0.06726866960525513, 0.09061002731323242, 0.02970435470342636, 0.045732032507658005, 0.008980163373053074, 0.012963177636265755, 0.039572179317474365, -0.006904266774654388, -0.025049805641174316, -0.058795660734176636, 0.07538063824176788, 0.10105802863836288, -0.04909367859363556, 0.05217066407203674, 0.04861093685030937, 0.06368723511695862, -0.04918302968144417, 0.05040179565548897, -0.11965444684028625, -0.16518130898475647, -0.0502198226749897, 0.19113516807556152, -0.08622235059738159, 0.14457876980304718, -0.024487419053912163, -0.11912523210048676, 0.09116951376199722, -0.07728468626737595, 0.011428010649979115, -0.06399738788604736, 0.11130475997924805, 0.007990174926817417, -0.1718498021364212, 0.06654344499111176, -0.00031182169914245605, 0.035082027316093445, 0.0728461965918541, -0.06305880099534988, -0.14506489038467407, 0.0021543321199715137, -0.08862052112817764, 0.09009363502264023, -0.01401478424668312, 0.015326513908803463, 0.11323508620262146, 0.004517371766269207, 0.01759922318160534, 0.017515724524855614, -0.0053722732700407505, -0.035450439900159836, -0.028455128893256187, -0.00876131933182478, 0.006640835665166378, 0.029635373502969742, 0.00859477836638689, -0.0989454910159111, 0.032111573964357376, 0.025007206946611404, 0.039175231009721756, -0.08923404663801193, -0.04805479943752289, -0.059501875191926956, -0.06348838657140732, -0.037110064178705215, 0.008435087278485298, 0.056787751615047455, 0.035606749355793, 0.08783138543367386, -0.0519232340157032, -0.03260968253016472, 0.0013112418819218874, 0.04761075973510742, -0.10395032912492752, -0.042405180633068085, -0.10226306319236755, 0.05091889202594757, 0.013871127739548683, 0.04258193448185921, 0.03281122446060181, 0.14869166910648346, -0.17445804178714752, 0.011340029537677765, 0.0365423858165741, 0.004304214846342802, 0.07655355334281921, -0.07694575190544128, -0.03328201174736023, -0.031042668968439102, -0.0237877257168293, 0.05266420543193817, -0.10023250430822372, -0.024258583784103394, 0.04210604727268219, 0.018396195024251938, 0.04391246289014816, 0.028800511732697487, -0.10122963786125183, -0.1009059026837349, -0.07829359918832779, 0.05354851111769676, -0.03037354163825512, 0.09059110283851624, 0.01306911651045084, -0.057597510516643524, -0.01956970989704132, -0.1137300655245781, 0.04861057177186012, 0.11124224960803986, 0.08326989412307739, 0.06474936008453369, -0.03759489208459854, -0.0036754815373569727, -0.027506113052368164, 0.0037720974069088697, -0.0936184972524643, -0.12832240760326385, -0.07750842720270157, 0.01943492330610752, -0.08431819081306458, -0.017346680164337158, 0.04143485426902771, -0.03401617333292961, 0.04611153155565262, 0.06927341222763062, 0.16422881186008453, 0.009696679189801216, 0.08336958289146423, -0.06672056019306183, -0.05297026410698891, 0.011151786893606186, 0.05323810502886772, -0.13518524169921875, 0.08200465142726898, -0.09658461064100266, 0.007098428905010223, -0.05226639285683632, 0.08888185024261475, 0.06270725280046463, 0.0583275742828846, 0.08543066680431366, -0.03392605483531952, 0.047264523804187775, -0.03460802137851715, 0.0372251495718956, 0.061001263558864594, -0.015251616947352886, 0.026246029883623123, 0.10713450610637665, -0.07210346311330795, 0.01095860730856657, -0.04936503618955612, -0.0064190891571342945, 0.022509582340717316, -0.08132004737854004, -0.010385594330728054, 0.03539913147687912, -0.008246003650128841, 0.09456851333379745, -0.009227829985320568, -0.0034987132530659437, -0.057067450135946274, -0.003970864694565535, 0.007021672558039427, -0.10330246388912201, -0.02881627529859543, 0.06438050419092178, 0.09215214848518372, -0.021270111203193665, -0.11218400299549103, 0.021982375532388687, -0.019264787435531616, 0.02969653345644474, 0.03908151015639305, -0.03721356391906738, -0.0007433145074173808, -0.010099797509610653, -0.027050141245126724, 0.05485844239592552, -0.035148248076438904, 0.07532685995101929, 0.12264475226402283, -0.01630677841603756, -0.02293660119175911, -0.04117922484874725, 0.006219660863280296, -0.0286434143781662, 0.09062087535858154, 0.12178327888250351, 0.07217034697532654, 0.048357073217630386, 0.024493703618645668, -4.880130290985107e-06, -0.052944913506507874, 0.17067354917526245, -0.052769485861063004, -0.054025523364543915, 0.010686188004910946, -0.0711183249950409, 0.031303614377975464, 0.02237374149262905, 0.03464285656809807, 0.08526099473237991, 0.07522716373205185, 0.0608709454536438, 0.1454136222600937, -0.061285704374313354, -0.012718208134174347, 0.09242380410432816, -0.0899716466665268, 0.08109613507986069, -0.08381333947181702, 0.03700205311179161, -0.040552474558353424, -0.004662470892071724, 0.12478536367416382, 0.050449419766664505, -0.07270108163356781, -0.017781013622879982, 0.11617064476013184, -0.0322263203561306, 0.027952495962381363, 0.05407584831118584, -0.025893906131386757, 0.0432620570063591, 0.11685345321893692, 0.07074660062789917, -0.10641361027956009, 0.05155756324529648, 0.06377299129962921, 0.023722892627120018, 0.10583371669054031, 0.041181571781635284, -0.08745545148849487, -0.10609545558691025, -0.1316225826740265, 0.04571866989135742, -0.07555016130208969, 0.07581982761621475, -0.01331760361790657, 0.0010907179675996304, -0.04573123902082443, 0.05269690230488777, -0.05309009552001953, 0.10224507749080658, 0.013407056219875813, -0.0379897877573967, -0.1245042085647583, -0.03222883120179176, -0.0008601208683103323, 0.04451529681682587, 0.045417800545692444, -0.09206349402666092, 0.042076725512742996, -0.03189866989850998, -0.05269170552492142, 0.07545725256204605, -0.01982141099870205, 0.03457771986722946, -0.029694251716136932, 0.05184886232018471, 0.050071459263563156, -0.13703308999538422, 0.043530452996492386, 0.11959519237279892, -0.0004416968149598688, -0.0844549611210823, -0.051356468349695206, -0.14537999033927917, 0.05113263055682182, -0.04505957290530205, -0.1018228530883789, 0.06460387259721756, 0.038115669041872025, -0.11483214795589447, 0.024455735459923744], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cThere isn't any branch that can be evaluated\u201d\u600e\u4e48\u529e\uff1f": [-0.015146847814321518, 0.10189563781023026, -0.025797612965106964, 0.07748378813266754, -0.014775262214243412, -0.0703463926911354, 0.022340387105941772, 0.09223476052284241, -0.017234185710549355, -0.00038412027060985565, 0.019116725772619247, 0.037215061485767365, 0.018566906452178955, 0.039217304438352585, -0.05036086589097977, 0.11107702553272247, 0.09920130670070648, 0.006362933665513992, -0.0642741248011589, 0.13741205632686615, 0.0745442807674408, -0.004709457978606224, 0.14376413822174072, 0.0007294713286682963, -0.0434117428958416, 0.10272824019193649, -0.001888101571239531, 0.0008097158861346543, 0.048914309591054916, -0.01605132222175598, 0.01810837723314762, 0.06913886964321136, -0.03172028809785843, 0.06647355854511261, -0.04644406959414482, -0.03891236335039139, -0.017982598394155502, 0.03376385569572449, -0.003936825320124626, -0.08790437132120132, 0.057657141238451004, 0.02190808765590191, -0.11378281563520432, 0.13703273236751556, -0.09223783761262894, -0.0021973701659590006, -0.09886808693408966, -0.013578198850154877, 0.07413502782583237, -0.04280351847410202, -0.011760732159018517, 0.047674741595983505, 0.0030132962856441736, -0.0673697367310524, -0.05048440024256706, -0.057815276086330414, -0.0004446971870493144, 0.04441564530134201, 0.07581840455532074, -0.11970237642526627, -0.019822439178824425, 0.02879916876554489, -0.053794000297784805, -0.04914694279432297, -0.12547434866428375, 0.025327086448669434, -0.06827619671821594, -0.06734482198953629, -0.03362756595015526, -0.01937236078083515, 0.0334126278758049, -0.013119552284479141, 0.0027069002389907837, 0.01397877000272274, 0.00605935649946332, 0.08154276013374329, -0.03798189386725426, 0.00029297545552253723, -0.07395518571138382, -0.013480779714882374, -0.004989753942936659, 0.09101792424917221, 0.08029475063085556, -0.10729934275150299, -0.021762026473879814, -0.06991532444953918, -0.0511234775185585, 0.03334134817123413, -0.06500162929296494, 0.043226808309555054, -0.03888455033302307, 0.022679662331938744, -0.1990298330783844, 0.09076134860515594, 0.09826520830392838, 0.0010055458405986428, -0.07456877082586288, 0.029962582513689995, -0.17439627647399902, -0.015924299135804176, 0.05684822425246239, -0.06137961894273758, 0.01274260226637125, 0.05660247057676315, 0.05262555554509163, -0.13594111800193787, -0.007191785611212254, 0.029079800471663475, 0.06112324818968773, 0.06206716224551201, 0.13446463644504547, 0.007574804592877626, 0.12611401081085205, -0.013796791434288025, 0.02503596991300583, 0.06638883799314499, 0.02392122521996498, -0.007450584322214127, -0.07077419012784958, 0.08791646361351013, 0.04693864285945892, -0.054966069757938385, 0.037951912730932236, 0.08587605506181717, 0.058324117213487625, -0.09313741326332092, 0.08007514476776123, -0.1434374749660492, -0.10879839956760406, -0.09926024079322815, 0.07881654053926468, -0.051279470324516296, 0.07690748572349548, -0.055425673723220825, -0.15813475847244263, 0.10050895810127258, -0.014845476485788822, 0.01117590069770813, -0.06568442285060883, 0.10573684424161911, 0.05151616036891937, -0.0814022421836853, -0.0030599848832935095, 0.0025855505373328924, 0.05832173302769661, 0.07452645152807236, -0.02925095520913601, -0.1339465081691742, 0.014645285904407501, 0.0010615099454298615, 0.04346795752644539, -0.0426371805369854, -0.013306639157235622, 0.07274577766656876, -0.019167747348546982, 0.03925178200006485, 0.07078632712364197, 9.299162775278091e-05, -0.09515095502138138, -0.027233045548200607, -0.04043608903884888, 0.006286884658038616, 0.04447547718882561, 0.013753075152635574, -0.048711176961660385, -0.04808599874377251, 0.010030684061348438, -0.032139625400304794, -0.04024302214384079, -0.06989438086748123, -0.08250027894973755, -0.02436205931007862, -0.05770566314458847, -0.08565405011177063, 0.034634191542863846, 0.00870940275490284, 0.09825056791305542, -0.025151729583740234, 0.041176047176122665, 0.05076534301042557, 0.08519863337278366, -0.09393325448036194, -0.028667941689491272, -0.09087394177913666, 0.0328250415623188, 0.031241968274116516, 0.07206293940544128, 0.05927092209458351, 0.18722033500671387, -0.04977014660835266, -0.0018300758674740791, 0.05081497132778168, 0.0053375898860394955, 0.08712512254714966, -0.024461809545755386, 0.02275327406823635, -0.047294292598962784, -0.09565982222557068, -0.029987547546625137, 0.0016825518105179071, -0.02531338855624199, 0.015600867569446564, 0.013326720334589481, 0.11816027760505676, 0.014500658959150314, -0.01569213718175888, -0.06542325764894485, -0.1019010916352272, -0.008405365981161594, 0.03309888020157814, 0.09664151817560196, 0.01723106950521469, -0.05045782029628754, -0.044104792177677155, -0.0944904237985611, 0.01959407702088356, 0.17045673727989197, 0.07876475155353546, 0.06557945162057877, -0.06466833502054214, 0.028118621557950974, 0.021016038954257965, 0.03536834567785263, -0.0908162072300911, -0.1679423749446869, 0.029603008180856705, -0.07026197761297226, -0.07453438639640808, -0.0484686978161335, 0.06349875777959824, 0.026472892612218857, 0.025578409433364868, 0.022424213588237762, 0.12208592891693115, 0.002037591300904751, 0.07036074995994568, -0.060174912214279175, -0.043842852115631104, 0.018036309629678726, 0.042372994124889374, -0.07643122971057892, 0.09694681316614151, 0.011172452941536903, 0.0076124537736177444, -0.0763891413807869, 0.05344486981630325, -0.029128456488251686, 0.09523527324199677, 0.022964762523770332, -0.02473781630396843, 0.015085641294717789, -0.02839522622525692, 0.06424333155155182, -0.006175759714096785, 0.0009432134102098644, 0.08772800862789154, 0.052432168275117874, 0.04503624886274338, -0.03130984306335449, -0.03471309691667557, -0.038082726299762726, 0.004069294780492783, 0.005055645480751991, -0.005026932340115309, 0.0029577824752777815, -0.08815407007932663, 0.03397112712264061, -0.010165617801249027, 0.0026360596530139446, -0.04547792300581932, -0.007925983518362045, 0.03636881709098816, -0.05609242990612984, 0.06223633140325546, 0.12318930774927139, 0.028943710029125214, 6.273388862609863e-05, -0.0882597491145134, 0.0030340543016791344, 0.0785517692565918, 0.017443859949707985, 0.07660683244466782, 0.0018759683007374406, 0.07717975974082947, 0.08006386458873749, 0.0008039174717850983, -0.019823435693979263, 0.02859370782971382, 0.09775929898023605, 0.1311425268650055, -0.04211554676294327, -0.043076831847429276, -0.04130251333117485, -0.017347339540719986, -0.010870557278394699, 0.0195170808583498, 0.0298682302236557, 0.028902286663651466, 0.00012491922825574875, 0.011767287738621235, -0.012387936934828758, 0.004994930233806372, 0.08338769525289536, -0.10998694598674774, -0.05055859684944153, 0.023072795942425728, 0.013751865364611149, -0.002747167367488146, -0.016595391556620598, 0.044094257056713104, 0.06588957458734512, 0.1045871153473854, 0.006258786655962467, 0.011629379354417324, -0.11091134697198868, -0.013962602242827415, 0.004855207167565823, -0.1388946920633316, 0.07880392670631409, -0.052889227867126465, -0.010788893327116966, -0.057799872010946274, 0.02832299843430519, 0.0844249427318573, 0.07388143241405487, -0.08036336302757263, 0.1175406202673912, 0.07070251554250717, -0.016866670921444893, -0.01569468341767788, 0.04793902859091759, -0.0950351357460022, 0.06902311742305756, 0.10436182469129562, 0.058313414454460144, -0.1070626750588417, 0.04391870275139809, 0.13158629834651947, 0.004474072251468897, 0.07515975832939148, 0.07815348356962204, -0.12206427752971649, -0.04765733331441879, -0.13457907736301422, 0.03931120038032532, -0.08724185824394226, -0.011865716427564621, 0.061084672808647156, 0.021343354135751724, 0.008799489587545395, 0.039085619151592255, -0.06313446164131165, 0.1217333972454071, -0.0670802891254425, -0.03925120830535889, -0.09634411334991455, -0.0561651736497879, -0.030702609568834305, 0.0519612617790699, 0.02256745472550392, -0.037717487663030624, 0.07272183150053024, -0.031404849141836166, -0.07892472296953201, 0.04769382253289223, -0.03286608308553696, 0.01029642391949892, -0.06283489614725113, 0.0327288880944252, -0.03922039642930031, -0.13227932155132294, 0.013128561899065971, 0.049679335206747055, 0.06367418169975281, -0.13490241765975952, -0.03964143618941307, -0.06797339767217636, 0.07619968801736832, 0.014337585307657719, -0.05266520380973816, 0.08729379624128342, 0.010429472662508488, -0.11219076812267303, -0.0015813471982255578], "\u7f16\u8bd1\u65f6\u62a5\u9519\"Exceed function call depth limit 1000\"\u600e\u4e48\u529e\uff1f": [0.0029592912178486586, 0.07840406894683838, 0.006776025984436274, -0.01157456636428833, -0.06928423047065735, -0.0336158350110054, 0.018701918423175812, 0.033134035766124725, -0.012933006510138512, -0.032775551080703735, -0.018277525901794434, -0.05669842287898064, 0.010081402026116848, 0.03920397907495499, 0.007146711926907301, 0.11642128974199295, 0.10266391932964325, 0.03732672706246376, -0.01940292865037918, 0.07724790275096893, 0.030743835493922234, 0.06101120635867119, 0.018136754631996155, -0.0634322240948677, 0.06599179655313492, 0.05037345737218857, -0.04720660671591759, -0.07304670661687851, -0.0041864230297505856, 0.05329008027911186, 0.036856457591056824, 0.050812169909477234, -0.074549600481987, 0.0443689189851284, 0.03148651868104935, -0.05844461917877197, -0.048095833510160446, 0.09305749833583832, -0.061636991798877716, 0.0017387998523190618, 0.09944108128547668, 0.02764112316071987, -0.003146731061860919, 0.09940286725759506, -0.02271815948188305, -0.028644021600484848, -0.19166705012321472, -0.0299500972032547, -0.03309159725904465, 0.05356349050998688, -0.0588056817650795, 0.08573523163795471, 0.0071721188724040985, -0.041466809809207916, -0.04859314113855362, 0.036877840757369995, 0.00931572075933218, -0.07720302790403366, 0.1123659536242485, -0.08161645382642746, -0.05372622609138489, -0.03395216912031174, -0.03172028064727783, -0.06522393226623535, -0.07532235234975815, -0.014749336987733841, 0.027776220813393593, -0.038546882569789886, -0.1055973619222641, -0.02722596935927868, 0.02321050874888897, 0.0039545148611068726, 0.0078277001157403, 0.03132664039731026, 0.028451967984437943, 0.05667116865515709, -0.04211687669157982, 0.053634095937013626, -0.07016610354185104, 0.06885482370853424, 0.014040984213352203, -0.012558112852275372, 0.017357297241687775, -0.04550759866833687, -0.08788447082042694, -0.018404845148324966, -0.07935698330402374, 0.04009731486439705, -0.028230495750904083, 0.10504236817359924, -0.06712201237678528, -0.04250854253768921, -0.05341627821326256, 0.011510185897350311, 0.026816394180059433, -0.06564178317785263, 0.010284396819770336, -0.010676536709070206, -0.14233966171741486, 0.030354443937540054, 0.06059202924370766, -0.07199151068925858, -0.10944607853889465, 0.031140035018324852, 0.004995129071176052, -0.06310803443193436, -0.04493072256445885, 0.01758117415010929, -0.009411424398422241, 0.07194686681032181, 0.09726759791374207, 0.016148172318935394, -0.014261165633797646, 0.04001406952738762, 0.0021684246603399515, 0.07842974364757538, -0.0812101662158966, -0.09322535246610641, -0.04791456460952759, 0.07206011563539505, 0.09627682715654373, -0.07411540299654007, 0.07943589240312576, 0.04984100162982941, 0.13457517325878143, 0.028218058869242668, 0.0975598618388176, -0.07489762455224991, -0.1217295452952385, -0.06154467165470123, 0.09159345179796219, -0.06521119177341461, 0.07724626362323761, -0.04910781607031822, -0.08263563364744186, 0.06608071178197861, -0.016298308968544006, -0.041091904044151306, -0.037319593131542206, 0.09152204543352127, -0.05996186286211014, -0.12957286834716797, 0.04708028584718704, -0.05398504063487053, 0.12564799189567566, 0.042058397084474564, -0.11503861844539642, -0.05591259151697159, 0.03458823636174202, -0.005776013247668743, 0.06605523079633713, -0.05381932854652405, -0.015827177092432976, 0.06495831161737442, 0.051267750561237335, 0.01590198464691639, -0.0617237389087677, -0.01610283926129341, -0.04189865291118622, -0.07254171371459961, -0.0449235662817955, -0.034835334867239, 0.03631214052438736, 0.0029860571958124638, -0.11368545889854431, 0.02342972159385681, 0.012379267252981663, -0.010741660371422768, -0.015573110431432724, -0.05954981967806816, -0.046663396060466766, -0.0668158233165741, -0.08245967328548431, -0.09050486981868744, 0.05216870456933975, -0.050701431930065155, 0.10076581686735153, -0.005419339053332806, 0.051518961787223816, -0.03128184378147125, 0.06571824103593826, -0.12447798997163773, -0.025937668979167938, -0.08707922697067261, 0.07073566317558289, 0.03090173937380314, 0.05732833966612816, 0.1261676400899887, 0.09692738950252533, -0.17849662899971008, 0.021005582064390182, 0.013073969632387161, -0.039996854960918427, 0.07461392134428024, 0.00572380144149065, -0.04487919062376022, -0.009917167015373707, -0.08931082487106323, 0.038802724331617355, 0.026482218876481056, -0.0219978429377079, 0.04097645729780197, 0.05359319970011711, 0.06281846761703491, -0.01725536584854126, -0.03356906771659851, -0.035368867218494415, -0.19644363224506378, 0.002700899727642536, -0.012976989150047302, 0.07989224791526794, 0.058467429131269455, -0.021144330501556396, -0.054847631603479385, -0.15735523402690887, -0.05165643244981766, 0.04448055848479271, 0.07838912308216095, 0.06527205556631088, 0.029520602896809578, 0.01901957020163536, -0.0037933234125375748, 0.0661235973238945, -0.0887230932712555, -0.09527004510164261, -0.022296110168099403, -0.062337517738342285, -0.10235656052827835, 0.04715453088283539, 0.021472802385687828, -0.08899596333503723, 0.06333936750888824, 0.0031996762845665216, 0.1106044352054596, 0.0030257515609264374, 0.06388217210769653, -0.038102809339761734, 0.05258237570524216, 0.047233112156391144, -0.0023474614135921, -0.11919371783733368, 0.0708514153957367, -0.09354344755411148, 0.003701053559780121, -0.08344428241252899, 0.06321477144956589, 0.0464555025100708, 0.0533282607793808, 0.10477229207754135, -0.06180443987250328, 0.017031695693731308, 0.047806017100811005, -0.11574257910251617, 0.006904745474457741, -0.07842724025249481, 0.13614733517169952, 0.14311917126178741, -0.004569602198898792, 0.0876370519399643, 0.07341855019330978, 0.07007444649934769, -0.04042448103427887, -0.06159769743680954, -0.020901795476675034, 0.042779937386512756, 0.051988884806632996, 0.06398405134677887, -0.03641708940267563, -0.003737426595762372, -0.09774615615606308, 0.06992346048355103, -0.030713381245732307, -0.10728907585144043, -0.03319444879889488, 0.074745312333107, 0.07504568248987198, 0.011143731884658337, -0.15715865790843964, 0.09573003649711609, -0.028976714238524437, 0.032959237694740295, 0.08074194192886353, -0.028797611594200134, 0.011311296373605728, 0.12277187407016754, -0.03319362923502922, 0.07646689563989639, -0.038710154592990875, 0.0423036552965641, 0.146697536110878, -0.041948962956666946, 0.014563122764229774, -0.05800342932343483, 0.09482121467590332, -0.03308276832103729, 0.07344580441713333, 0.01976153627038002, 0.09550581872463226, -0.051046475768089294, 0.009250120259821415, -0.04016880691051483, -0.04316851124167442, 0.047407303005456924, -0.038381919264793396, -0.01625223085284233, -0.043328262865543365, -0.04735637828707695, 0.05287902057170868, 0.008648542687296867, 0.0606568418443203, 0.029464878141880035, 0.10726298391819, 0.10086163878440857, 0.01924775540828705, -0.04187516123056412, -0.1377023309469223, 0.07791899144649506, -0.10352025926113129, 0.06623479723930359, -0.1040642112493515, -0.022748688235878944, -0.05059072747826576, -0.019845670089125633, -0.02821929380297661, 0.05202938988804817, -0.0218375101685524, 0.030000915750861168, 0.020445333793759346, 0.012154593132436275, -0.045279599726200104, -0.015113867819309235, -0.11449930816888809, 0.041434481739997864, 0.053943924605846405, 0.050011586397886276, -0.12010294944047928, 0.10192316770553589, 0.07314153760671616, 0.034171927720308304, 0.08994479477405548, 0.11006419360637665, -0.047664493322372437, 0.07663153856992722, -0.10538323223590851, 0.0619233138859272, -0.07442621886730194, 0.03728760406374931, 0.012883557006716728, -0.051239416003227234, 0.03857868164777756, 0.02143351174890995, -0.061092667281627655, 0.028245871886610985, -0.06287052482366562, -0.024630291387438774, -0.1213223934173584, -0.10222107917070389, -0.0071700215339660645, 0.04622983932495117, -0.02912621572613716, -0.04763452336192131, 0.03649122640490532, -0.08302989602088928, -0.017908290028572083, 0.04925785958766937, -0.06759073585271835, 0.0711178332567215, -0.057056911289691925, 0.1332787424325943, -0.0041937618516385555, -0.06549638509750366, 0.039162665605545044, 0.05150146782398224, 0.0538916289806366, 0.007706077769398689, -0.05988297984004021, -0.1629786491394043, 0.046006105840206146, -0.08425280451774597, -0.04725455492734909, -0.012503302656114101, 0.14257465302944183, -0.1390504240989685, -0.022500749677419662], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201ccould not get source code\u201d\u4ee5\u53ca\u201cMindspore can not compile temporary source code in terminal. Please write source code to a python file and run the file.\u201d\u662f\u4ec0\u4e48\u539f\u56e0\uff1f": [-0.03246878832578659, 0.1477886587381363, 0.046066299080848694, -0.04194587096571922, -0.07340236008167267, -0.03677233308553696, 0.017753474414348602, 0.051987431943416595, -0.047531452029943466, 0.07879447937011719, -0.04815865308046341, 0.02869119681417942, 0.06632458418607712, 0.10038357973098755, -0.0992216095328331, 0.0673222616314888, 0.045743055641651154, 0.03673553466796875, -0.07230303436517715, 0.06861701607704163, 0.0009492167155258358, -0.02875485084950924, 0.13043709099292755, -0.044512465596199036, -0.009974134154617786, 0.10937853157520294, -0.02222404070198536, 0.015204573050141335, 0.002156969625502825, 0.05981548875570297, 0.015442417934536934, 0.06134514510631561, -0.04639331251382828, 0.03447175770998001, -0.055853284895420074, -0.07175134122371674, -0.013847116380929947, 0.01856042817234993, 0.002772726584225893, -0.008359541185200214, 0.03581990301609039, 0.046294186264276505, -0.007966565899550915, 0.09407561272382736, 0.0011964956065639853, -0.015655748546123505, -0.1377541720867157, -0.016641054302453995, 0.026866823434829712, -0.022095369175076485, -0.06337365508079529, 0.04792628437280655, 0.04083433002233505, -0.0163029283285141, -0.0418272390961647, -0.04503544792532921, -0.0024237604811787605, 0.023951247334480286, 0.06917266547679901, -0.0884052962064743, -0.02790406346321106, 0.0306573286652565, -0.07239381968975067, -0.03997761756181717, -0.0840512216091156, 0.020484093576669693, -0.0257267989218235, -0.08633700013160706, -0.03870054706931114, 0.023980464786291122, -0.030534638091921806, -0.016161354258656502, -0.060867372900247574, 0.07212407886981964, 0.018296286463737488, 0.009445156902074814, -0.0524275042116642, 0.03734094277024269, -0.10288297384977341, 0.011506159789860249, 0.010476810857653618, 0.062013350427150726, 0.008777663111686707, -0.04713775962591171, -0.08079639077186584, -0.030984818935394287, -0.07625901699066162, 0.13207387924194336, -0.06058061867952347, 0.06777770817279816, -0.039636969566345215, 0.008872071281075478, -0.14577828347682953, 0.06780364364385605, 0.08523746579885483, -0.013964621350169182, -0.026720136404037476, -0.04069332778453827, -0.19742168486118317, -0.007176592014729977, 0.02740132436156273, -0.014479880221188068, -0.028946388512849808, 0.030558213591575623, 0.03452960401773453, -0.0448252372443676, 0.044934824109077454, 0.00038759782910346985, 0.06979494541883469, 0.04133942723274231, 0.05509716644883156, 0.06049862131476402, 0.05730302259325981, 0.03390612080693245, 0.02749764546751976, 0.03731938824057579, -0.05288933962583542, 0.016884490847587585, -0.08208297938108444, 0.09218395501375198, 0.12523020803928375, -0.08005249500274658, -0.027201006188988686, 0.053316302597522736, 0.008711141534149647, -0.004914442542940378, 0.08112844079732895, -0.09983104467391968, -0.07782001048326492, -0.08152243494987488, 0.14490148425102234, -0.11258389055728912, 0.10742981731891632, -0.10373227298259735, -0.06204702705144882, 0.03985065594315529, -0.008762829937040806, 0.01875745691359043, -0.04655885696411133, 0.10583855211734772, 5.2887946367263794e-05, -0.14171642065048218, 0.08082042634487152, -0.017151540145277977, 0.07354432344436646, 0.06670494377613068, -0.08775465190410614, -0.14040550589561462, -0.013616586104035378, -0.04208916425704956, 0.015923907980322838, -0.019600121304392815, -0.022957608103752136, 0.09950864315032959, -0.013918294571340084, 0.058646075427532196, -0.010176782496273518, -0.01273762620985508, -0.04950236156582832, 0.014153131283819675, 0.009755518287420273, -0.025940995663404465, 0.04886646196246147, 0.047615472227334976, -0.03146068751811981, 0.027014009654521942, 0.016252286732196808, -0.02460755780339241, -0.028341740369796753, -0.046493567526340485, -0.044722557067871094, 0.025011148303747177, -0.1122048944234848, 0.007965418510138988, 0.05906923860311508, -0.04777185618877411, 0.11514338850975037, -0.06833504885435104, -0.008013224229216576, 0.0033715947065502405, 0.04292572662234306, -0.06894072145223618, -0.03720652312040329, -0.1058901846408844, 0.0007500125793740153, 0.00648638466373086, 0.08626321703195572, 0.041720129549503326, 0.10137981176376343, -0.10922617465257645, -0.013981016352772713, 0.11139357089996338, -0.024669919162988663, 0.06982511281967163, -0.035245586186647415, 0.05659877508878708, 0.003112816484645009, -0.05292920395731926, -0.008259087800979614, -0.03369029983878136, -0.037888191640377045, 0.042531438171863556, 0.028031744062900543, 0.03881879523396492, -0.0026402673684060574, -0.025754738599061966, -0.08685210347175598, -0.06365896016359329, -0.034279752522706985, 0.013498634099960327, 0.084935262799263, 0.029389763250947, -0.042563799768686295, -0.06464286893606186, -0.0981777012348175, -0.025795741006731987, 0.11735082417726517, 0.06217564269900322, 0.06166088208556175, -0.06561942398548126, 0.007300133816897869, 0.036777298897504807, 0.02028891257941723, -0.04367563873529434, -0.10041871666908264, -0.029951130971312523, -0.0929863229393959, -0.1544099748134613, -0.046659111976623535, 0.07129044830799103, -0.06430520862340927, 0.08302179723978043, 0.017168859019875526, 0.1330043077468872, -4.844740033149719e-05, 0.17320160567760468, 0.001462841290049255, -0.03591560944914818, 0.06747398525476456, 0.04245978966355324, -0.1449010670185089, 0.05064830929040909, -0.06594468653202057, -0.04039345681667328, -0.0859932154417038, 0.08998936414718628, 0.06061311066150665, 0.04036492854356766, 0.011972264386713505, -0.04792160168290138, 0.022914838045835495, 0.04308401793241501, -0.1043492928147316, 0.09530062973499298, -0.01924501359462738, 0.08498736470937729, 0.088962122797966, -0.039513446390628815, 0.03280239179730415, 0.04868532717227936, -0.023157652467489243, 0.08411001414060593, -0.06339991092681885, -0.055422887206077576, -0.03099125251173973, -0.031187206506729126, 0.05717959627509117, -0.05478779971599579, 0.0006694410694763064, -0.08329793065786362, 0.017626432701945305, 0.023988569155335426, -0.13258379697799683, 0.061766184866428375, 0.053193338215351105, 0.08638138324022293, 0.011828271672129631, -0.1413315087556839, 0.0500241294503212, 0.1206420511007309, -0.03855108842253685, 0.0047026341781020164, 0.04383783042430878, 0.013220957480370998, 0.03954986855387688, -0.038568586111068726, 0.025546969845891, 0.04171483963727951, 0.011467348784208298, 0.15357741713523865, -0.08105885982513428, -0.03724866360425949, -0.10797376930713654, 0.08550798892974854, -0.023927703499794006, 0.042967043817043304, 0.06906376779079437, 0.06231137737631798, 0.055508244782686234, 0.029477935284376144, -0.010040126740932465, -0.07463210076093674, 0.10310047119855881, -0.11715610325336456, -0.004740845412015915, 0.06790163367986679, -0.07158742845058441, 0.0678422749042511, -0.00788798462599516, -0.042194340378046036, 0.056423842906951904, 0.11472901701927185, 0.011956533417105675, 0.05384190008044243, -0.07112055271863937, -0.03953396528959274, 0.059538982808589935, -0.1601269543170929, 0.013253002427518368, -0.06789253652095795, 0.02392183616757393, -0.06905025243759155, -0.01083732396364212, 0.021431993693113327, 0.029130373150110245, -0.034940142184495926, 0.053866855800151825, 0.05213508382439613, 0.025181660428643227, -0.03810938447713852, 0.07730613648891449, -0.04443934187293053, 0.043936196714639664, 0.08121908456087112, 0.019086986780166626, -0.07372214645147324, 0.10245941579341888, 0.07114896178245544, -0.01226996909826994, 0.07431929558515549, 0.023721182718873024, -0.05461442098021507, -0.009933254681527615, -0.1060611680150032, 0.061433352530002594, -0.08256557583808899, 0.05514426529407501, -0.006550073157995939, -0.04478718340396881, -0.022514058277010918, 0.040870536118745804, -0.06492654979228973, 0.0674935132265091, -0.013002187944948673, -0.039289072155952454, -0.12897850573062897, -0.06822321563959122, -0.04450226575136185, -0.021436937153339386, -0.042249687016010284, -0.029812384396791458, -0.015455756336450577, -0.02849321812391281, -0.06601530313491821, -0.014801728539168835, -0.0537755973637104, -0.012926182709634304, -0.07937867194414139, 0.09226489067077637, -0.03511209040880203, -0.07287762314081192, 0.029171079397201538, 0.07601605355739594, 0.04754525423049927, -0.1114942878484726, -0.05209965258836746, -0.0890394002199173, 0.04997961223125458, -0.04208669811487198, -0.07324331253767014, 0.0815097764134407, 0.0728253424167633, -0.06954678148031235, 0.0592951700091362], "\u62a5\u9519\u63d0\u793a\u4e2d\u7684\u201cCorresponding forward node candidate:\u201d\u6216\u201cCorresponding code candidate:\u201d\u662f\u4ec0\u4e48\u610f\u601d\uff1f": [-0.04131512716412544, 0.013605994172394276, -0.0010344615438953042, 0.027889631688594818, -0.03803589195013046, -0.08702491968870163, 0.039866428822278976, 0.0734943300485611, -0.02478017657995224, 0.047344908118247986, -0.020618831738829613, 0.006094194948673248, -0.01758578047156334, -0.04824090376496315, -0.02843933179974556, 0.09735750406980515, 0.04980603978037834, -0.00414704205468297, -0.0433594174683094, 0.10156267881393433, -0.0058286311104893684, -0.03410770371556282, -0.0043783485889434814, -0.044633060693740845, -0.01428658701479435, 0.10852811485528946, 0.031398069113492966, -0.001681100344285369, -0.006249100435525179, 0.05498579889535904, 0.1175936833024025, 0.048369139432907104, -0.09555478394031525, 0.08935371786355972, -0.03229827433824539, -0.02673114277422428, -0.06192605197429657, 0.10759777575731277, -0.044704027473926544, 0.00036324746906757355, 0.061928052455186844, 0.020404832437634468, -0.06756279617547989, 0.07048296928405762, -0.056916553527116776, -0.03773645684123039, -0.101850226521492, -0.05982855707406998, 0.0828627347946167, -0.02683178335428238, -0.10009433329105377, 0.02582778036594391, 0.02157776802778244, -0.012117625214159489, -0.06869086623191833, 0.013101791962981224, 0.046154383569955826, -0.00940762460231781, 0.019260456785559654, 0.01650387980043888, 0.048363715410232544, 0.021680261939764023, -0.055926427245140076, -0.06047436594963074, 0.001586648286320269, 0.006861685309559107, -0.024379966780543327, -0.06894033402204514, 0.034551024436950684, -0.03385170176625252, -0.04963845759630203, 0.03884078562259674, 0.010834001936018467, 0.10521315038204193, 0.023183424025774002, 0.10536344349384308, -0.0073220315389335155, 0.0055365487933158875, -0.062410563230514526, 0.049738503992557526, 0.02076350897550583, 0.0660390853881836, 0.035118430852890015, -0.07400843501091003, -0.026189010590314865, -0.0454181432723999, -0.04931525141000748, 0.02119690738618374, -0.034996598958969116, 0.00808936171233654, 0.024571150541305542, -0.011048248037695885, -0.14740751683712006, -0.015885477885603905, 0.0793210119009018, -0.0476473793387413, 0.003959042951464653, -0.01909305341541767, -0.2006339579820633, 0.11752264946699142, 0.11179295182228088, -0.11813241243362427, -0.015215879306197166, 0.042430177330970764, 0.038806892931461334, -0.048285339027643204, 0.029679981991648674, 0.06024479866027832, -0.012588197365403175, -0.024089060723781586, 0.009373360313475132, 0.00930195301771164, 0.062288831919431686, -0.057431671768426895, -0.006306909024715424, 0.06068117171525955, -0.01035524532198906, 0.020378055050969124, -0.14106610417366028, 0.09344697743654251, 0.13235881924629211, -0.028424618765711784, -0.019717536866664886, 0.048894353210926056, -0.02552833966910839, -0.041296422481536865, 0.045863084495067596, -0.15194453299045563, -0.06975456327199936, -0.027312371879816055, 0.07859501987695694, -0.09939010441303253, -0.0015314489137381315, -0.10374976694583893, -0.13199299573898315, 0.06554428488016129, -0.03236744552850723, 0.009037965908646584, -0.03945017233490944, 0.11754235625267029, 0.030328579246997833, -0.09349790960550308, -0.007702660281211138, 0.02851402945816517, 0.09620410203933716, 0.008957824669778347, -0.010461082682013512, -0.07503724843263626, -0.01063024066388607, -0.02125866711139679, 0.04499781131744385, -0.06799028068780899, 0.010409828275442123, 0.06677933037281036, -0.033948834985494614, 0.02037034183740616, 0.03510839864611626, -0.00468457443639636, 0.010210230015218258, -0.06338299810886383, -0.09745888411998749, -0.009540245868265629, 0.028450919315218925, -0.03794343024492264, -0.07014911621809006, 0.017059598118066788, 0.0640958920121193, -0.021217701956629753, -0.04652731120586395, -0.06518881022930145, -0.0847490206360817, 0.0026478595100343227, 0.005906825885176659, -0.07492633163928986, 0.055301595479249954, -0.010914471931755543, 0.03400849178433418, -0.038271792232990265, 0.0011879088124260306, -0.04913370683789253, 0.0785813108086586, -0.09903379529714584, -0.055766329169273376, -0.09288232773542404, 0.014309844933450222, 0.007816647179424763, -0.027244452387094498, 0.021756798028945923, 0.21143239736557007, -0.12965615093708038, -0.037052225321531296, 0.04303578659892082, -0.030980870127677917, 0.09173236787319183, -0.038074709475040436, -0.0009554472635500133, -0.06914947181940079, -0.01782682165503502, 0.06666561216115952, -0.043680958449840546, 0.008194834925234318, 0.07156617194414139, 0.076451376080513, 0.0728393942117691, -0.01003099512308836, -0.03707459941506386, -0.11043688654899597, -0.10288675874471664, -0.02047070488333702, 0.10701804608106613, 0.08514723926782608, 0.034965354949235916, -0.08642864227294922, -0.07277735322713852, -0.15151669085025787, 0.08389700949192047, 0.02159108594059944, 0.043951615691185, 0.09123046696186066, -0.030896250158548355, 0.00679617328569293, 0.009385213255882263, 0.008615109138190746, -0.07973069697618484, -0.06409183144569397, -0.06696086376905441, 0.021903278306126595, -0.0987745150923729, 0.019493265077471733, -0.030205335468053818, -0.04148880019783974, 0.13211634755134583, 0.001896172296255827, 0.11875538527965546, -0.011209581978619099, 0.06814753264188766, -0.05945569649338722, -0.02434423565864563, 0.08543075621128082, -0.02138208970427513, -0.02998260036110878, 0.14441348612308502, -0.10736487805843353, 0.02763424441218376, -0.10277101397514343, 0.059619758278131485, 0.09951940923929214, 0.04360073432326317, -0.00541574414819479, -0.07283201813697815, 0.017165739089250565, -0.024833332747220993, 0.029455985873937607, 0.054574936628341675, -0.04899539798498154, 0.09162192046642303, 0.1022244319319725, -0.03794589638710022, -0.031735341995954514, 0.040031276643276215, 0.025428103283047676, 0.02367384172976017, -0.10504504293203354, 0.039779797196388245, -0.025846676900982857, 0.006917667109519243, 0.12174873054027557, -0.01656407304108143, -0.03952988237142563, -0.10302486270666122, 0.025644320994615555, 0.013979439623653889, -0.06597388535737991, -0.027006205171346664, 0.07627356797456741, 0.005612938664853573, 0.11038629710674286, -0.13641147315502167, 0.014409833587706089, -0.012976204976439476, 0.04780333489179611, 0.06384226679801941, 0.012736471369862556, -0.02826274186372757, 0.07439641654491425, -0.0992898941040039, 0.04166165366768837, 0.0033702237997204065, 0.04240713641047478, 0.1177850216627121, -0.04088035598397255, -0.012985221110284328, -0.10115070641040802, -0.03214511275291443, -0.08050966262817383, 0.07727015763521194, 0.029754700139164925, 0.10916375368833542, -0.020106293261051178, 0.023739932104945183, -0.10123486071825027, -0.06748664379119873, 0.055726487189531326, 0.024717792868614197, -0.08414670825004578, -0.04417113959789276, -0.005203371401876211, 0.025940576568245888, 0.03551901504397392, -0.0354742556810379, 0.08325973153114319, 0.10782840102910995, 0.02081206999719143, 0.02269938215613365, 0.0006283855764195323, 0.0009762939880602062, 0.0822579637169838, -0.11563360691070557, 0.0012931518722325563, -0.12106955051422119, -0.010756995528936386, -0.07673126459121704, 0.018042849376797676, 0.016376879066228867, 0.02341262251138687, -0.06362881511449814, 0.04644074663519859, 0.12072131037712097, -0.12258785963058472, 0.004714783281087875, 0.05337274819612503, -0.0718325674533844, 0.07231710106134415, 0.11835069954395294, 0.03092316724359989, -0.05001941695809364, 0.10086536407470703, 0.03716549649834633, -0.028961781412363052, -0.00012381002306938171, 0.019757427275180817, -0.07130751758813858, 0.029929282143712044, -0.09214204549789429, 0.03869304805994034, -0.11966255307197571, 0.11241369694471359, 0.028860144317150116, -0.022009413689374924, 0.03241921588778496, 0.00013236422091722488, -0.09299325942993164, 0.007714386563748121, -0.04254254326224327, -0.059941425919532776, -0.12019665539264679, -0.06078650802373886, -0.007928567007184029, 0.05574459582567215, -0.003990085329860449, 0.02535773627460003, 0.05144140124320984, -0.04257458448410034, -0.07922142744064331, 0.009233644232153893, -0.09792795032262802, 0.03432559594511986, -0.08283758163452148, 0.02864411659538746, 0.022261498495936394, -0.12055493146181107, 0.05897648632526398, 0.1409434825181961, 0.03452228754758835, -0.03487425297498703, -0.040520474314689636, -0.09726791083812714, 0.060607388615608215, -0.027606705203652382, -0.09152230620384216, 0.03248213976621628, 0.030964763835072517, -0.11425189673900604, 0.0010399386519566178], "\u4ec0\u4e48\u662f\u201cJIT Fallback\u201d\uff1f\u7f16\u8bd1\u65f6\u62a5\u9519\u201cShould not use Python object in runtime\u201d\u600e\u4e48\u529e\uff1f": [-0.028815871104598045, 0.10959367454051971, 0.08097630739212036, 0.022581707686185837, -0.047021377831697464, -0.05352366343140602, 0.02881522662937641, 0.02060256525874138, -0.018179578706622124, 0.04295888543128967, -0.06593423336744308, 0.036505043506622314, 0.03681771829724312, 0.08653636276721954, -0.09337285161018372, 0.14811846613883972, 0.06834179908037186, 0.0439084991812706, -0.05305672809481621, 0.023911895230412483, 0.005375251639634371, 0.026483161374926567, 0.07534196227788925, -0.04965531826019287, -0.025702372193336487, 0.09432424604892731, 0.021830694749951363, -0.012443581596016884, 0.05957195535302162, 0.03236554563045502, 0.022072449326515198, 0.039803821593523026, -0.05460438132286072, -0.008035236969590187, -0.025390606373548508, -0.0362594835460186, -0.09237213432788849, 0.09570331871509552, -0.09232175350189209, -0.04167536646127701, 0.06102875620126724, 0.02876240573823452, 0.009320354089140892, 0.10553927719593048, -0.09052033722400665, -0.023682784289121628, -0.1235334575176239, 0.019335899502038956, 0.08290662616491318, 0.05935780331492424, -0.12644994258880615, 0.06498835980892181, 0.01738128438591957, -0.07182096689939499, -0.041969649493694305, -0.025159655138850212, 0.0922524631023407, -0.00922201108187437, 0.026486964896321297, -0.004428149200975895, 0.00636678421869874, 0.07676953822374344, -0.007667789701372385, -0.005711012985557318, -0.05519051104784012, 0.05195414274930954, -0.029431745409965515, -0.00998704880475998, -0.0760587602853775, -0.0271344892680645, -0.028672076761722565, 0.011867206543684006, -0.039486952126026154, 0.0015247117262333632, 0.048092667013406754, 0.06497342884540558, -0.010681528598070145, -0.04312572628259659, -0.05646130070090294, 0.06438925862312317, -0.03362323343753815, 0.042259544134140015, 0.04962356016039848, -0.033167969435453415, -0.050444137305021286, -0.0676329955458641, -0.051680006086826324, 0.06644245237112045, -0.1224903091788292, 0.0181625634431839, 0.0415210947394371, -0.02008742280304432, -0.17198358476161957, 0.08714361488819122, 0.09984399378299713, -0.050317589193582535, -0.0550641193985939, -0.09998701512813568, -0.11675773561000824, -0.010625069960951805, 0.12784256041049957, -0.036544885486364365, -0.03422084078192711, -0.012640194036066532, 0.0354732982814312, -0.08733230084180832, -0.07483501732349396, 0.005959320813417435, 0.030999088659882545, 0.020017854869365692, 0.03578764945268631, 0.06725890934467316, 0.054353244602680206, 0.019574925303459167, -0.028635025024414062, 0.08933955430984497, -0.0816924124956131, 0.005196535959839821, -0.14674697816371918, 0.11239054054021835, 0.14932619035243988, -0.0342903733253479, 0.04840625077486038, 0.16885218024253845, 0.03859354928135872, -0.060050614178180695, 0.0544164776802063, -0.12108293175697327, -0.09132695198059082, -0.033348411321640015, 0.10036646574735641, -0.03590226173400879, 0.07005099952220917, -0.10632353276014328, -0.10051233321428299, 0.08244975656270981, -0.06932500749826431, 0.035406582057476044, -0.031225167214870453, 0.16927814483642578, 0.037591543048620224, -0.1258750557899475, 0.08608642220497131, -0.025204941630363464, 0.05860195681452751, 0.053638093173503876, -0.06863885372877121, -0.06145627051591873, -0.029292123392224312, -0.07022425532341003, 0.09732603281736374, 0.012766174040734768, -0.06397032737731934, 0.05257067456841469, -0.059496596455574036, 0.013136858120560646, 0.001728018862195313, -0.01253583375364542, -0.03503233566880226, -0.015223314054310322, -0.04516420513391495, 0.016123013570904732, 0.03903384506702423, 0.049718331545591354, -0.06299649178981781, 0.04230913519859314, -0.019174622371792793, 0.027964670211076736, -0.016862746328115463, -0.018907610327005386, -0.05095721036195755, 0.0014175651594996452, -0.04479140043258667, 0.011449425481259823, 0.028434954583644867, -0.012859690003097057, 0.04570987820625305, -0.03262194246053696, 0.018264438956975937, -0.057329364120960236, 0.00019226782023906708, -0.09497689455747604, 0.010125692933797836, -0.13780036568641663, 0.01632247120141983, 0.08126561343669891, 0.015253165736794472, 0.04975445196032524, 0.09371905773878098, -0.07063477486371994, 0.008468826301395893, 0.048113565891981125, -0.007857466116547585, 0.03853156417608261, -0.041816409677267075, 0.006066665053367615, -0.013234268873929977, -0.002192437881603837, -0.0008207494975067675, -0.03357710689306259, -0.03343132138252258, 0.06005179136991501, 0.033136896789073944, 0.03238377720117569, -0.03205576539039612, -0.00802075769752264, -0.1250145584344864, -0.09147270023822784, 0.001840423559769988, 0.004308375995606184, 0.04451005160808563, -0.009816725738346577, -0.1093752458691597, -0.016061659902334213, -0.11135850846767426, 0.05928991734981537, 0.11772871762514114, 0.005006648600101471, 0.08330530673265457, -0.07852469384670258, 0.0333973690867424, 0.02340562641620636, -0.043583765625953674, -0.027956422418355942, -0.12070165574550629, -0.003887009806931019, 0.05048034340143204, -0.09723538160324097, -0.018446415662765503, 0.014524753205478191, 0.03801180049777031, 0.10846234858036041, -0.028444547206163406, 0.07924016565084457, -0.04781473055481911, 0.05280888080596924, 0.006013322621583939, -0.005194211378693581, 0.037772148847579956, -0.054280877113342285, -0.09355276823043823, 0.08047973364591599, -0.11945846676826477, 0.03140411153435707, -0.11610958725214005, 0.0772484689950943, 0.026144802570343018, -0.01135571300983429, -0.0010323073947802186, -0.05026097595691681, 0.018454978242516518, 0.012510842643678188, -0.09916740655899048, 0.07786058634519577, -0.07581086456775665, 0.0618450790643692, 0.08589474856853485, -0.04960133507847786, 0.06621214747428894, 0.00797353032976389, 0.06460291892290115, 0.042086608707904816, -0.02965215966105461, -0.031450603157281876, 0.017317287623882294, -0.08806969225406647, 0.06498560309410095, -0.086648128926754, -0.0004212651401758194, -0.05084391310811043, 0.04667118564248085, 0.03433077782392502, -0.046070605516433716, 0.04780241474509239, 0.05566542595624924, 0.10182278603315353, -0.04101832956075668, -0.0819891020655632, -0.006385761313140392, 0.0017020481172949076, -0.06744340062141418, -0.0049219513311982155, 0.004493365529924631, -0.021677713841199875, 0.05774228274822235, 0.004510271362960339, 0.019450025632977486, -0.017049461603164673, 0.05365326628088951, 0.09851487725973129, -0.05242811143398285, 0.03122260794043541, -0.11463779211044312, 0.033266130834817886, -0.005727545358240604, 0.01820891723036766, 0.009505624882876873, 0.029316607862710953, 0.007546138018369675, -0.00594951631501317, 0.03172985464334488, -0.0004468932456802577, 0.1095573678612709, -0.06094111502170563, 0.002732738619670272, 0.029611321166157722, -0.07167188823223114, 0.009489155374467373, 0.0009010450448840857, -0.05681682378053665, 0.05410156771540642, 0.10374097526073456, 0.026666423305869102, 0.07740116119384766, -0.04450257495045662, 0.0010613385820761323, 0.08125343918800354, -0.1489686667919159, 0.03891909122467041, -0.11621614545583725, -0.019897937774658203, -0.11106288433074951, -0.07166272401809692, 0.05213750898838043, 0.05207356810569763, -0.06837493181228638, 0.10698918998241425, 0.02045944146811962, -0.00807248242199421, -0.005404271651059389, 0.07459677010774612, -0.09108322113752365, 0.059250373393297195, 0.08328017592430115, 0.02366897463798523, -0.08720366656780243, 0.06735789775848389, 0.12077983468770981, -0.021104343235492706, 0.04187560826539993, -0.07635615020990372, -0.08569169044494629, 0.012761144898831844, -0.12698309123516083, 0.03663308545947075, -0.0663517639040947, 0.13534322381019592, 0.032201796770095825, 0.021419430151581764, 0.002809908241033554, 0.006938824895769358, -0.038768406957387924, 0.13247856497764587, 0.01227370835840702, -0.04122043401002884, -0.08577369153499603, -0.10693448036909103, 0.011175837367773056, 0.11551126092672348, -0.042934976518154144, 0.005285927094519138, -0.07314400374889374, 0.03468526154756546, -0.13604918122291565, 0.03919340297579765, -0.038262493908405304, -0.0036573796533048153, -0.029610775411128998, 0.09760326892137527, -0.022756271064281464, -0.10501082986593246, -0.02792755886912346, 0.10413114726543427, 0.09316069632768631, -0.05465913936495781, -0.10779592394828796, -0.11258666217327118, 0.05129576101899147, -0.07193101942539215, -0.11069999635219574, 0.06693916022777557, 0.05804383382201195, -0.13940194249153137, 0.006233283784240484], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cOperator[AddN] input(kNumberTypeBool\uff0ckNumberTypeBool) output(kNumberTypeBool) is not support. This error means the current input type is not supported\uff0c please refer to the MindSpore doc for supported types.\u201d\u600e\u4e48\u529e\uff1f": [-0.0019583499524742365, 0.03732580319046974, 0.021046500653028488, 0.04787566512823105, -0.009956100024282932, -0.0369938388466835, 0.06000886112451553, 0.060214996337890625, -0.09918112307786942, 0.08622436970472336, -0.04192247986793518, -0.03839865326881409, -0.0018594532739371061, -0.03542923927307129, -0.043970316648483276, 0.06965450942516327, 0.10954639315605164, 0.030309636145830154, -0.00782677810639143, 0.07586298137903214, 0.05811411887407303, -0.01035816315561533, 0.06052491441369057, -0.09615533798933029, -0.02971731685101986, 0.0479130819439888, -0.04304463416337967, 0.0311589278280735, 0.004926680587232113, 0.022926045581698418, 0.04275868460536003, 0.052700821310281754, -0.08293706923723221, 0.03954371064901352, -0.06881549954414368, -0.05961652845144272, -0.021000349894165993, 0.16050860285758972, -0.029173845425248146, 0.0684778168797493, 0.04495668411254883, 0.019507750868797302, -0.018504295498132706, 0.0549904890358448, 0.013582914136350155, -0.07265513390302658, -0.11856573820114136, -0.05477011948823929, 0.03987806290388107, 0.0676499754190445, -0.0256340354681015, 0.0836845189332962, -0.021216049790382385, -0.01963799074292183, -0.09151959419250488, 0.004369188565760851, 0.056926850229501724, 0.03458375111222267, 0.06947718560695648, -0.061063047498464584, 0.08308790624141693, 0.0021302704699337482, -0.05033072829246521, 0.03817932307720184, -0.12764433026313782, 0.017147071659564972, -0.026456423103809357, -0.08363723754882812, -0.10848794132471085, -0.0011639776639640331, -0.07350777089595795, -0.012757190503180027, -0.05281917750835419, 0.1103701964020729, 0.02431611530482769, -0.012833262793719769, -0.049919161945581436, -0.016628941521048546, -0.083408422768116, 0.0919913500547409, 0.004432623274624348, 0.10154293477535248, 0.05190512165427208, -0.042071256786584854, -0.13419604301452637, -0.016598669812083244, -0.009631008841097355, 0.07151614129543304, -0.006291809491813183, 0.050568222999572754, 0.01750009134411812, -0.0033511300571262836, -0.13771404325962067, 0.13163159787654877, 0.03405848145484924, -0.06396642327308655, -0.019383057951927185, 0.03037872724235058, -0.143903911113739, -0.03474167734384537, 0.05596853792667389, -0.05006283521652222, -0.02068421244621277, -0.006877209525555372, 0.07257165759801865, -0.07402512431144714, -0.010435950942337513, 0.0757085531949997, 0.016746172681450844, 0.010860258713364601, 0.05972806736826897, 0.0009625476668588817, 0.048244625329971313, 0.07249534130096436, -0.02309664711356163, 0.1079854741692543, -0.0162920281291008, -0.022538606077432632, -0.07101525366306305, 0.08422157913446426, 0.14056050777435303, -0.07083076238632202, 0.04243034869432449, 0.04854654520750046, 0.010178456082940102, 0.011680299416184425, 0.09393000602722168, -0.06917921453714371, -0.11833211779594421, -0.1287030279636383, 0.13767412304878235, -0.028467241674661636, 0.06859274953603745, -0.0927387923002243, -0.17830823361873627, 0.08493155241012573, 0.00832762848585844, -0.03755806386470795, -0.0005445870920084417, 0.11497877538204193, 0.02133888751268387, -0.17117220163345337, 0.11140676587820053, -0.020339317619800568, 0.0678497925400734, 0.048470545560121536, -0.09464772045612335, -0.16682502627372742, 0.03854450210928917, -0.017450010403990746, 0.1296326220035553, -0.0028170980513095856, -0.03932289779186249, 0.06517797708511353, 0.03821157291531563, 0.015545996837317944, 0.03967326134443283, -0.024189520627260208, -0.05136319249868393, -0.014498733915388584, -0.04888671636581421, 0.01044236496090889, 0.053372886031866074, 0.026682043448090553, -0.0241207517683506, 0.04270607605576515, 0.093272365629673, -0.07981332391500473, -0.09784400463104248, -0.10570505261421204, 0.009340271353721619, -0.022896170616149902, -0.08473058044910431, -0.017645634710788727, 0.06470180302858353, 0.007380850613117218, 0.05748317390680313, -0.06943883746862411, 0.017450952902436256, -0.006852404214441776, 0.08777884393930435, -0.11774223297834396, 0.001673939055763185, -0.1599329710006714, 0.004935127682983875, 0.0837734192609787, 0.08859406411647797, 0.09086791425943375, 0.14093255996704102, -0.1276903599500656, -0.02154281735420227, 0.03892664238810539, 0.07062672823667526, 0.020894112065434456, -0.029463954269886017, 0.006808302365243435, -0.0325821191072464, -0.004477117210626602, -0.03329914063215256, 0.0034911499824374914, -0.06074953451752663, 0.03004678152501583, 0.025608371943235397, 0.008997575379908085, -0.01890193484723568, -0.04705796018242836, -0.05092683807015419, -0.12057605385780334, -0.02055126056075096, -0.05282945930957794, 0.05201277509331703, 0.07095243781805038, 0.019129468128085136, -0.025375904515385628, -0.10891357064247131, -0.05415334925055504, 0.12054175138473511, 0.024612082168459892, 0.012814710848033428, -0.04888860508799553, 0.058063820004463196, -0.0030059663113206625, -0.016323981806635857, -0.04243849962949753, -0.09915008395910263, 0.02560863271355629, -0.05254563316702843, -0.11346886307001114, 0.015966741368174553, 0.022043559700250626, -0.01878989301621914, 0.05001654103398323, 0.01946331188082695, 0.1318114697933197, -0.015369953587651253, 0.08035691827535629, -0.03619077056646347, -0.01488243043422699, 0.06415844708681107, 0.00669033732265234, -0.06980887055397034, 0.07935767620801926, -0.028583113104104996, -0.042483724653720856, -0.0021569733507931232, 0.028036531060934067, 0.042584940791130066, 0.09349215030670166, -0.003242973005399108, -0.08948318660259247, 0.05060411989688873, 0.004012693651020527, -0.014601856470108032, 0.0018495374824851751, -0.03402149677276611, 0.0430145189166069, -0.03732908517122269, -0.08040890842676163, -0.02960452437400818, 0.09896642714738846, 0.056668490171432495, -0.0033066365867853165, -0.12740957736968994, -0.09770704805850983, -0.11248353868722916, 0.04679619520902634, 0.0807705819606781, -0.03654811531305313, 0.0064231762662529945, -0.08681916445493698, 0.03337543085217476, 0.02736542746424675, -0.1114364042878151, 0.019519107416272163, 0.10870406776666641, 0.03714967891573906, 0.0752895399928093, -0.1843489557504654, 0.07322069257497787, 0.03762786462903023, -0.009556710720062256, 0.041179317981004715, -0.05211460590362549, 0.0903179794549942, 0.07794429361820221, -0.007369798608124256, 0.025087490677833557, -0.015334652736783028, 0.026286683976650238, 0.09395337104797363, -0.10519225150346756, -0.004618784412741661, -0.05494337156414986, 0.03274640068411827, -0.024315599352121353, 0.0810680240392685, 0.031598325818777084, 0.10873911529779434, -0.040287092328071594, 0.0885830968618393, -0.09227311611175537, 0.010709952563047409, 0.1223832294344902, -0.10384798049926758, -0.024376897141337395, 0.013344884850084782, -0.03712915629148483, 0.056957073509693146, 0.01827487349510193, -0.03218364343047142, 0.036490458995103836, 0.005411022342741489, -0.015065506100654602, 0.030317272990942, -0.048965614289045334, -0.018699266016483307, 0.07416628301143646, -0.11555175483226776, 0.02601751498878002, -0.08304864168167114, 0.029311619699001312, -0.01696467027068138, 0.020722420886158943, 0.05477437004446983, 0.0922168642282486, -0.05299273878335953, -0.02406900003552437, 0.0816480964422226, -0.031040258705615997, 0.05752924084663391, 0.060055941343307495, -0.031543731689453125, 0.06518552452325821, 0.08196109533309937, 0.10044452548027039, -0.14628997445106506, 0.0981486588716507, 0.06618532538414001, 0.027677807956933975, 0.08900098502635956, 0.03752339631319046, -0.06625590473413467, 0.04082434996962547, -0.039437755942344666, 0.10438673198223114, -0.056953951716423035, 0.05197630450129509, 0.03667716309428215, 0.0041378759779036045, -0.0514872670173645, -0.004164842888712883, -0.09905295073986053, 0.06387056410312653, -0.019613418728113174, -0.034157536923885345, -0.13196271657943726, -0.026621658354997635, -0.004267331212759018, -0.020053356885910034, 0.0675966665148735, -0.07868815958499908, -0.0420396514236927, 0.023515991866588593, -0.06286151707172394, 0.029028668999671936, -0.012062247842550278, 0.08496511727571487, -0.05964687094092369, 0.06503640115261078, -0.04662051051855087, -0.029746463522315025, 0.037185825407505035, 0.1068056970834732, 0.03427300229668617, -0.06003591790795326, -0.01948435977101326, -0.14824052155017853, 0.0751667469739914, -0.056188903748989105, -0.04135330021381378, -0.0457838699221611, 0.03496694192290306, -0.054405663162469864, 0.04305260628461838], "\u7f16\u8bd1\u65f6\u62a5\u9519\u201cSide Effect Invalid: found unsupported syntax in graph mode\uff0c those side effect codes would be ignored:\u201d\u600e\u4e48\u529e\uff1f": [-0.06218788027763367, 0.13313381373882294, 0.07302532345056534, 0.08102431148290634, -0.08712638169527054, -0.07027357816696167, 0.021974168717861176, 0.07774338871240616, -0.061027344316244125, 0.07505703717470169, -0.017416242510080338, 0.0454087108373642, 0.026830628514289856, 0.01572996936738491, -0.09763207286596298, 0.06523405015468597, 0.14940664172172546, 0.023553665727376938, -0.06411627680063248, 0.007283665239810944, 0.08127591013908386, 0.08605004847049713, 0.11571623384952545, 0.043738968670368195, -0.0009075605776160955, 0.05838242173194885, -0.0020497357472777367, 0.030014585703611374, 0.02571031078696251, -0.053730085492134094, 0.05991138145327568, 0.004184076562523842, -0.09371842443943024, 0.005831724964082241, -0.05507224053144455, -0.016293082386255264, -0.02992386743426323, 0.0845106989145279, -0.04161636903882027, 0.038998886942863464, 0.026480693370103836, 0.14403966069221497, -0.044556260108947754, 0.023814961314201355, -0.05939571186900139, -0.024583786725997925, -0.13985306024551392, -0.03256727382540703, -0.016789861023426056, -0.034974534064531326, -0.014502517879009247, 0.07607462257146835, -0.03771736100316048, 0.0007753444951958954, -0.11662540584802628, 0.006443331018090248, 0.08589804917573929, -0.03736948221921921, 0.10319173336029053, -0.04451952874660492, -0.0038910815492272377, -0.005748213268816471, -0.062449466437101364, -0.0014797550393268466, -0.13414642214775085, 0.04162546992301941, -0.06650234758853912, -0.0469418466091156, 0.02864713780581951, -0.031883224844932556, 0.04404705762863159, -0.05921762436628342, -0.009867692366242409, 0.06080467253923416, 0.0017712954431772232, -0.02388015389442444, 0.012651673518121243, 0.009018780663609505, -0.07263267785310745, 0.05356454476714134, 0.04994611069560051, 0.09045042097568512, 0.025177806615829468, -0.11795207858085632, -0.06252815574407578, -0.008019178174436092, -0.11275503784418106, 0.037983495742082596, -0.027439532801508904, 0.05906975641846657, 0.04224006459116936, -0.004525131545960903, -0.1743694543838501, 0.1158236414194107, 0.0956558957695961, -0.0820573940873146, -0.11597729474306107, -0.01861855946481228, -0.15289635956287384, -5.60469925403595e-05, 0.11217346787452698, -0.04537182301282883, 0.016731087118387222, 0.024723947048187256, 0.06721460074186325, -0.051106780767440796, 0.021150773391127586, -0.005518767051398754, -0.038736388087272644, 0.012853247113525867, 0.037278659641742706, 0.07732919603586197, -0.04089713096618652, -0.022436438128352165, -0.006951329298317432, 0.05367586761713028, 0.034888509660959244, 0.08476800471544266, -0.08306374400854111, 0.11976748704910278, 0.11970773339271545, -0.06249875947833061, -0.020058371126651764, 0.05687805265188217, 0.03440258651971817, -0.024696413427591324, 0.12831756472587585, -0.0982622504234314, -0.12905295193195343, -0.09680343419313431, 0.1498107612133026, -0.11486504226922989, 0.16784384846687317, -0.11023660749197006, -0.10366441309452057, 0.10522487759590149, -0.03437909483909607, -0.03197779133915901, -0.045587532222270966, 0.20828811824321747, -0.020122092217206955, -0.15957868099212646, 0.04841651767492294, 0.09624336659908295, 0.08673207461833954, 0.11851663887500763, -0.08543815463781357, -0.08043453842401505, 0.032752975821495056, -0.024786420166492462, 0.1314624547958374, 0.028535135090351105, 0.00919086579233408, 0.10047926008701324, -0.025484727695584297, 0.038656577467918396, 0.07820918411016464, 0.010897696949541569, -0.07315388321876526, -0.04819885268807411, -0.11928346008062363, -0.06476537883281708, 0.02685147151350975, 0.03505346551537514, -0.06970488280057907, -0.03575774282217026, 0.01946880668401718, 0.03432788699865341, -0.03065541759133339, -0.03495563939213753, -0.06552280485630035, -0.00024269148707389832, 0.01622661016881466, -0.048861313611269, 0.12206438183784485, 0.0254397913813591, 0.11904121190309525, -0.03390080854296684, -0.022823568433523178, 0.022135894745588303, 0.0885283425450325, -0.034317497164011, -0.026854481548070908, -0.11923070251941681, 0.010043242946267128, -0.024539392441511154, 0.022370513528585434, 0.03857789561152458, 0.06774446368217468, -0.055755943059921265, -0.01897633634507656, 0.025686059147119522, -0.02659575082361698, 0.09282820671796799, 0.0003241896629333496, 0.08634281903505325, 0.0324053056538105, -0.07816208153963089, 0.004758160095661879, -0.002877067308872938, -0.012744269333779812, -0.011415664106607437, 0.016000300645828247, 0.05825036019086838, 0.02558252029120922, -0.06282089650630951, -0.13230517506599426, -0.08148520439863205, 0.005758040584623814, -0.012764373794198036, 0.11221326142549515, -0.0005649253143928945, -0.1434168815612793, 0.031444091349840164, -0.059504300355911255, 0.03983893617987633, 0.15447814762592316, 0.09793926775455475, -0.02591095119714737, -0.09003214538097382, 0.08855882287025452, 0.05400911718606949, 0.03416622802615166, -0.038739535957574844, -0.133515864610672, -0.028285004198551178, -0.05716750770807266, -0.10366454720497131, -0.04764440655708313, 0.06852241605520248, -0.033937640488147736, 0.03812211751937866, 0.024282561615109444, 0.11747973412275314, -0.013623740524053574, 0.03916485607624054, -0.053943634033203125, -0.022630484774708748, 0.05109816789627075, -0.005580347031354904, -0.03077409230172634, 0.09971314668655396, -0.06546714901924133, 0.006170421838760376, -0.05363677442073822, 0.04461052268743515, 0.009452570229768753, 0.039425529539585114, -0.024488400667905807, -0.0719255730509758, 0.018016790971159935, -0.01656683161854744, -0.01818503439426422, -0.033164504915475845, -0.013163644820451736, 0.10999394953250885, 0.05776897072792053, -0.06456225365400314, -0.021742049604654312, 0.01448461040854454, 0.01869792304933071, 0.031851839274168015, 0.020816585049033165, 0.010924994014203548, -0.008576241321861744, -0.15186241269111633, 0.05986074358224869, -0.02298196218907833, -0.06458564847707748, -0.10070253163576126, 0.030206816270947456, 0.10455653816461563, -0.04068050533533096, -0.03732341155409813, 0.10978861153125763, 0.0907740443944931, 0.05075949430465698, -0.07368604838848114, 0.05272714048624039, 0.06324709951877594, -0.03328279033303261, 0.0515604205429554, 0.033841997385025024, -0.05659249797463417, 0.0022547543048858643, 0.014344224706292152, 0.02169518917798996, -0.011763905175030231, 0.06445793062448502, 0.17988160252571106, -0.07753348350524902, 0.0594356469810009, -0.06312955170869827, 0.05256306007504463, -0.05817728117108345, 0.08479192107915878, 0.031024236232042313, 0.10413334518671036, -0.01117565855383873, 0.03928603231906891, -0.026452479884028435, -0.05456424877047539, 0.08716471493244171, -0.09369750320911407, -0.002623395062983036, -0.006451573688536882, -0.008652519434690475, 0.06952457129955292, 0.010112760588526726, -0.04570350423455238, 0.061615489423274994, 0.09867289662361145, -0.015796562656760216, 0.08062835037708282, -0.0877767875790596, -0.028444066643714905, 0.0751173347234726, -0.12422724068164825, 0.030644049867987633, -0.0791672021150589, -0.0036848820745944977, -0.10465886443853378, -0.017018906772136688, 0.04927431046962738, 0.09462372958660126, -0.028617341071367264, 0.05900369584560394, 0.04784807562828064, 0.003512889612466097, 0.02867817133665085, 0.04602271318435669, -0.10597645491361618, 0.09716279059648514, 0.12642136216163635, -0.010856742039322853, -0.06918619573116302, 0.06509415805339813, 0.04895256459712982, -0.056328438222408295, 0.03245258703827858, -0.00412971805781126, -0.09061753749847412, 0.00898500345647335, -0.07103690505027771, 0.14398054778575897, -0.045748885720968246, 0.10513553768396378, 0.05835799127817154, -0.03855210542678833, 0.009858339093625546, -0.0035617926623672247, -0.03834075480699539, 0.10085698217153549, 0.0007145981071516871, -0.04693949222564697, -0.09467358887195587, -0.01303073763847351, -0.006097844801843166, 0.08796542137861252, 0.021708713844418526, -0.004413212649524212, 0.015506167896091938, -0.0052866763435304165, -0.04238493740558624, 0.0375332348048687, -0.101325623691082, -0.012755130417644978, -0.0717121809720993, 0.07733792811632156, -0.011004871688783169, -0.1247873306274414, -0.0011930124601349235, 0.11564849317073822, 0.03959095478057861, -0.0700625330209732, -0.06520890444517136, -0.12479536980390549, 0.08470332622528076, -0.0707649439573288, -0.10396260023117065, 0.045464467257261276, 0.04820463806390762, -0.07473549991846085, -0.006121484562754631], "\u5728\u4f7f\u7528`ops.concat`\u7b97\u5b50\u65f6\uff0c\u56e0\u4e3a\u6570\u636e\u89c4\u6a21\u6709\u70b9\u5927\uff0c\u5bfc\u81f4\u62a5\u9519`Error:Input and (output + workspace) num should <=192!`\uff0c\u53ef\u4ee5\u600e\u4e48\u5904\u7406\uff1f": [0.03062061034142971, 0.07236605882644653, 0.06496293097734451, 0.042054902762174606, -0.08454854786396027, -0.04757339879870415, -0.05508941039443016, 0.07494723796844482, -0.020042655989527702, 0.03392050415277481, -0.005168332252651453, -0.009768367744982243, 0.07335110753774643, 0.021679658442735672, -0.014640611596405506, 0.13143989443778992, 0.14709001779556274, -0.0712166279554367, -0.1019706055521965, 0.08018255233764648, 0.029001615941524506, 0.04670789837837219, 0.07655675709247589, -0.08086349070072174, 0.003666952718049288, 0.09367658942937851, -0.03847415745258331, -0.013347410596907139, 0.057654883712530136, 0.011273584328591824, 0.08141331374645233, 0.03545050323009491, -0.059780705720186234, -0.015160302631556988, -0.02153136394917965, -0.06361516565084457, -0.06883659958839417, 0.1154613047838211, -0.0646292120218277, -0.06169257313013077, 0.06505151838064194, 0.015616080723702908, -0.03568362817168236, 0.08314846456050873, -0.025483092293143272, 0.020307136699557304, -0.18668460845947266, 0.013743787072598934, -0.02744501829147339, -0.007309790700674057, -0.08378896117210388, 0.017145879566669464, 0.0068746390752494335, -0.006150045432150364, 0.011996952816843987, 0.023510050028562546, 0.04076682776212692, -0.052290551364421844, 0.10893816500902176, 0.031892020255327225, 0.023310694843530655, 0.013022903352975845, -0.0678112655878067, -0.06435412168502808, -0.11082786321640015, 0.04214542359113693, -0.05703936517238617, -0.06046473979949951, -0.10416477173566818, -0.044056519865989685, -0.045792680233716965, -0.06369131058454514, -0.020156055688858032, 0.06438229233026505, 0.05980229005217552, 0.0019710336346179247, -0.021209057420492172, 0.03693770989775658, -0.030469156801700592, 0.05930091440677643, 0.048746563494205475, 0.006595918443053961, 0.08601648360490799, -0.0852888822555542, -0.1349465548992157, -0.049693718552589417, -0.08628463000059128, 0.06700495630502701, -0.06650224328041077, 0.08112286031246185, 0.02484002709388733, 0.002534428844228387, -0.16198918223381042, 0.060729607939720154, 0.04285086691379547, -0.10353759676218033, -0.03576052933931351, 0.07692151516675949, -0.13203196227550507, 0.015624205581843853, 0.10628747195005417, 0.0345822349190712, -0.028394540771842003, 0.03703387826681137, -0.005693385377526283, -0.10950851440429688, -0.04720202460885048, 0.05417948588728905, -0.021189579740166664, 0.00633253064006567, 0.11359718441963196, -0.022232232615351677, 0.0049775876104831696, 0.04098842293024063, 0.007123109418898821, 0.09690625220537186, 0.024707721546292305, 0.005384944379329681, -0.04320616275072098, 0.13374310731887817, 0.12511985003948212, -0.11308185756206512, 0.06163256615400314, 0.10046100616455078, 0.07452934235334396, -0.05563826113939285, 0.09048768877983093, -0.06157783418893814, -0.05507241562008858, -0.07062175124883652, 0.1343671828508377, -0.04829604923725128, 0.07524621486663818, -0.0803128033876419, -0.0761018767952919, 0.11254336684942245, -0.06772657483816147, 0.006861875299364328, 0.0844017043709755, 0.1310226321220398, 0.011069145053625107, -0.1606866419315338, 0.025080285966396332, -0.03634752333164215, 0.05450787395238876, 0.009782900102436543, -0.06306229531764984, -0.11565953493118286, 0.011865192092955112, -0.06294319778680801, 0.084408700466156, -0.06209401413798332, -0.031552381813526154, 0.06455910205841064, 0.011369496583938599, 0.005491741932928562, 0.05721800774335861, 0.015229471027851105, -0.01724192313849926, -0.0036242930218577385, 0.02028568461537361, 0.005998472683131695, 0.03152137249708176, 0.010623509995639324, -0.052872464060783386, 0.00764109380543232, 0.03007291629910469, -0.01101677119731903, -0.10949787497520447, -0.041410837322473526, -0.033014584332704544, -0.04577904939651489, -0.10906551033258438, -0.01322860922664404, 0.044629137963056564, 0.042787741869688034, 0.0815458595752716, -0.08996084332466125, 0.002212836407124996, -0.0026858483906835318, 0.061216920614242554, -0.0879368707537651, -0.033565178513526917, -0.15083260834217072, -0.006469248794019222, 0.06285767257213593, 0.10729093849658966, 0.07589385658502579, 0.12112250924110413, -0.08766894042491913, -0.05203177407383919, 0.0004749633080791682, 0.021500496193766594, 0.11608845740556717, -0.01590396650135517, -0.009615017101168633, -0.07816897332668304, -0.010756352916359901, 0.02941286191344261, -0.0813136100769043, 0.02106788009405136, 0.06669268012046814, 0.051297400146722794, 0.03236165642738342, 0.03272227197885513, -0.03496112674474716, -0.09740414470434189, -0.12296977639198303, 0.02839062549173832, 0.009337523952126503, 0.10702026635408401, 0.10715620964765549, -0.0629379004240036, 0.005581461824476719, -0.11374136060476303, 0.018592027947306633, 0.037831906229257584, 0.009173523634672165, 0.08138403296470642, 0.02691657468676567, 0.0506855845451355, 0.0566399022936821, -0.0031771198846399784, -0.10632127523422241, -0.10575034469366074, -0.04233128949999809, -0.052391018718481064, -0.10076233744621277, -0.05686356499791145, 0.05641283094882965, -0.031668905168771744, 0.001105732750147581, 0.02170388586819172, 0.12813657522201538, -0.007994242943823338, 0.16275037825107574, -0.03422887250781059, -0.0400923416018486, -0.009906945750117302, 0.017140699550509453, -0.1047954335808754, 0.0900665819644928, -0.04411942884325981, -0.022259686142206192, -0.03369958698749542, 0.10021331161260605, 0.057095419615507126, 0.07785350829362869, 0.0563468337059021, -0.07428279519081116, 0.05750156566500664, 0.04689840227365494, -0.04205735772848129, -0.024477722123265266, -0.06489361077547073, 0.10317287594079971, 0.10627203434705734, -0.013717223890125751, 0.02453768439590931, -0.029449300840497017, 0.04033590480685234, 0.07007409632205963, -0.059109367430210114, -0.035141102969646454, -0.04028715938329697, -0.043422430753707886, 0.11058592796325684, 0.03929147496819496, -0.06272672861814499, -0.07783886790275574, 0.09944195300340652, 0.02632821351289749, -0.09934869408607483, -0.032134708017110825, 0.19521218538284302, 0.046849574893713, 0.022036856040358543, -0.13531410694122314, -0.011551858857274055, 0.011004277504980564, -0.020535895600914955, 0.059572868049144745, -0.0231024082750082, 0.020025167614221573, 0.07854972779750824, -0.020373929291963577, 0.12526820600032806, 0.02750018984079361, 0.021223286166787148, 0.16328448057174683, -0.016094569116830826, 0.006256716791540384, -0.07121393829584122, -0.0211391169577837, 0.08076211810112, 0.061802543699741364, 0.0911775678396225, 0.07093027234077454, -0.009499912150204182, 0.030684450641274452, -0.045649927109479904, -0.024240605533123016, 0.0812847763299942, 0.03415970131754875, -0.05400721728801727, -0.05655800551176071, -0.09670412540435791, 0.07757935672998428, 0.022476801648736, -0.03773655369877815, 0.06076555699110031, 0.09889082610607147, 0.09420932084321976, -0.04336295649409294, -0.04113265499472618, -0.03134826943278313, 0.08904305100440979, -0.17762629687786102, 0.07630747556686401, 0.0021895712707191706, 0.02523864060640335, -0.06967022269964218, 0.03595706820487976, 0.03262977674603462, 0.0033321294467896223, -0.04573414847254753, 0.049695275723934174, 0.05772727355360985, -0.029608290642499924, -0.00919429399073124, 0.04517648369073868, -0.11180341988801956, 0.10908520966768265, 0.13157570362091064, 0.10659047216176987, -0.06801292300224304, 0.1495450884103775, 0.10188236832618713, -0.012195649556815624, 0.057613521814346313, 0.013269778341054916, -0.06609547138214111, -0.0014649097574874759, -0.08515732735395432, 0.06523294001817703, -0.02785079926252365, 0.05067013204097748, -0.08370710909366608, -0.023305879905819893, 0.02983342856168747, 0.03426731750369072, -0.028038233518600464, 0.05185353010892868, 0.019175579771399498, -0.0836331695318222, -0.13692878186702728, -0.10213813185691833, 0.011167654767632484, 0.052213575690984726, 0.0019431909313425422, -0.06698691844940186, 0.06301484256982803, -0.04745563119649887, -0.06107136979699135, 0.03651650995016098, -0.02719779685139656, 0.027311081066727638, -0.0012861073482781649, 0.08560642600059509, 0.04649803414940834, -0.11090485006570816, -0.005334257613867521, 0.18613430857658386, 0.036703549325466156, -0.09228515625, -0.023410366848111153, -0.11837833374738693, 0.025400381535291672, -0.004306926857680082, -0.030973143875598907, 0.054898396134376526, 0.15555664896965027, -0.05679842084646225, 0.007064322009682655], "\u8bf7\u95ee\u5728\u9759\u6001\u56fe\u6a21\u5f0f\u7684`construct`\u51fd\u6570\u91cc\uff0c\u5982\u4f55\u628a\u4e00\u4e2a`tensor`\u4e2d\u6240\u542b\u6709\u7684\u8d1f\u6570\u503c\u5168\u90e8\u53bb\u9664\u6389\uff1f": [-0.05562875419855118, 0.054186753928661346, -0.015826860442757607, 0.07909059524536133, -0.04806322976946831, -0.046560175716876984, 0.05844920128583908, 0.02744661271572113, 0.006060047075152397, 0.05565023794770241, 0.006096979603171349, 0.005532657261937857, -0.029079871252179146, -0.027873219922184944, -0.024205537512898445, 0.06442543119192123, 0.09136262536048889, -0.04642380774021149, -0.0628591924905777, 0.06620893627405167, -0.011053960770368576, -0.008900864981114864, -0.0032349713146686554, -0.06130769103765488, 0.008235801942646503, 0.09854048490524292, -0.01293042954057455, -0.01967420056462288, 0.0004008794203400612, 0.031882792711257935, 0.05760969966650009, 0.06301353871822357, -0.09605415910482407, 0.00808293279260397, -0.035052720457315445, -0.04004615545272827, -0.051558058708906174, 0.09307261556386948, -0.0031056853476911783, 0.0032740277238190174, 0.04943893477320671, 0.011519686318933964, -0.07312881201505661, 0.11542718857526779, -0.06738290935754776, -0.05509035289287567, -0.06559279561042786, -0.05864565074443817, 0.019915703684091568, 0.005919145420193672, -0.1015225499868393, 0.03530535101890564, -0.02438884973526001, -0.02509489096701145, -0.03625733405351639, -0.012664783746004105, -0.0009409353951923549, -6.862729787826538e-05, 0.04424112290143967, -0.019808119162917137, 0.02637282758951187, 0.03503448888659477, -0.08061699569225311, 0.0023948168382048607, -0.0953906998038292, -0.02092374674975872, -0.06746334582567215, -0.06240731105208397, 0.009723025374114513, -0.010598085820674896, -0.06921148300170898, -0.007383163087069988, -0.017194513231515884, 0.05721025913953781, 0.046308085322380066, 0.12973228096961975, 0.0282963328063488, 0.013249424286186695, -0.0003010779619216919, 0.011599158868193626, 0.027316538617014885, 0.04679499939084053, 0.03923778235912323, -0.051168929785490036, -0.03739091008901596, -0.06317556649446487, -0.07805999368429184, 0.04185410961508751, -0.04319223016500473, 0.031034262850880623, 0.03664052113890648, -0.00034692510962486267, -0.13741552829742432, 0.05781421810388565, 0.08065203577280045, -0.01258525438606739, -0.05131129175424576, 0.01891922391951084, -0.141458660364151, -0.023450657725334167, 0.040085554122924805, -0.022342799231410027, -0.014108038507401943, 0.01115318201482296, 0.03838294744491577, -0.11860932409763336, 0.004892787896096706, 0.04431261867284775, -0.0463327094912529, -0.008819779381155968, 0.04673139005899429, 0.01532326266169548, 0.03710063919425011, 0.03909774124622345, -0.02035151608288288, 0.05988254398107529, -0.009531458839774132, -0.0481017529964447, -0.04264019429683685, 0.08103743195533752, 0.09311851114034653, -0.09163830429315567, 0.011879108846187592, 0.04207918420433998, 0.03668931499123573, -0.04144700616598129, 0.0695410817861557, -0.11053165793418884, -0.08775261044502258, -0.050628598779439926, 0.11410602182149887, -0.05685432627797127, 0.0056824227795004845, -0.11860434710979462, -0.11573641747236252, 0.13477204740047455, -0.045310311019420624, -0.04989892989397049, -0.03249306604266167, 0.12563399970531464, 0.06213401257991791, -0.1008337214589119, 0.023778874427080154, -0.06148607283830643, 0.12202237546443939, 0.013438314199447632, -0.12525881826877594, -0.11207976937294006, 0.004544126335531473, -0.07893339544534683, 0.0383126437664032, -0.004578129854053259, 0.012323418632149696, 0.11569587141275406, -0.015689754858613014, 0.04241371899843216, 0.02690752036869526, -0.009763862937688828, 0.03195399045944214, -0.047911904752254486, -0.0945800393819809, 0.016031228005886078, 0.03979221731424332, 0.0075820572674274445, -0.04482315480709076, 0.015398812480270863, -0.010499192401766777, 0.025548340752720833, -0.07420426607131958, -0.01722836121916771, 0.011993588879704475, -0.0021822357084602118, -0.025403236970305443, -0.07186085730791092, 0.05852873995900154, 0.008519569411873817, 0.025153620168566704, -0.009842714294791222, -0.005662757903337479, 0.012989062815904617, 0.08322707563638687, -0.1136922687292099, -0.0070265308022499084, -0.11050934344530106, 0.06224243715405464, 0.02372875064611435, 0.06692638248205185, 0.02363745868206024, 0.20460106432437897, -0.1259441375732422, 0.027174321934580803, 0.04467315971851349, -0.0013494087615981698, 0.09410151094198227, 0.021121006458997726, -0.016114721074700356, -0.11563700437545776, 0.02982565201818943, 0.030837085098028183, -0.06601156294345856, 0.007193633355200291, 0.035622451454401016, 0.043901629745960236, 0.08908430486917496, 0.023306511342525482, -0.04862188175320625, -0.11780676990747452, -0.09617684781551361, -0.021178510040044785, 0.013390697538852692, 0.04342065751552582, 0.08020929992198944, -0.04950793460011482, -0.05828744173049927, -0.07696007937192917, -0.0069680241867899895, 0.11426891386508942, 0.03788362443447113, 0.11833427101373672, -0.03882210701704025, 0.03765665367245674, 0.03491129353642464, 0.015934936702251434, -0.08870624005794525, -0.04598328471183777, -0.04314705729484558, -0.05145793408155441, -0.05748686566948891, 0.04527090862393379, -0.0165973249822855, -0.04898609593510628, 0.06592602282762527, 0.03550853207707405, 0.12581656873226166, -0.03766752406954765, 0.07907707989215851, -0.07567939907312393, 0.01470883283764124, 0.021191496402025223, -0.018215158954262733, -0.05237094312906265, 0.07893615961074829, -0.059070996940135956, 0.039707060903310776, -0.08727128058671951, 0.058861538767814636, 0.034715816378593445, 0.003865803824737668, 0.04573656618595123, -0.04565154016017914, 0.06268030405044556, 0.08301535248756409, -0.026522070169448853, 0.007267399225383997, -0.007242061197757721, 0.12448925524950027, 0.13284379243850708, -0.046764202415943146, 0.0008050462347455323, 0.03434474766254425, -0.003820318728685379, -0.004070119000971317, -0.029296420514583588, 0.03096240758895874, 0.009470868855714798, -0.004417860880494118, 0.07202504575252533, -0.05446673929691315, 0.001517104683443904, -0.025902582332491875, 0.07499115914106369, 0.011181019246578217, -0.09716880321502686, 0.013400348834693432, 0.12075341492891312, 0.07989999651908875, 0.015180543065071106, -0.11735562980175018, 0.0589841790497303, -0.012966115027666092, -0.04173571616411209, 0.05286615341901779, 0.013911306858062744, 0.017110051587224007, 0.12088515609502792, -0.06975623965263367, 0.044733673334121704, -0.02310469001531601, 0.027520038187503815, 0.0776798203587532, 0.00886503141373396, 0.01721438392996788, -0.056737594306468964, -0.042783256620168686, -0.04195093736052513, 0.12851467728614807, 0.035507671535015106, 0.0415213517844677, 0.030637387186288834, 0.0594567209482193, 0.042413823306560516, -0.02107190527021885, 0.02008328028023243, -0.0392373763024807, -0.036202322691679, -0.005834358744323254, -0.006946992129087448, 0.013838701881468296, -0.0051008728332817554, -0.004724529571831226, 0.048692017793655396, 0.1074662134051323, 0.0030058727134019136, 0.027277402579784393, -0.08368581533432007, -0.021737806499004364, 0.07381105422973633, -0.12794354557991028, 0.01602899096906185, -0.011948916129767895, -0.04800114035606384, -0.04502398893237114, 0.011245662346482277, 0.09522900730371475, 0.03900672495365143, -0.04201779142022133, 0.02229221910238266, 0.06257682293653488, -0.005850115325301886, -0.009758561849594116, 0.010331743396818638, -0.09172752499580383, 0.08838528394699097, 0.10544512420892715, -0.025791920721530914, -0.14176775515079498, 0.10474830120801926, 0.042663320899009705, 0.008231328800320625, 0.047313712537288666, 0.07483548671007156, -0.08927160501480103, -0.020930640399456024, -0.03001576103270054, -0.00530266622081399, -0.0362815223634243, 0.07842299342155457, 0.0611882284283638, -0.01317434199154377, -0.016505051404237747, 0.012411789037287235, -0.09914404898881912, 0.08884581923484802, 0.026340972632169724, -0.05971646308898926, -0.11521852016448975, -0.048837173730134964, 0.016779113560914993, 0.027487777173519135, -0.03978152200579643, -0.03425212949514389, -0.03791268914937973, -0.08223170042037964, -0.047244638204574585, 0.03587427735328674, -0.00488410796970129, 0.0409424714744091, 0.006261490285396576, 0.051877524703741074, -0.0005966349854134023, -0.07473038136959076, 0.031396009027957916, 0.10612639784812927, 0.06786401569843292, -0.02864302694797516, -0.014952820725739002, -0.1395934373140335, 0.04118461534380913, -0.027177032083272934, -0.04278110712766647, 0.05647850036621094, 0.07048901915550232, -0.0474252812564373, -0.029632164165377617], "`TransData`\u7b97\u5b50\u7684\u529f\u80fd\u662f\u4ec0\u4e48\uff0c\u80fd\u5426\u4f18\u5316\u6027\u80fd\uff1f": [0.009231260977685452, -0.0189795084297657, 0.011902624741196632, 0.11850863695144653, -0.10234971344470978, -0.0625830888748169, -0.045716047286987305, 0.05160970613360405, 0.03763508051633835, 0.00438893586397171, 0.047208573669195175, 0.011150047183036804, 0.055679336190223694, -0.0073957908898591995, -0.044523756951093674, 0.15788534283638, 0.16512180864810944, -0.017211386933922768, -0.06799834221601486, 0.07865090668201447, 0.0035569779574871063, 0.0587586835026741, 0.06045662611722946, -0.006452985107898712, 0.040968749672174454, 0.10658880323171616, 0.04111216217279434, -0.012759052217006683, 0.06559908390045166, 0.06396583467721939, 0.11267685145139694, -0.018179628998041153, -0.07627962529659271, -0.008384273387491703, -0.010190987028181553, -0.0016506168758496642, -0.12421865016222, 0.09366463869810104, -0.07672075182199478, 0.0008535587694495916, 0.06647580862045288, 0.058431610465049744, -0.04226140305399895, 0.02854320779442787, -0.02021007612347603, 0.05718666687607765, -0.08161468058824539, -0.020795512944459915, 0.028325866907835007, -0.028724374249577522, -0.07058336585760117, 0.06581979990005493, 0.08689199388027191, 0.05852440372109413, -0.03373204544186592, 0.035578642040491104, 0.04367808252573013, -0.053569089621305466, 0.045311953872442245, 0.0531221404671669, 0.04421759769320488, 0.0006334501085802913, -0.056192796677351, -0.12428131699562073, -0.08734802901744843, -0.0007275118259713054, -0.02612336352467537, -0.10441790521144867, -0.031354907900094986, 0.04568634182214737, -0.07033156603574753, -0.0174710713326931, 0.08899162709712982, 0.12575814127922058, 0.025416191667318344, 0.061916783452034, -0.07113899290561676, 0.06776901334524155, -0.0477466844022274, 0.05650811642408371, 0.08271176367998123, 0.045669108629226685, -0.0014608324272558093, -0.1287413090467453, -0.13373249769210815, 0.0066268593072891235, -0.06583701819181442, 0.06724970042705536, -0.09560989588499069, 0.011657017283141613, 0.04592166095972061, -0.01795361004769802, -0.14516350626945496, -0.013919158838689327, 0.058216482400894165, -0.02880708873271942, -0.14741294085979462, -0.02566641755402088, -0.07816023379564285, -0.030833369120955467, 0.023463241755962372, 0.095403291285038, 0.007144795265048742, 0.06303033977746964, 0.03104514069855213, -0.16904744505882263, 0.006490159779787064, 0.0913815125823021, -0.012237649410963058, -0.014402737841010094, 0.02515190653502941, -0.026367437094449997, 0.06065676361322403, -0.06649164855480194, -0.019426826387643814, 0.00535521749407053, -0.03853427618741989, -0.06388776749372482, -0.06230919808149338, 0.10380574315786362, 0.07470883429050446, -0.048337649554014206, 0.028751147910952568, 0.01537408959120512, 0.012288542464375496, -0.03449546545743942, 0.10574707388877869, -0.11169247329235077, -0.08793754875659943, -0.09184707701206207, 0.2452012151479721, -0.06444134563207626, 0.08027137070894241, -0.12323378026485443, -0.13503916561603546, 0.03920312225818634, -0.014123547822237015, 0.08899064362049103, -0.05441805720329285, 0.056132972240448, -0.0006471461383625865, -0.05775818973779678, 0.041275255382061005, -0.10594060271978378, 0.12943530082702637, 0.048347048461437225, -0.0362115204334259, -0.09719109535217285, 0.029196375980973244, -0.06980091333389282, 0.14466765522956848, 0.009300339967012405, 0.052326735109090805, 0.01323811523616314, 0.05602467060089111, 0.010461442172527313, 0.07453514635562897, -0.003915948327630758, -0.03306969255208969, -0.0700526311993599, -0.037606071680784225, 0.021512329578399658, -0.045229971408843994, -0.029199671000242233, -0.04337378591299057, -0.006903725676238537, 0.07229434698820114, 0.04575596749782562, -0.07713926583528519, -0.054921574890613556, -0.049189504235982895, -0.0014858999056741595, -0.03045794367790222, -0.00101520458701998, 0.06757578998804092, 0.04773396626114845, 0.05785807594656944, -0.07689807564020157, -0.06379042565822601, -0.05105646699666977, 0.10031141340732574, -0.04319239780306816, -0.026614779606461525, -0.07373157143592834, 0.004358109552413225, 0.05600497126579285, 0.07449435442686081, 0.019026586785912514, 0.14145787060260773, -0.006353188306093216, -0.06816838681697845, 0.05306991934776306, 0.04316816106438637, 0.17441406846046448, 0.05781630054116249, -0.023980947211384773, -0.0885937437415123, -0.0032426563557237387, 0.055595360696315765, 0.008601645939052105, 0.005320632830262184, 0.03217039629817009, 0.03929285332560539, 0.07719787210226059, 0.07827375829219818, -0.06509874761104584, -0.05241440236568451, -0.14200538396835327, 0.056145478039979935, 0.0186262559145689, 0.08490408957004547, 0.060771383345127106, 5.687214434146881e-05, -0.0433102548122406, -0.11933016777038574, -0.04001620039343834, 0.00016129761934280396, 0.06860630959272385, 0.13541893661022186, -0.008342626504600048, 0.03587610274553299, -0.017081020399928093, -0.0166892372071743, -0.10241687297821045, -0.0631861463189125, -0.014860774390399456, 0.02004348114132881, -0.09803116321563721, -0.021733254194259644, 0.025731965899467468, -0.0245997104793787, 0.024290546774864197, 0.07338074594736099, 0.0939709022641182, -0.07800283282995224, 0.08706625550985336, -0.02904021181166172, -0.03954536095261574, -0.007945796474814415, 0.019145671278238297, -0.12232931703329086, 0.12185421586036682, -0.07919923961162567, 0.07557913661003113, -0.019287385046482086, 0.13961274921894073, 0.06261060386896133, 0.04437802731990814, 0.04539448022842407, -0.005107879638671875, 0.017736101523041725, -0.060116082429885864, -0.027287913486361504, 0.027922777459025383, -0.009642860852181911, 0.12929238379001617, 0.11658670008182526, 0.005665306001901627, -0.019536638632416725, -0.012166882865130901, 0.005429094657301903, 0.032311778515577316, -0.07811973989009857, -0.002944913459941745, 0.005886186845600605, -0.01319163665175438, 0.1142471581697464, 0.08089914917945862, 0.05087151378393173, -0.04320886358618736, -0.007265129126608372, 0.04361793026328087, -0.03113377094268799, -0.05213528126478195, 0.11357627063989639, 0.009619161486625671, 0.006275314372032881, -0.1428201049566269, 0.00904346164315939, -0.05714796483516693, 0.04707470163702965, 0.058069005608558655, -0.049854375422000885, 0.024050194770097733, 0.04312027618288994, -0.07976680994033813, 0.08871334046125412, 0.05313248559832573, 0.011440780013799667, 0.07237647473812103, -0.02772010862827301, -0.010799274779856205, -0.0769629180431366, -0.0043657030910253525, -0.044975489377975464, 0.10725156217813492, 0.155899778008461, 0.0720934122800827, 0.009680229239165783, 0.11661827564239502, 0.011019357480108738, -0.0010706274770200253, 0.020518094301223755, -0.045459162443876266, -0.017099209129810333, -0.03629684820771217, -0.06779690831899643, -0.011501612141728401, 0.0074234395287930965, -0.0022277943789958954, 0.0719621330499649, 0.04367445781826973, 0.06616434454917908, 0.04560857638716698, -0.05716683715581894, 0.07848415523767471, 0.11385501176118851, -0.17453232407569885, 0.011473833583295345, -0.0671335831284523, 0.059965427964925766, -0.01596788875758648, 0.07914416491985321, 0.16030117869377136, -0.011529717594385147, -0.05552840977907181, -0.011120853945612907, 0.11415807902812958, 0.03563284873962402, 0.07406166195869446, 0.04043169692158699, -0.05202198401093483, 0.14014557003974915, 0.13359761238098145, 0.008103247731924057, -0.0837554782629013, 0.13396814465522766, 0.0842868983745575, 0.0073516834527254105, 0.014393795281648636, -0.0015708269784227014, -0.0698377713561058, -0.03144470602273941, 0.013319971039891243, 0.03631555661559105, -0.021082481369376183, 0.0625133290886879, -0.02067738026380539, 0.03863459825515747, -0.05825752392411232, -0.010835009627044201, -0.019208470359444618, 0.04849521815776825, 0.004713744390755892, -0.0616939403116703, -0.12441885471343994, -0.09665781259536743, 0.00940372608602047, 0.07886488735675812, 0.02224060148000717, -0.024354077875614166, 0.05748981237411499, -0.1083545908331871, -0.00013410300016403198, 0.11638616025447845, -0.07067367434501648, 0.02952028624713421, -0.00796110462397337, 0.009228772483766079, 0.07838451862335205, -0.06271985918283463, 0.06003663316369057, 0.09383047372102737, 0.003404405899345875, -0.07260730117559433, 0.023343147709965706, -0.10515961050987244, 0.09093844890594482, -0.06967119872570038, -0.04850103333592415, 0.09046392142772675, 0.04529412463307381, -0.12569837272167206, -0.06629934161901474], "\u7b97\u5b50`Concat`\u62fc\u63a5\u5305\u542b\u591a\u4e2aTensor\u7684\u5143\u7ec4\u51fa\u9519\uff0c\u4f3c\u4e4e\u4f20\u5165\u7684`tensor list`\u5143\u7d20\u4e2a\u6570>=192\u5c31\u4f1a\u62a5\u9519\u3002\u5982\u679c\u8981`Concat`\u5305\u542b\u591a\u4e2aTensor\u7684\u5143\u7ec4\uff0c\u6709\u4ec0\u4e48\u8f83\u597d\u7684\u89e3\u51b3\u65b9\u6848\uff1f": [-0.008116970770061016, -0.006014995276927948, 0.0074590458534657955, 0.011090319603681564, -0.09017324447631836, -0.017503302544355392, 0.011766334995627403, 0.03160225600004196, -0.014174195006489754, 0.012733512558043003, -0.03865669667720795, -0.05094142630696297, 0.014367884024977684, -0.022417692467570305, 0.036895886063575745, 0.07224755734205246, 0.13774190843105316, -0.06214633584022522, -0.04166650027036667, 0.05771223455667496, 0.02271125651896, 0.010328024625778198, 0.045450083911418915, -0.05648321658372879, 0.033107876777648926, 0.06067245453596115, -0.016322454437613487, -0.0026156543754041195, 0.04556000232696533, 0.09968660771846771, 0.10402476042509079, 0.02749263495206833, -0.041119448840618134, 0.0047026509419083595, 0.017660198733210564, -0.027429254725575447, -0.06159311532974243, 0.14644883573055267, 0.00411636009812355, -0.03467853367328644, 0.04272644594311714, 0.039007820188999176, -0.04849046468734741, 0.11480198800563812, -0.053193867206573486, -0.05046161636710167, -0.10724768787622452, 0.0033810848835855722, 0.018250975757837296, -0.008578812703490257, -0.14407731592655182, 0.04926346242427826, 0.029082752764225006, -0.006186820566654205, -0.04461034759879112, 0.00530602503567934, 0.021458616480231285, -0.07172203809022903, 0.0501771979033947, 0.016134683042764664, 0.010993294417858124, 0.017259947955608368, -0.024077588692307472, -0.03639410063624382, -0.1108110323548317, 0.04888413846492767, -0.0038604135625064373, -0.02092672884464264, -0.07700765132904053, -0.040679723024368286, -0.06809739768505096, -0.02605476975440979, -0.0042031253688037395, 0.05771498382091522, 0.0690733939409256, 0.09580087661743164, -0.030790260061621666, 0.05241556093096733, -0.05862169340252876, 0.07640871405601501, 0.04167315363883972, 0.04661230742931366, 0.003394756466150284, -0.06508196890354156, -0.10019712895154953, -0.05915497615933418, -0.06680517643690109, 0.07495509088039398, -0.05504005402326584, 0.0736595019698143, 0.02911880984902382, 0.017406079918146133, -0.14883948862552643, 0.048517435789108276, 0.04433048516511917, -0.06785108149051666, -0.005843637976795435, 0.0401158332824707, -0.1257234811782837, -0.0038327574729919434, 0.07948185503482819, -0.049999020993709564, -0.014945649541914463, 0.051490411162376404, -0.045309878885746, -0.12228274345397949, 0.032921481877565384, 0.07018066942691803, -0.06550624966621399, 0.00947413221001625, 0.055056460201740265, -0.020002756267786026, 0.01560257375240326, 0.018360145390033722, 0.011430131271481514, 0.049859996885061264, -0.021249739453196526, -0.03956994041800499, -0.01762975938618183, 0.08888470381498337, 0.07057219743728638, -0.08264055848121643, 0.013747787103056908, 0.06602013111114502, 0.04468425363302231, -0.023991109803318977, 0.09123070538043976, -0.060023121535778046, -0.06844253093004227, -0.002703583799302578, 0.17709730565547943, -0.043561454862356186, 0.09077174961566925, -0.10091258585453033, -0.07905566692352295, 0.07556081563234329, -0.0958508774638176, -0.01920052245259285, -0.016729071736335754, 0.08853039890527725, 0.015244189649820328, -0.1109401062130928, -0.0012296581408008933, -0.07355402410030365, 0.12220712006092072, 0.0008111547795124352, -0.11115643382072449, -0.09832678735256195, -0.008010302670300007, -0.06646383553743362, 0.050407469272613525, -0.015556642785668373, -0.007490066345781088, 0.05352374166250229, -0.019347693771123886, 0.043057385832071304, 0.04389838129281998, 0.019595015794038773, -0.029427392408251762, 0.0033242355566471815, -0.043164774775505066, -0.035014547407627106, 0.02019317075610161, 0.0007370373932644725, -0.06470313668251038, 0.03875439986586571, 0.06053851172327995, 0.02629803866147995, -0.07910362631082535, -0.05405256897211075, -0.011573794297873974, 0.02787604182958603, -0.050142042338848114, -0.06265968084335327, 0.03318357095122337, -0.017397118732333183, 0.010124899446964264, -0.08665156364440918, -0.010283350944519043, -0.04615357518196106, 0.046585313975811005, -0.0935247540473938, -0.04055601730942726, -0.110772043466568, 0.0173201747238636, 0.07376372814178467, 0.08795538544654846, 0.07911662757396698, 0.1374303251504898, -0.12224599719047546, -0.05385958403348923, 0.020607173442840576, -0.01506667211651802, 0.0723486840724945, 0.0416855588555336, -0.04458509385585785, -0.081376813352108, 0.03718297928571701, 0.03515877574682236, -0.06794445216655731, -0.03191281482577324, 0.018040819093585014, 0.016807464882731438, 0.0002612769603729248, -0.005155537277460098, -0.07184042036533356, -0.13418160378932953, -0.11334512382745743, 0.010857826098799706, -0.040449097752571106, 0.03360896557569504, 0.057417966425418854, -0.03412327915430069, -0.05019190534949303, -0.06890155375003815, 0.033559344708919525, 0.07448168098926544, 0.02737698145210743, 0.11823181807994843, -0.013691515661776066, 0.002375724958255887, -0.02341674268245697, -0.013983936049044132, -0.11662927269935608, -0.09934324026107788, -0.03888024762272835, -0.03245515748858452, -0.0740431621670723, -0.011103203520178795, 0.029094040393829346, -0.03987765312194824, 0.07101349532604218, 0.016010848805308342, 0.13016840815544128, -0.05226593464612961, 0.13034000992774963, -0.05253138020634651, -0.015589416027069092, -0.00555271003395319, -0.03342100977897644, -0.047713350504636765, 0.12025770545005798, -0.0026563939172774553, -0.018477901816368103, -0.06775520741939545, 0.09962289035320282, 0.06725484877824783, 0.014217211864888668, 0.012948633171617985, -0.048610299825668335, 0.07383284717798233, 0.06944885849952698, -0.03864680230617523, 0.01314457692205906, -0.009908907115459442, 0.10786573588848114, 0.031945426017045975, -0.0595417357981205, 0.0335843488574028, 0.022460486739873886, 0.03482602536678314, 0.052114732563495636, -0.10639306902885437, 0.03602510690689087, 0.01803642511367798, -0.009475519880652428, 0.11612117290496826, -0.028839988633990288, 0.0040958295576274395, -0.04067714512348175, 0.06559682637453079, -0.028652582317590714, -0.08316881209611893, -0.03065212070941925, 0.14400094747543335, 0.04190466180443764, 0.004134482238441706, -0.10195127129554749, 0.0005956775858066976, -0.016446756199002266, -0.03086332604289055, 0.02897624298930168, -0.019335493445396423, 0.02753034606575966, 0.09226448833942413, -0.03744470328092575, 0.09541953355073929, 0.019186919555068016, -0.002440592972561717, 0.09444301575422287, -0.006322231609374285, -0.026548530906438828, -0.039576344192028046, -0.042172230780124664, 0.007102109491825104, 0.11662079393863678, 0.044456176459789276, 0.07414953410625458, 0.010269969701766968, 0.07737161219120026, 0.005488366819918156, -0.0037985709495842457, 0.03287872299551964, 0.002640658523887396, -0.023185255005955696, -0.07119258493185043, -0.03115798719227314, 0.057449281215667725, 0.05400371924042702, -0.020318660885095596, 0.06615698337554932, 0.03637026995420456, 0.012014324776828289, 0.017713084816932678, -0.049098968505859375, 0.02069123648107052, 0.10035739839076996, -0.1081460565328598, 0.038739122450351715, -0.048250406980514526, 0.012987218797206879, -0.0810510516166687, 0.020523782819509506, 0.10878469049930573, 0.021802162751555443, -0.05668678134679794, -0.001699450658634305, 0.07368287444114685, -0.015561890788376331, 0.032097380608320236, 0.037623919546604156, -0.08279191702604294, 0.0708695501089096, 0.10162121802568436, 0.024992339313030243, -0.11456964910030365, 0.10663683712482452, 0.0976870208978653, -0.007268609944730997, 0.07212265580892563, -0.008863425813615322, -0.0897374302148819, 0.03373568132519722, -0.04906709864735603, 0.04360850155353546, -0.08944792300462723, 0.08718972653150558, -0.028329428285360336, 0.010106457397341728, -0.009990586899220943, 0.017963580787181854, -0.03772914409637451, 0.03759544715285301, 0.04499378800392151, -0.05340750142931938, -0.148953378200531, -0.0514909066259861, 0.029869917780160904, 0.03791888430714607, 0.0009460967849008739, -0.0376414880156517, -0.05199069157242775, -0.04682531580328941, -0.020676372572779655, 0.05678668990731239, 0.008363437838852406, 0.07162648439407349, 0.019765283912420273, 0.03164844214916229, 0.03234642371535301, -0.07305470108985901, 0.07470299303531647, 0.11937170475721359, 0.02814584970474243, -0.06950213015079498, -0.011997781693935394, -0.1348412036895752, 0.021346010267734528, -0.061637796461582184, -0.10138195008039474, -0.006674455013126135, 0.05194302648305893, -0.07036010175943375, 0.008773136883974075], "\u5728\u4f7f\u7528`Conv2D`\u8fdb\u884c\u5377\u79ef\u5b9a\u4e49\u7684\u65f6\u5019\u4f7f\u7528\u5230\u4e86`group`\u7684\u53c2\u6570\uff0c`group`\u7684\u503c\u4e0d\u662f\u53ea\u9700\u8981\u4fdd\u8bc1\u53ef\u4ee5\u88ab\u8f93\u5165\u8f93\u51fa\u7684\u7ef4\u5ea6\u6574\u9664\u5373\u53ef\u4e86\u5417\uff1f`group`\u53c2\u6570\u7684\u4f20\u9012\u65b9\u5f0f\u662f\u600e\u6837\u7684\u5462\uff1f": [-0.06764405965805054, 0.055203717201948166, 0.08891696482896805, 0.027932442724704742, -0.03659665212035179, 0.0037671448662877083, -0.004282798618078232, 0.05395430326461792, 0.005736199673265219, -0.050886403769254684, 0.01749800704419613, -0.0083316033706069, 0.028976771980524063, 0.004504911135882139, -0.10219109058380127, 0.06523290276527405, 0.1693895310163498, 0.0015605386579409242, -0.09864918887615204, 0.043648459017276764, 0.010849169455468655, -0.03022206947207451, 0.031002888455986977, 0.013745339587330818, 0.015569399110972881, 0.05330458655953407, 0.02265511080622673, 0.07760147005319595, -0.01630140282213688, 0.11383452266454697, 0.11054164916276932, 0.045443013310432434, -0.08504077047109604, 0.019281454384326935, -0.03101092018187046, -0.07449338585138321, 0.017393000423908234, 0.08048748970031738, -0.01100718043744564, -0.02658042311668396, -0.021697785705327988, 0.025212394073605537, -0.04305899143218994, 0.0715612918138504, -0.08924046158790588, -0.004961030557751656, -0.15929004549980164, 0.03094753809273243, 0.04112686589360237, 0.031387150287628174, -0.14708369970321655, 0.08646434545516968, 0.04848732799291611, -0.05074378848075867, -0.04434007406234741, 0.02105048857629299, 0.01628929004073143, -0.008806847035884857, 0.08930961787700653, 0.024280300363898277, 0.0013740165159106255, -0.03691975399851799, 0.012017006985843182, -0.04920737072825432, -0.12200552225112915, 0.013465415686368942, -0.07746943086385727, -0.08547908812761307, -0.027070732787251472, -0.034286677837371826, -0.041663795709609985, -0.006520007736980915, 0.012776794843375683, -0.01707489602267742, 0.019322508946061134, 0.11455687880516052, -0.01734660193324089, -0.03637837618589401, -0.024482764303684235, 0.03645893931388855, 0.013712693937122822, 0.054697006940841675, -0.002118163276463747, -0.060400523245334625, -0.0685950443148613, -0.11082716286182404, -0.02757813222706318, 0.06173320859670639, -0.07476119697093964, 0.06788613647222519, 0.05428393557667732, -0.04790450260043144, -0.14165501296520233, 0.03146972507238388, 0.15828289091587067, -0.056062743067741394, -0.04772380366921425, -0.03145100548863411, -0.15602563321590424, -0.017985789105296135, 0.03538709133863449, -0.0394132137298584, -0.03683748468756676, 0.046804048120975494, 0.009918647818267345, -0.1042136624455452, 0.07822245359420776, 0.036646973341703415, -0.04467802494764328, 0.01769869402050972, 0.10895286500453949, 0.021432984620332718, 0.06178019195795059, 0.050662845373153687, 0.007042284123599529, 0.0594845712184906, -0.061887286603450775, -0.03228075057268143, -0.09718827158212662, 0.07064823061227798, 0.07564983516931534, -0.05202285200357437, -0.01906757242977619, 0.013560865074396133, -0.018322667106986046, -0.04707564041018486, 0.021837186068296432, -0.08281312882900238, -0.09010498970746994, -0.0511133074760437, 0.1958015412092209, -0.062200210988521576, 0.0380459800362587, -0.04001956433057785, -0.10376357287168503, 0.058758724480867386, -0.04166780412197113, -0.035692233592271805, -0.061684392392635345, 0.08424519002437592, 0.1157669946551323, -0.10027334094047546, 0.0679076761007309, -0.03852277249097824, 0.07750744372606277, 0.047762174159288406, -0.08290322124958038, -0.13988015055656433, -0.04200468212366104, -0.05053833872079849, 0.05211210623383522, -0.002049058675765991, -0.07889257371425629, 0.10509493201971054, -0.04007354751229286, 0.032439686357975006, 0.011260841973125935, 0.011293325573205948, -0.035343386232852936, -0.01693885773420334, -0.08254777640104294, -0.06082703173160553, 0.05137905851006508, 0.001365317148156464, -0.016047805547714233, 0.053086958825588226, -0.041520364582538605, -0.0033269755076617002, -0.08035098761320114, -0.04986237362027168, -0.006776496302336454, 0.022283177822828293, -0.024535808712244034, -0.07872586697340012, 0.023421218618750572, 0.023369137197732925, 0.06463682651519775, -0.10564473271369934, 0.006657045800238848, 0.009112057276070118, -0.00013587996363639832, -0.07193557173013687, 0.005975618492811918, -0.07984871417284012, 0.043118834495544434, 0.08708935976028442, 0.030593717470765114, 0.04524186998605728, 0.08469740301370621, -0.16895094513893127, 0.020932426676154137, 0.03435264900326729, -0.0028113797307014465, 0.03404344245791435, 0.005698090419173241, -0.020545052364468575, -0.10079497843980789, 0.022524958476424217, 0.06316525489091873, -0.06846433877944946, 0.016017429530620575, 0.08199033886194229, -0.011618134565651417, -0.024655656889081, -0.056856296956539154, -0.05904571712017059, -0.09749260544776917, -0.08023277670145035, -0.01553257554769516, -0.01671665348112583, 0.10016995668411255, -0.007298287935554981, -0.04911905154585838, -0.05044820159673691, -0.05034111440181732, -0.009222968481481075, 0.11222546547651291, 0.03621283918619156, 0.05258364975452423, -0.05931772291660309, 0.0029306402429938316, 0.03283390402793884, 0.021197786554694176, -0.08402879536151886, -0.07848507165908813, -0.063535675406456, -0.012964308261871338, -0.1355474591255188, -0.03252865746617317, 0.022967778146266937, -0.06816175580024719, 0.04810389131307602, 0.07192277908325195, 0.12317070364952087, -0.028769537806510925, 0.040233246982097626, -0.005108967423439026, 0.04603387787938118, 0.07650619000196457, 0.008256412111222744, -0.10380266606807709, 0.057678353041410446, -0.07523044943809509, -0.03748956695199013, -0.0777311623096466, 0.13714537024497986, 0.03897946700453758, 0.0651249811053276, -0.05422637239098549, 0.028477070853114128, 0.04105186462402344, -0.009473818354308605, -0.0010100078070536256, 0.017013240605592728, -0.028645651414990425, 0.04150759428739548, 0.08391661942005157, -0.11090963333845139, 0.014761656522750854, 0.013423001393675804, -0.013769451528787613, 0.038763344287872314, -0.014303009957075119, 0.08802430331707001, -0.021428504958748817, -0.03943128511309624, 0.09516960382461548, -0.06561829894781113, 0.02164674550294876, -0.0905597135424614, 0.03261027857661247, -0.016050109639763832, -0.007908354513347149, -0.007608392741531134, 0.09519930183887482, 0.10990815609693527, 0.02389194443821907, -0.08601973205804825, -0.002181090647354722, 0.029274832457304, -0.002556031569838524, 0.06290426850318909, 0.05340374633669853, -0.042565133422613144, -0.0030616389121860266, -0.03821304440498352, 0.08103650063276291, -0.024237582460045815, 0.07517936080694199, 0.1043877899646759, 0.0024638609029352665, 0.005546349100768566, -0.0637463703751564, 0.02294030599296093, -0.07773218303918839, 0.09762752056121826, 0.03380529582500458, 0.012461240403354168, 0.03140391781926155, 0.03584848344326019, 0.01377866230905056, -0.062005020678043365, 0.07555317878723145, -0.10479740798473358, -0.08678878098726273, 0.05167762562632561, -0.010922625660896301, 0.047489672899246216, -0.01653464324772358, -0.007235006894916296, 0.06476863473653793, 0.10263141244649887, -0.047795090824365616, 0.08494357019662857, -0.024472525343298912, 0.033882368355989456, 0.03619043529033661, -0.038562238216400146, -0.006942950189113617, -0.05514778941869736, -0.030668051913380623, -0.058006659150123596, 0.02459172159433365, 0.08049575984477997, 0.02845667488873005, 0.0035950769670307636, 0.05111322179436684, 0.04567062854766846, 0.007783707231283188, 0.06366394460201263, 0.03243343159556389, -0.10153473168611526, 0.03574328497052193, 0.11736422777175903, -0.026153473183512688, -0.09239794313907623, 0.08323642611503601, 0.05900892615318298, 0.02794226072728634, 0.04829757288098335, 0.029805166646838188, -0.057925112545490265, -0.04258504509925842, -0.09380496293306351, 0.028341451659798622, -0.07961039245128632, 0.033468663692474365, 0.09116087853908539, -0.001158153172582388, -0.025924626737833023, 0.03380792587995529, -0.1009790375828743, 0.051481232047080994, -0.020012738183140755, -0.05820322036743164, -0.08542194962501526, 0.009290960617363453, -0.02445153333246708, 0.03935625031590462, 0.03094993159174919, 0.0009453610400669277, -0.010889437980949879, -0.020311541855335236, -0.0873480960726738, 0.01140863448381424, -0.017386509105563164, 0.09306014329195023, 0.023418208584189415, 0.023308755829930305, 0.05267983302474022, -0.11332318186759949, 0.07122336328029633, 0.08209166675806046, 0.0657549574971199, -0.11910607665777206, -0.05424368381500244, -0.07310288399457932, 0.08778855204582214, -0.03742825239896774, -0.09837942570447922, 0.0015737569192424417, -0.026368150487542152, -0.09196555614471436, -0.004720164928585291], "MindSpore\u652f\u6301\u77e9\u9635\u8f6c\u7f6e\u5417\uff1f": [-0.057385433465242386, 0.07599673420190811, 0.015596205368638039, -0.018674956634640694, -0.06287316977977753, -0.0221176166087389, -0.005455369129776955, 0.054455261677503586, 0.015533611178398132, 0.052352700382471085, -0.0021976421121507883, -0.015560385771095753, 0.045107144862413406, 0.06753543764352798, -0.09556546062231064, 0.0826469361782074, 0.12148343026638031, 0.03494768589735031, -0.07959738373756409, 0.06647806614637375, -0.004303889814764261, -0.016460634768009186, 0.08781914412975311, -0.02636086754500866, 0.000354960560798645, 0.07921043783426285, -0.03098314441740513, 0.016030268743634224, 0.011289485730230808, 0.032917171716690063, 0.08167387545108795, 0.03829973191022873, -0.04038010910153389, -0.003952082246541977, -0.0416247621178627, -0.06663785874843597, -0.08740510791540146, 0.04234979301691055, -0.0031687510199844837, -0.04808778315782547, 0.025542067363858223, 0.029558273032307625, -0.023600028827786446, 0.10228782892227173, -0.03104747086763382, -0.053425006568431854, -0.1379629373550415, 0.004543079528957605, -0.001760486513376236, -0.0315522775053978, -0.06608667969703674, 0.0624818317592144, 0.02486925758421421, -0.029069488868117332, -0.06181325018405914, -0.03031487762928009, 0.00936642475426197, 0.054559916257858276, 0.05124881491065025, -0.13495871424674988, -0.0036387096624821424, 0.03810838237404823, -0.06974540650844574, -0.04499301314353943, -0.12721630930900574, -0.016519200056791306, -0.06386977434158325, -0.08797497302293777, -0.033197276294231415, 0.042633574455976486, -0.035861365497112274, -0.029444459825754166, -0.02035045251250267, 0.06054244935512543, 0.046749044209718704, 0.007769579067826271, -0.03188472241163254, -0.00050525733968243, -0.0797625333070755, 0.006977001670747995, 0.027298906818032265, 0.0894111767411232, 0.03723001107573509, -0.06415755301713943, -0.09694312512874603, -0.0010760570876300335, -0.0583273321390152, 0.10495833307504654, -0.03247544914484024, 0.11076823621988297, 0.0037036461289972067, -0.01173816155642271, -0.16908153891563416, 0.041242845356464386, 0.05941466614603996, 0.009432725608348846, -0.061253197491168976, -0.014571812003850937, -0.1398916393518448, -0.03802640736103058, 0.009973759762942791, 0.023220563307404518, -0.04720856249332428, 0.06771904230117798, 0.02494228631258011, -0.07493756711483002, 0.06749006360769272, -0.0007172281621024013, 0.0976107269525528, 0.019558493047952652, 0.07110293954610825, 0.0016420840984210372, 0.09921757876873016, -0.014043740928173065, 0.02802814170718193, 0.011125335469841957, -0.06516465544700623, 0.017768196761608124, -0.05219796299934387, 0.10131335258483887, 0.07795585691928864, -0.06493409723043442, -0.00443254504352808, 0.04714588448405266, 0.027689481154084206, -0.014226916246116161, 0.0867922380566597, -0.10806237161159515, -0.10942287743091583, -0.09255097061395645, 0.1521884948015213, -0.10353684425354004, 0.10974747687578201, -0.10704892873764038, -0.13186576962471008, 0.06280042976140976, 0.005461214110255241, 0.021673038601875305, -0.059078752994537354, 0.10133426636457443, 0.0139531958848238, -0.12371373176574707, 0.12940871715545654, -0.04982459545135498, 0.0895300880074501, 0.07189173996448517, -0.047185543924570084, -0.09871084988117218, -0.0022942868527024984, -0.09246082603931427, 0.04259030893445015, -0.02923039346933365, -0.06465450674295425, 0.11020497977733612, 0.029057858511805534, 0.04968094825744629, -0.014466111548244953, -0.025176839902997017, -0.005040699150413275, -0.04055561125278473, 0.002280629938468337, -0.006375457160174847, 0.017627321183681488, 0.008119682781398296, -0.0318671353161335, -0.039155565202236176, 0.04633139818906784, 0.007558694574981928, -0.07329513877630234, -0.05076761916279793, -0.0221908837556839, -0.02141590788960457, -0.03043576329946518, 0.03910365700721741, 0.03227749094367027, -0.018344761803746223, 0.10557618737220764, -0.07917101681232452, 0.011996764689683914, -0.02849045768380165, 0.017743434756994247, -0.08525478839874268, -0.013759905472397804, -0.07207974791526794, 0.012315887026488781, 0.02324218675494194, 0.10494838654994965, 0.022413358092308044, 0.10939477384090424, -0.1612057089805603, -0.01564847305417061, 0.04375806450843811, 0.015085835941135883, 0.053475599735975266, 0.028678467497229576, 0.04558280110359192, -0.08633415400981903, -0.05227850750088692, 0.015757137909531593, -0.03502637520432472, -0.024186259135603905, -0.006051552016288042, 0.03538457676768303, 0.026020709425210953, -0.028887514024972916, 0.01852685585618019, -0.07532712817192078, -0.0640227273106575, -0.005001234821975231, -0.03669546917080879, 0.0849391520023346, 0.0439625084400177, -0.010311529040336609, -0.06379219144582748, -0.10384255647659302, -0.01749049685895443, 0.12479978799819946, 0.057885266840457916, 0.009301132522523403, -0.0643593966960907, 0.016996147111058235, 0.030856600031256676, 0.02570183575153351, -0.06940145790576935, -0.1497400403022766, -0.04358786344528198, -0.027570147067308426, -0.1318771243095398, -0.021843183785676956, 0.05368500202894211, -0.03265167027711868, 0.04865535348653793, 0.03814059495925903, 0.16867733001708984, -0.0297832228243351, 0.15070317685604095, -0.004331253003329039, -0.013757513836026192, 0.06560247391462326, 0.03030555322766304, -0.12153709679841995, 0.0758194848895073, -0.05555637553334236, -0.04685317724943161, -0.036987513303756714, 0.10031315684318542, 0.07604950666427612, 0.02056700922548771, 0.027931883931159973, -0.055821970105171204, 0.039173513650894165, 0.018079018220305443, -0.08525907248258591, 0.04981877654790878, -0.03163549676537514, 0.047232236713171005, 0.07657786458730698, -0.060831669718027115, -0.004076733719557524, 0.0495956651866436, 0.00956716574728489, 0.05719441920518875, -0.04470433294773102, -0.0020532896742224693, -0.03460351377725601, -0.0034103502985090017, 0.08767202496528625, -0.06951431930065155, 0.030825398862361908, -0.12333200871944427, -0.004332945682108402, 0.014882991090416908, -0.11508157849311829, 0.03931142017245293, 0.12440373003482819, 0.08589102327823639, 0.023630570620298386, -0.19192220270633698, 0.023753831163048744, 0.049010563641786575, -0.014527855440974236, -0.0018748767906799912, -0.024229543283581734, 0.011785447597503662, 0.05825177952647209, 0.020786721259355545, 0.034745462238788605, -0.013841194100677967, 0.050788115710020065, 0.12990038096904755, -0.07927756756544113, 0.009428126737475395, -0.07952415198087692, 0.06327160447835922, -0.05389191210269928, 0.06078227981925011, 0.031143715605139732, 0.044184356927871704, 0.052402958273887634, 0.04091750085353851, -0.010671661235392094, -0.04913950338959694, 0.09261436760425568, -0.11745345592498779, -0.025184083729982376, 0.044396720826625824, -0.05086089298129082, 0.10255688428878784, 0.02727483958005905, 0.02619749866425991, 0.08551143109798431, 0.12033115327358246, 0.026575803756713867, 0.07869912683963776, -0.06794831901788712, -0.02176833525300026, 0.05147732049226761, -0.15654557943344116, 0.05588165670633316, -0.09779007732868195, 0.026646297425031662, -0.025460636243224144, -0.00831647403538227, 0.06989866495132446, 0.07328838109970093, -0.08821725845336914, 0.025044675916433334, 0.06080903112888336, 0.047729380428791046, -0.07035420089960098, 0.0306585393846035, -0.08879087120294571, 0.04086969792842865, 0.05964679643511772, 0.006987186148762703, -0.09323301911354065, 0.08348987996578217, 0.08700034022331238, -0.013980580493807793, 0.0959063321352005, 0.06839035451412201, -0.0668352022767067, -0.00010850280523300171, -0.05941326171159744, 0.09348469227552414, -0.10419467836618423, 0.07541797310113907, -0.02343839965760708, -0.04027733579277992, -0.08959352225065231, 0.05208973214030266, -0.028637664392590523, 0.05162570998072624, -0.02187156118452549, -0.018683137372136116, -0.16877374053001404, -0.08950196206569672, -0.011092722415924072, 0.006335305981338024, 0.00852377898991108, -0.06245530769228935, -0.01251924503594637, -0.06882208585739136, -0.06435905396938324, 0.01716124266386032, -0.08119392395019531, 0.035016246140003204, -0.1086902990937233, 0.10588887333869934, -0.01894313097000122, -0.06129894405603409, 0.0677543580532074, 0.10047579556703568, 0.05822557583451271, -0.09336646646261215, -0.09483853727579117, -0.11936937272548676, 0.08632931113243103, 0.011764933355152607, -0.05607496574521065, 0.08033516258001328, 0.029231194406747818, -0.1555466204881668, 0.09466417133808136], "\u8bf7\u95eeMindSpore\u80fd\u7b97\u7ed9\u5b9a\u4efb\u610f\u4e00\u4e2a`tensor`\u7684\u65b9\u5dee\u5417\uff1f": [-0.08223643153905869, 0.008789295330643654, -0.021027013659477234, 0.023877941071987152, -0.03083738125860691, -0.0704682394862175, 0.04718153178691864, 0.01282159797847271, -0.03505793213844299, -0.02137596905231476, -0.00022621266543865204, -0.011739579029381275, -0.05832936614751816, 0.01936240680515766, 0.0251799076795578, 0.03884432092308998, 0.10196472704410553, -0.02147134207189083, -0.07733417302370071, 0.07130277156829834, -0.019815312698483467, -0.015354443341493607, -0.020002830773591995, -0.0067498814314603806, 0.03648233413696289, 0.10546216368675232, -0.01101304404437542, 0.03585945442318916, 0.039018578827381134, 0.10903364419937134, 0.0838921070098877, 0.03500178083777428, -0.05188556760549545, 0.017268557101488113, -0.01994151994585991, -0.03821660205721855, -0.10059671103954315, 0.07545439898967743, 0.0050944313406944275, -0.01783997006714344, 0.013415426015853882, -0.0005242274492047727, -0.04968647658824921, 0.13146953284740448, -0.1043180450797081, -0.1102159172296524, -0.11706824600696564, -0.012091255746781826, 0.03440752997994423, 0.012921512126922607, -0.1331661194562912, 0.09204191714525223, -0.01928841322660446, -0.038873061537742615, -0.06838817149400711, -0.0313432551920414, -0.012202565558254719, -0.014701968058943748, 0.03889356553554535, -0.01571989804506302, 0.031777627766132355, 0.06923654675483704, -0.03373854234814644, -0.023514563217759132, -0.13887536525726318, -0.00847235694527626, 0.014230344444513321, -0.029457267373800278, -0.09774736315011978, -0.040852293372154236, -0.05862791836261749, -0.023309068754315376, 0.019595248624682426, 0.07292550057172775, 0.051722511649131775, 0.10717568546533585, 0.00671455217525363, 0.056729190051555634, -0.027978090569376945, 0.049191057682037354, 0.03292520344257355, 0.10183542221784592, 0.07689680904150009, -0.04558804631233215, -0.06091850996017456, -0.03523150086402893, -0.03589029237627983, 0.04656919836997986, -0.041781481355428696, 0.05616375803947449, 0.06917639821767807, -0.04946138337254524, -0.15885235369205475, 0.08415012061595917, 0.04339900612831116, 0.0003264807164669037, -0.019408510997891426, -0.016198545694351196, -0.11579718440771103, -0.050005652010440826, -0.00529151875525713, -0.02047973871231079, -0.07482153922319412, 0.07397782802581787, 0.045980602502822876, -0.05480761080980301, 0.06862956285476685, 0.05898420512676239, 0.007082504220306873, 0.0090697156265378, 0.030102096498012543, 0.019419299438595772, 0.08313395082950592, 0.046110600233078, -0.007071731146425009, 0.035757970064878464, -0.08314323425292969, -0.026108937337994576, -0.06219510734081268, 0.08638350665569305, 0.0921931341290474, -0.08209186792373657, 0.02647593803703785, 0.03615269809961319, 0.049970656633377075, -0.012364997528493404, 0.054437197744846344, -0.07387376576662064, -0.07531425356864929, -0.0436512716114521, 0.17582105100154877, -0.10954031348228455, 0.08327866345643997, -0.1298465132713318, -0.13717760145664215, 0.08539711683988571, -0.05851944535970688, -0.005346894264221191, -0.0691184252500534, 0.11270153522491455, 0.07319673895835876, -0.0721009224653244, 0.05007326602935791, -0.08000265806913376, 0.11393731087446213, 0.04395008832216263, -0.06751933693885803, -0.11594031751155853, -0.021493583917617798, -0.06999685615301132, 0.027216464281082153, -0.019835347309708595, -0.031945038586854935, 0.11353614926338196, -0.06980089843273163, 0.04337306693196297, 0.017288362607359886, -0.016165858134627342, -0.009305563755333424, -0.012227101251482964, -0.05866924673318863, -0.057466134428977966, 0.02754399925470352, -0.06791360676288605, -0.013184407725930214, 0.015553432516753674, 0.0717349648475647, 0.001183976768516004, -0.09000033885240555, -0.06770225614309311, 0.02277839370071888, 0.04685550183057785, -0.004799427930265665, -0.06286387890577316, 0.05558236315846443, -0.02516627125442028, 0.029606902971863747, -0.06642378866672516, -0.017211154103279114, -0.02154618501663208, 0.022257419303059578, -0.09410551190376282, -0.025414619594812393, -0.1193363219499588, 0.057050298899412155, 0.044033195823431015, 0.05564821884036064, 0.011789522133767605, 0.11868493258953094, -0.13450650870800018, -0.0208467748016119, 0.04957396164536476, 0.052275463938713074, 0.017690567299723625, 0.03854192793369293, -0.03408889099955559, -0.08550941944122314, 0.04310882091522217, 0.04845968633890152, 0.029271073639392853, -0.02184421196579933, 0.042298588901758194, 0.023346351459622383, 0.01901782862842083, -0.006006171461194754, -0.06797914206981659, -0.0798262283205986, -0.08078494668006897, -0.01415681466460228, -0.05207518860697746, 0.08780470490455627, -0.021366141736507416, -0.007661196403205395, -0.04992842674255371, -0.07824783772230148, 0.036194443702697754, 0.09381195157766342, 0.04118725657463074, 0.04549577087163925, -0.0017264914931729436, 0.024621741846203804, -0.0004528090066742152, -0.007195597980171442, -0.1215699091553688, -0.07224678993225098, -0.01576348952949047, -0.006121082231402397, -0.024495599791407585, 0.0034925013314932585, 0.03345179930329323, -0.06544679403305054, 0.03653402999043465, -0.017998987808823586, 0.1068350300192833, -0.06185521185398102, 0.09688226133584976, -0.08210914582014084, 0.023273449391126633, 0.05137453228235245, 0.015463707968592644, -0.1066029742360115, 0.0914473831653595, -0.01745007373392582, 0.00455878023058176, -0.10256263613700867, 0.09662816673517227, 0.08474072813987732, 0.02936578169465065, 0.03702526539564133, -0.0876995101571083, 0.10963726788759232, -0.010672117583453655, -0.052400097250938416, 0.024396661669015884, -0.02189432457089424, 0.08349686861038208, 0.02562185935676098, -0.08594280481338501, 0.029769698157906532, 0.021482251584529877, 0.05989569425582886, 0.03840020298957825, -0.06028173863887787, 0.05839020013809204, -0.05149533972144127, 0.04209041967988014, 0.11337210983037949, -0.049439478665590286, 0.037351094186306, -0.03523103892803192, 0.024080868810415268, -0.010562235489487648, -0.07910294830799103, 0.03321128338575363, 0.1437283158302307, 0.052553318440914154, 0.03536516800522804, -0.160358726978302, 0.02320205420255661, 0.019686603918671608, -0.031417038291692734, 0.03314664587378502, -0.000896531855687499, 0.006082451436668634, 0.09241184592247009, -0.0013961168006062508, 0.018478816375136375, 0.02987918071448803, 0.05320954695343971, 0.056986331939697266, -0.0866924524307251, 0.02515915222465992, -0.0763271152973175, -0.03163224831223488, -0.041490986943244934, 0.11240924149751663, 0.024227838963270187, 0.02262061834335327, 0.005126576870679855, 0.061661168932914734, -0.018324054777622223, -0.028830885887145996, 0.08148699998855591, -0.0826609656214714, -0.03150224685668945, 0.023110073059797287, -0.03774524852633476, 0.0687808021903038, -0.0368824303150177, -0.011930109933018684, 0.10009407252073288, 0.06426042318344116, 0.013260050676763058, 0.037694528698921204, -0.06286581605672836, -0.059521421790122986, 0.06266757100820541, -0.15000605583190918, 0.04786460101604462, -0.10521191358566284, -0.07893488556146622, -0.08455106616020203, 0.003566868370398879, 0.12269385159015656, 0.052738577127456665, -0.05927980691194534, -0.02674342878162861, 0.052339062094688416, 0.012183737941086292, 0.010433733463287354, 0.04442602023482323, -0.07399556040763855, -0.0001739002764225006, 0.06549524515867233, -0.037690140306949615, -0.15336784720420837, 0.07143896073102951, 0.05806285887956619, -0.0338730625808239, 0.038768067955970764, 0.07502676546573639, -0.028542516753077507, 0.013089296407997608, -0.07613111287355423, 0.05968697741627693, -0.11133959889411926, 0.14097581803798676, 0.00010281428694725037, -0.025865521281957626, -0.04319903999567032, 0.08675706386566162, -0.08704905956983566, 0.037191241979599, 0.01983317732810974, -0.046020183712244034, -0.11210066080093384, -0.03868624195456505, 0.04402479529380798, 0.012150558643043041, -0.018583988770842552, -0.05508185923099518, -0.031162293627858162, -0.05590834468603134, -0.019012071192264557, -0.005656569264829159, -0.003090962301939726, 0.0843556597828865, -0.009076621383428574, 0.011781822890043259, -0.010298473760485649, -0.09817413240671158, 0.11961857974529266, 0.05416451767086983, 0.03722871467471123, -0.036178700625896454, -0.05073997378349304, -0.12081018090248108, 0.00984837394207716, -0.027038058266043663, -0.045587651431560516, -0.018065132200717926, 0.002473962027579546, -0.13169533014297485, 0.0449342280626297], "`nn.Embedding`\u5c42\u4e0ePyTorch\u76f8\u6bd4\u7f3a\u5c11\u4e86`Padding`\u64cd\u4f5c\uff0c\u6709\u5176\u4f59\u7684\u7b97\u5b50\u53ef\u4ee5\u5b9e\u73b0\u5417\uff1f": [-0.005709331016987562, 0.023082222789525986, 0.055838555097579956, 0.019461221992969513, -0.03515225648880005, -0.07844710350036621, -0.020312346518039703, 0.07200615108013153, 0.020288238301873207, 0.022681958973407745, -0.009017305448651314, -0.005521781742572784, 0.012166214175522327, 0.010525256395339966, -0.002460347954183817, 0.10206378251314163, 0.10294416546821594, -0.031562093645334244, -0.08042475581169128, 0.10403264313936234, 0.08999446034431458, 0.007481001317501068, 0.0585881732404232, -0.05207615718245506, 0.020346708595752716, 0.06253558397293091, 0.0036753530148416758, 0.010842956602573395, 0.08031104505062103, 0.07857915014028549, 0.05768898129463196, 0.04535936191678047, -0.09557461738586426, 0.015973787754774094, -0.014638257212936878, -0.0691026821732521, -0.08219332993030548, 0.146440327167511, -0.048979658633470535, 0.0019905667286366224, 0.04146589711308479, 0.0015604818472638726, -0.08653520047664642, 0.08329231292009354, -0.05826298147439957, -0.017948046326637268, -0.14744774997234344, -0.0213438980281353, 0.010992681607604027, 0.012689047493040562, -0.08904197812080383, 0.05458052083849907, 0.039405595511198044, 0.028407324105501175, -0.08499062061309814, 0.002376548247411847, 0.07462309300899506, -0.02086597867310047, 0.06487397104501724, 0.03833926469087601, 0.052341148257255554, -0.002487609628587961, -0.10658929497003555, 0.010076755657792091, -0.0962986946105957, 0.025219634175300598, -0.025536177679896355, -0.04805853217840195, 0.010374436154961586, -0.07525838911533356, -0.10838629305362701, 0.009116618894040585, 0.010200082324445248, 0.06845089793205261, 0.06270607560873032, 0.04594874382019043, -0.02712659165263176, 0.015691692009568214, -0.042094144970178604, 0.09114974737167358, 0.09933736175298691, 0.08314213901758194, 0.05958378314971924, -0.1276465207338333, -0.1111500933766365, -0.0690806433558464, -0.0807248130440712, 0.04647570103406906, -0.06812188774347305, 0.024690881371498108, -0.0003665164113044739, -0.04167596995830536, -0.10426271706819534, 0.04310068488121033, 0.05755027011036873, -0.03484053537249565, -0.03343914821743965, -0.036051273345947266, -0.10726382583379745, 0.040048930794000626, 0.0926971510052681, -0.008215791545808315, -0.003624933771789074, 0.013763302005827427, 0.01995004154741764, -0.0492929108440876, 0.0020106742158532143, 0.005898125935345888, 0.013212647289037704, 0.009011847898364067, 0.03652244061231613, 0.01925055868923664, 0.01156466081738472, 0.02990824729204178, 0.024670735001564026, 0.06987563520669937, -0.01773042231798172, -0.019635463133454323, -0.03499113768339157, 0.09497842937707901, 0.11536956578493118, -0.033597033470869064, 0.05674184858798981, 0.08211888372898102, 0.030185161158442497, -0.0022506769746541977, 0.07877486944198608, -0.0607273168861866, -0.060127515345811844, -0.03657737746834755, 0.1443498134613037, -0.05711186304688454, 0.1164572611451149, -0.06952852755784988, -0.08844434469938278, 0.053645722568035126, -0.08945076167583466, -0.04305730760097504, -0.022022593766450882, 0.10397665202617645, 0.023603999987244606, -0.14581024646759033, 0.018258139491081238, -0.02114907093346119, 0.10040595382452011, 0.047531865537166595, -0.08167015016078949, -0.0991043746471405, -0.02418895810842514, -0.06449843943119049, 0.10451934486627579, -0.03777949884533882, -0.027836542576551437, 0.10357195138931274, -0.012332056649029255, 0.016900496557354927, 0.0015907776542007923, 0.014810037799179554, -0.021730849519371986, -0.0038605588488280773, -0.05816074460744858, -0.060375429689884186, 0.03579973056912422, 0.010719208978116512, -0.04139550030231476, 0.05000962316989899, 0.031177781522274017, 0.010465340688824654, -0.08361634612083435, -0.08738049119710922, -0.07961241900920868, 0.0009052266832441092, -0.022757865488529205, -0.03335106372833252, 0.04377835988998413, -0.0004706661857198924, 0.06250695884227753, -0.04662175104022026, -0.013261157087981701, -0.04468148201704025, 0.07705460488796234, -0.12587815523147583, -0.010206136852502823, -0.1161259338259697, -0.01835770159959793, 0.034867458045482635, 0.109186552464962, 0.019069736823439598, 0.1791229248046875, -0.10939306020736694, 0.012110311537981033, 0.030036337673664093, -0.009942322969436646, 0.06372615694999695, -0.04853851720690727, -0.020689571276307106, -0.104018434882164, 0.012623995542526245, 0.06794647127389908, -0.019357139244675636, -0.07846715301275253, 0.08097648620605469, 0.06408176571130753, -0.03305903077125549, -0.024058695882558823, -0.05185746029019356, -0.07528527081012726, -0.12383607029914856, 0.015994437038898468, 0.04447164013981819, 0.08337900042533875, 0.060397107154130936, -0.08754569292068481, -0.008758816868066788, -0.12816134095191956, 0.04964189976453781, 0.10892193019390106, 0.06221053749322891, 0.08216753602027893, -0.0035509802401065826, 0.025660790503025055, 0.023822292685508728, -0.036360155791044235, -0.08129730075597763, -0.06460750102996826, -0.06387297809123993, 0.006708893924951553, -0.12131498008966446, 0.045296043157577515, 0.030118189752101898, -0.05554249882698059, 0.09408476203680038, -0.015416080132126808, 0.15510094165802002, -0.02002023532986641, 0.06281785666942596, -0.08438699692487717, 0.019840821623802185, 0.057385992258787155, -0.009578777477145195, -0.11358293890953064, 0.07367338240146637, -0.02094375714659691, -0.02209313213825226, -0.08532968163490295, 0.10044488310813904, 0.020295321941375732, 0.06555857509374619, 0.03159654885530472, -0.13406553864479065, -0.0021801323164254427, 0.05817696452140808, -0.052584271878004074, 0.04002115875482559, -0.05948754400014877, 0.05932234972715378, 0.06173497065901756, -0.07311679422855377, 0.006684371270239353, 0.06451460719108582, 0.040267810225486755, 0.005826499313116074, -0.13194933533668518, -0.030947990715503693, 0.00824226438999176, 0.0010118583450093865, 0.06832579523324966, -0.016397355124354362, 0.02869139425456524, -0.037048425525426865, 0.016504818573594093, 0.031571775674819946, -0.07691366970539093, -0.005830664187669754, 0.08833861351013184, 0.04986504092812538, 0.04485410079360008, -0.11843641102313995, 0.0305187851190567, 0.029866307973861694, -0.0004145093262195587, 0.0772797092795372, -0.0182722769677639, -0.03030574694275856, 0.04551686346530914, -0.052891626954078674, 0.06481517106294632, -0.021265197545289993, 0.03908350691199303, 0.07765159010887146, -0.005662363953888416, 0.000660255434922874, -0.060545530170202255, 0.006580776534974575, 0.007063047960400581, 0.051367148756980896, 0.03743365406990051, 0.11838193237781525, 0.01449650339782238, 0.013590764254331589, -0.08523993194103241, -0.0212450809776783, 0.09118503332138062, -0.020309217274188995, -0.09161115437746048, 0.015409681014716625, -0.037046924233436584, 0.06447672843933105, 0.02732859179377556, -0.058886781334877014, 0.0724058523774147, 0.11227049678564072, 0.060104627162218094, 0.03182554990053177, -0.04071809723973274, -0.021183516830205917, 0.09014753997325897, -0.11437144875526428, 0.043909236788749695, -0.08135168254375458, -0.037184759974479675, -0.040700528770685196, 0.031234879046678543, 0.07948622107505798, 0.02059914357960224, -0.09294764697551727, 0.0026585024315863848, 0.04899434372782707, -0.04157187417149544, -0.0030624025966972113, 0.05035240575671196, -0.00407918868586421, 0.037735745310783386, 0.11260388791561127, 0.056906603276729584, -0.044529665261507034, 0.10032947361469269, 0.06536590307950974, -0.04550368711352348, 0.07713991403579712, -0.01722792163491249, -0.09122612327337265, -0.022097192704677582, -0.002093019662424922, 0.10593205690383911, -0.10810286551713943, 0.11356182396411896, -0.006086274981498718, 0.008158181793987751, -0.003451879369094968, 0.01355185266584158, -0.031138826161623, 0.09601885080337524, 0.009239351376891136, -0.06033894419670105, -0.11456383019685745, -0.017307493835687637, -0.014563122764229774, 0.11077230423688889, -0.000304635614156723, 0.0461118146777153, -0.0487852469086647, -0.06203948333859444, -0.04579627141356468, 0.06265317648649216, -0.034590497612953186, 0.11901332437992096, -0.06281739473342896, 0.03125608712434769, 0.017861124128103256, -0.1187334656715393, 0.042881764471530914, 0.14917536079883575, 0.06909802556037903, -0.05023437365889549, -0.0810021311044693, -0.08337337523698807, 0.06724187731742859, -0.018857769668102264, -0.0387800894677639, 0.0067686596885323524, 0.03985194116830826, -0.06269995868206024, 0.029773134738206863], "Operations\u4e2d`Tile`\u7b97\u5b50\u6267\u884c\u5230`__infer__`\u65f6`value`\u503c\u4e3a`None`\uff0c\u4e22\u5931\u4e86\u6570\u503c\u662f\u600e\u4e48\u56de\u4e8b\uff1f": [-0.019709572196006775, -0.009475070983171463, 0.06442627310752869, 0.0390925332903862, -0.08356133103370667, -0.06848116219043732, -0.04705990478396416, 0.07283829152584076, 0.08448076993227005, 0.05558475852012634, -0.024554412811994553, -0.009873336181044579, 0.01929367706179619, -0.027070842683315277, -0.040141623467206955, 0.11112117767333984, 0.057150427252054214, -0.053971972316503525, -0.09339819848537445, 0.043475352227687836, 0.007941129617393017, 0.025819921866059303, 0.051674582064151764, 0.006157755386084318, -0.005008000880479813, 0.10499416291713715, 0.004699724726378918, -0.051190365105867386, 0.025271814316511154, 0.014369817450642586, 0.01002366654574871, 0.010607932694256306, -0.11060713976621628, -0.002380433725193143, 0.010334039106965065, -0.07506091147661209, -0.06547016650438309, 0.11401277035474777, -6.528478115797043e-05, 0.015091132372617722, 0.05560018867254257, 0.03818196803331375, -0.023475220426917076, 0.025298284366726875, -0.03614887595176697, 0.027326298877596855, -0.1447235643863678, 0.05261748656630516, 0.03527811914682388, 0.0656309500336647, -0.11852387338876724, 0.03384089469909668, 0.09285929799079895, 0.05448557063937187, -0.012810278683900833, 0.07382732629776001, 0.00786552857607603, -0.008390849456191063, 0.04212743043899536, 0.07710578292608261, 0.0027799869421869516, 0.04603937640786171, -0.08814424276351929, -0.0016895330045372248, -0.051471516489982605, 0.01942393183708191, -0.10537857562303543, -0.07185808569192886, -0.006496556103229523, -0.009329590015113354, -0.07771222293376923, -0.03211897611618042, 0.032464053481817245, 0.03210999816656113, 0.10417082160711288, 0.07613015174865723, -0.04740522801876068, 0.054584868252277374, -0.011440223082900047, 0.07494430243968964, 0.07422253489494324, 0.02552153915166855, 0.02878732979297638, -0.11956195533275604, -0.04857717081904411, -0.06688070297241211, -0.03512106463313103, 0.019252043217420578, -0.11357097327709198, 0.06384895741939545, 0.011450087651610374, -0.00846858974546194, -0.12244351953268051, -0.007943584583699703, 0.009332415647804737, -0.06526250392198563, -0.0863160640001297, -0.00941001158207655, -0.09083019196987152, -0.0006934412522241473, 0.07642307877540588, -0.0007347426144406199, -0.03139689937233925, 0.004661783576011658, -0.06365355104207993, -0.1256834864616394, -0.06610039621591568, 0.06022265553474426, -0.03451858460903168, 0.017737194895744324, 0.04965457320213318, 0.021253403276205063, 0.060105808079242706, -0.019725266844034195, 0.06324733793735504, 0.02483462542295456, -0.023202460259199142, -0.08645009994506836, -0.050167180597782135, 0.11014153808355331, 0.14535795152187347, -0.014404487796127796, 0.04404136538505554, 0.06607775390148163, 0.00803021714091301, -0.002987473737448454, 0.03635838255286217, -0.09981456398963928, -0.06427101045846939, -0.015723617747426033, 0.165421724319458, -0.04869312793016434, 0.07252093404531479, -0.07862315326929092, -0.04934927821159363, 0.07912761718034744, -0.058463357388973236, -0.0004956367774866521, -0.0017786342650651932, 0.17501649260520935, 0.03599042072892189, -0.13664424419403076, -0.0031779152341187, -0.06710631400346756, 0.08701756596565247, 0.027865666896104813, -0.06399455666542053, -0.16665206849575043, -0.0027272708248347044, -0.04591453820466995, 0.11591876298189163, 0.011204980313777924, -0.0025978859048336744, 0.000769639213103801, -0.04450757056474686, -0.013426201418042183, 0.020900564268231392, 0.03225306421518326, -0.030122146010398865, -0.07832382619380951, 0.0024712630547583103, 0.017230212688446045, 0.06971157342195511, -0.04729120805859566, -0.05205696448683739, 0.03173772990703583, 0.01137118972837925, -0.06118546426296234, -0.04603123664855957, -0.06586967408657074, -0.03584931418299675, -0.011663729324936867, -0.058084480464458466, -0.04821949452161789, -0.004247903358191252, 0.07231613993644714, 0.07455645501613617, -0.10262829065322876, 0.028319552540779114, -0.07823188602924347, 0.06557822227478027, -0.14219485223293304, -0.05388506501913071, -0.027836797758936882, 0.008393868803977966, -0.004829008597880602, 0.052844561636447906, 0.08466677367687225, 0.1653434783220291, -0.09973974525928497, -0.019844144582748413, -0.0010102033847942948, -0.00023156870156526566, 0.08376797288656235, 0.029059141874313354, -0.06642895936965942, -0.047743603587150574, -0.004468202590942383, 0.01033071894198656, 0.016360921785235405, 0.004348906222730875, 0.04489342123270035, 0.01902545802295208, 0.016251713037490845, -0.04166913777589798, -0.062715083360672, -0.09081117808818817, -0.14609327912330627, -0.032683562487363815, 0.02035684511065483, 0.07349203526973724, 0.09846160560846329, -0.04497314989566803, -0.0200442373752594, -0.09703698754310608, -0.018715117126703262, 0.055832572281360626, 0.07385928928852081, 0.08924803882837296, -0.03442380204796791, -0.006203353870660067, -0.044759511947631836, 0.0257316492497921, -0.11284665763378143, -0.1653217077255249, -0.015906620770692825, 0.03473779186606407, -0.1295347809791565, -0.0610276535153389, 0.049364373087882996, -0.09152207523584366, 0.04158545657992363, 0.0014231065288186073, 0.05581825226545334, -0.05088827386498451, 0.08692264556884766, -0.05349123850464821, -0.003978518303483725, 0.003568320767953992, 0.025360671803355217, -0.11076629906892776, 0.09421804547309875, -0.11910101026296616, 0.006061908323317766, -0.10448795557022095, 0.11080700159072876, 0.0012901716399937868, 0.026499370113015175, 0.07723043113946915, -0.05888047069311142, 0.02889264188706875, 0.02158716693520546, -0.0031220782548189163, 0.046189211308956146, -0.08227632939815521, 0.05841280519962311, 0.09548212587833405, -0.01838015951216221, 0.032936252653598785, 0.05967969447374344, 0.007403475232422352, 0.0017588697373867035, -0.10058417916297913, 0.020072532817721367, -0.013352112844586372, 0.024925822392106056, 0.101249098777771, -0.06069663539528847, 0.08708934485912323, -0.03783312439918518, -0.0056892093271017075, 0.1117548793554306, -0.031216559931635857, -0.0067498404532670975, 0.1275106966495514, 0.04940757900476456, -0.028137069195508957, -0.0596163347363472, 0.00363233033567667, 0.005358410067856312, -0.003570666303858161, 0.0426429882645607, 0.01235903799533844, -0.007473337929695845, 0.025782279670238495, -0.0946202203631401, 0.08867986500263214, 0.007681870833039284, 0.013215845450758934, 0.026200145483016968, -0.0012939118314534426, 0.0008474437054246664, -0.0829945057630539, -0.04268648475408554, -0.019621897488832474, 0.003929792437702417, -0.007503309287130833, 0.08933974802494049, 0.017549460753798485, -0.01588812656700611, -0.04589147865772247, -0.001895455177873373, 0.1245063915848732, -0.005333596374839544, -0.008407410234212875, -0.07118421047925949, -0.06482429802417755, 0.048956744372844696, 0.02701765112578869, -0.03457706794142723, 0.10006744414567947, 0.10881035029888153, 0.05127880722284317, 0.06198212131857872, -0.10201720893383026, -0.06460675597190857, 0.06824452430009842, -0.15006624162197113, 0.06538667529821396, -0.04600623995065689, 0.03191566467285156, -0.06741704791784286, 0.008845057338476181, 0.1376800537109375, 0.04428646340966225, -0.14714094996452332, -0.02248130924999714, 0.05232834815979004, -0.08833415806293488, -0.030986033380031586, 0.029166368767619133, -0.011627993546426296, 0.04010322690010071, 0.02569972351193428, 0.032564908266067505, -0.046506576240062714, 0.05962878093123436, 0.03913060575723648, 0.040470998734235764, -0.014086367562413216, 0.009033359587192535, -0.10389027744531631, -0.013590263202786446, -0.03791915625333786, 0.0944567546248436, -0.051436781883239746, 0.10828965902328491, 0.023306187242269516, 0.0022674889769405127, -0.04157537966966629, 0.038099050521850586, -0.025795558467507362, 0.0898030698299408, -0.0316348634660244, -0.045210421085357666, -0.07803434878587723, -0.011893067508935928, -0.05187511071562767, 0.05523918941617012, -0.01863478310406208, -0.00985832791775465, -0.006696534808725119, -0.020449737086892128, 0.018845047801733017, 0.04539932683110237, -0.07505004853010178, 0.007370656356215477, -0.026812484487891197, 0.04674385488033295, -0.016858451068401337, -0.1659933626651764, 0.05178730934858322, 0.171941876411438, 0.058343373239040375, -0.060644593089818954, -0.016293920576572418, -0.06402963399887085, 0.025271596387028694, 0.022112080827355385, -0.08371013402938843, 0.03311001509428024, 0.013748002238571644, -0.05112115293741226, 0.009470084682106972], "\u4f7f\u7528conv2d\u7b97\u5b50\u5c06\u5377\u79ef\u6838\u8bbe\u7f6e\u4e3a(3\uff0c10)\uff0cTensor\u8bbe\u7f6e\u4e3a[2\uff0c2\uff0c10\uff0c10]\uff0c\u5728ModelArts\u4e0a\u5229\u7528Ascend\u8dd1\uff0c\u62a5\u9519: `FM_W+pad_left+pad_right-KW>=strideW`\uff0cCPU\u4e0b\u4e0d\u62a5\u9519\u3002": [-0.039923928678035736, -0.03756004944443703, 0.061945222318172455, -0.025210298597812653, 0.07429375499486923, -0.046727124601602554, 0.041435521095991135, 0.01441178284585476, -0.0501181036233902, -0.02677622251212597, -0.055080845952034, 0.006316397339105606, 0.029588093981146812, 0.03357574716210365, -0.02374379336833954, 0.058886270970106125, 0.13259822130203247, -0.039176177233457565, -0.1018943041563034, 0.05170338228344917, 0.04737714305520058, 0.07130516320466995, 0.10268134623765945, -0.02981048822402954, 0.06452003121376038, 0.05920477956533432, -0.02744721621274948, 0.018631871789693832, 0.04133229702711105, 0.07716426253318787, 0.11052896827459335, 0.04651658236980438, -0.1157434955239296, 0.05889065936207771, 0.016347341239452362, -0.038546860218048096, -0.06992077827453613, 0.11763115227222443, -0.040951959788799286, -0.026346061378717422, 0.0184587724506855, -0.03966827690601349, -0.014705745503306389, 0.1309892237186432, -0.08164232969284058, -0.003256599884480238, -0.14598412811756134, -0.01310441829264164, 0.02288111299276352, 0.08172297477722168, -0.15962207317352295, 0.15413489937782288, 0.01407774817198515, -0.05535980314016342, -0.06265220791101456, -0.0134762367233634, 0.054642148315906525, -0.06751282513141632, 0.0479569248855114, 0.02228652685880661, 0.038926318287849426, 0.01917899027466774, -0.050065286457538605, -0.0013570889132097363, -0.16047954559326172, 0.01849738322198391, -0.02943633683025837, -0.017079461365938187, -0.03332459554076195, -0.02018231898546219, -0.017025941982865334, -0.03475275635719299, -0.0012900617439299822, 0.0312875397503376, -0.003938976675271988, 0.09747743606567383, 0.0413367860019207, 0.09534024447202682, -0.012589553371071815, 0.023759858682751656, 0.04066310077905655, 0.07942325621843338, 0.0809512510895729, -0.045476507395505905, -0.12717033922672272, -0.11745015531778336, -0.07386120408773422, 0.025690648704767227, -0.07573407143354416, 0.0948336273431778, 0.01826607994735241, -0.04921318218111992, -0.09215135872364044, 0.05260135233402252, 0.12857219576835632, -0.02223918028175831, -0.03373554348945618, -0.03994164243340492, -0.1809805929660797, 0.012103389948606491, 0.056603968143463135, 0.0007382332114502788, -0.01824447512626648, 0.0035554189234972, 0.026184117421507835, -0.08317378908395767, -0.02992011234164238, 0.022941812872886658, -0.05672299116849899, 0.04769603908061981, 0.12330852448940277, 0.019739648327231407, 0.01953556388616562, 0.030395038425922394, -0.0008641665335744619, 0.029034361243247986, -0.018405526876449585, -0.03291425108909607, -0.057639140635728836, 0.08010327070951462, 0.11138047277927399, -0.10114142298698425, 0.017673838883638382, 0.06940745562314987, 0.05172937363386154, -0.09907983243465424, 0.02775995060801506, -0.058766838163137436, -0.08873015642166138, -0.07671813666820526, 0.13250969350337982, -0.021610302850604057, 0.045749928802251816, -0.06769049167633057, -0.11499325931072235, 0.10615791380405426, -0.11394314467906952, -0.1050352081656456, -0.02730415388941765, 0.08824587613344193, 0.05597180873155594, -0.11518803238868713, 0.02493111416697502, 0.0001247003674507141, 0.07064057886600494, 0.01780650019645691, -0.1270066499710083, -0.09951748698949814, -0.034075308591127396, -0.10256151854991913, 0.03924412280321121, 0.03663746640086174, -0.07656022906303406, 0.09270554780960083, -0.028294026851654053, 0.05172913521528244, 0.0025448407977819443, -0.004431942477822304, 0.006694447714835405, 0.016412345692515373, -0.04860890656709671, -0.07724237442016602, 0.00159894535318017, -0.005626942962408066, -0.018254032358527184, 0.04560186713933945, 0.05528988316655159, 0.013838222250342369, -0.09929431974887848, -0.0442364476621151, 0.0033357765059918165, -0.01592252030968666, -0.07111377269029617, -0.09139572083950043, -0.02140825055539608, -0.006134641822427511, 0.08859718590974808, -0.03790833055973053, -0.0028650094754993916, 0.0025257046800106764, 0.08681830763816833, -0.12786515057086945, -0.017684653401374817, -0.18877485394477844, 0.032013945281505585, 0.12252415716648102, 0.06695617735385895, 0.05268850550055504, 0.11320815980434418, -0.15926122665405273, 0.011266726069152355, 0.06901116669178009, 0.07494153827428818, 0.1104976087808609, -0.029676169157028198, -0.029583141207695007, -0.06640565395355225, 0.0009296087082475424, 0.021963870152831078, 0.015657300129532814, -0.05736721307039261, 0.034181274473667145, 0.005531746428459883, 0.03418318182229996, -0.012576097622513771, -0.04864801466464996, -0.14501257240772247, -0.1168607696890831, 0.014535204507410526, 0.008153708651661873, 0.07176204770803452, -0.01766735129058361, -0.0687628760933876, -0.04378468543291092, -0.08613641560077667, 0.04353906959295273, 0.10867394506931305, 0.015378537587821484, 0.08509668707847595, -0.015049098990857601, 0.0007593853515572846, 0.012807110324501991, -0.08752622455358505, -0.06325545161962509, -0.0729246661067009, -0.0010193974012508988, -0.049703601747751236, -0.10259998589754105, 0.010936295613646507, 0.017725473269820213, -0.09635110944509506, 0.06348397582769394, 0.01205738727003336, 0.1342780739068985, -0.042227935045957565, 0.06710243225097656, -0.01588929072022438, 0.03342341259121895, 0.10437966138124466, 0.01140537764877081, -0.12312384694814682, 0.10355763882398605, -0.022268546745181084, 0.014111701399087906, -0.05868064612150192, 0.10950659215450287, 0.05250650271773338, 0.07468806207180023, 0.0007919369381852448, -0.02850322797894478, 0.024160385131835938, 0.01867542415857315, -0.10812589526176453, -0.003693562000989914, -0.06571371108293533, 0.027817927300930023, 0.04245321452617645, -0.12045742571353912, 0.029336009174585342, 0.057304393500089645, 0.021355606615543365, 0.02443370223045349, -0.09946936368942261, -0.03208283707499504, -0.01708197221159935, -0.003437445964664221, 0.09813357889652252, -0.024237534031271935, -0.012428049929440022, -0.043486177921295166, 0.05799223482608795, -0.008839866146445274, -0.0558294802904129, -0.01530479360371828, 0.10360147058963776, 0.11945516616106033, 0.015246883034706116, -0.12931841611862183, 0.02053920365869999, 0.049771226942539215, 0.027366425842046738, 0.020060131326317787, -0.021381612867116928, -0.022462595254182816, 0.0892271101474762, -0.05800415948033333, 0.04984341934323311, -0.0048468103632330894, 0.0072932736948132515, 0.08812546730041504, -0.018841516226530075, 0.0029360270127654076, -0.033502642065286636, 0.06245701387524605, 0.0058026183396577835, 0.10384422540664673, 0.07989437878131866, 0.05884646624326706, -0.026858897879719734, 0.05871618539094925, -0.024003062397241592, -0.02509821206331253, 0.0715869814157486, -0.09378392994403839, -0.038247767835855484, 0.0025586746633052826, -0.03469899669289589, 0.10120144486427307, -0.026336465030908585, -0.04779796674847603, 0.07704601436853409, 0.12471135705709457, 0.03229481726884842, 0.06375212967395782, -0.09858196973800659, -0.013698618859052658, 0.08747874200344086, -0.13358989357948303, -0.013122075237333775, -0.027058130130171776, -0.026069115847349167, -0.07046446949243546, -0.059421271085739136, 0.08019693195819855, 0.0231062863022089, -0.010230873711407185, 0.07173973321914673, 0.07717373222112656, -0.023432403802871704, 0.0100248446688056, 0.04233499616384506, -0.10404755175113678, 0.017460599541664124, 0.09806811064481735, 0.012749910354614258, -0.13663668930530548, 0.12570977210998535, 0.06725193560123444, -0.017057597637176514, 0.06655874848365784, 0.04677976667881012, -0.08986794948577881, -0.04016020521521568, -0.040907517075538635, 0.08480975776910782, -0.052755434066057205, 0.06449705362319946, 0.021742280572652817, 0.01091295387595892, -0.01762489415705204, 0.007965262047946453, -0.05797544866800308, 0.09280312061309814, -0.024022530764341354, -0.08334314823150635, -0.12250763922929764, -0.03923371806740761, -0.012437383644282818, 0.07225804775953293, -0.010574872605502605, 0.003802371444180608, -0.08814261853694916, -0.08599425107240677, -0.0918322205543518, 0.04342983663082123, -0.014425646513700485, 0.06477321684360504, -0.03729403764009476, 0.11161324381828308, 0.05039592087268829, -0.07688266038894653, 0.012932408601045609, 0.05394658446311951, 0.09552419185638428, -0.07745305448770523, -0.06411787867546082, -0.13089558482170105, 0.06447340548038483, 0.004093065392225981, -0.1008412316441536, 0.00878116674721241, 0.05826009064912796, -0.09086750447750092, -0.024079004302620888], "\u8bf7\u95eeMindSpore\u5b9e\u73b0\u4e86\u53cd\u6c60\u5316\u64cd\u4f5c\u4e86\u5417\uff1f\u7c7b\u4f3c\u4e8e`nn.MaxUnpool2d` \u8fd9\u4e2a\u53cd\u6c60\u5316\u64cd\u4f5c\uff1f": [-0.05593676120042801, 0.06087822467088699, 0.028408104553818703, 0.07285401970148087, -0.02448488026857376, -0.03723277151584625, -0.018606554716825485, 0.12399211525917053, 0.024975748732686043, 0.009599610231816769, 0.042788781225681305, 0.03135286644101143, 0.0009454001556150615, -0.022090114653110504, -0.058946479111909866, 0.015751346945762634, 0.12780308723449707, -0.03893500566482544, 0.010452804155647755, 0.0407077893614769, 0.06025233492255211, -0.015289856120944023, 0.028695281594991684, -0.03528593108057976, 0.028455516323447227, 0.1204122006893158, -0.029408276081085205, 0.028720997273921967, 0.001951513229869306, 0.03332717344164848, 0.05522822216153145, 0.02878083661198616, -0.12647618353366852, 0.043173979967832565, -0.04428783804178238, -0.08270026743412018, 0.011012427508831024, 0.09998574107885361, -0.05079926177859306, 0.03372906893491745, 0.02275938168168068, 0.044550005346536636, 0.002714277245104313, -0.013321934267878532, -0.07312677800655365, -0.060540661215782166, -0.16441816091537476, -0.06910744309425354, -0.0357351079583168, -0.023610109463334084, -0.053527574986219406, 0.06642649322748184, 0.002836294239386916, 0.0194239541888237, -0.03975720703601837, -0.034109070897102356, -0.00851247739046812, -0.04928714036941528, 0.10581356287002563, -0.1015542596578598, -0.06609378010034561, 0.027419859543442726, -0.04574892669916153, -0.0709238350391388, -0.06640437245368958, -0.04750658944249153, -0.09170791506767273, -0.14245113730430603, -0.058812715113162994, -0.002949868096038699, -0.007554656360298395, 0.040692288428545, 0.041780322790145874, 0.030326835811138153, -0.019061610102653503, -0.007973882369697094, -0.08647672832012177, 0.005343321245163679, -0.06563951820135117, 0.029921747744083405, 0.017656458541750908, 0.045094218105077744, 0.07390980422496796, -0.0826660767197609, -0.0953172966837883, -0.049371276050806046, -0.019356336444616318, 0.12902742624282837, 0.016363244503736496, 0.017097273841500282, 0.06606341898441315, -0.01121249794960022, -0.11898204684257507, 0.06919170916080475, 0.09229636192321777, -0.035689469426870346, -0.05014815926551819, -0.028453798964619637, -0.07097359746694565, -0.01184388529509306, 0.04001149907708168, -0.02718472294509411, -0.03341689705848694, 0.011715121567249298, 0.01705644279718399, -0.07154525071382523, 0.06039242446422577, 0.044308941811323166, 0.01691911742091179, 0.04560783505439758, 0.09531581401824951, 0.02694535441696644, 0.07120152562856674, -0.0026382762007415295, -0.07906284183263779, -0.041810933500528336, -0.002115103881806135, 0.03276534378528595, -0.017072634771466255, 0.12066417932510376, 0.1652248054742813, -0.05648650974035263, 0.025681613013148308, 0.03458349406719208, 0.03157228231430054, -0.06590920686721802, 0.09311378002166748, -0.07723390311002731, -0.06203888729214668, -0.01969577744603157, 0.130290687084198, -0.09092706441879272, 0.0898393914103508, -0.06828602403402328, -0.09932473301887512, 0.06253029406070709, -0.02861383929848671, -0.0700547844171524, -0.015566154383122921, 0.13371318578720093, 0.10582258552312851, -0.06159909442067146, 0.036949679255485535, -0.08152346312999725, 0.08496496081352234, 0.0799357071518898, -0.04820714890956879, -0.14204959571361542, 0.05111932381987572, -0.029063962399959564, 0.13808681070804596, 0.013571984134614468, -0.10404276847839355, 0.12528911232948303, -0.03374185785651207, 0.010282080620527267, 0.01593334600329399, -0.025967823341488838, 0.040186092257499695, -0.0278779324144125, -0.07503265887498856, -0.00615870114415884, 0.09201928973197937, 0.015994280576705933, -0.027013905346393585, 0.05538021773099899, 0.038839299231767654, 0.017985384911298752, -0.08205211907625198, -0.045942552387714386, -0.01967783272266388, -0.031583014875650406, 0.05501061677932739, -0.013216385617852211, 0.07449065893888474, -0.0491068996489048, 0.056441131979227066, -0.09032855927944183, 0.004227355122566223, 0.03716176003217697, -0.01781602017581463, -0.05565574765205383, 0.017971953377127647, -0.11293332278728485, 0.12569166719913483, 0.08938266336917877, 0.0595218725502491, 0.0406215563416481, 0.10473525524139404, -0.13828815519809723, -0.003904840676113963, 0.06191415339708328, 0.09810204803943634, 0.04578027501702309, 0.023803040385246277, -0.031643930822610855, -0.05378122627735138, -0.029514510184526443, 0.02807754836976528, -0.0598427914083004, -0.029714364558458328, 0.023089438676834106, -0.05800475925207138, -0.009041493758559227, -0.04084908217191696, -0.0829119086265564, -0.07718812674283981, -0.0802663266658783, -0.012900994159281254, 0.0016959535423666239, 0.08718874305486679, 0.07292440533638, -0.010488918982446194, -0.029232513159513474, -0.04937092959880829, -0.04948779195547104, 0.07378131151199341, 0.021492082625627518, 0.06876412034034729, -0.08122403919696808, -0.018258025869727135, 0.02656819298863411, -0.029717186465859413, -0.10731509327888489, -0.10437744855880737, -0.03899148479104042, -0.06429052352905273, -0.08712052553892136, 0.03144487366080284, 0.05313120409846306, -0.007797829806804657, 0.037574637681245804, -0.014273718930780888, 0.07702943682670593, 0.002732952358201146, -0.03229527547955513, -0.08688794076442719, -0.04945985972881317, 0.030709881335496902, 0.025024211034178734, -0.09856291860342026, 0.0181297454982996, 0.024179356172680855, -0.06567072868347168, -0.042247191071510315, 0.1336723268032074, 0.027674952521920204, -0.0030708813574165106, 0.030638568103313446, -0.01766352355480194, 0.0641423836350441, 0.023497741669416428, -0.03059232234954834, 0.05504411458969116, -0.04360324144363403, 0.009924571961164474, 0.01984790340065956, -0.13204416632652283, 0.060962602496147156, 0.007738093845546246, 0.04842952638864517, 0.018604889512062073, -0.025294627994298935, -0.034679267555475235, -0.014544250443577766, -0.004653653129935265, 0.05980318412184715, -0.029176786541938782, 0.015401624143123627, -0.08971291035413742, -0.0015882761217653751, 0.055099669843912125, -0.002793222898617387, 0.025538049638271332, 0.11481525003910065, 0.10111328214406967, 0.0003055129200220108, -0.08718018233776093, -0.011432812549173832, -0.03111317753791809, -0.032777778804302216, 0.029680268839001656, 0.0759057104587555, 0.02158685028553009, 0.05290403589606285, -0.009709157049655914, 0.01923019252717495, -0.02476678043603897, 0.06319446116685867, 0.09700923413038254, -0.005266809836030006, -0.000769905571360141, -0.017509274184703827, 0.06037706509232521, -0.08101502060890198, 0.014768564142286777, -0.029083330184221268, 0.040232107043266296, -0.04165385663509369, 0.01898806169629097, -0.022386960685253143, -0.015867235139012337, 0.046702791005373, -0.11480720341205597, -0.07374784350395203, 0.03698433190584183, -0.04602812975645065, 0.03806774318218231, -0.00233273534104228, -0.03555070236325264, 0.0016449115937575698, 0.10626329481601715, 0.004898009821772575, 0.10371851921081543, -0.02461107075214386, -0.056790631264448166, 0.0032106752041727304, -0.07301757484674454, 0.06105157732963562, -0.06217435747385025, 0.005793601740151644, -0.07173585146665573, -0.09272987395524979, 0.1310013383626938, 0.0975337028503418, -0.080454021692276, 0.03278360143303871, 0.033000294119119644, 0.05812513828277588, 0.007971259765326977, 0.0342973992228508, -0.08254754543304443, 0.05943906679749489, 0.08553954213857651, 0.037830039858818054, -0.1362728625535965, 0.0345587320625782, 0.09647151082754135, -0.005845241714268923, 0.09278792142868042, 0.1075296401977539, -0.084902822971344, 0.03547842428088188, -0.09243030846118927, 0.07593883574008942, -0.018731307238340378, 0.005925252567976713, 0.062013112008571625, -0.03596854582428932, -0.011224644258618355, 0.06278665363788605, -0.10766632109880447, 0.06378589570522308, 0.02329549379646778, -0.0008314464357681572, -0.09171044826507568, -0.019057704135775566, 0.005064365919679403, 0.02393653802573681, -0.031280964612960815, 0.012036288157105446, 0.00942535325884819, -0.029374685138463974, -0.04693196713924408, 0.04606253281235695, -0.056425124406814575, 0.03733087703585625, 0.029224403202533722, 0.08080621808767319, 0.01611045002937317, -0.06928953528404236, 0.024392327293753624, 0.061341214925050735, 0.10010078549385071, -0.06751108169555664, -0.06912291049957275, -0.11510686576366425, 0.13006186485290527, -0.11512115597724915, -0.10210909694433212, -0.0009025388862937689, 0.033917058259248734, -0.13828690350055695, -0.050391074270009995], "\u4f7f\u7528ExpandDims\u7b97\u5b50\u62a5\u9519: `Pynative run op ExpandDims failed`\u3002\u5177\u4f53\u4ee3\u7801:": [0.01631927117705345, 0.028736939653754234, 0.031961746513843536, 0.09718184173107147, -0.1433432549238205, -0.029326939955353737, -0.01494405884295702, 0.07688180357217789, -0.004302546847611666, 0.09860340505838394, 0.04573728144168854, -0.010588552802801132, 0.08558443188667297, 0.028242388740181923, -0.051767170429229736, 0.1481652855873108, 0.14130941033363342, -0.08451048284769058, -0.09401025623083115, 0.04548019915819168, 0.06704410165548325, 0.05642164126038551, 0.09221357852220535, 0.009628310799598694, -0.014264515601098537, 0.12515224516391754, -0.021625101566314697, -0.05892898887395859, 0.05480567738413811, 0.0016471057897433639, 0.033305104821920395, 0.055085815489292145, -0.1410229355096817, -0.008640418760478497, 0.015076563693583012, -0.07465585321187973, -0.046081770211458206, 0.14699886739253998, -0.02598682977259159, 0.011494876816868782, -0.010712981224060059, 0.04258817806839943, -0.05504481494426727, 0.08818661421537399, -0.048607487231492996, 0.011745970696210861, -0.15654787421226501, 0.014708814211189747, -0.019123515114188194, 0.014520987868309021, -0.059782274067401886, 0.05114087834954262, 0.04259645566344261, 0.03417719155550003, -0.02529439888894558, 0.02401883527636528, 0.01195531152188778, -0.01276839803904295, 0.040274716913700104, 0.04196324571967125, 0.012951074168086052, -0.007463378831744194, -0.09290716052055359, 0.02325061336159706, -0.11706550419330597, 0.07358939200639725, -0.08585785329341888, -0.07755632698535919, -0.0305161215364933, -0.019064337015151978, -0.04323142021894455, -0.04243284463882446, 0.046003103256225586, 0.03332299739122391, 0.05635140836238861, 0.018557140603661537, 0.007331485860049725, 0.03476919233798981, 0.00637753214687109, 0.09412648528814316, -0.03189883381128311, 0.025841159746050835, -0.007513532415032387, -0.08081293851137161, -0.15218375623226166, -0.07498976588249207, -0.08571076393127441, 0.034618377685546875, -0.014024699106812477, 0.1009494885802269, 0.015256131067872047, -0.029453864321112633, -0.1294277459383011, -0.0013558372156694531, 0.061954937875270844, -0.0740249902009964, -0.043704401701688766, -0.0032173870131373405, -0.11077024042606354, 0.0021245689131319523, 0.06366889923810959, 0.06199312210083008, -0.03336434066295624, -0.001859102165326476, -0.014829831197857857, -0.18229295313358307, -0.03691229596734047, 0.022199368104338646, 0.00559288589283824, -0.009629199281334877, 0.14044888317584991, 0.004698070697486401, 0.021400999277830124, 0.03653029724955559, 0.013446606695652008, 0.010444551706314087, -0.0067517999559640884, -0.06972262263298035, -0.016308270394802094, 0.12465306371450424, 0.12555451691150665, -0.09394512325525284, 0.03176960349082947, 0.1069059744477272, 0.06489486992359161, 0.024329304695129395, 0.11660964787006378, -0.01833454705774784, -0.08920200169086456, -0.027889888733625412, 0.12181746959686279, -0.04803828150033951, 0.14413896203041077, -0.10723917186260223, -0.1087818294763565, 0.12706105411052704, -0.1223825141787529, 0.001307997154071927, 0.062202394008636475, 0.14304891228675842, 0.0113333435729146, -0.10305878520011902, 0.027339957654476166, -0.10551910847425461, 0.07019833475351334, 0.05059652030467987, -0.0884459912776947, -0.1516508162021637, 0.026923950761556625, -0.05248013883829117, 0.09419841319322586, 0.010029175318777561, 0.05066880211234093, 0.051968153566122055, 0.037509575486183167, 0.05026325583457947, 0.012629492208361626, -0.058467261493206024, -0.014478975906968117, -0.003828134387731552, -0.008589199744164944, -0.02391364797949791, -0.010958959348499775, -0.02592494525015354, -0.016442641615867615, 0.01666104421019554, 0.020278548821806908, 0.04520779475569725, -0.044719889760017395, -0.04429877549409866, -0.008899083361029625, -0.020594295114278793, -0.002451155101880431, -0.05756010115146637, 0.021646618843078613, 0.05216072127223015, 0.09213961660861969, -0.05517716705799103, 0.01673276536166668, -0.0011622351594269276, 0.10551305115222931, -0.12882539629936218, -0.03692566975951195, -0.09799885749816895, 0.03123633563518524, 0.04669541120529175, 0.0597432442009449, 0.06471520662307739, 0.07444600760936737, -0.10849129408597946, -0.026830052956938744, 0.011059727519750595, 0.051353562623262405, 0.06856643408536911, 0.018629876896739006, -0.09163152426481247, -0.04738817363977432, -0.04904565587639809, 0.0632140040397644, -0.06129318103194237, -0.012981419451534748, 0.13026408851146698, 0.028481286019086838, 0.026742421090602875, 0.022985968738794327, -0.058714110404253006, -0.12199115008115768, -0.07034406065940857, 0.025958167389035225, -0.026047976687550545, 0.07624152302742004, 0.039373788982629776, -0.04975663870573044, 0.004076807294040918, -0.07579025626182556, -0.035854190587997437, 0.12719985842704773, 0.06244639307260513, 0.08645196259021759, -0.046395570039749146, -0.04686429351568222, 0.0912519097328186, -0.04089456796646118, -0.11479860544204712, -0.09921993315219879, -0.0390927791595459, -0.026502618566155434, -0.0692247748374939, -0.03349260240793228, 0.06061551719903946, -0.002573186531662941, 0.052181437611579895, 0.008488372899591923, 0.044331133365631104, -0.03288832679390907, 0.0057514868676662445, -0.03161321207880974, 0.00470384769141674, -0.016118820756673813, 0.09126235544681549, -0.13283564150333405, 0.0976576954126358, -0.11182623356580734, 0.08179265260696411, -0.12086620926856995, 0.13485293090343475, -0.003478848375380039, -0.03991192206740379, 0.02114296518266201, -0.0344739593565464, 0.03903346508741379, 0.0075303977355360985, -0.0009107997175306082, -0.045502372086048126, -0.12642788887023926, 0.06854265183210373, 0.1871616691350937, -0.05378451198339462, 0.037646204233169556, -0.01133288349956274, 0.021020282059907913, 0.033448368310928345, -0.043588560074567795, -0.049274977296590805, -0.018393011763691902, -0.02584800496697426, 0.03036755695939064, 0.03202034905552864, -0.014267715625464916, -0.0491349995136261, 0.09263541549444199, 0.08525269478559494, -0.004075776785612106, 0.0025914895813912153, 0.15120254456996918, 0.11782985180616379, -0.0010882331989705563, -0.0770430713891983, 0.04246200993657112, 0.025653470307588577, -0.01032588817179203, 0.11577092856168747, 0.04059784486889839, -0.04263276234269142, 0.04480544477701187, -0.04187478870153427, 0.06781723350286484, -0.014346248470246792, -0.05300994589924812, 0.15470406413078308, 0.013710947707295418, -0.02314196713268757, -0.05556805431842804, -0.021502632647752762, -0.028977543115615845, 0.12016013264656067, 0.11814035475254059, 0.029820680618286133, -0.030755218118429184, 0.02467530034482479, -0.03320480138063431, -0.054664403200149536, 0.09675353765487671, -0.020315108820796013, 0.019938429817557335, -0.04247957468032837, -0.07716073840856552, 0.0029717818833887577, 0.01547736581414938, -0.04013706371188164, 0.011772003024816513, 0.08531195670366287, 0.04893608018755913, 0.07351915538311005, -0.07896345853805542, -0.07041643559932709, 0.14718686044216156, -0.14926591515541077, 0.008528852835297585, -0.10863462090492249, 0.021872185170650482, -0.05805671587586403, 0.03363289684057236, 0.07264398783445358, 0.006518476642668247, -0.1195378452539444, 0.017353003844618797, 0.08710271865129471, -0.005404404830187559, 0.021932385861873627, -0.0033369071315973997, -0.06777667999267578, 0.1387161761522293, 0.05685439333319664, 0.04866287112236023, -0.11955880373716354, 0.1675833910703659, 0.01950262114405632, -0.03852132335305214, 0.04157932475209236, 0.00024875253438949585, -0.1302884817123413, -0.03485852852463722, -0.08672730624675751, 0.02091856673359871, -0.01962348073720932, 0.10614238679409027, -0.005869745742529631, -0.012758101336658001, -0.028816837817430496, 0.04373616725206375, -0.05994360148906708, 0.061233602464199066, 0.060289524495601654, -0.06149722635746002, -0.131817027926445, -0.11201890558004379, -0.031027041375637054, 0.02658124268054962, 0.006488863378763199, -0.0049241287633776665, 0.008764690719544888, -0.07407364249229431, -0.04661949351429939, 0.06711670756340027, -0.10769844055175781, 0.05965614318847656, 0.0006320475367829204, 0.10362748801708221, -0.027106106281280518, -0.05854041874408722, 0.06503164023160934, 0.06979823857545853, 0.0680217295885086, -0.06476972997188568, -0.04797834903001785, -0.15479682385921478, 0.006860986817628145, -0.016734672710299492, -0.034970369189977646, 0.024066559970378876, 0.09900940954685211, -0.11239635944366455, 0.007022447884082794], "Ascend\u540e\u7aef\u62a5\u9519\uff1a`AI CORE` \u548c`AI CPU`\u4e2d\u90fd\u627e\u4e0d\u5230\u6709\u6548\u7684`kernel info`\u8fd9\u4e2aKernel Select Failed\u65f6\uff0c\u5982\u4f55\u5b9a\u4f4d\uff1f": [-0.029677458107471466, 0.015025226399302483, -0.05280568078160286, -0.003589882981032133, -0.004207318183034658, -0.06786597520112991, 0.019717561081051826, 0.05702245235443115, -0.023046184331178665, -0.03163668140769005, -0.05245830863714218, -0.0008438022341579199, -0.0009350997279398143, -0.0066430838778615, -0.05617576092481613, 0.11647927761077881, 0.10681526362895966, 0.02255978435277939, -0.01271138060837984, 0.0666736513376236, 0.057228460907936096, 0.01304437592625618, 0.09111636877059937, 0.0215383842587471, 0.008426494896411896, 0.08416150510311127, -0.03394448757171631, -0.018084999173879623, 0.07575225830078125, 0.07894214987754822, 0.029336750507354736, 0.022889943793416023, -0.0867665633559227, 0.05542337894439697, 0.008439584635198116, -0.0433194674551487, -0.047790199518203735, 0.1357894092798233, -0.06054028868675232, -0.04151628166437149, 0.02838698774576187, -0.03209755942225456, -0.010569737292826176, 0.1391953080892563, -0.04913882911205292, -0.05171230807900429, -0.07423359155654907, -0.03720445930957794, 0.0391613207757473, 0.05472198501229286, -0.17347446084022522, 0.08086420595645905, 0.02214590087532997, -0.09692094475030899, -0.05302533134818077, -0.0005636102869175375, 0.08062080293893814, -0.011160207912325859, -0.0214847382158041, 0.025898965075612068, 0.0681036189198494, -0.008944196626543999, -0.09641706198453903, 0.03557298704981804, -0.0723704919219017, -0.03179994225502014, -0.01124938391149044, -0.044752903282642365, 0.022441549226641655, -0.001289076404646039, -0.016158951446413994, 0.0013712263898923993, -0.07391805201768875, 0.0809081569314003, -0.00343151343986392, 0.013213908299803734, -0.022610999643802643, 0.05920083820819855, -0.10795795172452927, 0.11145903170108795, 0.03935350477695465, 0.018656861037015915, 0.04041067138314247, -0.007841280661523342, -0.08551373332738876, 0.0009381991694681346, 0.02914414554834366, -0.0019067986868321896, 0.013808151707053185, 0.021145790815353394, 0.049705035984516144, 0.06801749020814896, -0.14670586585998535, 0.09781453758478165, 0.07823002338409424, -0.07720926403999329, -0.09824232757091522, -0.06371600180864334, -0.08067109435796738, 0.085115946829319, 0.04034722223877907, -0.10266755521297455, -0.06578859686851501, 0.03790400177240372, 0.0866478681564331, -0.13550712168216705, -0.007632154040038586, 0.030886247754096985, 0.04689812287688255, 0.0840807780623436, 0.06715641170740128, 0.04134164750576019, 0.09639135003089905, 0.07476700097322464, -0.0930963009595871, 0.05221541225910187, -0.08773934841156006, 0.027212129905819893, 0.014525613747537136, 0.06487533450126648, 0.06492479890584946, -0.07622982561588287, 0.012456651777029037, 0.10943210870027542, 0.030407100915908813, -0.044604964554309845, 0.06494956463575363, -0.015604440122842789, -0.05715811997652054, 0.03434944525361061, 0.08676380664110184, 0.005649240221828222, 0.11101959645748138, -0.12194842845201492, -0.12532548606395721, 0.06701196730136871, -0.0512123703956604, -0.008028409443795681, 0.03798418119549751, 0.06812457740306854, 0.06443757563829422, -0.19439461827278137, -0.009366776794195175, -0.0018463653977960348, 0.046814464032649994, -0.03789599612355232, -0.07932096719741821, -0.12043621391057968, -0.07320857048034668, -0.03258717060089111, 0.027577703818678856, -0.01807919517159462, -0.07773890346288681, 0.10130184888839722, 0.0038497517816722393, 0.047283273190259933, -0.00421538483351469, -0.033065300434827805, -0.023896820843219757, 0.006156906019896269, -0.054615091532468796, -0.046318281441926956, -0.006903437897562981, 0.0108697060495615, 0.060722507536411285, -0.037247925996780396, -0.0019880507607012987, -0.0669906958937645, -0.03615369275212288, -0.016982434317469597, -0.00931230653077364, -0.05803229287266731, -0.07910473644733429, 0.023274952545762062, 0.005222410894930363, -0.06831182539463043, -0.04544845223426819, -0.0845600962638855, 0.005491859279572964, -0.006913725286722183, 0.07236902415752411, -0.0809016302227974, -0.06431914865970612, -0.137614905834198, 0.07623128592967987, 0.006434225011616945, 0.015929216518998146, 0.01433468982577324, 0.1318788230419159, -0.07990900427103043, 0.05090390518307686, 0.0793415755033493, 0.017137551680207253, 0.10878299176692963, -0.026837024837732315, 0.02921135723590851, -0.040767550468444824, -0.036783117800951004, 0.026574959978461266, -0.014295035973191261, -0.042771562933921814, 0.02302701398730278, 0.06763521581888199, 0.03769359365105629, 0.028539098799228668, 0.008326125331223011, -0.15087786316871643, -0.06764484196901321, 0.04902144521474838, -0.03035232424736023, 0.07933201640844345, 0.03931322321295738, -0.06458596885204315, 0.00013567879796028137, -0.11718130111694336, 0.016084080561995506, 0.07839968800544739, 0.05707012116909027, 0.011894049122929573, -0.06792479753494263, 0.04567766562104225, -0.024792462587356567, -0.07285871356725693, -0.04315425083041191, -0.11943844705820084, -0.013509096577763557, -0.04409249871969223, -0.044320981949567795, 0.03378481790423393, 0.06501445919275284, -0.04880960285663605, 0.12209005653858185, 0.007853942923247814, 0.11154799163341522, -0.05017080530524254, 0.033326949924230576, -0.03526226431131363, -0.04456153139472008, 0.08901438117027283, -0.05505888909101486, -0.07963110506534576, 0.05850929766893387, -0.07231662422418594, 0.00221277866512537, -0.09239296615123749, 0.12357288599014282, 0.18114449083805084, 0.056012965738773346, 0.035211723297834396, 0.010775424540042877, 0.043152183294296265, -0.015952611342072487, -0.02751350961625576, 0.004933812655508518, -0.04745073616504669, 0.03935020789504051, 0.06284037232398987, -0.0715017020702362, 0.013684677891433239, 0.08396917581558228, 0.030997296795248985, 0.010952170006930828, -0.08224617689847946, 0.014694374054670334, -0.06999717652797699, 0.016110550612211227, 0.09477471560239792, -0.01671893522143364, -0.06632737815380096, -0.042671434581279755, 0.09121284633874893, -0.04180004820227623, -0.043699536472558975, 0.01153417956084013, 0.07553554326295853, 0.14645470678806305, -0.05963994190096855, -0.08936421573162079, 0.023116804659366608, 0.018821384757757187, -0.036718785762786865, -0.01886528916656971, -0.018412157893180847, -0.096782386302948, 0.10057581961154938, -0.020226748660206795, 0.009645204059779644, -0.055619724094867706, 0.028365159407258034, 0.06183499097824097, -0.031229346990585327, -0.027259493246674538, 0.013492251746356487, 0.010705673135817051, -0.004461158066987991, 0.061791740357875824, 0.045546259731054306, 0.03558342903852463, -0.037358514964580536, 0.08988925814628601, -0.030639169737696648, -0.01109620276838541, 0.12737251818180084, 0.005245516542345285, -0.02735542692244053, -0.03857838362455368, -0.021446796134114265, 0.08604330569505692, 0.030710497871041298, 0.07002133876085281, 0.030238861218094826, 0.038634587079286575, 0.02392406016588211, 0.08947500586509705, -0.06920922547578812, 0.015493880957365036, 0.09978187084197998, -0.11813823878765106, 0.047138847410678864, -0.04569500684738159, -0.022427214309573174, 0.004606769420206547, -0.00975065678358078, 0.08916633576154709, 0.07358937710523605, -0.021751904860138893, -0.015333293005824089, 0.07497848570346832, -0.02641691267490387, -0.01914035528898239, 0.01535968016833067, -0.07323027402162552, 0.04837945103645325, 0.08206140249967575, 0.048175785690546036, -0.19262027740478516, 0.08647271990776062, 0.011888787150382996, -0.037350013852119446, -0.007954462431371212, 0.06089746579527855, -0.12577225267887115, 0.00962426234036684, -0.09558754414319992, 0.05211098492145538, -0.09014441817998886, 0.06000807508826256, 0.06333470344543457, -0.002517840126529336, -0.05000929906964302, 0.028429239988327026, -0.12917621433734894, 0.08808409422636032, -0.009555554948747158, -0.023303769528865814, -0.1270148903131485, -0.07292024046182632, -0.020295746624469757, 0.015380175784230232, 0.03454093635082245, -0.010622592642903328, -0.034323062747716904, -0.04755604639649391, -0.032534897327423096, 0.04152614250779152, -0.006553104147315025, 0.06678637117147446, -0.015142151154577732, 0.12076354026794434, 0.011036771349608898, -0.13971227407455444, -0.00429111672565341, 0.08014357835054398, 0.039304234087467194, -0.05583174154162407, -0.04668978974223137, -0.07849644124507904, 0.023390384390950203, -0.0067078545689582825, -0.09715643525123596, 0.030589109286665916, 0.11158253252506256, -0.09419675171375275, -0.02259444259107113], "MindSpore\u5b89\u88c5\u5b8c\u6210\uff0c\u6267\u884c\u8bad\u7ec3\u65f6\u53d1\u73b0\u7f51\u7edc\u6027\u80fd\u5f02\u5e38\uff0c\u6743\u91cd\u521d\u59cb\u5316\u8017\u65f6\u8fc7\u957f\uff0c\u600e\u4e48\u529e\uff1f": [-0.04024135693907738, 0.06505438685417175, 0.007957961410284042, 0.02371596172451973, -0.05811585858464241, -0.030231960117816925, 0.02124708890914917, 0.06041416898369789, 0.018343297764658928, 0.025951409712433815, -0.011130398139357567, 0.0004502162046264857, 0.01802217587828636, 0.023189980536699295, 0.012793712317943573, 0.08134177327156067, 0.1382264643907547, 0.02881619706749916, -0.033826231956481934, 0.04186394810676575, 0.005135468672960997, -0.016522720456123352, 0.11399447172880173, -0.004846569150686264, 0.03131149709224701, 0.05690910667181015, -0.05965939536690712, 0.02877480909228325, -0.021964367479085922, 0.09097304940223694, 0.04752753674983978, 0.06664370000362396, -0.09501641988754272, 0.04066403955221176, -0.0616287961602211, -0.04659292846918106, -0.03633420169353485, 0.09751015901565552, -0.03796335309743881, -0.021142728626728058, 0.030862390995025635, 0.021759293973445892, -0.019286666065454483, 0.10450960695743561, 0.02580472268164158, -0.017086265608668327, -0.16150884330272675, 0.002464768011122942, 0.05475917458534241, -0.00470360554754734, -0.09058190882205963, 0.09060461819171906, 0.019556088373064995, -0.00738877197727561, -0.01984390802681446, -0.0032289493829011917, -5.5680982768535614e-05, -0.005658979527652264, 0.07163124531507492, -0.06102179363369942, 0.009973987005650997, -0.02157335914671421, -0.08544116467237473, -0.005666176788508892, -0.1500600129365921, -0.018383072689175606, -0.08073437213897705, -0.08319605886936188, 0.004709536675363779, 0.033559635281562805, -0.04448262229561806, -0.01038973219692707, -0.0293582770973444, 0.06527693569660187, 0.04805878549814224, 0.030790964141488075, -0.05258604884147644, 0.04149150848388672, -0.06749292463064194, 0.03601055592298508, 0.04439753293991089, 0.05331852659583092, 0.011432581581175327, -0.07933791726827621, -0.04221200942993164, 0.0020160870626568794, -0.07932455092668533, 0.06844477355480194, -0.06088772416114807, 0.07235873490571976, -0.005753960460424423, -0.003877091221511364, -0.15789473056793213, 0.020800840109586716, 0.08755907416343689, -0.015013680793344975, -0.05435238406062126, -0.039048973470926285, -0.07846307754516602, -0.03126286715269089, -0.012876874767243862, -0.027402881532907486, -0.01285748090595007, 0.04389765113592148, -0.00022786110639572144, -0.08268548548221588, 0.07477232813835144, -0.004608036018908024, 0.03464594855904579, 0.07387370616197586, 0.05969010666012764, 0.00672492291778326, 0.08912946283817291, -0.012640491127967834, 0.0083417147397995, 0.03005794808268547, -0.06331285834312439, -0.02933209016919136, -0.045236438512802124, 0.08797398954629898, 0.07547353208065033, -0.046528566628694534, 0.01034628227353096, 0.05618597939610481, 0.023204809054732323, 0.03751492500305176, 0.10147703438997269, -0.09139010310173035, -0.07443881779909134, -0.09786789864301682, 0.19397708773612976, -0.07530776411294937, 0.09664472192525864, -0.11786121875047684, -0.0640961080789566, 0.04596557840704918, -0.015692725777626038, 0.006678176578134298, -0.014629441313445568, 0.09851168841123581, 0.05141765624284744, -0.11720944941043854, 0.06989676505327225, -0.03187068551778793, 0.10074770450592041, 0.023189354687929153, -0.06156495213508606, -0.11171641945838928, -0.017538845539093018, -0.03082762286067009, 0.0920533761382103, -0.027433600276708603, -0.05334766209125519, 0.09932093322277069, -0.0003295429050922394, 0.07552702724933624, -0.010945537127554417, -0.04463525488972664, -0.01890428364276886, -0.010174291208386421, -0.017145920544862747, -0.03777838498353958, 0.041831038892269135, -0.013450708240270615, -0.04474693536758423, 0.031541693955659866, 0.03098510392010212, -0.016087347641587257, -0.03275618329644203, -0.041604071855545044, -0.008028284646570683, -0.02566520869731903, -0.05418785661458969, -0.0013891449198126793, 0.09321075677871704, -0.015596259385347366, 0.0695744976401329, -0.05709452927112579, 0.004318559542298317, -0.05593380704522133, 0.08703149110078812, -0.06718827039003372, -0.014036314561963081, -0.03398747369647026, 0.07080855965614319, 0.009884498082101345, 0.06850866228342056, 0.015768807381391525, 0.14473731815814972, -0.14557480812072754, -0.049366261810064316, 0.0018527933862060308, 0.010776381008327007, 0.10534843802452087, 0.051900092512369156, 0.01697426289319992, -0.06760841608047485, -0.04131588712334633, 0.022285154089331627, -0.044624630361795425, -0.07453040778636932, -0.0004936456098221242, 0.0018912606174126267, -0.03309996426105499, -0.027695640921592712, -0.008471658453345299, -0.10369893908500671, -0.06857407093048096, -0.008716117590665817, -0.06685382127761841, 0.0891503170132637, 0.026664678007364273, 0.009586022235453129, -0.058342594653367996, -0.11402192711830139, -0.04354722052812576, 0.10171627998352051, 0.10237943381071091, 0.010753861628472805, -0.033533886075019836, -0.0152408042922616, 0.00796839501708746, 0.023328477516770363, -0.07807791978120804, -0.11854619532823563, -0.016640285030007362, -0.059165108948946, -0.10613992810249329, -0.02587478794157505, 0.056415919214487076, -0.044307880103588104, 0.0672079473733902, 0.006243780720978975, 0.14214083552360535, 0.0025170037988573313, 0.07170592993497849, -0.0574595183134079, -0.03168763592839241, 0.09805574268102646, 0.04776822030544281, -0.08149680495262146, 0.05911935865879059, -0.074003666639328, -0.03318578749895096, -0.04342341050505638, 0.07286886870861053, 0.06705865263938904, 0.03931441903114319, 0.0031769643537700176, -0.011216267012059689, 0.0654810443520546, -0.007171075791120529, -0.05594664812088013, 0.0556643083691597, -0.024243775755167007, 0.03794945031404495, 0.014503897167742252, -0.06644271314144135, 1.2077391147613525e-05, 0.05023481696844101, -0.024311192333698273, 0.03574880585074425, -0.06808257102966309, 0.008876016363501549, -0.05649307370185852, -0.04244448244571686, 0.053835269063711166, -0.03451395779848099, 0.06551219522953033, -0.09909661114215851, -0.014280328527092934, 0.05539950728416443, -0.04289913922548294, 0.030889708548784256, 0.14141152799129486, 0.0671502947807312, 0.0062759011052548885, -0.11352499574422836, 0.02429233118891716, 0.02354050986468792, 0.009732389822602272, 0.006263934075832367, -0.02078065648674965, 0.02530767023563385, 0.07331962883472443, -0.02630033902823925, 0.052141956984996796, 0.02616925723850727, 0.03937467187643051, 0.0762997567653656, -0.04179356247186661, -0.034077372401952744, -0.03933170437812805, 0.010357405990362167, -0.043378446251153946, 0.06307007372379303, 0.06283047050237656, 0.05873572453856468, 0.03797175735235214, 0.09140920639038086, -0.03331361711025238, -0.035856038331985474, 0.12399253249168396, -0.06685767322778702, 0.023420393466949463, 0.007138343527913094, -0.07134716212749481, 0.0706455186009407, 0.04515276476740837, 0.00919419340789318, 0.03760836273431778, 0.0823938250541687, 0.02145966701209545, 0.08206365257501602, -0.11814616620540619, -0.038685332983732224, 0.030611228197813034, -0.1248270571231842, 0.06762295216321945, -0.10168660432100296, 0.051874175667762756, -0.06655673682689667, -0.010285839438438416, 0.08980124443769455, 0.059169039130210876, -0.03368682041764259, 0.017554424703121185, 0.04953567683696747, 0.047656409442424774, -0.037815310060977936, 0.0064876992255449295, -0.05182833597064018, 0.02641979604959488, 0.0471854992210865, 0.003683989867568016, -0.12909092009067535, 0.04145028442144394, 0.06816449016332626, 0.019232124090194702, 0.035221971571445465, 0.10458599030971527, -0.0680166557431221, 0.03031102940440178, -0.0938090831041336, 0.0588182657957077, -0.03279406949877739, 0.06801275163888931, 0.010190973058342934, -0.06130599230527878, -0.09135463833808899, -0.0026952987536787987, -0.039536844938993454, 0.043486014008522034, -0.03862450271844864, 0.019374080002307892, -0.1402161419391632, -0.11452063173055649, -0.044888414442539215, 0.023892842233181, 0.019847489893436432, -0.009323956444859505, 0.0033039478585124016, -0.10045106709003448, -0.0684027373790741, -0.012618147768080235, -0.07592345774173737, 0.06875535100698471, -0.025139547884464264, 0.06809232383966446, 0.00136989273596555, -0.05932442843914032, 0.09292446821928024, 0.13625679910182953, 0.053950533270835876, -0.07576914876699448, -0.07387249171733856, -0.12375863641500473, 0.05659123510122299, 0.022834472358226776, -0.09632018953561783, 0.04764615744352341, 0.03075426071882248, -0.1660316437482834, 0.04765642434358597], "\u5bfc\u81f4Loss\u503c\u4e0d\u6536\u655b\u6216\u8005\u7cbe\u5ea6\u4e0d\u8fbe\u6807\u7684\u539f\u56e0\u6709\u54ea\u4e9b\u5462\uff0c\u5e94\u8be5\u600e\u6837\u5b9a\u4f4d\u8c03\u4f18\uff1f": [-0.08569017797708511, 0.02918584644794464, 0.04288627952337265, 0.07408995181322098, -0.08096923679113388, 0.0013110509607940912, 0.011257159523665905, 0.06714142113924026, -0.03392503410577774, -0.033817630261182785, -0.013936512172222137, 0.013955648988485336, 0.01557931862771511, 0.03733109310269356, 0.00880408938974142, 0.0892748236656189, 0.09806384146213531, 0.07794472575187683, -0.021550416946411133, 0.08235245943069458, 0.02107076346874237, 0.028798706829547882, 0.01914389245212078, -0.03744064271450043, -0.01728554628789425, 0.0573589988052845, 0.03828706592321396, -0.026980364695191383, 0.013111802749335766, 0.05901253968477249, 0.06964147835969925, 0.016090385615825653, -0.07399214059114456, 0.01322537288069725, -0.026288015767931938, 0.009530553594231606, -0.012172394432127476, 0.1185402050614357, -0.028951793909072876, -0.04791279509663582, 0.09485457092523575, -0.0010266635799780488, -0.0554530955851078, 0.09132372587919235, -0.03789642080664635, -0.08448615670204163, -0.10491545498371124, -0.006690378300845623, 0.009124853648245335, 0.0168159082531929, -0.05905676633119583, 0.07446619868278503, -0.0029110193718224764, -0.10258018225431442, -0.0544515997171402, -0.03133167326450348, 0.0690089613199234, 0.024034541100263596, 0.0731547549366951, -0.06998655945062637, 0.018454093486070633, -0.0017195458058267832, -0.0004636030353140086, -0.023786453530192375, -0.1180388405919075, 0.05973342806100845, 0.031166091561317444, -0.09440144151449203, -0.013271446339786053, -0.047593194991350174, -0.01619873009622097, -0.015673773363232613, -0.009710969403386116, 0.04648280888795853, 0.01654481142759323, 0.12325258553028107, 0.05033406242728233, -0.040361929684877396, -0.06650268286466599, 0.04281903803348541, -0.0018638984765857458, 0.047195982187986374, 0.017252473160624504, -0.04648631811141968, 0.0038253404200077057, -0.015629084780812263, -0.07783257216215134, 0.03608279675245285, -0.030900992453098297, 0.046803757548332214, 0.042209699749946594, 0.004002903588116169, -0.14706367254257202, 0.02551885135471821, 0.1398327499628067, -0.031460609287023544, -0.033090997487306595, -0.02263089455664158, -0.10567747056484222, -0.028112420812249184, 0.03818998858332634, -0.07919679582118988, -0.06747837364673615, 0.022741466760635376, 0.060212355107069016, -0.04108761250972748, -0.011337365955114365, 0.0545458160340786, -0.008527973666787148, 0.004575541242957115, 0.019007878378033638, 0.009290897287428379, 0.027575375512242317, 0.05508948862552643, 0.0076426295563578606, 0.04076438397169113, -0.09391588717699051, 0.00195264199282974, -0.014072349295020103, 0.0726228877902031, 0.14422856271266937, -0.07077071815729141, 0.03458279371261597, 0.06182771176099777, 0.019805148243904114, -0.010614055208861828, 0.05626196414232254, -0.10231737792491913, -0.10120172053575516, -0.053830038756132126, 0.14364781975746155, -0.012561253271996975, 0.08318404853343964, -0.12274615466594696, -0.08037708699703217, 0.09416606277227402, -0.015483560971915722, -0.05809049680829048, 0.02680283784866333, 0.15826396644115448, 0.023357301950454712, -0.13854840397834778, 0.03859966620802879, -0.018088985234498978, 0.08426492661237717, 0.050213851034641266, -0.10029321163892746, -0.08693736046552658, -0.03429660201072693, -0.11390141397714615, 0.05230014771223068, 0.0009856350952759385, -0.045388113707304, 0.044138580560684204, -0.014504857361316681, -0.046449270099401474, 0.017366822808980942, 0.014537792652845383, -0.006784073077142239, -0.02940371446311474, -0.08780722320079803, -0.05374281108379364, 0.0471222884953022, 0.06829266250133514, -0.06393793970346451, 0.03982029855251312, -0.005921994801610708, -0.014981458894908428, -0.030334267765283585, -0.020978715270757675, -0.03785375505685806, 0.03610105440020561, 0.025973575189709663, -0.06448055803775787, 0.07042523473501205, -0.06543443351984024, 0.0340670607984066, -0.026859568431973457, 0.02954671159386635, -0.025991344824433327, -0.03379061073064804, -0.10853743553161621, 0.023400800302624702, -0.1357065588235855, 0.063878133893013, 0.0794508308172226, -0.0014988284092396498, 0.04825315997004509, 0.09717124700546265, -0.12138393521308899, 0.02671625278890133, 0.04715391993522644, -0.01944516971707344, 0.04679626226425171, -0.047275204211473465, -0.027320612221956253, -0.09833576530218124, 0.031610749661922455, 0.08280554413795471, 0.021653741598129272, 0.018412211909890175, 0.00395386666059494, 0.03406256437301636, -0.02564164251089096, -0.0372246615588665, -0.06150764971971512, -0.1082003191113472, -0.10976678133010864, -0.03286588564515114, 0.00784180499613285, 0.04214869812130928, 0.047037769109010696, -0.04680816829204559, -0.036052558571100235, -0.12570461630821228, 0.0009683591197244823, 0.1505441814661026, 0.015252852812409401, 0.11097925901412964, -0.04163368046283722, 0.06336675584316254, -0.008332584984600544, -0.012811648659408092, -0.022351814433932304, -0.014862057752907276, -0.0013550142757594585, -0.00486180791631341, -0.07689183205366135, 0.05964187532663345, -0.02231857366859913, -0.06438057124614716, 0.1341550499200821, 0.03561367467045784, 0.07914572209119797, -0.05402248725295067, 0.053291480988264084, -0.07198460400104523, -0.05759133771061897, 0.0077362339943647385, -0.01892155036330223, -0.05842100828886032, 0.03924320638179779, -0.0976056382060051, -0.012607929296791553, -0.009292549453675747, 0.07744000852108002, 0.03738928213715553, 0.06673567742109299, 0.03387872874736786, -0.07472620159387589, 0.09167422354221344, 0.02376618981361389, 0.025132257491350174, -0.02126283384859562, -0.057026948779821396, 0.14052341878414154, 0.04018079861998558, -0.03714199364185333, -0.01957370713353157, 0.02589072473347187, 0.02382030338048935, 0.014033160172402859, -0.0788174569606781, 0.03990303725004196, 0.034471992403268814, -0.010141611099243164, 0.044793836772441864, -0.04766478016972542, -0.009742806665599346, -0.06958574801683426, 0.05955025926232338, -0.0141993323341012, -0.05557021126151085, 0.002562108915299177, 0.07396915555000305, 0.06662895530462265, 0.019635988399386406, -0.08042988181114197, 0.06204337626695633, -0.014696381986141205, -0.013341672718524933, 0.016978569328784943, 0.005017309449613094, 0.03173438832163811, 0.07711248844861984, 0.052877310663461685, 0.05650792270898819, 0.005872570909559727, 0.06419569253921509, 0.13458049297332764, -0.00818050466477871, -0.011473186314105988, -0.06925558298826218, -0.0019597162026911974, 0.0032587754540145397, 0.0775124654173851, -0.04586412385106087, 0.07733414322137833, 0.06619966775178909, 0.08505638688802719, -0.001831011613830924, -0.10294052958488464, 0.07174669206142426, -0.03416857868432999, 0.006225989665836096, 0.024719975888729095, -0.05184473469853401, 0.006820815149694681, 0.01847832091152668, 0.01633099839091301, 0.01841767504811287, 0.11941863596439362, 0.014304593205451965, 0.1018289253115654, -0.058154791593551636, 0.008176255971193314, -0.026710258796811104, -0.1470140516757965, -0.016075005754828453, -0.08920302987098694, 0.006260320544242859, -0.07132244110107422, 0.04169183596968651, 0.00969553180038929, 0.023416997864842415, -0.02358541078865528, 0.06494463980197906, 0.08182135224342346, -0.019455436617136, -0.017809728160500526, -0.035791583359241486, -0.02468484453856945, 0.06528061628341675, 0.1194913238286972, 0.0129329152405262, -0.2013763040304184, 0.04737141355872154, 0.08749022334814072, -0.0007756304112263024, 0.09928905218839645, 0.03199886530637741, -0.09210196882486343, 0.003936665132641792, -0.06175220012664795, 0.06939196586608887, -0.06616497784852982, 0.042162831872701645, 0.03199194744229317, 0.017564885318279266, 0.011608724482357502, -0.020996863022446632, -0.016715779900550842, 0.036556124687194824, -0.012838084250688553, 0.023648234084248543, -0.10674385726451874, -0.0608326718211174, 0.04603716358542442, 0.07824108004570007, 0.013121466152369976, 0.03204573690891266, -0.06852762401103973, -0.07230673730373383, -0.1411181539297104, 0.03958408534526825, -0.0299982987344265, 0.09175141155719757, -0.03507494181394577, 0.05083221197128296, -0.014333544299006462, -0.10340030491352081, -0.032289013266563416, 0.13940957188606262, 0.05822130665183067, -0.020064953714609146, 0.02298714965581894, -0.03567325323820114, 0.04620382562279701, -0.06423280388116837, -0.03823893517255783, 0.05991927161812782, 0.05785582214593887, -0.11532089114189148, -0.005953992251306772], "\u8bf7\u95ee\u60f3\u52a0\u8f7dPyTorch\u9884\u8bad\u7ec3\u597d\u7684\u6a21\u578b\u7528\u4e8eMindSpore\u6a21\u578bfinetune\u6709\u4ec0\u4e48\u65b9\u6cd5\uff1f": [-0.025521479547023773, 0.03694319352507591, 0.01842116378247738, 0.004321517422795296, -0.043496593832969666, -0.06497305631637573, 0.011080944910645485, 0.0687289908528328, -0.02580850198864937, 0.03542548418045044, -0.002313151489943266, 0.004627902526408434, 0.0215432271361351, -0.002088875276967883, -0.04316844046115875, 0.07957225292921066, 0.09026163816452026, 0.06580960750579834, -0.06897077709436417, 0.098141610622406, 0.02128552831709385, 0.00809577014297247, 0.061368782073259354, -0.048008788377046585, 0.0562288835644722, 0.10179313272237778, 0.023455576971173286, 0.01872757077217102, 0.06155943125486374, 0.12386931478977203, -0.009910166263580322, 0.021775497123599052, -0.06543272733688354, 0.05036911368370056, -0.05581663176417351, -0.0338180772960186, -0.0863104909658432, 0.09050508588552475, -0.07151626795530319, -0.024930618703365326, 0.04038538783788681, -0.011941852048039436, -0.0648859515786171, 0.054457951337099075, 0.021275389939546585, -0.06763100624084473, -0.1777266263961792, -0.03634341433644295, 0.05985887721180916, 0.025238797068595886, -0.10416749119758606, 0.012631467543542385, 0.014374320395290852, -0.026793908327817917, -0.08371084928512573, -0.03008146770298481, 0.04456373304128647, 0.028213396668434143, 0.05758646875619888, -0.020189151167869568, 0.04446430131793022, -0.024274466559290886, -0.07011573016643524, -0.025231072679162025, -0.1123940721154213, -0.009681466035544872, -0.007271801587194204, -0.054797496646642685, -0.029887069016695023, -0.030578166246414185, -0.09875085204839706, 0.005300168879330158, 0.005017304793000221, 0.10339338332414627, 0.0940447747707367, 0.04427598416805267, 0.051096685230731964, 0.03545248880982399, -0.08481314033269882, 0.03920525684952736, 0.07733128219842911, 0.12664856016635895, 0.07523313164710999, -0.07477039098739624, -0.05464477837085724, -0.02626943215727806, -0.07839479297399521, 0.08194765448570251, -0.06420695781707764, 0.07976987957954407, 0.0003115544095635414, -0.0820828378200531, -0.12549173831939697, 0.044379882514476776, 0.06309282779693604, -0.019321421161293983, -0.04055578261613846, -0.06409115344285965, -0.1438964456319809, 0.029052261263132095, 0.06114969402551651, 0.022632688283920288, -0.03738756477832794, 0.05969873070716858, 0.029645005241036415, -0.010634759441018105, 0.013031690381467342, 0.039533354341983795, 0.021051255986094475, 0.043138470500707626, 0.009742469526827335, 0.02302972599864006, 0.04798508435487747, 0.042697448283433914, 0.027288975194096565, 0.023323211818933487, -0.052344951778650284, -0.04760479927062988, -0.023825427517294884, 0.07860696315765381, 0.11018304526805878, -0.0703781396150589, 0.04980684444308281, 0.0023072916083037853, 0.024839233607053757, -0.010372912511229515, 0.06206386163830757, -0.07939041405916214, -0.055851858109235764, -0.04030047357082367, 0.16551122069358826, -0.06857897341251373, 0.038947321474552155, -0.06993641704320908, -0.08760647475719452, 0.05845091491937637, -0.05588617920875549, -0.008494032546877861, -0.06736354529857635, 0.12432318925857544, 0.03555624186992645, -0.1291401982307434, 0.0883956253528595, -0.04140662029385567, 0.11574221402406693, -0.0021509085781872272, -0.06543879210948944, -0.09044487774372101, -0.053787071257829666, -0.0965820699930191, 0.11247797310352325, -0.06879163533449173, -0.03546175733208656, 0.10531391203403473, -0.02177238091826439, 0.03321683034300804, 0.008570768870413303, 0.013744883239269257, -0.054353177547454834, -0.02627142146229744, -0.07250798493623734, -0.0685601606965065, 0.017894508317112923, -0.015186441130936146, -0.0207995492964983, 0.023519465699791908, 0.045374419540166855, -0.005482492037117481, -0.04211804270744324, -0.07284460961818695, -0.030277445912361145, 0.009299809113144875, -0.028899891301989555, -0.00711252074688673, 0.07851225137710571, -0.013166145421564579, 0.04173871874809265, -0.05481882765889168, 0.010174339637160301, -0.03656045347452164, 0.1019504964351654, -0.104649119079113, -0.07216943800449371, -0.08832438290119171, 0.0018042753217741847, 0.019140034914016724, 0.07630309462547302, 0.014950604178011417, 0.19089139997959137, -0.11598481982946396, 0.010387404821813107, 0.011661544442176819, 0.025829656049609184, 0.06976703554391861, -0.0056193177588284016, 0.018326101824641228, -0.10351572930812836, -0.018505537882447243, 0.046014416962862015, 0.006730834953486919, -0.03289022669196129, -0.013227762654423714, 0.07232102751731873, 0.005696902051568031, -0.014948152005672455, -0.003690263256430626, -0.05817831680178642, -0.09737994521856308, -0.026417607441544533, 0.011057287454605103, 0.10284113138914108, 0.040675777941942215, -0.0660027340054512, -0.05047493055462837, -0.15407612919807434, 0.045862436294555664, 0.10011550784111023, 0.0992889553308487, 0.054456938058137894, -0.057616353034973145, 0.031587693840265274, -0.004761033225804567, 0.00019950419664382935, -0.09263503551483154, -0.06864066421985626, -0.01093580387532711, -0.03982451558113098, -0.10024473071098328, 0.028783470392227173, 0.05265415459871292, -0.1098785251379013, 0.12285097688436508, 0.043535489588975906, 0.12315516918897629, -0.021343212574720383, 0.07683856040239334, -0.05182424187660217, 0.014196404255926609, 0.07475404441356659, 0.0775807648897171, -0.13755322992801666, 0.04383034631609917, -0.06740140169858932, -0.009091585874557495, -0.12006396055221558, 0.0901590883731842, 0.09238272160291672, 0.038114286959171295, 0.0177969541400671, -0.12312685698270798, 0.03404927998781204, 0.057797156274318695, -0.07318835705518723, 0.07033044099807739, -0.007862918078899384, 0.06942219287157059, 0.0297834649682045, -0.0733882337808609, 0.027599500492215157, 0.09638682752847672, 0.03937677666544914, 0.005882768891751766, -0.0998833179473877, -0.03171209990978241, -0.05290789157152176, 0.02006755769252777, 0.09352831542491913, -0.06525757163763046, 0.04964097589254379, -0.0527789331972599, 0.0230556670576334, 0.0374116525053978, -0.08377039432525635, 0.021669752895832062, 0.06095142662525177, 0.044871628284454346, 0.05058719217777252, -0.15478689968585968, 0.011885593645274639, 0.021298294886946678, -0.002243775874376297, 0.04454602301120758, -0.006616242695599794, -0.05223345756530762, 0.045293062925338745, -0.05393129587173462, 0.03113895282149315, 0.01917778141796589, 0.05707899481058121, 0.08971196413040161, -0.06211920082569122, 0.015136324800550938, -0.08348557353019714, -0.010156862437725067, 0.023925840854644775, 0.0936378464102745, 0.04488011449575424, 0.08476775139570236, 0.04758945479989052, 0.03831097483634949, -0.039099715650081635, -0.07319220155477524, 0.11938294023275375, -0.050772134214639664, -0.07133878022432327, -0.005101472605019808, -0.040647175163030624, 0.04238973185420036, 0.00533662224188447, -0.03964298963546753, 0.04123653843998909, 0.11546478420495987, 0.03468361496925354, 0.06392066180706024, -0.027885345742106438, -0.06396836042404175, 0.06697593629360199, -0.11091722548007965, 0.02459118887782097, -0.10198754817247391, -0.03429097682237625, -0.04437043517827988, 0.05639012157917023, 0.05736454576253891, 0.03351172059774399, -0.020761216059327126, 0.002269401913508773, 0.07174155861139297, -0.01603139005601406, -0.06821563839912415, 0.0609559528529644, 0.01159544475376606, 0.031124098226428032, 0.09963911771774292, 0.028864504769444466, -0.11344140768051147, 0.13505861163139343, 0.04413427412509918, -0.0603073351085186, 0.07355974614620209, 0.01786981336772442, -0.05979307368397713, 0.000186283141374588, -0.0502910241484642, 0.08773409575223923, -0.1053132712841034, 0.11356011033058167, 0.0018249875865876675, -0.046367935836315155, 0.0024884440936148167, 0.059051577001810074, -0.040042854845523834, 0.07491529732942581, -0.034581590443849564, -0.08652082085609436, -0.1266656219959259, -0.04164445772767067, 0.025998391211032867, 0.05893682315945625, 0.006595685612410307, 0.03747944533824921, -0.03634781762957573, -0.03938676416873932, -0.0062458449974656105, 0.0171255711466074, -0.06395788490772247, 0.09122410416603088, -0.07541175931692123, 0.012324752286076546, 0.009693033061921597, -0.10572051256895065, 0.04560231417417526, 0.11549130082130432, 0.06544388830661774, -0.05321348085999489, -0.08355384320020676, -0.10198591649532318, 0.02738928236067295, -0.007983071729540825, -0.05963204801082611, 0.023832980543375015, 0.025787176564335823, -0.11306986212730408, 0.04840264096856117], "\u600e\u4e48\u5c06PyTorch\u7684`dataset`\u8f6c\u6362\u6210MindSpore\u7684`dataset`\uff1f": [-0.04134548455476761, 0.03379544988274574, 0.0044488911516964436, 0.0023674212861806154, -0.09279711544513702, -0.0909762978553772, -0.011476083658635616, 0.0662229135632515, -0.016548965126276016, 0.023199567571282387, 0.0017939861863851547, 0.03306044265627861, -0.017602045089006424, -0.008400332182645798, -0.007132267579436302, 0.08198699355125427, 0.0986390933394432, 0.03588894382119179, -0.12551923096179962, 0.12756632268428802, 0.028407558798789978, -0.014362034387886524, 0.040838755667209625, -0.03975408896803856, 0.05313340201973915, 0.04075424000620842, 0.03592890873551369, 0.02979337051510811, 0.06554561108350754, 0.12006659060716629, 0.03802868723869324, 0.042618267238140106, 0.004568865522742271, 0.09034617245197296, -0.001215992379002273, -0.050974272191524506, -0.13398291170597076, 0.06867680698633194, -0.057717375457286835, 0.004929457791149616, 0.0691596046090126, -0.0015908768400549889, -0.08775270730257034, 0.08613990992307663, -0.03900488093495369, -0.017396774142980576, -0.13832947611808777, -0.09818211197853088, 0.04352141171693802, 0.009557366371154785, -0.07011474668979645, 0.030163291841745377, 0.0238496121019125, -0.036616478115320206, -0.07996013760566711, -0.0372331440448761, 0.0019582819659262896, -0.004003704525530338, 0.05954691395163536, -0.0194423608481884, 0.0538763552904129, -0.014299273490905762, -0.12372180819511414, -0.07263242453336716, -0.12699005007743835, 0.0011189240030944347, -0.00959970336407423, -0.03865348547697067, 0.00360240344889462, -0.022802352905273438, -0.09946087747812271, 0.026292670518159866, 0.02643645741045475, 0.06283441931009293, 0.0542624332010746, 0.08721425384283066, -0.01333473902195692, 0.04813482239842415, -0.10560333728790283, 0.057792142033576965, 0.052528053522109985, 0.13096165657043457, 0.07298476248979568, -0.07822856307029724, -0.08352924883365631, 0.0031119484920054674, -0.056513816118240356, 0.07710228860378265, -0.056508176028728485, 0.042552702128887177, 0.013823194429278374, -0.07831451296806335, -0.12908104062080383, 0.041994716972112656, 0.062048979103565216, -0.0016147135756909847, -0.05657182261347771, -0.08775483071804047, -0.13281439244747162, 0.01805507019162178, 0.03256107494235039, 0.025353334844112396, -0.012895284220576286, 0.08319111913442612, -0.01718369871377945, -0.03719741106033325, -0.03869916498661041, 0.054763488471508026, 0.03761883080005646, 0.0259181410074234, 0.03125517815351486, 0.010019628331065178, 0.04043738916516304, 0.03675704821944237, -0.02719217538833618, -0.004210272803902626, -0.08436386287212372, -0.01226552203297615, -0.07916594296693802, 0.08074570447206497, 0.06096440553665161, -0.044143036007881165, 0.058597348630428314, 0.015341632068157196, 0.016001282259821892, -0.0018009388586506248, 0.09228892624378204, -0.1381807029247284, -0.05468354374170303, -0.03942453861236572, 0.1515602469444275, -0.09842897951602936, 0.04827265813946724, -0.13299566507339478, -0.08273178339004517, -0.021687069907784462, -0.009729351848363876, 0.0014997364487498999, -0.08174271136522293, 0.10813041031360626, 0.05724852532148361, -0.09014797955751419, 0.05914316698908806, -0.0281722079962492, 0.07984976470470428, -0.008838321082293987, -0.06339003145694733, -0.05316728726029396, -0.066719651222229, -0.05703981593251228, 0.0902755856513977, -0.09600433707237244, -0.04393970966339111, 0.11594149470329285, -0.005596266593784094, 0.06478214263916016, 0.04566800966858864, -0.004096371587365866, -0.035045742988586426, 0.011076223105192184, -0.04774745553731918, -0.08770373463630676, 0.011392374522984028, 0.044349122792482376, -0.03557300567626953, 0.018812183290719986, 0.009806135669350624, 0.023519495502114296, -0.0390801727771759, -0.05567016452550888, -0.04521234706044197, -0.02207636833190918, -0.0073115285485982895, -0.03801930323243141, 0.07630875706672668, 0.008671266958117485, 0.024945078417658806, -0.0508638434112072, -0.03611168637871742, -0.05023416504263878, 0.0656588226556778, -0.08584270626306534, -0.10886117815971375, -0.13218329846858978, 0.0313858725130558, 0.04436751455068588, 0.06689059734344482, 0.026331789791584015, 0.1429331749677658, -0.13629493117332458, -0.009359387680888176, 0.06765210628509521, -0.018599579110741615, 0.09666869044303894, 0.04732324182987213, -0.01462867297232151, -0.06957373768091202, -0.006153990048915148, 0.05968169495463371, 0.004658525809645653, -0.03820228949189186, 0.021694617345929146, 0.035884637385606766, 0.02815880812704563, -0.05080956593155861, 0.001139580737799406, -0.07355782389640808, -0.11468422412872314, -0.027200972661376, -0.034083057194948196, 0.10290958732366562, 0.050832245498895645, -0.054242607206106186, -0.05452552065253258, -0.14357635378837585, 0.018411898985505104, 0.1077832579612732, 0.10514289140701294, 0.0018037090776488185, -0.04400063306093216, 0.0015652129659429193, -0.04143582656979561, 0.009056920185685158, -0.1036730408668518, -0.03914797306060791, -0.004007245413959026, -0.015873003751039505, -0.11194518953561783, 0.015091421082615852, 0.02976495772600174, -0.10724624991416931, 0.10330331325531006, 0.05210563912987709, 0.1642134040594101, -0.016428448259830475, 0.09567754715681076, -0.042588964104652405, 0.036642156541347504, 0.058280203491449356, 0.025438789278268814, -0.08618378639221191, 0.05421755090355873, -0.08562353253364563, 0.005931336898356676, -0.08056014776229858, 0.10624709725379944, 0.1107935681939125, 0.060033056885004044, 0.010292591527104378, -0.09195274859666824, 0.03760100528597832, 0.014559679664671421, -0.059583842754364014, 0.020146001130342484, -0.02287749946117401, 0.05704280734062195, 0.04062677174806595, -0.05145644024014473, 0.009869839996099472, 0.06997290998697281, -0.004455826710909605, 0.03470709174871445, -0.06597328186035156, 0.013715751469135284, -0.056365590542554855, -0.011912821792066097, 0.08817023038864136, -0.03536339849233627, 0.08150757104158401, -0.07703349739313126, -0.00716216629371047, 0.033381298184394836, -0.04717273265123367, 0.050824739038944244, 0.034766510128974915, 0.037053875625133514, 0.01628950983285904, -0.14385049045085907, 0.04234675318002701, 0.039005015045404434, 0.007895631715655327, 0.05729585140943527, -0.03842563554644585, -0.07916636019945145, 0.04563198983669281, -0.100685715675354, 0.03221522644162178, 0.03723888844251633, 0.033198606222867966, 0.08018676936626434, -0.01024372037500143, -0.026090413331985474, -0.0744938775897026, -0.041057635098695755, 0.05958181619644165, 0.03176403045654297, 0.06682084500789642, 0.10717133432626724, 0.030099546536803246, 0.017853915691375732, -0.007163912057876587, -0.07036309689283371, 0.1089012548327446, -0.08608967065811157, -0.011819392442703247, 0.002977027092128992, -0.05056993290781975, 0.010452136397361755, 0.04381702095270157, -0.017601799219846725, 0.08261449635028839, 0.11065647751092911, 0.0045066094025969505, 0.07688724994659424, -0.061736300587654114, -0.0542684830725193, 0.06645704060792923, -0.08835095167160034, 0.07574285566806793, -0.09068462252616882, -0.023137204349040985, -0.03865853697061539, 0.01741572842001915, 0.07235516607761383, 0.05807054787874222, -0.017822492867708206, 0.037784453481435776, 0.06731471419334412, 0.03290601819753647, -0.013403207994997501, 0.05787447839975357, -0.019446544349193573, 0.059760309755802155, 0.06455516070127487, 0.019218094646930695, -0.11415351927280426, 0.0807492733001709, 0.032931748777627945, -0.03651418164372444, 0.035922106355428696, 0.043794263154268265, -0.06957144290208817, 0.051797814667224884, -0.03804526850581169, 0.09083502739667892, -0.1079932302236557, 0.14112448692321777, -0.0231931135058403, 0.01075701043009758, -0.004970528185367584, 0.034566137939691544, -0.03546208515763283, 0.07983452826738358, -0.003368617268279195, -0.10749691724777222, -0.1902497559785843, -0.05857624113559723, 0.04286755621433258, 0.08093994110822678, -0.01473950780928135, 0.0054201362654566765, -0.01479873526841402, -0.043322041630744934, -0.07955341041088104, 0.01801646687090397, -0.054959990084171295, 0.04938523843884468, -0.04944341257214546, 0.09820075333118439, 0.008633463643491268, -0.09550981223583221, 0.07019976526498795, 0.12849092483520508, 0.07605002075433731, -0.05674035847187042, -0.10504680126905441, -0.1250697821378708, 0.029654894024133682, -0.012620195746421814, -0.02578894793987274, 0.030026646330952644, -0.0022615715861320496, -0.10128650069236755, 0.05650214105844498], "\u5176\u4ed6\u6846\u67b6\u7684\u811a\u672c\u6216\u8005\u6a21\u578b\u600e\u4e48\u8fc1\u79fb\u5230MindSpore\uff1f": [-0.020037025213241577, 0.029886331409215927, 0.007386518642306328, 0.10599560290575027, -0.08028482645750046, 0.002895814599469304, -0.0211210735142231, 0.10596539080142975, -0.032733771950006485, 0.030747201293706894, 0.05693396180868149, -0.019169101491570473, -0.030910255387425423, 0.05886860936880112, -0.010441318154335022, 0.10662351548671722, 0.11665399372577667, 0.02244909107685089, -0.036640726029872894, 0.07604462653398514, -0.027111433446407318, -0.04456283524632454, 0.007359947077929974, -0.05580458045005798, -0.023356227204203606, 0.05884545296430588, -0.004860271699726582, 0.014223823323845863, 0.04550780728459358, 0.009936501272022724, 0.1097218319773674, 0.01872045174241066, -0.11281263828277588, 0.004264043644070625, -0.03545038029551506, -0.0622231587767601, -0.000673191505484283, 0.016089461743831635, -0.018689002841711044, -0.07946454733610153, 0.1044401153922081, 0.04513709992170334, -0.04755527153611183, 0.13139009475708008, -0.08589611202478409, -0.07810258865356445, -0.13367535173892975, 0.0009733109618537128, -0.014135791920125484, 0.03945456072688103, -0.049442265182733536, 0.06707210093736649, -0.009205345995724201, 0.006117105484008789, -0.03000541962683201, -0.020822901278734207, -0.015746450051665306, -0.00592509051784873, 0.06410784274339676, -0.09355367720127106, 0.03506717458367348, 0.038762763142585754, -0.04486515372991562, -0.06604413688182831, -0.08368752151727676, -0.0282873697578907, -0.043475065380334854, -0.10718190670013428, -0.019371749833226204, 0.016003815457224846, -0.029201380908489227, -0.03825586661696434, 0.0721532478928566, 0.04598728567361832, 0.0414704754948616, -0.004041931126266718, -0.03601522743701935, -0.011430855840444565, -0.03235176205635071, 0.01567603461444378, 0.008935884572565556, 0.10565546154975891, 0.06145693361759186, -0.08727309107780457, -0.05036437138915062, -0.01418252568691969, -0.008910599164664745, 0.09280429780483246, -0.006648971699178219, 0.10023795813322067, 0.022070620208978653, -0.023032695055007935, -0.1814013421535492, 0.019702471792697906, 0.09487664699554443, -0.0011050128377974033, -0.06210055947303772, -0.05456601828336716, -0.1437690407037735, -0.01188842672854662, 0.001497096149250865, 0.019780023023486137, -0.01622592844069004, 0.026427514851093292, -0.0008880922105163336, -0.06807856261730194, 0.06898979842662811, 0.028299573808908463, 0.08951251953840256, 0.0019870835822075605, 0.0897844135761261, 0.0030202774796634912, 0.07183613628149033, 0.042135052382946014, -0.04798663407564163, 0.019326621666550636, -0.11223366856575012, 0.0438137948513031, -0.0730806291103363, 0.11058049649000168, 0.057669103145599365, -0.05203700065612793, 0.0007691679638810456, 0.01802215352654457, 0.020735757425427437, -0.015422587282955647, 0.08179116249084473, -0.1077328473329544, -0.0993029773235321, -0.09759489446878433, 0.17184250056743622, -0.03430910408496857, 0.11779148131608963, -0.12714633345603943, -0.14864394068717957, 0.06104248762130737, 0.014379668049514294, -0.00748477503657341, -0.02188270166516304, 0.09755681455135345, 0.025242995470762253, -0.10241377353668213, 0.1495376080274582, -0.03580285981297493, 0.06568817794322968, 0.06869598478078842, -0.0235524270683527, -0.10716964304447174, 0.02024497650563717, -0.07534818351268768, 0.03883878141641617, -0.0380813404917717, -0.05312049761414528, 0.04837331920862198, 0.06770140677690506, 0.08914852142333984, 0.022316206246614456, -0.02112695202231407, 0.03901170194149017, -0.05872134119272232, -0.05486253276467323, -0.03219714015722275, 0.05520886555314064, 0.036253560334444046, -0.056503064930438995, -0.01448624674230814, 0.05412376672029495, -0.024573108181357384, -0.09542153030633926, 0.006002063397318125, -0.020060578361153603, -0.018877629190683365, -0.01365345623344183, -0.04922226071357727, 0.018293702974915504, -0.023920191451907158, 0.1239239051938057, -0.1221933588385582, 0.01766352169215679, -0.04955152049660683, 0.022290073335170746, -0.09146034717559814, -0.036940813064575195, -0.07625646889209747, 0.0645340159535408, 0.03175557032227516, 0.0847751647233963, 0.05327717959880829, 0.13278308510780334, -0.10576753318309784, -0.006461889483034611, 0.05025564134120941, 0.01849782094359398, 0.018903575837612152, 0.021319862455129623, -0.010510114952921867, -0.11910060048103333, -0.019636891782283783, 0.02761496976017952, -0.04254038631916046, 0.0012199351331219077, 0.009598620235919952, 0.06904767453670502, 0.013206543400883675, 0.018822552636265755, -0.017785100266337395, -0.08369846642017365, -0.08687169849872589, 0.006545118521898985, 0.009128225967288017, 0.04695514962077141, 0.04607905447483063, 0.0492689274251461, -0.01359222549945116, -0.1074274331331253, 0.018627671524882317, 0.13404160737991333, 0.04775147885084152, 0.05058463290333748, -0.06439784169197083, 0.0032215602695941925, 0.012991881929337978, 0.04861270263791084, -0.045285165309906006, -0.06986260414123535, 0.011900259181857109, 0.02554645948112011, -0.11061850190162659, -0.028369873762130737, 0.033157967031002045, -0.06045357137918472, 0.057655684649944305, 0.029140759259462357, 0.14895814657211304, -0.002305103000253439, 0.0876830518245697, 0.02694684825837612, -0.03581082820892334, 0.07736295461654663, 0.06772054731845856, -0.09564971178770065, 0.0404222272336483, -0.08548234403133392, -0.06116025149822235, -0.025082461535930634, 0.13618668913841248, 0.07288216054439545, 0.10168218612670898, 0.03727920353412628, -0.0466315783560276, 0.053965695202350616, 0.01865421049296856, -0.03654211014509201, 0.0777362808585167, -0.020405909046530724, 0.0982653871178627, 0.04892997816205025, -0.031058263033628464, -0.0033250104170292616, -0.0015120792668312788, 0.06721211224794388, -0.03595125302672386, -0.03174750134348869, 0.016326529905200005, -0.04703367501497269, -0.026128249242901802, 0.08031968772411346, 0.00092457071878016, 0.03070276975631714, -0.1337234377861023, 0.028658458963036537, 0.05846492573618889, -0.0735505074262619, -0.025627298280596733, 0.1854836642742157, 0.07411909848451614, 0.03416021540760994, -0.18732315301895142, 0.03140152990818024, 0.05617516487836838, 0.02709795907139778, 0.0347847156226635, -0.05785571411252022, -0.030501147732138634, 0.07977452874183655, 0.03586481884121895, 0.05737476795911789, -0.0012358662206679583, 0.049722593277692795, 0.16097687184810638, -0.0940655842423439, 0.017137976363301277, -0.04149238020181656, 0.0110031021758914, -0.11847345530986786, 0.10225452482700348, 0.005518734455108643, 0.03178901970386505, 0.06824145466089249, 0.08997757732868195, -0.057259701192379, -0.04596598818898201, 0.09581004083156586, -0.0796697586774826, 0.014855781570076942, 0.005638541653752327, -0.03805939108133316, 0.10773734748363495, -0.009084947407245636, 0.042715467512607574, 0.07553368806838989, 0.10545089840888977, 0.05532743036746979, 0.06876502931118011, -0.060605019330978394, -0.014695081859827042, 0.03533362224698067, -0.16471953690052032, 0.018690573051571846, -0.09020990878343582, -0.015199854038655758, -0.034663017839193344, 0.025855325162410736, 0.06141673028469086, 0.09672210365533829, -0.038397420197725296, 0.06466525793075562, 0.056365855038166046, -0.007177694234997034, -0.019792519509792328, -0.01021641492843628, -0.06744347512722015, 0.07206754386425018, 0.11931390315294266, 0.021424464881420135, -0.13687045872211456, 0.0837097316980362, 0.08048132061958313, 0.036442313343286514, 0.015506268478929996, 0.04153876751661301, -0.058864280581474304, -0.048586998134851456, -0.06040690094232559, 0.07357332110404968, -0.10528227686882019, 0.07808268070220947, -0.03374549373984337, -0.04901057854294777, -0.04064532369375229, 0.08826138079166412, -0.030083948746323586, 0.05000152438879013, 0.018945995718240738, -0.039918605238199234, -0.1311730444431305, -0.08074165880680084, 0.03156640753149986, 0.0178315881639719, 0.00017695501446723938, -0.07419469952583313, -0.035372037440538406, -0.10429487377405167, -0.06887051463127136, 0.036767467856407166, -0.005585366394370794, 0.10291213542222977, -0.08563835918903351, 0.07057563215494156, 0.03715752065181732, -0.07788518071174622, 0.02574368566274643, 0.10947699844837189, 0.06672137975692749, -0.010240951552987099, -0.03756127506494522, -0.09246598184108734, 0.06770811975002289, 0.03547942638397217, 0.0033065294846892357, 0.07655968517065048, -0.006695994641631842, -0.14225570857524872, 0.0258722435683012], "MindConverter\u8f6c\u6362TensorFlow\u811a\u672c\u62a5\u9519\u63d0\u793a`terminate called after throwing an instance of 'std::system_error'\uff0c what(): Resource temporarily unavailable\uff0c Aborted (core dumped)`": [0.011689919047057629, 0.030171142891049385, -0.019796153530478477, -0.02436036244034767, -0.016712170094251633, -0.06410551071166992, 0.007780208718031645, 0.021677177399396896, -0.041897159069776535, 0.028108779340982437, -0.06402576714754105, 0.0021847414318472147, -5.134567618370056e-05, 0.052962467074394226, -0.04977031797170639, 0.021235741674900055, 0.10957369208335876, -0.018842197954654694, -0.049281246960163116, 0.03856496140360832, -0.031386714428663254, -0.005739285610616207, 0.07869581878185272, 0.0010230481857433915, -0.00325998617336154, 0.09117922931909561, -0.043799497187137604, 0.028193701058626175, 0.005953345913439989, 0.08381073921918869, 0.06724108755588531, -0.004535995423793793, -0.08662030100822449, 0.03313203901052475, -0.024987822398543358, -0.029362821951508522, -0.09125057607889175, 0.11615043133497238, -0.0037841913290321827, -0.018658379092812538, -0.028689183294773102, 0.027403663843870163, -0.06576285511255264, 0.10989247262477875, -0.03891569748520851, -0.07214294373989105, -0.08739568293094635, -0.0575384795665741, 0.03602887690067291, 0.017184695228934288, -0.12338689714670181, 0.09075939655303955, -0.020016849040985107, -0.02537713199853897, -0.11983931809663773, -0.022690463811159134, -0.0580686554312706, 0.0025660861283540726, 0.01688053272664547, -0.0002992842346429825, 0.07058947533369064, 0.06914814561605453, -0.11464262008666992, -0.017565252259373665, -0.09396051615476608, 0.012963945977389812, 0.00992286391556263, -0.10148174315690994, -0.07904930412769318, -0.009051165543496609, -0.03129167482256889, 0.00629084836691618, 0.01565944217145443, 0.05895868316292763, -0.00816968735307455, 0.08039357513189316, -0.08873818069696426, 0.06165626645088196, -0.09255608916282654, 0.012619207613170147, 0.018432388082146645, 0.032030873000621796, 0.12117919325828552, -0.024785280227661133, -0.1352403610944748, -0.0620822012424469, -0.012086991220712662, 0.07356652617454529, 0.05593682825565338, 0.17167750000953674, 0.034057196229696274, -0.005933246575295925, -0.14016593992710114, 0.11368512362241745, 0.04695676639676094, -0.0014538493705913424, -0.03655319660902023, -0.07664721459150314, -0.15815860033035278, 0.014175429940223694, -0.023822277784347534, 0.0017705205827951431, -0.05428595468401909, 0.06942790746688843, 0.015751337632536888, -0.03592540696263313, 0.03610730543732643, 0.06866614520549774, 0.005674032960087061, 0.03235447034239769, 0.06237819790840149, 0.01823464035987854, 0.04806041717529297, 0.07188825309276581, -0.0212154071778059, 0.04674214869737625, -0.08771777153015137, -0.027358179911971092, -0.06924516707658768, 0.08540277183055878, 0.08007962256669998, -0.08141563087701797, 0.04397996515035629, 0.10581279546022415, 0.02085663378238678, 0.02522292546927929, 0.03226036578416824, -0.06478705257177353, -0.058010634034872055, -0.07403692603111267, 0.12448752671480179, -0.06779520958662033, 0.10648030787706375, -0.1421012133359909, -0.11626772582530975, 0.09912087023258209, -0.019441595301032066, -0.005200266372412443, -0.02812858484685421, 0.07127967476844788, 0.09228388965129852, -0.07022707909345627, 0.04605098068714142, -0.04825117439031601, 0.07372358441352844, 0.005602714605629444, -0.06843320280313492, -0.08225078880786896, 0.0077153160236775875, -0.06183483824133873, 0.10394451767206192, -0.07705051451921463, -0.08032889664173126, 0.11322524398565292, -0.03148837387561798, 0.06235131621360779, -0.02777990698814392, -0.027466844767332077, -0.024506840854883194, -0.056115228682756424, -0.01058351993560791, -0.03877263143658638, 0.023503541946411133, 0.057448212057352066, 0.06447329372167587, -0.012558250688016415, 0.06751593947410583, 0.0006294947816058993, 0.009174743667244911, -0.04427113011479378, -0.03990296274423599, -0.06535958498716354, -0.08472506701946259, 0.02161877602338791, -0.013708220794796944, -0.023430779576301575, 0.05445124953985214, -0.03472481295466423, 0.03909546881914139, -0.0886777937412262, 0.10179640352725983, -0.0769580751657486, -0.05933942645788193, -0.11197923868894577, 0.03817444667220116, 0.052768558263778687, 0.06183507293462753, 0.018001416698098183, 0.047890275716781616, -0.18034011125564575, 0.011237265542149544, 0.09958700835704803, 0.045836567878723145, 0.011899147182703018, -0.01132296770811081, -0.0391482338309288, -0.09750852733850479, -0.017351293936371803, 0.025752248242497444, 0.039577119052410126, 0.00521015515550971, 0.04800741374492645, 0.004960756748914719, 0.10023245215415955, 0.08143435418605804, -0.08825619518756866, -0.04728405922651291, -0.0851164236664772, 0.0032518671359866858, -0.010830082930624485, 0.11937794834375381, 0.078337661921978, 0.05636492371559143, 0.011111405678093433, -0.08448779582977295, -0.032668959349393845, 0.0578068383038044, 0.07320515811443329, -0.018975073471665382, -0.015164357610046864, 0.05302366614341736, 0.04326086491346359, 0.004630476702004671, -0.10704531520605087, -0.13167285919189453, -0.009889052249491215, -0.016286898404359818, -0.061493441462516785, 0.014440802857279778, 0.04450129345059395, -0.08926038444042206, 0.10290402173995972, 0.0245167538523674, 0.14105157554149628, -0.02310354635119438, 0.11158955097198486, 0.015133528038859367, 0.015738854184746742, 0.14168545603752136, -0.003031684085726738, -0.16483959555625916, 0.06641636043787003, -0.054244231432676315, 0.009281132370233536, -0.07078652083873749, 0.1385340541601181, 0.09418720752000809, 0.03986510634422302, 0.04545225203037262, -0.09454485028982162, 0.08774884045124054, 0.001289672451093793, -0.0457182414829731, 0.0737476572394371, -0.025830155238509178, -0.029560279101133347, 0.09415684640407562, -0.14737530052661896, 0.025861546397209167, 0.019152216613292694, -0.02252998761832714, 0.08875633776187897, -0.05145756155252457, -0.03781107813119888, -0.04856761917471886, 0.06577933579683304, 0.008909332565963268, -0.06266264617443085, 0.01884366385638714, -0.09255065023899078, 0.040833305567502975, -0.00034465640783309937, -0.09150105714797974, -0.008997279219329357, 0.06957508623600006, 0.08687082678079605, 0.019114263355731964, -0.1824556589126587, 0.04351138323545456, 0.03737955912947655, 0.011485053226351738, -0.018873510882258415, 0.004419252276420593, -0.10238460451364517, 0.07562141120433807, 0.0043576122261583805, 0.03783152997493744, -0.03179170563817024, 0.005996492691338062, 0.12918289005756378, -0.10834258794784546, -0.028896356001496315, -0.009623213671147823, 0.03926407918334007, -0.047896455973386765, 0.09307366609573364, 0.06709153205156326, 0.07138088345527649, -0.027946237474679947, 0.06038292869925499, -4.087574779987335e-06, -0.022630494087934494, 0.12543269991874695, -0.09559886157512665, -0.06191030517220497, 0.006073625758290291, -0.08928744494915009, 0.07626022398471832, 0.025258928537368774, -0.03444673493504524, 0.07085710018873215, 0.04688187688589096, -0.02294098772108555, 0.10224851965904236, -0.07029060274362564, -0.016559895128011703, 0.04917391389608383, -0.1115526556968689, 0.014730317518115044, -0.09772825986146927, 0.026304196566343307, -0.028864383697509766, -0.055899374186992645, 0.04906117916107178, 0.06630565971136093, -0.023374710232019424, -0.02315966971218586, 0.02059747278690338, 0.009602501057088375, 0.02071564458310604, 0.05198224261403084, -0.05980581045150757, 0.03045445680618286, 0.023386243730783463, 0.006793285720050335, -0.12297220528125763, 0.11004996299743652, 0.04279787093400955, -0.006542075425386429, 0.027420826256275177, 0.04377947002649307, -0.020611345767974854, 0.0395660400390625, -0.043252378702163696, 0.06961925327777863, -0.10837136954069138, 0.11372272670269012, -0.007647309452295303, -0.03789170831441879, -0.04239392653107643, 0.05556410178542137, -0.07161413133144379, 0.10563988983631134, 0.0337592214345932, -0.041961003094911575, -0.12773196399211884, -0.05956064909696579, -0.04035637900233269, 0.013132121413946152, -0.013326550833880901, -0.030135899782180786, -0.07906892150640488, -0.09051946550607681, -0.07869479060173035, -0.0015605153748765588, -0.08360602706670761, 0.03143087401986122, -0.07539663463830948, 0.08897319436073303, 0.01905975677073002, -0.06949713826179504, 0.02935073710978031, 0.10322614759206772, 0.012924899347126484, -0.07657282054424286, -0.0692562684416771, -0.11350694298744202, 0.01713300496339798, -0.011883578263223171, -0.02189580537378788, -0.020906468853354454, 0.042088620364665985, -0.09419482201337814, 0.0342591255903244], "MindConverter\u662f\u5426\u53ef\u4ee5\u5728ARM\u5e73\u53f0\u8fd0\u884c\uff1f": [-0.018595971167087555, 0.029225487262010574, 0.016624554991722107, -0.016008615493774414, -0.03204842656850815, -0.044791191816329956, -0.01752965897321701, 0.07324998825788498, -0.02319643646478653, 0.016808051615953445, -0.014331245794892311, -1.2081582099199295e-06, 0.04202571511268616, 0.020372945815324783, -0.05022873729467392, 0.022152535617351532, 0.1244739294052124, 0.044224224984645844, -0.06239373981952667, 0.002933128736913204, -0.00838883314281702, 0.02594863809645176, 0.03466188162565231, 0.0015005741734057665, 0.013184276409447193, 0.11343098431825638, -0.045958973467350006, -0.028982533141970634, -0.019293034449219704, 0.02127658575773239, 0.09323522448539734, 0.06678397953510284, -0.12667353451251984, -0.023384155705571175, -0.08932745456695557, -0.03021290898323059, -0.11359383910894394, 0.15119893848896027, -0.03207182139158249, -0.08619345724582672, -0.0023171748034656048, -0.03026464581489563, 0.016479572281241417, 0.0894559770822525, -0.0325964130461216, -0.01719905063509941, -0.135889932513237, 0.01528699230402708, 0.0853608027100563, 0.039564959704875946, -0.020113132894039154, 0.11968950927257538, 0.017218101769685745, -0.02529662847518921, -0.06301843374967575, 0.012831060215830803, -0.0029604907613247633, 0.0954083502292633, 0.05720757693052292, -0.05736074224114418, -0.0209612138569355, 0.0746159553527832, -0.12835218012332916, -0.021578995510935783, -0.11748181283473969, 0.09243776649236679, -0.06182892993092537, -0.12066560238599777, -0.052890874445438385, 0.06110671907663345, -0.011063472367823124, -0.04693770781159401, 0.047483690083026886, 0.08961563557386398, 0.02803582325577736, 0.08505288511514664, -0.03638068214058876, -0.01898849755525589, -0.07365602254867554, 0.06843750178813934, 0.017915887758135796, 0.08327439427375793, 0.03804662078619003, -0.048418864607810974, -0.031351104378700256, -0.028780430555343628, -0.011621367186307907, 0.11228765547275543, 0.07880733162164688, 0.17184919118881226, 0.03598151355981827, -0.03338570520281792, -0.12666165828704834, 0.0770452469587326, 0.02236131578683853, -0.0680348202586174, -0.05187680572271347, -0.06598183512687683, -0.13161204755306244, -0.0716133564710617, 0.00925001036375761, 0.04173682630062103, -0.08140822499990463, 0.07724487781524658, 0.038210153579711914, -0.09438689798116684, 0.007426500786095858, -0.00013917405158281326, 0.03961893543601036, -0.005363200791180134, 0.06673994660377502, -0.029548445716500282, 0.059593018144369125, -0.0012462895829230547, 0.035626206547021866, -0.011836260557174683, -0.05045109614729881, 0.01692178286612034, -0.05964343249797821, 0.12150663137435913, 0.1216389387845993, -0.004319337196648121, 0.03509054705500603, 0.07429338991641998, 0.036367908120155334, -0.05541062727570534, 0.07144796848297119, -0.0741175040602684, -0.1480073630809784, -0.07430566102266312, 0.1524128019809723, -0.10310407727956772, 0.1210172101855278, -0.10505962371826172, -0.11811067163944244, 0.0800418108701706, 0.03827662393450737, -0.04583926871418953, 0.013365848921239376, 0.112356036901474, 0.03672770783305168, -0.14501678943634033, 0.04254651069641113, -0.01674177683889866, 0.09254590421915054, 0.05313682556152344, -0.08651675283908844, -0.1429441124200821, -0.04985016956925392, -0.10283661633729935, 0.12416277825832367, 0.005648897495120764, -0.07272801548242569, 0.10106290876865387, -0.04416804388165474, 0.009806275367736816, -0.010460928082466125, -0.0337279811501503, -0.022125331684947014, -0.0661245658993721, 0.0009397693793289363, -0.04523923620581627, -0.03138110786676407, 0.008599767461419106, -0.036301225423812866, -0.008057594299316406, 0.07352098822593689, -0.013195497915148735, -0.04272480309009552, -0.035608332604169846, 0.005166963208466768, -0.03940938413143158, -0.1383877843618393, 0.03151668235659599, -0.004488132428377867, 0.0468708872795105, 0.106788270175457, -0.08538809418678284, 0.014805544167757034, -0.08614372462034225, 0.052623506635427475, -0.05174815654754639, -0.030994873493909836, -0.10256814956665039, 0.02225278690457344, 0.025882761925458908, 0.050599537789821625, -0.025458911433815956, 0.04941947013139725, -0.23200556635856628, -0.07486836612224579, 0.040564894676208496, 0.009248358197510242, 0.051311295479536057, -0.03150545060634613, 0.019248180091381073, -0.09416525065898895, 0.004153876099735498, 0.07049330323934555, -0.019124267622828484, -0.008294064551591873, 0.04909832403063774, 0.00489606149494648, 0.06364410370588303, 0.01940964348614216, -0.07590803503990173, -0.006887355819344521, -0.09301357716321945, 0.012661428190767765, -0.040991440415382385, 0.13360705971717834, 0.023853112012147903, -0.03259359300136566, -0.048881642520427704, -0.03636009618639946, -0.05030660331249237, 0.06379782408475876, 0.079029880464077, 0.037118829786777496, -0.031710270792245865, 0.02940322458744049, -0.00914679653942585, -0.07105280458927155, -0.12810103595256805, -0.15690484642982483, -0.022412633523344994, -0.016440508887171745, -0.07852812111377716, -0.04294072091579437, 0.07003913819789886, -0.06554453074932098, 0.06969115138053894, 0.012157307006418705, 0.1688961237668991, -0.030525825917720795, 0.11924324929714203, 0.018299279734492302, -0.012249129824340343, 0.09373253583908081, 0.04599172621965408, -0.1276288628578186, 0.057578325271606445, -0.05459879711270332, -0.06839432567358017, -0.03838789463043213, 0.1572069227695465, 0.127097487449646, 0.04544273018836975, -0.011705612763762474, -0.027577245607972145, 0.045211099088191986, 0.00039433594793081284, -0.03935479745268822, 0.02433726377785206, -0.08952200412750244, 0.02660505846142769, 0.03016003593802452, -0.14736774563789368, 0.05029952526092529, 0.014731820672750473, 0.044808030128479004, 0.012349937111139297, -0.017280500382184982, -0.04074046015739441, -0.06130523607134819, 0.02764482982456684, 0.09732729941606522, -0.014405435882508755, 0.026056349277496338, -0.15203383564949036, 0.03792673349380493, 0.04133094847202301, -0.08300107717514038, 0.019004005938768387, 0.06130140647292137, 0.09681715071201324, 0.01896192505955696, -0.1728074997663498, 0.020266152918338776, 0.0984703004360199, -0.02697831019759178, -0.014276815578341484, -0.059127140790224075, -0.047498669475317, 0.09211310744285583, -0.005458315834403038, 0.07267586886882782, 0.03508369252085686, 0.02174004353582859, 0.17789635062217712, -0.07070090621709824, 0.007414213381707668, -0.07259253412485123, 0.033150963485240936, 0.017294663935899734, 0.041644137352705, 0.103534996509552, 0.0697581022977829, -0.06468860805034637, 0.06778272986412048, -0.030110664665699005, -0.038008563220500946, 0.0844963788986206, -0.10177963972091675, -0.04503653943538666, 0.002446357859298587, -0.09025952219963074, 0.04029411822557449, 0.054823026061058044, -0.0023768555838614702, 0.11635284125804901, 0.06384225189685822, -0.01767737977206707, 0.14771345257759094, -0.054524585604667664, 0.035224687308073044, 0.056701984256505966, -0.14031149446964264, 0.012068855576217175, -0.06068171560764313, 0.03192541375756264, -0.05802487954497337, -0.03612206503748894, 0.06933610141277313, 0.03284849226474762, -0.08781765401363373, -0.039513394236564636, 0.08269018679857254, -0.013379164971411228, -0.03227955475449562, 0.019429925829172134, -0.031120162457227707, 0.04117778688669205, 0.0681883841753006, 0.0009430904756300151, -0.09023737162351608, 0.10271546244621277, 0.04379509016871452, -0.012024817056953907, 0.016744188964366913, 0.08796405792236328, -0.05286915972828865, 0.02839469350874424, -0.006326301489025354, 0.10445811599493027, -0.08858474344015121, 0.14708615839481354, -0.032658468931913376, -0.019663702696561813, -0.07256389409303665, 0.013581710867583752, -0.018993888050317764, 0.06821979582309723, 0.0021181409247219563, 0.028404422104358673, -0.15454968810081482, -0.043175868690013885, -0.05397637560963631, 0.010148365050554276, -0.02100394107401371, -0.038081374019384384, 0.039280153810977936, -0.06846340000629425, -0.05407877266407013, -0.012971709482371807, -0.0921468734741211, 0.08281102031469345, -0.07130217552185059, 0.12316793203353882, 0.007885237224400043, -0.049324676394462585, 0.10045590251684189, 0.14686894416809082, 0.04850685968995094, -0.048243265599012375, -0.10100147128105164, -0.11609012633562088, 0.016755959019064903, -0.03686397150158882, -0.04341961815953255, 0.025552283972501755, 0.03644350916147232, -0.1781958043575287, 0.019449958577752113], "\u4e3a\u4ec0\u4e48\u4f7f\u7528MindConverter\u8fdb\u884c\u6a21\u578b\u8f6c\u6362\u9700\u8981\u5f88\u957f\u65f6\u95f4\uff08\u8d85\u8fc7\u5341\u5206\u949f\uff09\uff0c\u800c\u6a21\u578b\u5e76\u4e0d\u5927\uff1f": [-0.03571966290473938, 0.0565653070807457, 0.050055649131536484, -0.0312591977417469, -0.029647288843989372, -0.04040922969579697, -0.033020708709955215, 0.0862695649266243, -0.00042483393917791545, -0.015204941853880882, 0.01815776899456978, -0.048453327268362045, 0.04468699172139168, 0.024897536262869835, -0.004352189134806395, -0.03526656702160835, 0.10324542969465256, 0.0763172060251236, -0.0774979218840599, 0.05556250363588333, -0.014647108502686024, 0.03559974208474159, 0.05249620974063873, -0.036855924874544144, -0.0035508833825588226, 0.06659391522407532, -0.042210645973682404, 0.004604857414960861, -0.015750417485833168, 0.056158825755119324, 0.08482540398836136, 0.03553937003016472, -0.09930646419525146, -0.01693880558013916, -0.08737923949956894, -0.037781327962875366, -0.08855870366096497, 0.11001718044281006, -0.00935287307947874, -0.06941692531108856, 0.03750133886933327, -0.028142446652054787, -0.018417026847600937, 0.08689675480127335, -0.03310000151395798, -0.06016983836889267, -0.1571674346923828, 0.039089977741241455, 0.052670255303382874, 0.0038627306930720806, -0.05835046246647835, 0.0899854227900505, 0.011858189478516579, -0.03585534915328026, -0.062171801924705505, -0.0028489341493695974, -0.02610209211707115, 0.07425566762685776, 0.044179487973451614, -0.04859807714819908, -0.009446866810321808, 0.0719892606139183, -0.12261805683374405, -0.029415519908070564, -0.10147913545370102, 0.037597667425870895, -0.04851536452770233, -0.12030065804719925, -0.04968399554491043, 0.02894175425171852, -0.018862290307879448, -0.06320608407258987, 0.032084736973047256, 0.0686483383178711, 0.03509944677352905, 0.07390381395816803, -0.031247319653630257, -0.004829094745218754, -0.10663188248872757, 0.051992785185575485, 0.01586899347603321, 0.08128201961517334, 0.03694290295243263, -0.08515901863574982, -0.06353911012411118, -0.026665808632969856, -0.053030699491500854, 0.07781420648097992, 0.03158626705408096, 0.14117641746997833, 0.05000215768814087, -0.05005042999982834, -0.09722015261650085, 0.02872868999838829, 0.023152945563197136, -0.05963362008333206, 0.007946791127324104, -0.05856586992740631, -0.12462039291858673, 0.009372018277645111, -0.016260040923953056, 0.0220709927380085, -0.11412867903709412, 0.08387411385774612, 0.04481732100248337, -0.04573358967900276, 0.028787093237042427, 0.025359250605106354, -0.00688715185970068, 0.0022903901990503073, 0.07808317244052887, -0.03147709369659424, 0.06591583788394928, -0.004104471765458584, 0.03651566803455353, -0.0006473938701674342, -0.0646655336022377, -0.0173508133739233, -0.03915201872587204, 0.1078355610370636, 0.1495044231414795, -0.006379890255630016, -0.0019258460961282253, 0.05249330401420593, -0.005397479981184006, -0.005006415769457817, 0.08821507543325424, -0.08526855707168579, -0.13422507047653198, -0.08236537128686905, 0.16550949215888977, -0.0925353392958641, 0.1239454448223114, -0.1404573917388916, -0.056883521378040314, 0.09602264314889908, 0.06379102915525436, -0.0437828004360199, -0.0007795885321684182, 0.1601332575082779, -0.017124870792031288, -0.15256574749946594, 0.054430488497018814, -0.020918836817145348, 0.08418910950422287, 0.06203342229127884, -0.09074999392032623, -0.1065702885389328, -0.022194350138306618, -0.09519672393798828, 0.1051817238330841, -0.029104111716151237, -0.05500858277082443, 0.07712862640619278, 0.013581379316747189, 0.014958525076508522, 0.016155941411852837, -0.00883438903838396, -0.012672056443989277, -0.07893045246601105, -0.03994261473417282, -0.0682678073644638, 0.026928363367915154, 0.07032634317874908, -0.03832133859395981, -0.0032287980429828167, 0.10186155885457993, -0.04942500591278076, -0.026715600863099098, -0.09620143473148346, 0.009808989241719246, 0.0044479467906057835, -0.09698674082756042, -0.029234256595373154, 0.04153291881084442, 0.0038167485035955906, 0.09388959407806396, -0.0174564141780138, 0.01081639714539051, -0.066482774913311, 0.0770392119884491, -0.04308497905731201, 0.008667591027915478, -0.11952517181634903, 0.033080145716667175, 0.0371522381901741, 0.06556331366300583, 0.014197248965501785, 0.07994738221168518, -0.1878180205821991, -0.031656473875045776, 0.09301245957612991, 0.022749627009034157, 0.05848408117890358, 0.012291054241359234, -0.0016288631595671177, -0.09102929383516312, -0.04051679000258446, 0.041464850306510925, 0.027076387777924538, -0.024186184629797935, 0.061354488134384155, 0.011191686615347862, -0.002794048050418496, -0.02811776101589203, -0.07167476415634155, -0.04072493687272072, -0.098109669983387, 0.004548181314021349, -0.007314890623092651, 0.14803829789161682, 0.028169702738523483, -0.04236514866352081, -0.032861825078725815, -0.08334919810295105, -0.0840388759970665, 0.09006033837795258, 0.081780806183815, 0.03382538631558418, -0.040156103670597076, 0.03893161192536354, -0.002237878739833832, 0.00440664729103446, -0.09333090484142303, -0.1568252444267273, -0.02046789601445198, -0.011497145518660545, -0.09046467393636703, 0.0059415074065327644, 0.048294007778167725, -0.11222530156373978, 0.061789847910404205, 0.015719236806035042, 0.18214628100395203, 0.006944748573005199, 0.1058967188000679, 0.05537299066781998, 0.011432118713855743, 0.0847424566745758, 0.028478365391492844, -0.12126869708299637, 0.048463430255651474, -0.06746131926774979, -0.0819181501865387, -0.019469868391752243, 0.1383984386920929, 0.11196359992027283, 0.03577180579304695, 0.006350573617964983, -0.06292439252138138, 0.042502857744693756, 0.01742897927761078, -0.02975483424961567, 0.031251996755599976, -0.08957956731319427, 0.09048743546009064, 0.01655586063861847, -0.13431847095489502, 0.05246051400899887, 0.05108874291181564, -0.021372975781559944, 0.02668861113488674, -0.06043166294693947, -0.011620867997407913, -0.07972709089517593, 0.04907893016934395, 0.07238378375768661, -0.027407381683588028, 0.027800504118204117, -0.13296622037887573, 0.05221765488386154, 0.001740419422276318, -0.10402825474739075, 0.024639995768666267, 0.08444134145975113, 0.08138290792703629, 0.0032444519456475973, -0.16893889009952545, 0.042950697243213654, 0.04796552658081055, -0.033863481134176254, 0.010141107253730297, -0.07606391608715057, -0.04594317078590393, 0.04767825827002525, 0.015607831068336964, 0.05783296748995781, 0.024411950260400772, 0.021411729976534843, 0.1782873421907425, -0.0709950178861618, -0.00215362710878253, -0.04415624961256981, 0.04246354475617409, -0.029325909912586212, 0.04676360636949539, 0.05003373697400093, 0.09557262063026428, -0.025219107046723366, 0.06711123138666153, -0.04507780820131302, -0.0785558745265007, 0.10127558559179306, -0.09044734388589859, -0.017262956127524376, 0.03545679897069931, -0.07478228211402893, 0.041307415813207626, 0.03190011531114578, -0.01236776728183031, 0.12288057059049606, 0.08578777313232422, -0.02750374935567379, 0.1632198691368103, -0.06098603829741478, 0.0008854025509208441, 0.01391475461423397, -0.10074329376220703, 0.026971997693181038, -0.07548363506793976, 0.03590092808008194, -0.06348736584186554, -0.003913525957614183, 0.012253299355506897, 0.036289721727371216, -0.02587122656404972, 0.016223717480897903, 0.08001667261123657, -0.009922884404659271, 0.006679727230221033, -0.01293136551976204, -0.023571746423840523, 0.05362573266029358, 0.12183031439781189, 0.004318146966397762, -0.12882918119430542, 0.1274336874485016, 0.061154402792453766, 0.03542523458600044, 0.04268234223127365, 0.11813417822122574, -0.04599788784980774, 0.06943506002426147, -0.02907407656311989, 0.08341594785451889, -0.09205689281225204, 0.0673331692814827, -0.057067736983299255, -0.02000148594379425, -0.03139854595065117, -0.012051786296069622, 0.03976554423570633, 0.06734751164913177, 0.018203794956207275, 0.019820790737867355, -0.14647048711776733, -0.07622222602367401, -0.04106064885854721, 0.020397596061229706, 0.006779026705771685, -0.003100258531048894, -0.04558012634515762, -0.10540184378623962, -0.08959311246871948, 0.01348316203802824, -0.06015840545296669, 0.07993817329406738, -0.04768366739153862, 0.09281016141176224, -0.006819677073508501, -0.08044479787349701, 0.08294174820184708, 0.14333374798297882, 0.04913948476314545, -0.08286106586456299, -0.09188715368509293, -0.11835817247629166, 0.03221799433231354, 0.006947383284568787, -0.008403435349464417, 0.02508450672030449, -0.01761626824736595, -0.11383477598428726, 0.021648872643709183], "\u4f7f\u7528.pb\u6587\u4ef6\u8fdb\u884c\u8f6c\u6362\u65f6\uff0c\u5df2\u786e\u5b9a`model_file`\uff0c`shape`\uff0c`input_nodes`\uff0c`output_nodes`\u5747\u65e0\u8bef\uff0c\u5e76\u4e14\u73af\u5883\u4e2d\u7684\u4f9d\u8d56\u5e93\u5df2\u7ecf\u6b63\u5e38\u5b89\u88c5\uff0c\u4f46\u662f\u4ecd\u7136\u62a5\u5f02\u5e38\u4ee3\u78011000001\uff0c\u53ef\u80fd\u662f\u4ec0\u4e48\u539f\u56e0\uff1f": [0.009457441978156567, 0.012269771657884121, 0.056625328958034515, 0.049751561135053635, -0.045160770416259766, -0.032769717276096344, 0.03974516689777374, 0.07724836468696594, -0.03798158839344978, 0.03926926851272583, -0.002533384831622243, 0.007394320331513882, -0.03463846817612648, -0.06283483654260635, -0.024701088666915894, 0.0772394984960556, 0.08319973945617676, -0.0003490578383207321, -0.019366808235645294, 0.10574348270893097, 0.03739999607205391, 0.027937542647123337, 0.06891194730997086, -0.08270761370658875, 0.020709387958049774, 0.06069375202059746, 0.002305766101926565, 0.03224015235900879, 0.0348641611635685, 0.049737125635147095, 0.05820845067501068, 0.08139276504516602, -0.054590530693531036, 0.07355524599552155, -0.060957521200180054, -0.03148433938622475, -0.02763623557984829, 0.09460171312093735, -0.09009019285440445, 0.0050906408578157425, 0.05261184275150299, -0.005842975806444883, -0.06816276907920837, 0.10415083169937134, -0.016937419772148132, -0.033835723996162415, -0.13988180458545685, -0.03303547203540802, 0.02204664796590805, -0.01580149307847023, -0.09161023050546646, 0.024050945416092873, -0.02533833682537079, -0.03203713148832321, -0.024952294304966927, 0.012956412509083748, 0.04286646097898483, -0.002583743305876851, 0.07342521846294403, 0.044514164328575134, 0.06832918524742126, -0.008726092055439949, -0.03657618165016174, -0.02739802747964859, -0.08938917517662048, -0.022330965846776962, -0.0019838467705994844, -0.010587368160486221, -0.0035380274057388306, -0.04218890517950058, -0.08227819204330444, 0.009589282795786858, 0.015235974453389645, 0.10029449313879013, 0.041254956275224686, 0.033670566976070404, -0.023017238825559616, 0.04047556594014168, -0.06159321218729019, 0.015347078442573547, 0.040833260864019394, 0.1379980742931366, 0.041025079786777496, -0.09842410683631897, -0.07782790064811707, -0.05264922231435776, -0.08286541700363159, 0.034354325383901596, -0.04587722197175026, 0.05577850341796875, 0.04571232199668884, -0.06640349328517914, -0.18738135695457458, 0.05023039132356644, 0.14230984449386597, -0.026928378269076347, -0.02249555103480816, 0.020974058657884598, -0.15999354422092438, 0.005806073546409607, 0.08153613656759262, -0.03516311198472977, 0.01896025612950325, 0.036590564996004105, 0.04535664618015289, -0.08199333399534225, -0.008007208816707134, 0.0908917784690857, -0.030530013144016266, -0.0221258495002985, -0.002185339340940118, 0.024015795439481735, 0.023765364661812782, -0.01699073612689972, -0.05078741908073425, 0.04021420702338219, -0.0008301262860186398, -0.023042907938361168, -0.06874318420886993, 0.12582305073738098, 0.1413392424583435, -0.08222834020853043, 0.0020139403641223907, 0.042175136506557465, 0.013927572406828403, -0.019892338663339615, 0.06645321100950241, -0.10984615981578827, -0.06924772262573242, -0.044424064457416534, 0.15593522787094116, -0.08003464341163635, 0.015283118933439255, -0.09190697968006134, -0.1351567953824997, 0.059309374541044235, -0.06295524537563324, -0.06575805693864822, -0.026946214959025383, 0.09260939061641693, 0.02044651471078396, -0.11220032721757889, 0.020914923399686813, -0.019760338589549065, 0.09802605956792831, 0.009344110265374184, -0.06259390711784363, -0.11941173672676086, 0.01361691951751709, -0.09579294919967651, 0.10374670475721359, -0.04563077539205551, -0.05850522220134735, 0.07255848497152328, -0.011534555815160275, 0.0025381986051797867, 0.02294217422604561, -0.009106079116463661, -0.02596001699566841, -0.07628531008958817, -0.01881713606417179, -0.046145349740982056, 0.04470612853765488, -0.027710076421499252, 0.007874506525695324, 0.03171811252832413, 0.030369680374860764, 0.012929493561387062, 0.006504663731902838, -0.0686337947845459, -0.05269509553909302, 0.006907144095748663, -0.056139618158340454, -0.14216315746307373, 0.059949204325675964, 0.0075198011472821236, 0.035122524946928024, -0.06417667120695114, -0.004871570039540529, -0.009695486165583134, 0.05777681618928909, -0.08856890350580215, -0.025801412761211395, -0.10420017689466476, 0.009778429754078388, 0.106938436627388, 0.006247188430279493, 0.03959578275680542, 0.1449325978755951, -0.08159621804952621, -0.031965382397174835, 0.037163183093070984, 0.0195944681763649, 0.08742646872997284, 0.02584550343453884, -0.020583519712090492, -0.058296047151088715, -0.022092942148447037, 0.0754881426692009, -0.02580026537179947, -0.005935081280767918, 0.0068887984380126, 0.03520779684185982, 0.043278954923152924, -0.037228893488645554, -0.04330765828490257, -0.10374417901039124, -0.14590024948120117, -0.01411986630409956, 0.023438720032572746, 0.05640730634331703, 0.052205536514520645, -0.05078485608100891, -0.02246103435754776, -0.12602008879184723, -0.0302741602063179, 0.11058604717254639, 0.08241216093301773, 0.03000292181968689, -0.024299615994095802, -0.002403334714472294, 0.02415069378912449, -0.008826028555631638, -0.07254456728696823, -0.08909151703119278, 0.014276385307312012, -0.0641646608710289, -0.08945886790752411, 0.03156350553035736, 0.03178401663899422, -0.021717537194490433, 0.06109437718987465, 0.05651594325900078, 0.12918493151664734, -0.010687685571610928, 0.0077951387502253056, -0.024676140397787094, 0.025195570662617683, 0.04189160838723183, 0.04169585183262825, -0.08250577002763748, 0.10710564255714417, -0.03483191877603531, 0.024273766204714775, -0.06267376244068146, 0.05962219461798668, 0.04078635945916176, 0.033201493322849274, 0.005009516142308712, -0.09776967763900757, 0.018529800698161125, -0.008673051372170448, 0.00010722503066062927, -0.00294933351688087, -0.01948186196386814, 0.080838143825531, 0.04998373985290527, -0.01709529384970665, 0.05035386234521866, 0.024873578920960426, 0.016856113448739052, -0.013982802629470825, -0.01892026513814926, -0.06544079631567001, -0.05922811105847359, -0.0412127710878849, 0.10539960861206055, -0.019415725022554398, -0.04576942324638367, -0.09266797453165054, 0.09784840047359467, -0.010376287624239922, -0.029365867376327515, -0.013278262689709663, 0.06193956732749939, 0.024280428886413574, 0.05442715436220169, -0.13241344690322876, 0.06329002231359482, -0.017689554020762444, 0.030161326751112938, 0.10511364042758942, 0.01702081970870495, -0.056194424629211426, 0.09766092151403427, -0.09234096109867096, -0.011705415323376656, -0.009098362177610397, 0.049847561866045, 0.10695082694292068, -0.0025911207776516676, -0.0706840381026268, -0.06988713890314102, -0.013312876224517822, -0.005567891523241997, 0.08827368170022964, 0.05022358521819115, 0.10143658518791199, 0.011914887465536594, -0.013946293853223324, -0.01400290708988905, -0.06017579510807991, 0.08306492865085602, -0.022664442658424377, -0.05391582474112511, -0.016581512987613678, -0.05857151746749878, 0.00191792706027627, -0.03589611127972603, -0.009362186305224895, 0.047223225235939026, 0.06432465463876724, 0.02569785714149475, 0.041081227362155914, -0.0416521281003952, -0.019116148352622986, 0.06722657382488251, -0.08893125504255295, 0.0700562372803688, -0.0768844336271286, -0.019014600664377213, -0.05838223919272423, 0.015080062672495842, 0.05324738845229149, 0.0021922404412180185, 0.005580047145485878, 0.025640059262514114, 0.10188794136047363, -0.05066370218992233, 0.028903650119900703, 0.07189615070819855, -0.056640274822711945, 0.040688857436180115, 0.10991816222667694, 0.05365309119224548, -0.13371238112449646, 0.06680670380592346, 0.06181713193655014, 0.015364045277237892, 0.042051736265420914, 0.052188754081726074, -0.07832499593496323, 0.003378493944182992, -0.036384280771017075, 0.06558948010206223, -0.07994990050792694, 0.04768732190132141, -0.006080076098442078, -0.00257842056453228, 0.0014770840061828494, -0.028937343508005142, -0.056713707745075226, 0.0863814428448677, -0.007017083931714296, -0.04299230873584747, -0.15072226524353027, -0.04033208265900612, 0.0012722306419163942, 0.05753454938530922, -0.020190678536891937, -0.01896115019917488, 0.027833160012960434, -0.010270321741700172, -0.0887262225151062, 0.028464512899518013, 0.016138384118676186, 0.04387988895177841, -0.011238154023885727, 0.04960884153842926, 0.011844906024634838, -0.11320538818836212, 0.06454122066497803, 0.11152821779251099, 0.09745889902114868, -0.07128451764583588, -0.012558682821691036, -0.10964943468570709, 0.10567806661128998, 0.001436716760508716, -0.0686495453119278, 0.028753113001585007, 0.01998685859143734, -0.023501409217715263, -0.027914438396692276], "\u51fa\u73b0\u62a5\u9519\u4fe1\u606f`[ERROR] MINDCONVERTER: [BaseConverterError] code: 0000000\uff0c msg: {python_home}/lib/libgomp.so.1: cannot allocate memory in static TLS block`\u65f6\uff0c\u5e94\u8be5\u600e\u4e48\u5904\u7406\uff1f": [0.0060297478921711445, 0.11212588101625443, 0.00434138672426343, -0.037230730056762695, -0.13065274059772491, -0.0313919261097908, 0.0034996368922293186, 0.05597755312919617, -0.018114319071173668, 0.010562824085354805, -0.043809663504362106, 0.03622244670987129, 0.03511942923069, 0.055844180285930634, -0.038672059774398804, 0.0030479540582746267, 0.09270049631595612, -0.03258935362100601, -0.06755448877811432, 0.037646569311618805, -0.011614356189966202, 0.03593355789780617, 0.09833457320928574, -0.04040587693452835, -0.05640099197626114, 0.08156247437000275, -0.07060355693101883, -0.02412780001759529, 0.03343871980905533, 0.03291162848472595, 0.0846184641122818, 0.02430710382759571, -0.08601030707359314, -0.04655715078115463, -0.08049188554286957, -0.02851807326078415, -0.04361296817660332, 0.13411536812782288, -0.006836654152721167, -0.02885013073682785, -0.030476359650492668, 0.01606888137757778, -0.008622976019978523, 0.07596658170223236, -0.03473552688956261, -0.047260984778404236, -0.16491657495498657, 0.02293429896235466, 0.010800556279718876, 0.018804430961608887, -0.07709063589572906, 0.07114007323980331, -0.0012204510858282447, -0.049748171120882034, -0.09291636943817139, -0.004681791178882122, -0.021825090050697327, 0.016170253977179527, 0.058562614023685455, -0.012342993170022964, -0.00023864442482590675, 0.06270941346883774, -0.1217033788561821, -0.05365365743637085, -0.11879865825176239, 0.0422876700758934, -0.032334741204977036, -0.05611520633101463, -0.057283733040094376, 0.002960123820230365, -0.07256621867418289, -0.03517412021756172, -0.0032195341773331165, 0.06873931735754013, -0.010933763347566128, 0.06842891126871109, -0.11084676533937454, 0.04330252856016159, -0.13060496747493744, -0.03031114861369133, 0.013191526755690575, 0.043704159557819366, 0.08465457707643509, -0.08554565161466599, -0.07969627529382706, -0.07427102327346802, -0.005166576709598303, 0.09963081777095795, 0.033542048186063766, 0.19458144903182983, 0.0020338748581707478, -0.033612605184316635, -0.06543830782175064, 0.11986091732978821, 0.04828602075576782, -0.04411066696047783, -0.026278110221028328, -0.02551344595849514, -0.1866399049758911, 0.04010067135095596, 0.03432981297373772, -0.025672392919659615, -0.11339592188596725, 0.08249069005250931, 0.023660793900489807, -0.06386672705411911, 0.03949013352394104, 0.059840355068445206, -0.00856174435466528, -0.0006629562703892589, 0.06447496265172958, 0.0034522798378020525, 0.012777729891240597, 0.0031695482321083546, 0.02039012685418129, 0.06731276214122772, -0.06199993938207626, -0.01118943840265274, -0.06737829744815826, 0.07862450182437897, 0.1170014962553978, -0.06696630269289017, -0.009585543535649776, 0.07873845100402832, 0.033847760409116745, -0.0423734225332737, 0.06323873996734619, -0.03382270038127899, -0.07497768849134445, -0.0479409284889698, 0.1447758972644806, -0.08424348384141922, 0.1106848418712616, -0.18687163293361664, -0.09276080876588821, 0.08512688428163528, -0.016696784645318985, -0.048875704407691956, 0.024130331352353096, 0.1346939653158188, 0.04779495298862457, -0.10616476833820343, 0.062371183186769485, -0.067466139793396, 0.09880372136831284, 0.08466836810112, -0.045319814234972, -0.1267370730638504, 0.012222707271575928, -0.10306728631258011, 0.07836543768644333, -0.05077249929308891, -0.06517120450735092, 0.11590630561113358, 0.011590363457798958, 0.05238752439618111, -0.02884320542216301, -0.029570696875452995, -0.0029023841489106417, -0.04757869243621826, 0.0077662840485572815, -0.03343651071190834, 0.014995128847658634, 0.03930889442563057, 0.003851701971143484, 0.028056923300027847, 0.0696149691939354, -0.030650191009044647, 0.009621360339224339, -0.08317148685455322, 0.014973638579249382, -0.0444246307015419, -0.10419569909572601, 0.0035926303826272488, -0.0003089718520641327, 0.001707237446680665, 0.12022730708122253, -0.09029316157102585, 0.027385033667087555, -0.08895573765039444, 0.08420556783676147, -0.06685828417539597, -0.014651814475655556, -0.08359719812870026, 0.03854639455676079, 0.07866917550563812, 0.07994716614484787, 0.06093230098485947, 0.0863906517624855, -0.19370384514331818, -0.00561917619779706, 0.09864067286252975, 0.0011725606163963675, -0.03100423514842987, -0.028033632785081863, -0.02649100311100483, -0.08022111654281616, -0.009286989457905293, 0.006935716141015291, -0.010654332116246223, -0.021210316568613052, 0.07590801268815994, 0.021628698334097862, 0.08221276849508286, 0.0319100022315979, -0.05582260340452194, -0.04740852117538452, -0.12900285422801971, 0.011641239747405052, 0.028241746127605438, 0.09430007636547089, 0.06360388547182083, -0.009296033531427383, -0.026903856545686722, -0.0692925751209259, -0.04915371909737587, 0.10619992762804031, 0.06083231419324875, 0.03222888708114624, -0.03189186751842499, -0.0017958002863451838, 0.028717603534460068, 0.0060689374804496765, -0.09563080966472626, -0.13528265058994293, -0.019997768104076385, -0.009698042646050453, -0.12377384305000305, 0.009691664949059486, 0.07357407361268997, -0.08650726079940796, 0.06605076789855957, 0.05328775569796562, 0.15286041796207428, 0.019868139177560806, 0.13903093338012695, 0.03360586613416672, -0.0008666885551065207, 0.12441659718751907, 0.034044332802295685, -0.1649390608072281, 0.06028878688812256, -0.08948465436697006, -0.03314489126205444, -0.07029249519109726, 0.14903849363327026, 0.10711880028247833, 0.048792168498039246, 0.03758493438363075, -0.043056171387434006, 0.006994990166276693, 0.046849071979522705, -0.04881396144628525, 0.054731760174036026, -0.05270741134881973, 0.06692066788673401, 0.06367044150829315, -0.0892874002456665, 0.04335116222500801, 0.06355385482311249, 0.01793675310909748, 0.05825270712375641, -0.06976737082004547, -0.010152779519557953, -0.0016087931580841541, 0.03012857399880886, 0.08535034954547882, -0.09070198982954025, -0.020591696724295616, -0.11587448418140411, 0.07322067767381668, -0.026492642238736153, -0.11135327816009521, -0.03870163857936859, 0.08537296950817108, 0.050439268350601196, -0.0002610171213746071, -0.1650915890932083, 0.03369568660855293, 0.0477251261472702, 0.009699384681880474, 0.029914384707808495, -0.03741379827260971, -0.05446738004684448, 0.0755593404173851, 0.006679461803287268, 0.07404660433530807, -0.010321736335754395, 0.01094417367130518, 0.16812677681446075, -0.09012869000434875, -0.023589294403791428, -0.057978592813014984, 0.059738676995038986, -0.07826489955186844, 0.053107183426618576, 0.03232962638139725, 0.06127191334962845, -0.03167825937271118, 0.05637359246611595, -0.012751705944538116, -0.03399348631501198, 0.09236598014831543, -0.081264927983284, -0.04437743499875069, 0.06230272725224495, -0.07490439713001251, 0.05017821863293648, 0.011449627578258514, -0.022610731422901154, 0.11306698620319366, 0.10657705366611481, 0.01439337432384491, 0.10902734845876694, -0.062003329396247864, 0.008132482878863811, 0.051632143557071686, -0.16331201791763306, 0.054267484694719315, -0.062774159014225, 0.02629147097468376, -0.03305916488170624, -0.038926154375076294, 0.004862857982516289, 0.03956488147377968, -0.058090172708034515, -0.0072033219039440155, 0.060000814497470856, -0.014301654882729053, -0.019123293459415436, 0.010167393833398819, -0.06625531613826752, 0.026434214785695076, 0.07755037397146225, 0.011384466663002968, -0.081623874604702, 0.14751796424388885, 0.05259418115019798, 0.013521796092391014, 0.01255833636969328, 0.05251855030655861, -0.033034034073352814, 0.045325372368097305, -0.06446914374828339, 0.004458453040570021, -0.10226772725582123, 0.08439092338085175, -0.03007011115550995, -0.04330412298440933, -0.011370434425771236, 0.047154318541288376, -0.05969841405749321, 0.10620080679655075, 0.019713740795850754, -0.023679645732045174, -0.12513241171836853, -0.014237524010241032, -0.05020267888903618, -0.001238436670973897, 0.00953700952231884, -0.04838308319449425, -0.021377835422754288, -0.09584668278694153, -0.04350599646568298, 0.005419048480689526, -0.07520350068807602, 0.028241245076060295, -0.09624357521533966, 0.13286560773849487, -0.029922140762209892, -0.0931839793920517, 0.0016849844250828028, 0.09568866342306137, -0.0011035758070647717, -0.10892530530691147, -0.026080206036567688, -0.10541506111621857, 0.01632585935294628, -0.0567295178771019, -0.005828198976814747, -0.0020370790734887123, 0.05464990809559822, -0.11828872561454773, 0.057871535420417786]} \ No newline at end of file diff --git a/src/qaRobot/qa_api/qa/__init__.py b/src/qaRobot/qa_api/qa/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/qaRobot/qa_api/qa/q_a.py b/src/qaRobot/qa_api/qa/q_a.py new file mode 100644 index 0000000000000000000000000000000000000000..2f55a9ab122daccdbe08bc52f1b6efcf023b0982 --- /dev/null +++ b/src/qaRobot/qa_api/qa/q_a.py @@ -0,0 +1,39 @@ +import json +import os + +import mindspore +from bert4ms import BertTokenizer, BertModel +from sklearn.metrics.pairwise import cosine_similarity +from mindspore import context +import numpy as np + +context.set_context(mode=context.GRAPH_MODE, device_target="CPU") +module_dir = os.path.dirname(__file__) + + +def get_match_question(input_encode): + max_similarity = 0 + print(os.path.join(os.path.dirname(os.path.dirname(__file__)))) + with open(os.path.join(module_dir, '../data/resource_sentence_encode.json')) as f: + resource_sentences_encode = json.load(f) + for k, v in resource_sentences_encode.items(): + similarity = cosine_similarity( + [input_encode[1][0].asnumpy()], [np.asarray(v)]) + if similarity > max_similarity: + max_similarity = similarity + match_key = k + return match_key + + +def encode_sentence(input_sentence): + tokenizer = BertTokenizer.load('sentence-transformers/all-MiniLM-L6-v2') + model = BertModel.load('sentence-transformers/all-MiniLM-L6-v2') + model.set_train(False) + input_token = mindspore.Tensor([tokenizer.encode(input_sentence, add_special_tokens=True)], mindspore.int32) + input_encode = model(input_token) + return input_encode + + +def load_q_a_data(file_path): + with open(file_path) as f: + return json.load(f) diff --git a/src/qaRobot/qa_api/urls.py b/src/qaRobot/qa_api/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..0e815398c30aebe152f86690c45e60069e4d74ca --- /dev/null +++ b/src/qaRobot/qa_api/urls.py @@ -0,0 +1,6 @@ +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.get_answer), +] diff --git a/src/qaRobot/qa_api/views.py b/src/qaRobot/qa_api/views.py new file mode 100644 index 0000000000000000000000000000000000000000..37b39d4d89064b2787c181c74f48360d221e2cbb --- /dev/null +++ b/src/qaRobot/qa_api/views.py @@ -0,0 +1,24 @@ +import json +import os.path + +from rest_framework.decorators import api_view +from django.http.response import HttpResponse + +from .qa.q_a import encode_sentence, get_match_question, load_q_a_data + +module_dir = os.path.dirname(__file__) + + +@api_view(['GET']) +def get_answer(request): + question = request.query_params.get('q', None) + input_encode = encode_sentence(question) + match_key = get_match_question(input_encode) + file_path = os.path.join(module_dir, 'data/q_a.json') + q_a_data = {} + if not q_a_data: + q_a_data = load_q_a_data(file_path) + r = {"question": question} + if match_key in q_a_data.keys(): + r["answer"] = q_a_data[match_key] + return HttpResponse(json.dumps(r, ensure_ascii=False), content_type='application/json') diff --git a/src/qaRobot/requirements.txt b/src/qaRobot/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..419df025da1c8d97d62c4a254ac49cb5ea0d2abe --- /dev/null +++ b/src/qaRobot/requirements.txt @@ -0,0 +1,30 @@ +asgiref==3.5.2 +bert4ms @ git+https://github.com/lvyufeng/bert4ms@64609e99de09329188c7e4fac0d0532a6109951c +certifi==2022.6.15 +charset-normalizer==2.0.12 +click==8.1.3 +Django==3.2.14 +djangorestframework==3.13.1 +easydict==1.9 +filelock==3.7.1 +huggingface-hub==0.7.0 +idna==3.3 +joblib==1.1.0 +nltk==3.7 +protobuf==3.20.0rc2 +pytz==2022.1 +PyYAML==6.0 +regex==2022.6.2 +requests==2.28.0 +scikit-learn==1.0.2 +sentence-transformers==2.2.0 +sentencepiece==0.1.96 +sqlparse==0.4.2 +threadpoolctl==3.1.0 +tokenizers==0.12.1 +torch==1.11.0 +torchvision==0.12.0 +tqdm==4.64.0 +transformers==4.20.0 +typing_extensions==4.2.0 +urllib3==1.26.9