Intro

😲 Quantifying Surprise — A Data Scientist’s Intro To Information Theory — Part 1/4: Foundations

Through the telecommunication boom, Claude Shannon, in his seminal 1948 paper¹, posed a matter that may revolutionise technology:How can we quantify communication?Shannon’s findings remain fundamental to expressing information quantification, storage, and communication. These insights...

Intro to AI: a beginner’s guide to artificial intelligence from MIT Technology Review

Sign up here to receive it at no cost. Or for those who’re already an AI aficionado, send it on to someone in your life who’s inquisitive about the technology but is just beginning...

Automatic Differentiation (AutoDiff): A Transient Intro with Examples

An introduction to the mechanics of AutoDiff, exploring its mathematical principles, implementation strategies, and applications in currently most-used frameworksAt the center of machine learning lies the optimization of loss/objective functions. This optimization process heavily...

Start Asking Your Data “Why?” — A Gentle Intro To Causality

For simplicity we’ll examine Simpson’s paradox specializing in two cohorts, female and male adults.I’ll be the primary to confess that I struggled to grasp this idea and it took me three weekends of deep...

Applied Python Chronicles: A Gentle Intro to Pydantic

What about default values and argument extractions?from pydantic import validate_call@validate_call(validate_return=True)def add(*args: int, a: int, b: int = 4) -> int:return str(sum(args) + a + b)# ----add(4,3,4)> ValidationError: 1 validation error for addaMissing required keyword...

OpenAI API — Intro & 11 Practical Implementation Examples of the Models Behind ChatGPT

A programmatic approach to make use of models behind ChatGPT.ChatGPT needs no further introduction lately and on this post we would love to look deeper into how we will programmatically interact with the models...

Hyperparameter Optimization With Hyperopt — Intro & Implementation 1. Basics 2. Hyperopt Implementation Conclusion Thanks for Reading!

2.1. Support Vector Machines and Iris Data SetIn a previous post I used Grid Search, Random Search and Bayesian Optimization for hyperparameter optimization using the Iris data set provided by scikit-learn. Iris data set...

Intro to Graph Neural Networks with cuGraph-PyG

Graph Neural Networks (GNNs) are one in every of the fastest-growing tools in machine learning. GNNs mix a wealthy array of feature data (much like the input of a standard neural network) with network...

Recent posts

Popular categories

ASK ANA