SPE
Google wants to find the art in artificial intelligence (Wired UK)
Google is launching a new project to see whether artificial intelligence can create art. In a talk at Moogfest, a US technology festival, Google researcher Douglas Eck described a project that would seek to understand whether or not a computer can create art. Magenta, which will launch in early June, is part of Google Brain, the company's deep learning research. Eck said the project was in part inspired by DeepDream, an artificial intelligent system trained to find patterns in pictures. "There's a couple of things that got me wanting to form Magenta, and one of them was seeing the completely, frankly, astonishing improvements in the state of the art. And I wanted to demystify this a little bit," said Eck. "The question Magenta asks is, 'Can machines make music and art? If not, why not?'," he said.
Machine Learning Works Great--Mathematicians Just Don't Know Why
At a dinner I attended some years ago, the distinguished differential geometer Eugenio Calabi volunteered to me his tongue-in-cheek distinction between pure and applied mathematicians. A pure mathematician, when stuck on the problem under study, often decides to narrow the problem further and so avoid the obstruction. An applied mathematician interprets being stuck as an indication that it is time to learn more mathematics and find better tools. I have always loved this point of view; it explains how applied mathematicians will always need to make use of the new concepts and structures that are constantly being developed in more foundational mathematics. This is particularly evident today in the ongoing effort to understand "big data"--data sets that are too large or complex to be understood using traditional data-processing techniques.
Question about how do people train their networks. • /r/MachineLearning
I am not relatively new to machine learning, I work with relatively small datasets by using R and Python and it worked pretty well for me, but I am trying to move to a higher level with relatively more complex networks and datasets on my MacBook and I've never be able to wait for the results. I am not a hardware guy so this apparently is a pain in my butt and I need so advices. My laptop uses Intel Iris GPU so when I used tensorflow I could not use CUDA to accelerate my GPU. I searched online and unfortunately I didn't find any helpful information to help to to solve this problem. How do you train your networks?
Artificial intelligence: Getting as good as the real thing
Like electricity transformed everything we do, artificial intelligence will reshape our world. AI, essentially intelligent machines, could change industries from retail to finance to transportation. That will change our lives, said a panel of experts Monday discussing "The State of AI" at the EmTech Digital Conference in San Francisco. And just how all companies use the Internet, they may need to start expanding their data teams. Three of the biggest experts in artificial intelligence, Andrew Ng, Peter Norvig and Oren Etzioni, say despite its recent boom, AI still has a long way to go.
Facebook ditches Bing, 800M users now see its own AI text translations
Machine learning is accomplishing Facebook's mission of connecting the world across language barriers. Facebook is now serving 2 billion text translations per day. Facebook can translate across 40 languages in 1,800 directions, like French to English. And 800 million users, almost half of all Facebook users, see translations each month. That's all based on Facebook's own machine learning translation system.
Everything Google announced at I/O 2016
Developers and press gathered today at the Shoreline Amphitheater in Mountain View, California, for the annual ritual known as Google I/O. Are you ready for a Google overdose? Here's everything the company announced during its most important event of the year: Google launched its latest Android N developer preview today -- the first one to receive "beta-quality" status. Developers can start testing their apps for this release by downloading the new preview here. The factory images should arrive shortly for the following supported devices: Nexus 5X, Nexus 6, Nexus 6P, Nexus 9, Nexus 9 LTE, Nexus Player, General Mobile 4G, and Pixel C. Remember the rumor suggesting Google may use an online poll to name Android N? Well, it turns the rumor was half-correct: It's more of a suggestion box than a poll. Google wants to hear your what you've got at android.com/n.
Using Machine Learning to Enhance the Customer Experience
Thanks to machine learning, the page you see when you log-on to Amazon.com is likely very different from the one I see. Advertising, product recommendations, and special deals are all tailored to our unique customer profiles based on historical browsing trends and buying behavior. Online retailers like Amazon were among the first users of customer data collection and analysis for improving services and personalizing the shopping experience, and they've become so skilled some sites might even be able to predict what we will purchase before we even know what we're looking for. Advancements in digital technologies have driven a paradigm shift in the way businesses interact with their customers, with touchpoints increasingly moving to digital mediums. Because of the limited opportunities to satisfy customers on a person-to-person level, machine learning is now in widespread use by a variety of modern enterprises as a way to enrich customer experiences, create more personalized and customer-centric interactions, and offer seamless omnichannel communications. Machine learning goes a step beyond Big Data analytics, where machines employ advanced algorithms to autonomously adapt and learn from previous experiences, and therefore emulate the thought process behind human decision-making.
Develop Your First Neural Network in Python With Keras Step-By-Step
Keras is a powerful easy-to-use Python library for developing and evaluating deep learning models. It wraps the efficient numerical computation libraries Theano and TensorFlow and allows you to define and train neural network models in a few short lines of code. In this post you will discover how to create your first neural network model in Python using Keras. Develop Your First Neural Network in Python With Keras Step-By-Step Photo by Phil Whitehouse, some rights reserved. There is not a lot of code required, but we are going to step over it slowly so that you will know how to create your own models in the future.
Joel Grus – Fizz Buzz in Tensorflow
Do you need a break? And are you OK with writing code on the whiteboard? So let's start with some standard imports: So, now let's talk models. I'm thinking a simple multi-layer-perceptron with one hidden layer. We want the input to be a number, and the output to be the correct "fizzbuzz" representation of that number.