Recommender Systems using Graph Neural Networks

Поділитися
Вставка
  • Опубліковано 28 вер 2024

КОМЕНТАРІ • 36

  • @SickegalAlien
    @SickegalAlien Місяць тому

    Collaborative Filtering is such an underrated computation method, imho
    Many real life problems can be re-interpteted as a recommendation problem. It's just a matter of perspective, but the results can be huge!

  • @samirelzein1095
    @samirelzein1095 2 роки тому +2

    that s an amazing job! clearly honest deep effort i ncompliling such huge info in a compact and unified language! Congrats on this level of sophistication! Predict an even brighter future for you!

    • @DeepFindr
      @DeepFindr  2 роки тому +1

      Thank you very much for the kind words!

  • @smitshah6665
    @smitshah6665 3 місяці тому

    your content and explanation is Incredibly helpful. Thank you

  • @aiml84
    @aiml84 2 роки тому +1

    As usual Awesome! Just waiting for credit card fraud detection video so that I can learn to transform a tabular data to graph data

  • @foxlikescat5508
    @foxlikescat5508 2 роки тому +3

    great explanation and overview as always :D

  • @clayouyang2157
    @clayouyang2157 2 роки тому

    long time no see, i am glad to watch video released by you

    • @DeepFindr
      @DeepFindr  2 роки тому

      Thank you :) how are you? Hope everything is fine

  • @daniamaya
    @daniamaya Рік тому +4

    Your clarity solved a bunch of my open questions that arose digging into the topic. Thank you!

  • @mydigitalwayia956
    @mydigitalwayia956 2 роки тому +1

    Felicitaciones, un trabajo excepcional. Saludos

  • @TheAnna1101
    @TheAnna1101 Рік тому

    Thanks great video!

  • @title601a
    @title601a 2 роки тому

    It's very helpful , Thank a lot

  • @mohamedemmimoun3665
    @mohamedemmimoun3665 2 роки тому

    I loved it thank you very much

  • @keyuchen3738
    @keyuchen3738 2 роки тому

    Great job

  • @auroraevans2918
    @auroraevans2918 2 роки тому

    may i ask could we build a decision support system based on knowledge graphs using graph neural networks?

    • @DeepFindr
      @DeepFindr  2 роки тому

      Sure, I think nothing speaks against trying it :)
      Many people use GNNs on knowledge graphs so it might also work for DSS's

  • @wilfredomartel7781
    @wilfredomartel7781 Рік тому

    Maybe a practical example?

  • @withamel
    @withamel Рік тому +2

    I like your videos so much, so plz keep going on. My question is how can I build a simple model of a recommendation system using graph convolutional network?

  • @shattered2024
    @shattered2024 2 роки тому +1

    how did you find these papers? I'm interested in developing a recommendation system for creating outfits for a person i.e. you add a shirt to your shopping cart, the recommender will show pants, shoes, and belts that match the shirt

    • @DeepFindr
      @DeepFindr  2 роки тому

      Which papers are you referring to? :)
      Just did a search on Google scholar

  • @mrprime557
    @mrprime557 2 роки тому +2

    Awesome !!!! I was breaking my head to structure the vast information available on GNN. Love this video and ily bro !

  • @stanislavshubin3447
    @stanislavshubin3447 2 роки тому +1

    +

  • @yerznkanyan
    @yerznkanyan Рік тому

    Great video. Thanks !!

  • @goelnikhils
    @goelnikhils Рік тому

    Amazing Content. Exceptional

  • @harisjaved1379
    @harisjaved1379 2 роки тому

    Wonderful explanation!

  • @skanderbegvictor6487
    @skanderbegvictor6487 2 роки тому

    this is gold

  • @meylyssa3666
    @meylyssa3666 2 роки тому

    Can you please do a tutorial on edge classification, please? Practical implementation I mean.

    • @DeepFindr
      @DeepFindr  2 роки тому +1

      I have a video on node classification :) it's pretty much exactly that, only that the head of the network is different. Instead of one output per node, you have one output per possible edge :)

  • @fatigseyno4430
    @fatigseyno4430 2 роки тому

    I must say your videos are great please keep up the good work. My question is how can i implement a simple recommender system with pytorch geometric. I have a custom dataset with two nodes: movies and user. Furthermore there is an edge that describes only the relation of both nodes. I want to create a bipartite graph like the one from kipf & welling and do a similarity analysis. I know how to get the data into the right format. But since I am new to the subject, I am having a hard time implementing a simple gnn model. If anyone here could help me I would be very grateful.

    • @DeepFindr
      @DeepFindr  2 роки тому

      Hi! There is a section on bipartite graphs in Pytorch geometric: pytorch-geometric.readthedocs.io/en/latest/notes/batching.html?highlight=Bipartite#bipartite-graphs
      Also I have a couple of videos on how to create custom datasets. Let me know if you need further help!

    • @fatigseyno4430
      @fatigseyno4430 2 роки тому

      @@DeepFindr Hello, thank you for the quick feedback. I have now watched many of your videos again. I know how to create a bipartite garph with Heterograph(). What I didn't really understand is which layer to use for message passing and how the structure of the GNN model should look like. I have only one edge type and would like to have a simple recommneder system for similiarity analysis.

    • @DeepFindr
      @DeepFindr  2 роки тому

      Thats something you need to figure out experimentally. You can start with GCNConv and then try others. :)
      Simply stack a couple of layers and build a network head for link prediction. That means - use the final node level embeddings, concatenate them according to the edges and predict one value per edge. Good luck!

  • @jonimatix
    @jonimatix 2 роки тому

    Do you have any links to blog post / examples showcasing these methods?

    • @DeepFindr
      @DeepFindr  2 роки тому

      I've seen this post on medium: medium.com/decathlontechnology/building-a-recommender-system-using-graph-neural-networks-2ee5fc4e706d

    • @jonimatix
      @jonimatix 2 роки тому

      @@DeepFindr thanks so much, keep up the good work