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

fix(cluster-gan): valid shape error #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

miaobuao
Copy link

reproduct

python ./JGAN/models/cluster_gan/clustergan.py -b 64

error

Traceback (most recent call last):
  File "./cluster_gan.py", line 396, in <module>
    real_loss = bce_loss(D_real, valid)
  File "/usr/local/lib/python3.8/dist-packages/jittor/__init__.py", line 1172, in __call__
    return self.execute(*args, **kw)
  File "/usr/local/lib/python3.8/dist-packages/jittor/nn.py", line 487, in execute
    return bce_loss(output, target, self.weight, self.size_average)
  File "/usr/local/lib/python3.8/dist-packages/jittor/nn.py", line 409, in bce_loss
    loss = - (target * jt.log(jt.maximum(output, 1e-20)) + (1 - target) * jt.log(jt.maximum(1 - output, 1e-20)))
RuntimeError: Wrong inputs arguments, Please refer to examples(help(jt.__mul__)).

Types of your inputs are:
 self   = Var,
 b      = Var,

The function declarations are:
 VarHolder* multiply(VarHolder* x, VarHolder* y)

Failed reason:[f 0422 19:43:25.634921 80 binary_op.cc:432] Check failed xshape(64) == yshape(32) Shape not match, x:float32[64,1,]  y:float32[32,1,]

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

Successfully merging this pull request may close these issues.

1 participant