About 50 results
Open links in new tab
  1. When visualizing graph nodes, should I use apply PCA to node2vec …

    Jun 9, 2023 · I am trying to visualize graph nodes using node2vec embedding. The node2vec embeddings has lengths of 50~100 dimensions. I have two plans: use umap to project node2vec …

  2. prediction - Enhancing the predictive capability of traditional node ...

    Nov 23, 2024 · I am trying to test enhancing the prediction capabilities of traditional node-similarity algorithms, like the Jaccard Coefficient or Adamic Adar, with graph embeddings, like the Node2Vec.

  3. node2vec initial embedding - Data Science Stack Exchange

    Oct 13, 2020 · Is there a way to have a "smart initialization" with node2vec, i.e., to start the algorithm with an embedding that is not random but precomputed in a certain way?

  4. How to split graph data into train and test sets for link prediction ...

    Aug 20, 2023 · I would like to predict new links using node embeddings and cosine similarity, but I am unsure how to split the data set into training and testing, and how to evaluate new links. This is my …

  5. machine learning - Node classification/regression with Node2Vec

    May 24, 2021 · Use a single Node2Vec run to learn the embedding vectors for all of the nodes in all networks, both labeled and unlabeled. Train a supervised machine learning algorithm using the …

  6. Word2Vec vs. Sentence2Vec vs. Doc2Vec - Data Science Stack Exchange

    Jun 30, 2017 · I recently came across the terms Word2Vec, Sentence2Vec and Doc2Vec and kind of confused as I am new to vector semantics. Can someone please elaborate the differences in these …

  7. How to Vectorise data - Data Science Stack Exchange

    Nov 10, 2023 · I can turn my product and geography tree into (distinct) graphs, then use node2vec to turn these two graphs into vectors. I don’t then understand how to combine these vectors and also …

  8. pytorch geometric - Data Science Stack Exchange

    Seems the easiest way to do this in pytorch geometric is to use an autoencoder model. In the examples folder there is an autoencoder.py which demonstrates its use. The gist of it is that it takes in a single …

  9. word2vec - Product embeddings - Data Science Stack Exchange

    Jun 13, 2022 · Interesting idea, why not try it. There is a similar method called node2vec. Your might also have heard about the old Netflix competition where a simple gradient-based matrix factorization …

  10. deep learning - Data Science Stack Exchange

    Here's a link to a post on Medium explaining it - basically, Node2Vec generates random walks on the graph (with hyper-parameters relating to walk length, etc), and embeds nodes in walks the same way …