我正在尝试在Azure ML中运行R脚本。代码运行几个小时,然后显示此错误停止:
<!-- fileName = update information file name
updates = document to be updated -->
<xsl:param name="fileName" select="'PF_Update.xml'"/>
<xsl:param name="updates" select="document($fileName)"/>
<!-- Create a key for LegacyID -->
<xsl:key name="lookup" match="PubFactoryMetadata" use="LegacyId"/>
<!--Identity: make a copy of all the nodes -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<!-- In the original match BrightcoveVideoID from update and copy it to the original -->
<xsl:template match="BrightcoveVideoID">
<xsl:copy>
<xsl:value-of select="key('lookup', ../LegacyId, document($fileName))/BrightcoveVideoID"/>
</xsl:copy>
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>
我在RStudio中运行了代码,因此我非常有信心R代码不是问题。这可能是服务器问题以及如何避免它?
由于
答案 0 :(得分:0)
如果代码运行,请验证问题是否与包有关。 对于不在Azure AML中的软件包,您必须将它们作为数据集加载(在本地安装后)请参阅:https://blogs.msdn.microsoft.com/benjguin/2014/09/24/how-to-upload-an-r-package-to-azure-machine-learning/