question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Adjacency matrices must not contain self edges

See original GitHub issue

Using 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:closed
  • Created 2 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
akshaykacommented, Mar 26, 2021

@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!

0reactions
DesiKekicommented, Mar 27, 2021

Thanks a lot for the quick fix and response @akshayka

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found