Skip to content

Latest

Deboning simple linear regression output in TensorFlow

A simple linear regression example in TensorFlow(TM) is given at (https://www.tensorflow.org/tutorials/keras/basic_regression). By default, it produces none of the outputs of linear regression, other than MAE or MSE, on request through a print statement. Testing set Mean Abs Error: $2788.86 Time spent

Members Public

Go Not Considered Harmful

I had my first exposure to programming in a FORTRAN class with real punchcards, back in the day, before I knew that GOTO was considered harmful. The exposure was brief and left me wondering whether Russian verbs of motion might not be easier to study, after all. In the years

Members Public

The Unbearable Lightness of Coloring Maps

The Federal Bureau of Investigation (FBI) has lead responsibilities for protecting the United States against domestic crimes initiated abroad. These responsibilities include protection against “covert actions by foreign governments to influence U.S. political sentiment or public discourse” (https://www.fbi.gov/investigate/counterintelligence/foreign-influence). It has illustrated its mission

Members Public

AI and the Oracle at Delphi

I attended a nice Meetup last night, and one of the speakers quoted Turing’s description of a program able to modify its own instructions as a good description of artificial intelligence (AI) and another had a nifty typology relating all the standard tools in data science to their role

Members Public

How to debone linear regression output in Python

This post makes a trio with two most recent blogs on the same subject for R and Excel, this time in Python usking the sklearn package. The example given in the official documentation (https://goo.gl/GGmUKK) is somewhat sketchy and uses a different dataset than the previous two examples.

Members Public

How to debone the output of a linear regression model

I was recently puzzling over an academic paper in the social sciences with a multiple linear regression model that seemed off. (Communication with the authors educated me on considerations that resolved my concerns.) During the course of my puzzling, I compared what I was seeing as model output in the

Members Public