Goto

Collaborating Authors

 SPE


3 things CEOs MUST know about information overload

#artificialintelligence

In my first article, I touched on the problem of information overload in Market Intelligence (MI). It's a term that has been popularized by the media. It's often described as when you are dealing with more information that you are able to process to make good decisions. And they are 3 things CEO must be aware of. The technologies we have been using up until now, and that we are familiar with, are building blocks we can use to perceive the environment (the data) and infer meaning (semantic relationships, cause and consequence, and basically everything that enables the system to interpret its surroundings).


rasbt/python-machine-learning-book

#artificialintelligence

Softmax Regression (synonyms: Multinomial Logistic, Maximum Entropy Classifier, or just Multi-class Logistic Regression) is a generalization of logistic regression that we can use for multi-class classification (under the assumption that the classes are mutually exclusive). In contrast, we use the (standard) Logistic Regression model in binary classification tasks. Now, let me briefly explain how that works and how softmax regression differs from logistic regression. As the name suggests, in softmax regression (SMR), we replace the sigmoid logistic function by the so-called softmax function?: Now, this softmax function computes the probability that this training sample x(i) belongs to class j given the weight and net input z(i). So, we compute the probability p(y j x(i); wj) for each class label in j 1, ..., k.


Google buys French startup Moodstocks that helps machines see - The Economic Times

#artificialintelligence

SAN FRANCISCO: Google on Wednesday announced a deal to buy Moodstocks, a French startup behind technology that helps smartphones recognize whatever they are aimed at. Moodstocks caught the US technology giant's eye for its work in computer vision and machine learning, as well for accomplishments in enabling smartphones or other mobile devices to recognize images and objects. Google is among Silicon Valley titans investing in ways to get computers to see and understand the world around them the way people do. Machine learning has been woven into an array of Google offerings, such as its free language translation and photo services. "There's a lot more to be done to improve machine vision," Google France tech site lead Vincent Simonet said in a blog post.


Will Virtual Assistants Kill SEO As We Know It? Maybe...

#artificialintelligence

It is safe to say that artificial intelligence is single handedly the most important technology to be introduced into search marketing in the last few years. From Google's RankBrain algorithm which feeds searches through machine learning technology, to Alexa, Siri, and Cortana for voice search, AI is changing the way we use and interact with search engines. This week Google made a big announcement at their 2016 I/O event, where CEO Sundar Pichai exhibited the company's new assistive search tool dubbed Google assistant. Google's choice to not capitalize "assistant" in the name is an interesting one, as it signifies that this is not a stand alone tool, but instead a technology that could be built into other Google platforms. Google assistant is not a tool or a service; it is a technology that could shape how searches are performed.


nihit/TensorFlow101

#artificialintelligence

I have recently been playing around with TensorFlow after being introduced to it during cs224d at Stanford last quarter. TensorFlow code hosted on Github includes some great tutorials and example models to help beginners get started, including an LeNet-5 like Convolutional Neural Network model to recognize handwritten digits. Have a suggestion to improve this code? Constructed this figure using Gavin Ding's Python script to illustrate CNN architectures, which is really neat and you should check it out! I modified this script slightly, and have included the modified script in this repo.


DeepMind partners with NHS eye hospital to conduct AI research

#artificialintelligence

Google-owned DeepMind has expanded its collaboration with the UK's National Health Service (NHS), announcing a research partnership today with Moorfields Eye Hospital NHS Foundation Trust in London -- its second publicly confirmed foray into working with the NHS. But this time the project is being explicitly badged as medical research, and DeepMind will be applying AI machine learning algorithms to the data -- so that's also a first. Although the company has been public about its ambitions to apply AI to health data before now. The Moorfields partnership is focused on two specific sight-loss causing conditions: diabetic retinopathy and age-related macular degeneration (AMD), which DeepMind notes collectively affect more than 625,000 people in the UK and more than 100 million people worldwide. The stated aim is to investigate whether machine learning algorithms can automate the analysis of the digital eye scans that are typically used to diagnose the two conditions.


Google buys French startup that helps machines see

#artificialintelligence

Google on Wednesday announced a deal to buy Moodstocks, a French startup behind technology that helps smartphones recognize whatever they are aimed at. Moodstocks caught the US technology giant's eye for its work in computer vision and machine learning, as well for accomplishments in enabling smartphones or other mobile devices to recognize images and objects. Google is among Silicon Valley titans investing in ways to get computers to see and understand the world around them the way people do. Machine learning has been woven into an array of Google offerings, such as its free language translation and photo services. "There's a lot more to be done to improve machine vision," Google France tech site lead Vincent Simonet said in a blog post.


Google buys French startup that helps machines see

#artificialintelligence

Moodstocks caught the US technology giant's eye for its work in computer vision and machine learning, as well for accomplishments in enabling smartphones or other mobile devices to recognise images and objects. Google is among Silicon Valley titans investing in ways to get computers to see and understand the world around them the way people do. Machine learning has been woven into an array of Google offerings, such as its free language translation and photo services. "There's a lot more to be done to improve machine vision," Google France tech site lead Vincent Simonet said in a blog post. "That's where Moodstocks comes in."


Google buys French startup that helps machines see

#artificialintelligence

Google on Wednesday announced a deal to buy Moodstocks, a French startup behind technology that helps smartphones recognize whatever they are aimed at. Moodstocks caught the US technology giant's eye for its work in computer vision and machine learning, as well for accomplishments in enabling smartphones or other mobile devices to recognize images and objects. Google is among Silicon Valley titans investing in ways to get computers to see and understand the world around them the way people do. Machine learning has been woven into an array of Google offerings, such as its free language translation and photo services. "There's a lot more to be done to improve machine vision," Google France tech site lead Vincent Simonet said in a blog post.


lkr0

#artificialintelligence

With all of the dependencies installed, simply run "jupyter notebook" on the command line, from the same directory as the titanic3.xls Once we have read the spreadsheet file into a Pandas dataframe (imagine a hyperpowered Excel table), we can peek at the first five rows of data using the head() command. Before we can feed our data set into a machine learning algorithm, we have to remove missing values and split it into training and test sets. We will feed the training set into the classification algorithm to form a trained model. Interestingly, after splitting by class, the main deciding factor determining the survival of women is the ticket fare that they paid, while the deciding factor for men is their age (with children being much more likely to survive).