Fake News Detection using Graphs with Pytorch Geometric

  Рет қаралды 14,795

DeepFindr

DeepFindr

Күн бұрын

Пікірлер: 30
@sebbecht
@sebbecht 2 жыл бұрын
Nice job thanks for the video! and thanks for the disclaimer on the example.
@simonelinnert8353
@simonelinnert8353 2 жыл бұрын
Great Video, thank you very much!
@보라색사과-l1r
@보라색사과-l1r 2 жыл бұрын
so interesting! thanks for this wonderful video.
@harrydobbs4179
@harrydobbs4179 2 жыл бұрын
Great video! I would be interested in a video about link prediction. :)
@DeepFindr
@DeepFindr 2 жыл бұрын
Hi! Thanks :) Will consider it in the future videos!
@tejpalkumawat776
@tejpalkumawat776 2 жыл бұрын
Sir , please make a video on how can we prepare dataset like for training , testing and validation for the Link Prediction with the help of RGCN . Like take a example of knowledge graph of some text data after extracting (s,r,o) how should I prooced further ......
@souvickdas5564
@souvickdas5564 2 жыл бұрын
Please make a video on software defect prediction using GNN
@ZaraZ-y4r
@ZaraZ-y4r Жыл бұрын
hello , can you please provide me the power point slides of this video?
@anees2410
@anees2410 7 ай бұрын
Alhamdulillah
@antares1694
@antares1694 2 жыл бұрын
Did you find the answer to why the train dataset is smaller than the test? I've encountered the same problem with every graph dataset I've used. Although, one thing I did notice is that the validation accuracy did not increase when I used the larger one as train in any of the graphs, and in a couple of cases, it even decreased.
@DeepFindr
@DeepFindr 2 жыл бұрын
Interesting. What do you mean by "every graph dataset I've used"? In pytorch geometric? This is the first time that I encountered it, but I've also only tried around 6-7 datasets so far. Maybe something is mixed up in the files that are downloaded
@jackgolding9137
@jackgolding9137 2 жыл бұрын
I've also noticed this but I'm very new to GNNs
@tejpalkumawat776
@tejpalkumawat776 2 жыл бұрын
Sir, what if we have a tweets and user information in the form of Excel sheet , then we want to use of Graph Neural Networks on top of it for our prediction
@DeepFindr
@DeepFindr 2 жыл бұрын
Hello :) I have a video how to build a graph dataset with pytorch geometric (GNN Project, video 2). Maybe this answers some of your questions :) Besides that, simply build the following things: X: The node feature vector per user based on the tweets. For that you need to convert the text into a feature vector with for example word2vec. Edge index: For this you need to find out who retweeted which user. Based on this you can build the edge information. You can Form a propagation graph like in the video, where each user is connected to the user that retweeted the root tweet. In the end you need to put your excel information into tensors of the following shape: X: [num users x embedding size] Edge index: [2, num edges] Best regards and good luck :)
@jonimatix
@jonimatix 2 жыл бұрын
Thanks for this. On different topic, do you know of good resources and examples to apply sequence prediction, maybe using directed graphs, like product recommendation / next event prediction?
@DeepFindr
@DeepFindr 2 жыл бұрын
Hi! Do you mean resources on time series forecasting? I found this to be very helpful: www.tensorflow.org/tutorials/structured_data/time_series Regarding product recommendation, there is a medium article: medium.com/recombee-blog/deep-learning-for-recommender-systems-next-basket-prediction-and-sequential-product-recommendation-796228b34dee Not sure if this is what you mean, maybe you can share some more details? :)
@jonimatix
@jonimatix 2 жыл бұрын
@@DeepFindr thanks 👍was more thinking of ways to approach sequence recommendations using GNNs if that is possible?
@DeepFindr
@DeepFindr 2 жыл бұрын
arxiv.org/abs/2106.14226? arxiv.org/abs/2101.12457 Have you seen these papers ? The second one has also open-sourced code on Github :)
@jonimatix
@jonimatix 2 жыл бұрын
@@DeepFindr awesome thanks for pointing these out 🔥
@stanislavshubin3447
@stanislavshubin3447 2 жыл бұрын
+
@773-o5t
@773-o5t 2 жыл бұрын
So great your video! unfortunately,while using your colab notebook,I have a problem. When excuting the code "train_data = UPFD(root=".", name="gossipcop", feature="spacy", split="train")" , there was a error "FileNotFoundError: [Errno 2] No such file or directory: './gossipcop/raw/new_spacy_feature.npz'" The only difference is that I used the cuda version of pytorch geometirc I found that folder with only directories and no data. Do you no why?
@DeepFindr
@DeepFindr 2 жыл бұрын
Hi! The data should be downloaded automatically. I tested the notebook and didn't have the error. Did you try again?
@773-o5t
@773-o5t 2 жыл бұрын
@@DeepFindr At than time I tried serval times and failed. But now it is OK .It's too strange.
@anyaegbuebuka4583
@anyaegbuebuka4583 4 ай бұрын
@@773-o5t please what other features can i try out?
@anyaegbuebuka4583
@anyaegbuebuka4583 5 ай бұрын
Thanks so much for this video sir. i would really want to understand the interpretation of this model, what are the main features is it using to make prediction. i would be glad if you point me to a video or online source to read more on this. Thank you sir in anticipation.
@tonyli7014
@tonyli7014 2 жыл бұрын
I am surprised that setting batchsize = 64 won't make the training convergent.
@datacuber
@datacuber 2 жыл бұрын
Hi guys, really cool video. If I may ask a question. What is this .relu() you have on every layer? I had never seen something like that, and I looked it up and it is not mentioned anywhere. Thanks in advance, Alfonso
@DeepFindr
@DeepFindr 2 жыл бұрын
Relu stands for Rectified Linear Unit and is an activation function commonly used in neural networks. I recommend to read some blog posts about this on Google for further details :)
@datacuber
@datacuber 2 жыл бұрын
@@DeepFindr sorry if my question was not clear enough. What I really mean is that I've always seen used as nn.Relu() or F.relu() but never as a method self.conv.relu() as you used it. I searched on Pytorch docs and pytorch geometric and didn't find any references using it that way. How did you come up to that way of applying it? Thanks in advance.
@DeepFindr
@DeepFindr 2 жыл бұрын
Hi! If you use nn.relu or f.relu is just a personal choice as discussed here: discuss.pytorch.org/t/whats-the-difference-between-nn-relu-vs-f-relu/27599
Recommender Systems using Graph Neural Networks
13:01
DeepFindr
Рет қаралды 22 М.
Converting a Tabular Dataset to a Graph Dataset for GNNs
15:22
Шок. Никокадо Авокадо похудел на 110 кг
00:44
Spongebob ate Patrick 😱 #meme #spongebob #gmod
00:15
Mr. LoLo
Рет қаралды 16 МЛН
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,1 МЛН
Traffic Forecasting with Pytorch Geometric Temporal
16:28
DeepFindr
Рет қаралды 23 М.
Graph Embedding For Machine Learning in Python
7:21
NeuralNine
Рет қаралды 15 М.
Fraud Detection with Graph Neural Networks
12:16
DeepFindr
Рет қаралды 27 М.
Node Classification on Knowledge Graphs using PyTorch Geometric
18:51
GraphRAG: The Marriage of Knowledge Graphs and RAG: Emil Eifrem
19:15
Introduction to graph neural networks (made easy!)
11:38
Jacob Heglund
Рет қаралды 31 М.
Graph Convolutional Networks using only NumPy
13:21
WelcomeAIOverlords
Рет қаралды 39 М.
Шок. Никокадо Авокадо похудел на 110 кг
00:44