abhinab303

Results 18 comments of abhinab303

These files are created from [`build_features.py`](https://github.com/BUPT-GAMMA/HGAT/blob/292ce1a8ec85e8c71258368767f98d98c4f94849/build_features.py#L186). from readme, the script order is this: python tagMe.py python build_network.py python build_features.py python build_data.py

> Hello, I also met this problem, have you solved it? yes. I already mentioned the fix. `entity_list = [] if entity_list is None`

Are you taking about edge feature? I don't think edge features are used here.

by edge features, do you mean "similarity score" for entity-entity edge and "rho", "link probability" for entity-document edge? If yes, then they are only used to check if there is...

I mean 0 and 1 for entity-entity and entity-document too. We can know this for sure by looking at the output files. Only the o/p files are used by model...

I made a flow chart, this might also be useful. Please let me know if there are any errors. ![image](https://user-images.githubusercontent.com/33117645/100422339-3e273180-30b2-11eb-96e4-335c9eaf50cd.png)

@jimmy-walker Thank you. Yes, it kind of makes sense now. There is one more thing. The last line: ``` h_prime = torch.matmul(attention, g) ``` Is this related to equation (7)...

Okay, no worries. I might write an explanation of how equation (5) and (6) are related to the code. So, it'll be easier for others too. Thanks again.

@YiTangJ 1. Outputs = weights_transpose.inputs * 3 (I'm not sure why it is multiplied by 3) 2. redundant dimension is removed by squeeze 3. outputs shape = (N, in_features) =...