Neo4j Live: Building a Recommendation Engine with Neo4j GDS - An Introduction to Link Prediction

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025

Комментарии • 3

  • @FreakAnime91
    @FreakAnime91 2 месяца назад

    Question: What is the difference between Link prediction pipelines and the typical GDS link prediction algorithms like Adar?
    Is there a way to combine them?

    • @philippbrunenberg
      @philippbrunenberg  2 месяца назад +1

      The link prediction algorithms in the GDS are self-contained algorithms, which define some closeness metric with the goal to predict links. The major difference to a link prediction pipeline (which has the same objective) is, that the pipeline is based on a machine learning approach. Meaning that the pipeline is based on a predefined feature set, splits the data into train and test data and then trains a statistical model (based on multiple features) which is then in turn used to predict links on unseen data. In a sense, the pipeline approach tries to find a generalizable model which can be applied to unseen data (which is not the case for the link prediction algorithms).
      Hope this helps.

    • @FreakAnime91
      @FreakAnime91 2 месяца назад

      @philippbrunenberg yes most helpful! Tq