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

'tuple' object has no attribute 'size' #25

Open
Gyiming opened this issue Mar 12, 2019 · 1 comment
Open

'tuple' object has no attribute 'size' #25

Gyiming opened this issue Mar 12, 2019 · 1 comment

Comments

@Gyiming
Copy link

Gyiming commented Mar 12, 2019

Hi,

Has anybody find this problem? I went into an error:

File "run_tracker.py", line 164, in run_mdnet
   feat_dim = pos_feats.size(-1)
AttributeError: 'tuple' object has no attribute 'size'

In the code ,the post_feats was defined in line 162:
pos_feats = (model, image, pos_examples), which is a tuple w/o size attribute.

Do you mean pos_feats[-1].size() ? Because pos_feats[-1] is a ndarray.

But in line 63, you called pos_feats.size(0) again. pos_feats(0)'s type is 'model.MDNet' which doesn't have a size attribute.
@hyseob
Copy link
Owner

hyseob commented Apr 12, 2019

Hi, @Gyiming
"pos_feats" is an output from forward_samples(model, image, pos_examples), which is a pytorch tensor, not a tuple.
By the way, I recently updated the code to support python3.6+ and pytorch1.0+, so I would appreciate if you to retried with the latest version.
Thank you.

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

2 participants