Research to the People
  • What is Research to the People?
  • About the Data
    • What Data Do We Work With?
    • Recommended: External Data Sources
  • Hacking on the Cloud
    • Getting Set-up on Google Cloud
    • Cloud Toolbox
  • Biology-AI Toolbox
    • Overview
  • Specialized Biological Domains
    • Overview
    • Cancer Fundamentals
    • Cancer Analysis Approaches: Bio/AI
    • SVAI Research Team MVPs
  • Biological Fundamentals
    • Overview
    • Genome Analysis: The Basics
    • Proteome Analysis: The Basics
    • Transcriptome Analysis: The Basics
    • Genomic Applications
    • Transcriptomic Applications
    • Proteomic Applications
    • Multi-omics Bioinformatic Applications
  • AI fundamentals
    • Overview
    • Computational Linear Algebra Techniques
    • Machine Learning Heuristics
    • Types of Machine Learning problems: Supervised, Unsupervised, and Reinforcement Learning
    • Fundamental ML Models
    • ML Applications
    • Networks: Another type of ML topic
    • Deep Learning Fundamentals
    • You Don't Have Enough DATA
    • CNNs: An Overview
    • RNNs: An Overview
    • GANs: An overview
    • Deep Belief Networks: Deep Dive
    • Autoencoders: Deep Dive
    • DL Applications
Powered by GitBook
On this page
  • Degree Centrality
  • Closeness centrality
  • Betweenness centrality
  • Applications/Tool box
  1. AI fundamentals

Networks: Another type of ML topic

PreviousML ApplicationsNextDeep Learning Fundamentals

Last updated 6 years ago

Reference for this section can be found .

A network is a collection of objects (nodes) with relationships / interconnections (edges) between them. The most common and easy method to represent networks is by using graphs, which can be directed or undirected graphs.

We can measure the importance of nodes via either three approaches: degree centrality, closeness centrality, and betweenness centrality.

Degree Centrality

The nodes can be described by degree centrality. The intuition is that nodes that are important have many connections. Mathematically the degree centrality of a node in an undirected graph is given by,

​​

where N is the number of nodes in the network and d is the degree of the node (number of connections).

Closeness centrality

Betweenness centrality

Under this approach, the assumption is that important nodes connect other nodes i.e they lie in between many nodes. For every pair of nodes in a connected graph, we consider the shortest path between the nodes. The betweenness centrality for a particular node is the number of these shortest paths that pass through the vertex.

Applications/Tool box

A great application of networks is the

NetworkX is a python library for analyzing graphs and networks. an example application.

page rank algorithm.
Here's
here