作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道 numba 现在支持字符串,但找不到任何有关如何将字符串与 jitclass 一起使用的文档,并且无法弄清楚。
如何使用 jitclass 创建字符串属性?
(这个 hack 是预字符串支持并且相当困惑: How can I pass string type in class in numba jitclass python? )
我尝试过 unicode_type、char、char[:]、uint8、str ——基本上我能想到的一切。
COND_SPEC = [
('feature',nb.unicode_type),
('val', nb.unicode_type)
]
@jitclass(COND_SPEC)
class Cond:
""" Class implementing conditional. """
def __init__(self, feature, val):
self.feature = feature
self.val = val
该类可以编译,但声明该类的实例会产生错误:
c = Cond('education','HS-grad')
numba.errors.LoweringError: Failed in nopython mode pipeline (step: nopython mode backend)
Cannot cast unicode_type to int8: %".37" = load {i8*, i64, i32, i64, i8*, i8*}, {i8*, i64, i32, i64, i8*, i8*}* %"feature"
File "<ipython-input-19-aaeb1c1955cb>", line 12:
def __init__(self, feature, val):
self.feature = feature
^
[1] During: lowering "(self).feature = feature" at <ipython-input-19-aaeb1c1955cb> (12)
[2] During: resolving callee type: jitclass.Cond#7f9c36758a18<feature:int8,val:int8>
[3] During: typing of call at <string> (3)
--%<----------------------------------------------------------------------------
File "<string>", line 3:
<source missing, REPL/exec in use?>
最佳答案
我相信这是numba.types.string
:
import numba as nb
from numba import jitclass
COND_SPEC = [
('feature', nb.types.string),
('val', nb.types.string)
]
@jitclass(COND_SPEC)
class Cond:
""" Class implementing conditional. """
def __init__(self, feature, val):
self.feature = feature
self.val = val
c = Cond('Hello', 'world')
print(c.feature, c.val)
>>>Hello world
关于python - 有没有办法在 numba jitclass 中包含字符串属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55522355/
我是一名优秀的程序员,十分优秀!