Adjacency matrices must not contain self edges
See original GitHub issueUsing following example on my dataset:
embedding = pymde.preserve_neighbors(tensor_df_x, embedding_dim=2, verbose=True).embed()
pymde.plot(embedding, color_by=df_train['intent'])
Getting following error:
ValueError: ('Adjacency matrices must not contain self edges; the following nodes were found to have self edges: ', array([ 34, 44, 110, 120, 153, 171, 181]))
The dataset is https://drive.google.com/file/d/1bHi3hmfFRUE_wwqoTyHuUhd7LrdC4Pag/view?usp=sharing
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Adjacency Matrix - an overview | ScienceDirect Topics
For simple graphs without self-loops, the adjacency matrix has 0 s on the diagonal. For undirected graphs, the adjacency matrix is symmetric.
Read more >Graph Theory
This means that the adjacency matrix of an directed graph is not necessarily symmetric. If there is and edge from ... One can...
Read more >Adjacency matrix - Wikipedia
If the graph is undirected (i.e. all of its edges are bidirectional), the adjacency matrix is symmetric. The relationship between a graph and...
Read more >On the invertibility of the adjacency matrix of a graph
The adjacency matrix of any bipartite graph with an odd number of vertices is not invertible. This follows since the eigenvalues of a...
Read more >Graph Theory Fundamentals - FSU Math
If the graph is not simple, then the matrix element for a node with a self- edge is represented by 2*(edge weight). Page...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@DesiKeki a new version has been uploaded to PyPI. Install it with
pip install --upgrade pymde
. Let me know if you ran into further issues, and thanks again for reporting this bug, and for being one of PyMDE’s first users!Thanks a lot for the quick fix and response @akshayka