作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在编写二进制文件时遇到麻烦 LocalTarget
在我的项目中的 Luigi 管道中。我在这里隔离了问题:
class LuigiTest(luigi.Task):
def output(self):
return luigi.LocalTarget('test.npz')
def run(self):
with self.output().open('wb') as fout:
np.savez_compressed(fout, array=np.asarray([1, 2, 3]))
'w'
和
'wb'
但我不断收到以下错误:
TypeError: write() argument must be str, not bytes
最佳答案
问题在于 LocalTarget
的格式.将其更改为:
return luigi.LocalTarget('test.npz', format=luigi.format.Nop)
关于python-3.x - Luigi LocalTarget 二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39179592/
我在编写二进制文件时遇到麻烦 LocalTarget在我的项目中的 Luigi 管道中。我在这里隔离了问题: class LuigiTest(luigi.Task): def output(s
我通过 Anaconda 4.3.17、Luigi 2.4.0、Pandas 0.18、sklearn 0.18 版在 Windows 7、Python 2.7 上运行。根据下面的内容,我试图让 lu
我是一名优秀的程序员,十分优秀!