Skip to content
New issue

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 失败 #263

Open
sorrowyn opened this issue Sep 4, 2021 · 2 comments
Open

jittor.jittor_core.Var 转换成 numpy 失败 #263

sorrowyn opened this issue Sep 4, 2021 · 2 comments

Comments

@sorrowyn
Copy link

sorrowyn commented Sep 4, 2021

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

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()

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

@Jittor
Copy link
Owner

Jittor commented Sep 9, 2021

您好,我并没能复现您的错误,我的复现方法如下:

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)

您可以提供更完整的报错信息吗?

@cassiePython
Copy link

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()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants