ProNE
ProNE copied to clipboard
Error: column index out of bounds
Hi - I installed ProNE (python 2.7) and was able to train embeddings for the PPI example with the command: python proNE.py -graph data/PPI.ungraph -emb1 emb/PPI_sparse.emb -emb2 emb/PPI_spectral.emb -dimension 128 -step 10 -theta 0.5 -mu 0.2
However, when applied on my own data it ran into the following exception. Appreciate any advice what went wrong. The input is about 50MB so I don't know how to share it for debugging. Thanks much in advance.
Traceback (most recent call last):
File "proNE.py", line 178, in
I think I figured out. When preparing the input node pairs, there is no need to perform dedup or remove self-link. Those preprocesses seem to cause problem instead.
Node index is continuous without interruption.
Did you solve this problem?