Goto

Collaborating Authors

 Deep Learning


Predicting ConceptNet Path Quality Using Crowdsourced Assessments of Naturalness

arXiv.org Artificial Intelligence

In many applications, it is important to characterize the way in which two concepts are semantically related. Knowledge graphs such as ConceptNet provide a rich source of information for such characterizations by encoding relations between concepts as edges in a graph. When two concepts are not directly connected by an edge, their relationship can still be described in terms of the paths that connect them. Unfortunately, many of these paths are uninformative and noisy, which means that the success of applications that use such path features crucially relies on their ability to select high-quality paths. In existing applications, this path selection process is based on relatively simple heuristics. In this paper we instead propose to learn to predict path quality from crowdsourced human assessments. Since we are interested in a generic task-independent notion of quality, we simply ask human participants to rank paths according to their subjective assessment of the paths' naturalness, without attempting to define naturalness or steering the participants towards particular indicators of quality. We show that a neural network model trained on these assessments is able to predict human judgments on unseen paths with near optimal performance. Most notably, we find that the resulting path selection method is substantially better than the current heuristic approaches at identifying meaningful paths.


A primer for CIOs needing 'deep learning' on the benefits on emerging tech

#artificialintelligence

In discussions I've had with CIOs via my weekly #CIOChat sessions this year, the top 5 priorities are: And while there are differing opinions regarding the ownership of the analytics function, one thing is clear: CIOs need a better understanding regarding the potential for analytics and what is required to get data into a shape for their organization's data scientists. CIOs also need very clear mutual direction established with business leaders – in other words, what questions should be answered with data? Against this backdrop, "AI, Analytics, and New Machine Age" – published by Harvard Business Review earlier this month – is a timely, relevant compendium of HBR articles. The authors' insights should have value for CIOs and business people trying to use analytics in the running their businesses. Davenport contrasts the results obtained from large AI projects versus Robotic Process Automation (RPA).


Scientists Developed an AI So Advanced They Say It's Too Dangerous to Release

#artificialintelligence

A group of computer scientists once backed by Elon Musk has caused some alarm by developing an advanced artificial intelligence (AI) they say is too dangerous to release to the public. OpenAI, a research non-profit based in San Francisco, says its "chameleon-like" language prediction system, called GPT–2, will only ever see a limited release in a scaled-down version, due to "concerns about malicious applications of the technology". That's because the computer model, which generates original paragraphs of text based on what it is given to'read', is a little too good at its job. The system devises "synthetic text samples of unprecedented quality" that the researchers say are so advanced and convincing, the AI could be used to create fake news, impersonate people, and abuse or trick people on social media. "GPT–2 is trained with a simple objective: predict the next word, given all of the previous words within some text," the OpenAI team explains on its blog.


Can Machine Learning Teach Us Anything?

IEEE Spectrum Robotics

The breathless headline caught my eye: "Computer Shows Human Intuition--AI Breakthrough!" (or words to that effect). I was intrigued but skeptical. Reading further, I learned that a computer program, AlphaZero, developed by a team at DeepMind, in London, had beaten other champion chess-playing programs, as well as (of course) humans. That wasn't the interesting news, as we take that kind of dominance for granted these days. What fascinated me was how the program had been constructed.


Run ONNX models with Amazon Elastic Inference Amazon Web Services

#artificialintelligence

At re:Invent 2018, AWS announced Amazon Elastic Inference (EI), a new service that lets you attach just the right amount of GPU-powered inference acceleration to any Amazon EC2 instance. This is also available for Amazon SageMaker notebook instances and endpoints, bringing acceleration to built-in algorithms and to deep learning environments. In this blog post, I show how to use the models in the ONNX Model Zoo on GitHub to perform inference by using MXNet with Elastic Inference Accelerator (EIA) as a backend. Amazon Elastic Inference allows you to attach low-cost GPU-powered acceleration to Amazon EC2 and Amazon SageMaker instances to reduce the cost of running deep learning inference by up to 75 percent. Amazon Elastic Inference provides support for Apache MXNet, TensorFlow, and ONNX models.


Reinforcement learning - OpenAi Gym - AiCAN

#artificialintelligence

Reinforcement learning is recently one of the potential research field of data scientists, it makes feasible to outdo processes what we have so far, and makes imaginable to reach the so called artificial general intelligence (AGI). In our previous blog we described and made the theory of reinforcement learning familiar to you. This following blog requires the knowledge of it and introduces the process basics of reinforcement learning through a practical example. We have to mention OpenAi, they are one of the lead researchers on the reinforcement learning field and on the artificial general intelligence topic. They developed a toolkit called Gym which is a free and easy to use tool to the artificial intelligence community.


Breast cancer classification with Keras and Deep Learning - PyImageSearch

#artificialintelligence

In this tutorial, you will learn how to train a Keras deep learning model to predict breast cancer in breast histology images. Back 2012-2013 I was working for the National Institutes of Health (NIH) and the National Cancer Institute (NCI) to develop a suite of image processing and machine learning algorithms to automatically analyze breast histology images for cancer risk factors, a task that took trained pathologists hours to complete. Back then deep learning was not as popular and "mainstream" as it is now. For example, the ImageNet image classification challenge had only launched in 2009 and it wasn't until 2012 that Alex Krizhevsky, Ilya Sutskever, and Geoffrey Hinton won the competition with the now infamous AlexNet architecture. To analyze the cellular structures in the breast histology images we were instead leveraging basic computer vision and image processing algorithms, but combining them in a novel way. These algorithms worked really well -- but also required quite a bit of work to put together.


New AI Generates Freakishly Realistic People Who Don't Actually Exist

#artificialintelligence

At first glance, the two rows of portraits at the top of this article just look like a bunch of average-looking people. The catch is, none of them exist. All of these faces are fakes, put together by artificial intelligence. To be more precise, these faces are created by a generative adversarial network (GAN) developed by Nvidia, using deep learning techniques to produce realistic portraits out of a database of existing photos. Head over to the This Person Does Not Exist website to see for yourself: every time you refresh the page, you get a new face.


Website uses artificial intelligence to generate realistic human faces from scratch - National

#artificialintelligence

Every time a visitor to the website, ThisPersonDoesNotExist, reloads the page, an algorithm generates a lifelike human face - one that doesn't actually belong to anyone. A software developer has developed an artificial intelligence-powered website which generates a different face from scratch each time you refresh your browser. Every time a visitor to the website, ThisPersonDoesNotExist, reloads the page, an algorithm generates a lifelike human face – one that doesn't actually belong to anyone. The technology was developed by Uber software developer and website creator Phillip Wang, who told Digital Trends that the idea for the project began in 2014 during a conversation with Google deep learning research scientist Ian Goodfellow. Goodfellow introduced the concept of a generative adversarial network (GAN) to produce the images.


Sentiment Classification with Natural Language Processing on LSTM

#artificialintelligence

LSA itself is an unsupervised way of uncovering synonyms in a collection of documents.To start, we take a look how Latent Semantic Analysis is used in Natural Language Processing to analyze relationships between a set of documents and the terms that they contain. Then we go steps further to analyze and classify sentiment. We will review Chi Squared for feature selection along the way. We will use Recurrent Neural Networks, and in particular LSTMs, to perform sentiment analysis in Keras. Since, text is the most unstructured form of all the available data, various types of noise are present in it and the data is not readily analyzable without any pre-processing.