ActionCooccurrencePriors
ActionCooccurrencePriors copied to clipboard
Confusion about Co-Occurance Matrics
Thanks for your beautiful work.
I downloaded the pickle file 'co-occurrence_pos.pkl' and read it like this:
with open('co-occurrence_pos(1).pkl', 'rb') as f: data = pickle.load(f)
The output of data is: 119547037146038801333356. Just one single integer. Is it correct? I thought I can have a quick look on the co-occurance matrix
Thank you interest in my paper.
The pickle file for co-occurrence matrices should be loaded with Pytorch function:
data = torch.load('co-occurrence_pos(1).pkl')
If you have more questions, please feel free to let me know.
Thanks a lot, it worked. It would be nice if you can point out in the repo the anchor list generating function.