Benjamin Franklin was in many ways an excellent role model for future generations of his new nation: a marketing expert, practical engineer, and a skilled negotiator with sense for compromise.
This alphabetically sorted collection of AI, ML, and data resources was last updated on 2/26/2021.
Auto ML is fast becoming a popular solution to build minimal viable models for new projects. A popular library for Python is Auto-sklearn that leverages the most popular Python ML library scikit-learn. Auto-sklearn runs a smart search over scikit-learn models and parameters to find the best performing ensemble of models.
This tutorial describes how to setup Auto-sklearn on Google Colab. The complete notebook gist includes a toy project that uses an old Airbnb dataset from Kaggle.
The key first step is to install linux dependencies alongside Auto-sklearn:
!sudo apt-get install build-essential swig
!pip install auto-sklearn==0.11.1
After running these commands in…
Walter Isaacson dedicates most of the book to describing Einstein’s life, politics and the nature of his creativity. The fact that he spends much less time focusing on physics is perhaps not surprising given his target audience. This differs from similar books such as Robert Oppenheimer by Ray Monk or American Prometheus by Bird and Sherwin where physics plays a larger role. Below is list of fascinating ideas from Isaacson’s depiction of Einstein’s life:
Google released a white paper describing how the company intends to generate all of its electricity needs from renewable energy sources by 2030. Previously, Google committed to reducing emissions by buying offsets or generating renewable energy off-cycle. This new commitment goes by further: “Google intends to match its operational electricity use with nearby carbon-free energy sources in every hour of every year”
Everybody interested should read it — it’s short.
Google cooperated with a Watttime to generate the dataset that measures the carbon emissions intensity in regions where Google’s data centers are located. Watttime has a very interesting API providing…
Skin in the Game is a curious collection of anecdotes that has to make everyone question the fairness of modern society. A short subset of interesting thoughts is below:
While summarizing this book isn’t useful due to its technical nature, below is a small subset of fun facts I came across.
Sean Carroll attempts to reconcile quantum mechanics with Einstein’s theory of relativity, something that physics conveniently ignores. There is a plethora of similar attempts such as Geometric Unity presented by Eric Weinstein. Carroll’s book is very readable even for physics enthusiasts like myself who lack formal education in the field.
Background:
Quantum notes:
Genome is fascinating science fiction book focused on what could be hidden in human Genome. The book’s website has an interesting section explaining which of main themes are fact vs fiction. Below is a selection of 3 facts I found interesting.
The exploratory ship at the beginning of the book of based on Russian Project 22220, the largest nuclear-powered icebreaker designed.
“The Quaternary extinction was a mass die-off of large animals that occurred during the transition from the Pleistocene to the Holocene epoch (13,000 BCE to 8,000 BCE). The extinction is believed to have been caused by two factors. The…
While AWS Lambda functions are typically used to build API endpoints, at their core Lambda functions can return almost anything. This includes returning html markup with dynamic content.
I will not go into details describing how to deploy AWS Lambda functions. Please see the official documentation. I will however describe how to return dynamic html content instead of a typical JSON.
If you prefer to develop and test lambda functions locally (as I do), you can use Docker to simulate the AWS lambda function environment. A sample Dockerfile I use is below.
FROM amazonlinux:latest RUN mkdir -p /mnt/app ADD …