Hello viewers, the video on closeness centrality is redone for more clarity and detailed evaluation kzbin.info/www/bejne/foOwn6yDfJx3nKM
@plogghuy Жыл бұрын
For those wondering the type is actually the normalised closeness centrality measure ie the closeness centrality divided by the total number of nodes -1. Since the pre normalised centrality is the sum raised to the -1 we get the type on screen
@francescos73612 жыл бұрын
Thanks , for this educational contribution.
@Samuel-wl4fw4 жыл бұрын
Great video good work
@vicmurai1033 Жыл бұрын
Thanks for the tutorial
@souravde61163 жыл бұрын
While directed graph what is the logic of being taken 100? I did not understand. If there is no connection, it should be zero but not 100.
@computationallinguistics37343 жыл бұрын
If you cannot reach from node A to node B so the distance between them is considered to be infinite. Since, we cannot use infinity in our code and we want to get a numeric value, so we assume a value that is very high. Therefore, the value 100 is used as an alternate value for infinity, which can be any other value.
@computationallinguistics37343 жыл бұрын
Here is another video on the same topic that will be of more help: kzbin.info/www/bejne/foOwn6yDfJx3nKM
@Agrover1123 жыл бұрын
the distance to reach is basically Infinity , 0 means it's kinda the same node so instead of INF we take a large number, since 1/INF=0 which we want to avoid
@anchitagarwal13343 жыл бұрын
how is distance from node1 to node4 = 2??
@computationallinguistics37343 жыл бұрын
We first assumed the graph to be undirected. So ignoring the node's directionality, we can reach from node 1 to node 4 minimum in two hops i.e., from node 1 to node 3 and then from node 3 to node 4.
@ragilchelvin69643 жыл бұрын
I'm sorry sir, can you tell me about your reference to count it, please ? I will use that for citation of my bachelor thesis Thank you..
@computationallinguistics37343 жыл бұрын
Do you mean the source from where I used these calculations?
@LCW97143 жыл бұрын
Excuse me. May I ask a question? Do you know where is the source of this equation. I want to know who is the author of the centrality degree equation, and the name of the paper. Thank you very much.
@computationallinguistics37343 жыл бұрын
Well, there are many recent works that have mentioned these approaches. In fact, there are many different variants of them. Some have explained their working in text while others have provided equations. But if you want to know the original source where these measures were first introduced, that would be hard to find because these are some of the pioneering works and dates back to the start of the graph theory, the Konigberg bridge problem and euler graph in 1736. Searches on these keywords returned few articles from 1950s but they were in a language, I don't understand.
@LCW97143 жыл бұрын
@@computationallinguistics3734 I am really appreciate for your reply. Thank you very much, you help me a lot. Your videos are really clear to understand. Thank you🙏
@computationallinguistics37343 жыл бұрын
Here is another video on the same topic that will be of more help: kzbin.info/www/bejne/foOwn6yDfJx3nKM
@LCW97143 жыл бұрын
@@computationallinguistics3734 thank you very much🙏🙏🙏🙏🙏
@ericfricke45123 жыл бұрын
Great stuff. Thanks!
@muhammadhamza70333 жыл бұрын
There is a path between 4 to 1 (4>3>2>1) and 6 to 1 (6>4>3>2>1). Kindly correct
@computationallinguistics37343 жыл бұрын
The shortest paths are calculated from the reference node to all the other nodes. So if we are calculating it for node 1, we will have to look for the shortest path from node 1 to node 4.