Andrew Ng officially launches his $175M AI Fund
For the past couple of years or so I have become increasingly disillusioned with the LinkedIn news feed. As your network grows your feed does too, LinkedIn automatically following everyone you have a connection with. Over time the news feeds moves further and further away from your interests and what is important. It got to the point where I stopped reading it, it was meaningless, a combination of click bait ( yes I get the irony !! ) and recruitment adverts
Then I clicked ‘Improve my feed’, more by chance than a concerted action, and over the space of 2 or 3 days unfollowed 99% of people and companies that I had accumulated, and surprisingly my feed becomes relevant again, it contained stories and news I was interested. Not all click bait stories went the same way, but now they stick out as an anomaly and can be easily avoided and/or dealt with.
Unfollowing doesn’t mean unfriending, but it does mean reducing the noise to an acceptable level and focusing on what is important. So what did I reduce down to? I started with volume, of the 700+ contacts I decided I only wanted to follow a max of 50 or so and used the following criteria:-
1) Personal friends that I enjoy keeping up to date with their professional life ( as opposed to their social life )
2) People whose opinion I am interested in regardless of their industry
3) Industry leaders for their insight into their field and/or their company
4) Companies I am interested in ( similar to 3 )
The result was a much more narrowly focused news stream and an ability to review on a daily basis in about 10-15 mins. The only missing feature is ‘save for later’, but I can work around that with cut and paste.
So I cannot recommend enough that you take back control and get back from LinkedIn what it was meant to provide in the first place.
At this point I might consider buying a Microsoft laptop….
https://www.microsoft.com/en-us/quantum/development-kit
Some great reading here
A great source of information on Artificial Intelligence, Machine Learning and Deep Learning has been published Becoming Human after someone applied machine learning capabilities to articles written on Medium.
I’ve set myself the goal of reading them all by the end of the year…..
Very interesting piece about Reziine a UK based startup that is seeking to crowd funding to create the first conscious mind. In support , f this it has published the entire blueprint for a true conscious mind. All you need is several PhDs in Physics, Quantum Computing and Computer Science to understand it……
FT has selected Martin Fords book The Rise of The Robots, as the most important business book of 2015 and poses the question “Robots are going to take our jobs, so what do we do about it?”
I think the answer is simple, learn to build robots. New economies have to embrace automation in all its many forms and as with any industrial revolution, if we don’t embrace the change you’ll get left behind.
Nice documentary on IBM Watson, and a good introduction to Natural Language Processing
We’ve been exploring and using NLP at my work for the past year and seeing huge benefits
This is the sources and references I used while learning Clojure
Clojure Programming – Wikibooks
Clojure for the Brave and True
Clojure – Functional Programming for the JVM
Ok, we can use base types know the difference between collections and sequences ( if you do be sure to tell me ! ) and we can write some basic functions and use map/reduce/filter to play around with collections.
Hopefully you have also upgraded from the basic Clojure REPL to Leiningen one, and are reaping the benefits of uber productivity
Now its time to get real and start writing some real functions, more than a single line and with ability to control flow through the function
;; if statement (defn is_true? [x] (if (true? x) "yes" "no")) ;; Example of if statement (is_true? false) ;; results in "no" ;; cond statements (defn is_positive? [x] ;; Define a function that gives a string value for a numbers positivity (cond (> x 0) "positive" (< x 0) "negative" :else "zero" )) ;; Optional default catch all others (is_positive? 3) ;; Results in "positive" ;; case statements (defn number_str [x] (case x 1 "One" 2 "Two" 3 "Three" 4 "Four" 5 "Five" "Too big")) (number_str 1) ;; Results in "One" (number_str 4) ;; Results in "Four" (number_str 10) ;; Results in "Too big" ;; do statements ;; Do evaluates a sequence of expressions in order, the result of the expression is the value of the last ;; expression in the list (def x 3) (do (println "Starting") (+ x 1) (inc x) (println "Stopping") x ) ;; Results in the following output, but why ? Starting Stopping 3 ;; This is a classic example of immutable data, while 2 statements in the middle apply operations to the variable x ;; but these operations only return values, they do not change the value of x in the expressions ;; This is one of the key facets of functional programming ;; loop/recur (loop [x 10] ;; Entry point (when (> x 1) (println x) (recur (- x 2)))) ;; Recursive call into the call stack with updated ;; parameters ;; List Comprehension (for [x (range 100)] x) ;; Create a list 0 to 99 (for [x (range 100)] (* x x)) ;; Create a list by iterating through each number ;; 0 - 99 and multiplying it by itself (for [x (range 100)] (even? x)) ;; Create a list of booleans representing whether ;; each number between 0 and 99 is even or odd (for [a (range 100) ;; Nested loop that creates a list of vectors b (range 100 200) ;; each vector is created from a nest loop [a b] ;; For each a 0 - 99, iterate through b 100-199 ) (for [a (range 100) ;; Nested loop that creates a list if vectors b (range 100 200) ;; as above, but exits when a * b > 1000 :while (< (* a b) 1000)] [a b] )