我是Azure ML Studio的新手,正在尝试运行python脚本。
目前,我正在研究与文本分析相关的代码,作为该代码的一部分,我想获取SVD分解的奇异值,如下所示
lsa=TruncatedSVD(algorithm='randomized',n_components=MaximumNumComponents,n_iter=20,random_state=42,tol=0.0)
U = lsa.fit_transform(X)
Sigma = lsa.singular_values_
Azure ML Studio中当前的scikit学习版本为0.17,奇异值是scikit学习版本(如0.20)的一部分。
所以我需要将scikit学习软件包升级到0.20。我尝试下载scikit学习0.20车轮文件并将其压缩并作为数据集上传到Azure ML Studio中,并连接了enter image description here,但仍然收到类似“
以下的错误AttributeError:“ TruncatedSVD”对象没有属性“ singular_values_” 进程返回的非零退出代码为1
已经提到了以下问题
Stackoverflow questions related to upgrade packages in Azure ML studio How can I install Python packages in Azure ML?
答案 0 :(得分:0)
当前,这是Azure ML Studio的局限性。唯一的方法是与谁联系来支持谁生成必要的程序包,我们可以将其上传到Azure ML Studio。