Agent-Based Modeling in NetLogo
Author(s): Prabod Dunuwila Source Agent-based modeling is a simulation technique that focuses on building a model of a system with a collection of autonomous decision-making entities called agents. Each individual agent can make decisions based on a set of rules provided with …
TensorFlow Callbacks in Action
Author(s): Abhinav Prakash In layman terms, if I want to introduce callbacks, then it’s the controller by which you can control your plane. Without these controllers, you’re not having any control over the plane, and you’ll crash. Callbacks: from keras.io, a callback is …
Reading: ESRGAN — Enhanced Super-Resolution Generative Adversarial Networks (Super Resolution & GAN)
Author(s): Sik-Ho Tsang Outperforms SRCNN, EDSR and RCAN, and SRGAN. Also, won the First Place in PIRM2018-SR challenge ESRGAN can have a sharper result than SRGAN In this story, Enhanced Super-Resolution Generative Adversarial Networks (ESRGAN), by The Chinese University of Hong Kong, Chinese …
Estimating a Classifier Performance Just by Looking at the Distributions
Author(s): Michelangiolo Mazzeschi Originally published on Towards AI. Most of the time, when our AI is not performing as we wish, we might blame the algorithms behind the model. However, a programmer with enough experience knows that the quality of the data …
Outline
Author(s): Sik-Ho Tsang Originally published on Towards AI. Review: DBPN & D-DBPN — Deep Back-Projection Networks For Super-Resolution (Super Resolution) Iterative Up & Down Projection Units, Outperforms SRCNN, FSRCNN, VDSR, DRCN, DRRN, LapSRN, and EDSR In this story, Deep Back-Projection Networks (DBPN) …
Dashboard Creation Using R Shiny
Author(s): Suyash Maheshwari Originally published on Towards AI. Shiny is an R package that is used to build interactive dashboards that can be used to display predictions. It can be used by programmers to communicate the findings of data to organization members …
Stock Price Prediction Model for Netflix
A Comparative Study of Linear Regression, K-Nearest Neighbor (KNN) and Support Vector Machine (SVM) Author(s): Vivek Chaudhary The objective of this article is to design a stock prediction linear model to predict the closing price of Netflix. This will be a comparative study …
End to End Tree Based Algorithm I: Decision Tree
Author(s): Pushkar Pushp Originally published on Towards AI. Which path to choose !! Introduction This blog aims to introduce readers to the concept of decision trees, intuition, and mathematics behind the hood. In the course of the journey, we will learn how …