The Expression Problem in Go

ICYDK: I’ve written about the expression problem here and later also here. Between them, these posts presented various solutions and non-solutions in C++, Haskell, and Clojure.

Today I want to add another language to the mix – Go. It turns out that Go interfaces allow us to solve the expression problem or at least a limited variant thereof. https://goo.gl/pqeJWz #DataIntegration #ML

Compile OpenCV3 With Python3.5 Conda Environment on OSX Sierra

As the title suggests, this article will explore how to compile OpenCV3 with Python (version 3.5) in the Conda Environment using the OSX Sierra operating system. Let’s get going!

Create the Conda Environment With Python 3.5

$ conda create -n python35 python=35 $ conda activate python35

Verify the Conda Environment With Python 3.5

$ python Python 2.7.14 |Anaconda custom (64-bit)| (default, Dec 7 2017, 11:07:58)

Now, we will install the latest version of Tensorflow which will install lots of the required dependencies that I really needed: https://goo.gl/JGHrS1 #DataIntegration #ML