Newsletter Subject

This Is What Artificial Intelligence Is.

From

jamesaltucher.com

Email Address

james@jamesaltucher.com

Sent On

Wed, Aug 22, 2018 06:55 PM

Email Preheader Text

And it’s NOT what you think… August 22, 2018 | Just days ago… Reader Bob D. — an

And it’s NOT what you think… August 22, 2018 [WEBSITE]( | [UNSUBSCRIBE]( [Altucher Confidential] “Everyone is afraid AI will suddenly wake up, get upset and take over the world.” [ALTTAG] This Is What Artificial Intelligence Is. And It’s NOT What You Think… By James Altucher Who Else Wants a Chance at $36,000 Cash? [Man who may collect $36K]( Just days ago… Reader Bob D. — and many others — took me up on a bizarre offer. I pledged to show him and everybody else… How to pocket a minimum of $36,000 cash… While barely lifting a mouse-clicking finger. [I’ll make you the same pledge — click here for details.]( There’s a catch — you have until midnight Sunday to accept[this deal.]( Stop it. Artificial intelligence is not “intelligence”. And it’s not “artificial consciousness”. Everyone is afraid that AI will suddenly wake up, get upset and take over the world. Or that AI will wake up and take all of our jobs. This will happen. But without the “wake up” part. Below I describe what real AI is. Then, if you are at a cocktail party and someone says, “But what if robots are intelligent?” You can argue with facts, mixed with a little bit of alcohol. A) STATISTICS Statistics is at the heart of most AI programs. Just like statistics is at the heart of a lot of human decision making. For instance, if you see clouds in the sky, your brain thinks: “Hmmm, the last 100 times I saw clouds this dark, it usually meant it was about to rain”. When you think like that, you are using statistics to make the decision: “I should probably go inside now.” I’ll give an AI example: Siri or Alexa. How does Alexa understand the words you just said? In 1989 I was visiting Carnegie Mellon to decide if I would go to graduate school there. One of the graduate students, Kai-Fu-Lee (now one of the most famous investors in the world and I would check out his excellent recent TED talk on AI) showed me what he was working on: It was speech recognition for the 60 or so commands that might happen on a Navy battleship (10 guesses as to who was funding his project). When you say the word “Fire!” a sound wave is created. When you say the word “Hello” a sound wave that looks different is created. If 100 people say “Fire” and 100 people say “Hello”, all of those sounds waves are stored in a database. Now, if a brand-new person says “Hello” the computer program needs to determine if that person said “Hello” or “Fire”. There might be 10 different attributes of every sound wave. It breaks the new person’s sound wave into those 10 attributes. Then it compares that “vector” of 10 attributes with all of the vectors in its database for “Hello” and “Fire!” It uses a statistical technique called “Hidden Markov Analysis” to determine if the sound wave is more like the “Hello”s in the database or more like the “Fire!”s in the database. Then it says to itself, “This guy said ‘Hello’.” It then has a line of code that says, “If someone says ‘Hello’ then say ‘Hello’ back.” Additionally, it adds your “Hello” to its database. Your “Hello” might be slightly different than the other 100 “Hello”s so it just learned a new way to say “Hello”. That gives it greater ability in the future to recognize the word “Hello”. In other words, it “learned”. So it used statistics to hear you, code to respond to you and database technology to learn. There’s no real intelligence there, but it feels like its intelligence. Multiply that by 30 years and millions of patterns and computers a million times faster and you have Alexa and Siri in today’s kitchens. Ask “Siri” what gender it is. B) EVALUATION FUNCTION I just mentioned language recognition. But how does a self-driving car work? Every second it has to make a decision. Does it move forward? Does it brake? Does it swerve to avoid an accident? Does it turn left? How does it get from point A to point B? 1. Google Maps. – Using GPS it knows where it is. And it puts itself on Google Maps. 2. List all of the possible routes. This is a “hard” problem in the mathematical sense. (There’s no way for it to guess the fastest route. It has to list each route and then sort by the shortest.) But now computers are so fast that what would normally be a slow decision (drive me from this corner in Piscataway, New Jersey to the capital building of Sacramento, California) now just takes seconds. 3. Waze. Use Waze to eliminate the routes with too much traffic. 4. Start driving. 5. Statistics: Every microsecond it uses statistics to see if there is blank space or an object that must be avoided or a traffic sign that must be followed. 6. Decide what to do according to the code. For each traffic sign, it has code that tells it what to do. (If a sign says “Stop” it stops for a second, and uses statistics to see if any traffic is happening on its sides. Radar and cameras provide the images.) If there is a person standing in front of it, it might just stop. If there’s traffic it didn’t expect, it might trigger the program to re-route. If it’s blank space, it will just keep going. If there’s a baby crossing the street and it has to swerve to avoid hitting it, but if swerving will cause the car to hit a truck, killing the passenger in the car, then the “AI” of the car is dependent on the ethical decisions of the programmer of the car. In other words, in every situation it determines its options, then uses an “evaluation function” programmed by a coder to determine which option has the most successful outcome (move the trip forward, don’t kill anyone). Eventually the evaluation function will NOT be programmed by a human coder. Instead, through thousands of experiences of other self-driving cars, the experiences plus the outcomes will all be put into a central database. When a new experience is encountered, the code will look up that experience in the database and the database will spit back the best possible outcome. The code will learn statistically what the best outcomes are of each possible decision and change the code accordingly and send updates to all self-driving cars. C) TREES The hardest game in the world is a board game called Go. With chess, if a computer can evaluate a billion possibilities a second, it can be a world champion level player. But a Go game can involve trillions of possibilities. How did Google make a program, Deep Go, to beat the world’s best Go player? This was thought to be impossible. And yet Google did it. For any game, a computer program first builds a tree of possibilities. Much like a human would. A human thinks: “If I make this move in checkers, my opponent might respond with A, B or C and then I can do D, E or F and then my opponent can do G, H, I if I do D, or it can do J, K, L if I do E and I’m never going to do F.” A computer doesn’t select as well as a human so it builds the FULL tree. Meaning, what are ALL of the possible moves it can do, what are ALL of the possible responses of my opponent, etc. And then it uses a programmed evaluation function to look at the leaves of the tree it built. Whichever move results in the best leaf of the tree (as determined by the evaluation function) then that is the move it makes. That’s how computer chess worked for decades. I’ll get to the secret sauce in a second for how computers conquered chess. And then after that I’ll describe how computers miraculously conquered Go. It’s only a miracle until science can explain it. It’s only “intelligence” until it can be coded by a programmer. D) HARDWARE Everybody thought for decades (including many Nobel Prize winners) that the best computer chess programs would be developed when scientists encoded the knowledge of the best chess players in the world into the evaluation function. How does the world champion value a position instead of a weak player? This turned out to be wrong. The MORE code in the evaluation function (i.e. the “smarter” the evaluation function was from a human perspective) the SLOWER the program. Which meant a smaller tree would be built, which meant less possibilities would be analyzed. What really allowed the programmers at IBM to build “Deep Blue” (which beat Garry Kasparov in 1997) were two things. Both related to hardware: 1. Computers got faster. 2. First the creators of Deep Blue developed software. But then they made the software into hardware, building the logic right into the hardware infrastructure of the computer. Making the program 100x faster than it would have been. And finally, they made the evaluation function STUPID in order to use less code so the hardware could value more positions. Then, before anyone caught on to their “artificial intelligence” they retired Deep Blue right after it beat the World Champion of chess. As hardware gets faster, artificial intelligence gets “smarter”. INTERLUDE What I just described is all the basics. You can stop now. The rest of artificial intelligence is simply combining the basics to make more advanced techniques. Amazon To “Set Fire” To Bitcoin? [Bitcoin computer guy]( If you're investing in Bitcoin or other cryptocurrencies… [You MUST click here and see this shocking information.]( Because if Amazon makes this move (like the rumors suggest), it will be too late for anyone to act. [Click here for details.]( E) STATISTICS + TREES Remember the TREE from computer gaming? And STATISTICS from speech recognition? Now let’s go to the impossible game of Go. Google developed the program “AlphaGo” to win at Go when everyone else thought it would take another 20-50 years. First, remember Kai-Fu Lee who worked on speech recognition? Who later developed Apple’s first attempts at speech recognition in the ’90s? At one point in his grad student days, he was getting tired of navy battleship commands (as one does) and decided to focus on building a program to play Othello. He ended up building the world champion of Othello. He took a lot of games, let’s say a million, and put them in a database. And each position from each game he would label “winning” (if it was a position on the winning side) or “losing” in a massive database. He would identify several attributes of each position (how many white pieces versus black pieces, how many corners were controlled, how many pieces were on the sides, etc.). Now, if the computer was playing a brand new game, it would determine all the attributes of that position, then use Hidden Markov Analysis (remember: speech recognition) to match that position to the database. If the position pattern-matched a “winning position” then it would make the move that would lead to that winning position. If it matched a “losing position” it would not make that move. That program became the world champion of Othello. AlphaGo took it one step further. It put in the positions of millions of Go positions and did the same sort of breakdown. It used faster hardware to speed up the process. Then, once it became pretty good at Go, it played BILLIONS of games against ITSELF to put many BILLIONS of new positions into the database. In other words, it “learned”. Now it was ready to play Go. It crushed the world champion That’s basically it. That’s all of artificial intelligence. Let’s say a bank wanted to fire all of the employees in charge of lending. And replace them with artificial intelligence. How would the bank lend money? Well, there are hundreds of millions of loans already out there. And for each person who has ever borrowed money I know: - Their age - Where they grew up - What their job is, if they are married - If they are divorced, if they have kids - How often they move, how they have done on prior loans like this I even know what they buy on Amazon and how often they fly to Las Vegas. I can put all these vectors in a database and divide them into people “most likely to pay back the loan” and people “most likely to default”. Then, just like speech recognition or the Othello program above, I can use statistics to determine who I should loan money to. And if I say “no”, I don’t have to explain. On to the next one! Let’s say I want to fight terrorists. I already have examples of many terrorists who trained in the U.S. and then went on to perform or attempt acts of terror. I know everything about their bank accounts. How often they transferred money. How often they traveled. How often they took out cash versus using a debit card. And so on. I can build a vector of attributes of what a terrorist bank account looks like. Then I can match new people against that database of vectors of terrorists. Believe me, every time you do a bank transfer, some AI program is out there trying to determine if you are a terrorist. This is all that AI is. It is nothing more. It’s not “intelligent” from a human sense. It’s not conscious, nor will it ever be. Here’s how AI has improved in the past 40 years (and how it will improve the next 40): - statistics has gotten better - Methods of building the trees have gotten better (this was the subject of some of my research when I was in graduate school) - Hardware has gotten faster - More data is available about everything. What is changing the fastest is data. The land grab of modern society is not land, or gold, or oil. It’s data. I have been invested in many companies that collect and sell data. I was an early investor (and on the board of) bit.ly, as an example. Bit.ly accounts for about 2-5% of all internet traffic. Believe me when I say, data-driven companies know how many strawberries you ate last summer. And right now that data is used mostly to target you for ads about sneakers. Or politics. But this is AI 1.0. Soon that data will be used to target your every movement, your every want, your every need. Amazon Prime won’t be about delivering you what you want tomorrow. Amazon Prime Plus will be about delivering you what you want yesterday. Police 2.0 will be like the movie Minority Report. And the middle class, which has worked loyally for corporations for 150 years, will soon become the useless class. Even art and music will be driven by AI that studies the neurochemical responses to music you like and music you don’t like. And then composes accordingly. Where will humans still be unique? I don’t know. Ask the humans with AI implants that enhance their brains so when they look at you they know exactly what answers will make you happy. Sincerely, [James Altucher] James Altucher P.S. Have you checked out this podcast yet? [“What Character Are You Portraying?”]( with Rob Corddry Simply click the image below… [Screenshot from James' podcast]( Secret Penny Stock Formula Revealed For First Time… [[[ BREAKING NEWS ]]] [Man holding giant check]( How many chances do you think you could’ve had in 2017 to double your money (or more) with this secret penny stock formula? (HINT: 78% guess too low.) [A.) 79]( [B.) 93]( [C.) 148]( This secret penny stock formula could’ve given you the chance to turn a small sum into $2.316 million for you this year. [See the right answer here]( and find out how a shy recluse in Maryland stumbled on this secret formula. Using this formula’s easy. Anyone can do it. [Now, it’s all yours](. Add james@jamesaltucher.com to your address book: [Whitelist us]( Additional Articles & Commentary: [The James Altucher Website]( Join the conversation! Follow me on social media: [Facebook]( [LinkedIn]( [Twitter]( [instagram]( [Read & comment on site]( ["The James Altucher Show" on iTunes]( Since I launched my top-10 rated podcast back in 2014, it has more than 200,000 listeners and has gotten more than 12 million downloads. [Listen and subscribe on iTunes]( Altucher Confidential is committed to protecting and respecting your privacy. We do not rent or share your email address. By submitting your email address, you consent to Choose Yourself Financial delivering daily email issues and advertisements. To end your Altucher Confidential e-mail subscription and associated external offers sent from Altucher Confidential, feel free to [click here](. Please read our [Privacy Statement](. For any further comments or concerns please [contact us here.]( If you are you having trouble receiving your Altucher Confidential subscription, you can ensure its arrival in your mailbox [by whitelisting Altucher Confidential](. © 2018 Choose Yourself Financial, LLC. 808 Saint Paul Street, Baltimore MD 21202. Although our employees may answer your general customer service questions, they are not licensed under securities laws to address your particular investment situation. No communication by our employees to you should be deemed as personalized financial advice. We expressly forbid our writers from having a financial interest in any security they personally recommend to our readers. All of our employees and agents must wait 24 hours after on-line publication or 72 hours after the mailing of a printed-only publication prior to following an initial recommendation. Any investments recommended in this letter should be made only after consulting with your investment advisor and only after reviewing the prospectus or financial statements of the company.

EDM Keywords (326)

wrong writers would world working worked words without win went well way want wake vectors vector uses used unique turned turn trying trees tree traveled trained traffic took today thousands thought think terrorist terror tells target take swerving swerve subscribe submitting subject studies street stored stops stop statistics speed sort software sneakers smarter slower sky site siri show shortest share select see security second screenshot science says say said routes route robots right reviewing rest respond respecting research replace rent related recognize ready readers rain puts put protecting prospectus project programmers programmer programmed program process privacy printed possibilities positions position portraying politics point pocket pledged playing person perform people patterns passenger part outcomes othello order options option opponent one oil often object nothing must music move money miracle minimum millions million might meant matched match married makes make mailing mailbox made low lot losing look loan list line likely like licensed letter let lending leaves learned learn launched late land knows knowledge know kids jobs job investing invested intelligent intelligence instance improved improve impossible images image ibm hundreds humans human hit hello heart hear happening happen guess grew gotten gold go gives given give get gender games game future funding front formula following focus fly fire find finally fastest fast explain experiences experience expect examples everything ever evaluate ensure enhance ended end encountered employees eliminate driven double done divorced divide developed determines determined determine details described describe dependent delivering default deemed decision decided decide decades database data dark cryptocurrencies crushed creators created could corporations corner controlled consulting consent conscious computers computer compares company communication committed comments commands collect coder coded code click choose chess checkers checked charge character changing change chance cause catch car buy built builds building build breaks breakdown brake brains board bitcoin beat basics basically avoided avoid available attributes arrival argue anyone answers analyzed amazon already alexa alcohol ai age afraid advertisements ads adds address according accident accept 90s 60 2017 2014 1997 1989

Marketing emails from jamesaltucher.com

View More
Sent On

29/10/2020

Sent On

29/10/2020

Sent On

28/10/2020

Sent On

28/10/2020

Sent On

27/10/2020

Sent On

26/10/2020

Email Content Statistics

Subscribe Now

Subject Line Length

Data shows that subject lines with 6 to 10 words generated 21 percent higher open rate.

Subscribe Now

Average in this category

Subscribe Now

Number of Words

The more words in the content, the more time the user will need to spend reading. Get straight to the point with catchy short phrases and interesting photos and graphics.

Subscribe Now

Average in this category

Subscribe Now

Number of Images

More images or large images might cause the email to load slower. Aim for a balance of words and images.

Subscribe Now

Average in this category

Subscribe Now

Time to Read

Longer reading time requires more attention and patience from users. Aim for short phrases and catchy keywords.

Subscribe Now

Average in this category

Subscribe Now

Predicted open rate

Subscribe Now

Spam Score

Spam score is determined by a large number of checks performed on the content of the email. For the best delivery results, it is advised to lower your spam score as much as possible.

Subscribe Now

Flesch reading score

Flesch reading score measures how complex a text is. The lower the score, the more difficult the text is to read. The Flesch readability score uses the average length of your sentences (measured by the number of words) and the average number of syllables per word in an equation to calculate the reading ease. Text with a very high Flesch reading ease score (about 100) is straightforward and easy to read, with short sentences and no words of more than two syllables. Usually, a reading ease score of 60-70 is considered acceptable/normal for web copy.

Subscribe Now

Technologies

What powers this email? Every email we receive is parsed to determine the sending ESP and any additional email technologies used.

Subscribe Now

Email Size (not include images)

Font Used

No. Font Name
Subscribe Now

Copyright © 2019–2025 SimilarMail.