We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jittor.jittor_core.Var 转换成 numpy 失败 def to_image(pic): pic = pic.multiply(255).uint8() print(type(pic)) npimg = np.transpose(pic.numpy(), (1, 2, 0)) return Image.fromarray(npimg)
npimg = np.transpose(pic.numpy(), (1, 2, 0)) RuntimeError: Wrong inputs arguments, Please refer to examples(help(jt.numpy)). Types of your inputs are: self = Var, args = (), The function declarations are: ArrayArgs fetch_sync()
Reproduce this error with a file or several lines of code. If it is not possible, leave it blank.
A clear and concise description of what you expected to happen.
If you are submitting an issue for the first time, please refer to our guideline
The text was updated successfully, but these errors were encountered:
您好,我并没能复现您的错误,我的复现方法如下:
In [2]: a = jt.array([1,2,3,4]) In [3]: a.multiply(255).uint8() Out[3]: jt.Var([255 254 253 252], dtype=uint8) In [4]: a.multiply(255).uint8().numpy() Out[4]: array([255, 254, 253, 252], dtype=uint8)
您可以提供更完整的报错信息吗?
Sorry, something went wrong.
The same problem:
rgb_exp_tmp, t_exp_tmp = rgb_exp_fine.detach().numpy(), t_exp_fine.detach().numpy() RuntimeError: Wrong inputs arguments, Please refer to examples(help(jt.numpy)).
Types of your inputs are: self = Var, args = (),
The function declarations are: ArrayArgs fetch_sync()
No branches or pull requests
Describe the bug
jittor.jittor_core.Var 转换成 numpy 失败
def to_image(pic):
pic = pic.multiply(255).uint8()
print(type(pic))
npimg = np.transpose(pic.numpy(), (1, 2, 0))
return Image.fromarray(npimg)
Full Log
Minimal Reproduce
Reproduce this error with a file or several lines of code.
If it is not possible, leave it blank.
Expected behavior
A clear and concise description of what you expected to happen.
If you are submitting an issue for the first time, please refer to our guideline
The text was updated successfully, but these errors were encountered: