SlideShare une entreprise Scribd logo
1  sur  29
Disrupting Your Hack
With Artificial Intelligence
Elliot Turner (AlchemyAPI, IBM Watson)
TechCrunch Disrupt SF
Sept 19, 2015
Disrupt SF 2015
Some Background …
(now 70,000+) !
Disrupt SF 2015
Some Background …
He took it pretty well!
Disrupt SF 2015
HAL? Robots? SIRI? Watson?
A.I.? What exactly are we talking about?
Disrupt SF 2015
A.I. = Smarter Applications
Disrupt SF 2015
A.I. = Disrupting Industries
Disrupt SF 2015
A.I. = Increasingly Embedded Everywhere
Monitoring your credit card
transactions for fraud…
Recommending products on
retail websites...
Understanding your voice on
your mobile phone…
Analyzing your tax returns…
Reading your handwriting on
personal checks…
Blocking spam in your inbox…
Disrupt SF 2015
Using A.I. Cloud APIs - No PhD Required
Speech Recognition Machine Translation
Computer Vision Natural Language
Processing
Question Answering Automated Dialog
Vast array of A.I. technologies, one HTTP call away. Even a Raspberry Pi can use it!
Disrupt SF 2015
Watson Developer Cloud
IBM is democratizing “Full Stack A.I.” via the Watson Developer Cloud
Disrupt SF 2015
Building an A.I.- enabled Hack
"Is this
poisonous?"
Example app: "Voice + visual
assistant for hikers in any
country"
Intended use case:
Answer verbal and visual
questions about plants
and animals encountered
on a hike
“Es esta
venenosa?"
Disrupt SF 2015
Cloud APIs provide speech recognition capability to
any network-enabled device, across many different
spoken languages.
What you can do: respond to spoken commands,
transcribe audio and video files, search audio
streams for specific key phrases ...
Moving beyond the keyboard: Speech Recognition
Disrupt SF 2015
Integrating Speech Recognition into your App
● APIs support analyzing audio files or streaming audio data in real-time
● Innovators include IBM Watson, Nuance, Google, and AT&T
● IBM Watson speech API info available at:
○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developerclou
d/speech-to-text.html
Speech recognition example:
curl -k -u “username:password” -X POST --limit-rate 40K 
--header "Content-Type: audio/flac” --header "Transfer-Encoding: chunked" 
--data-binary @audio.flac 
“https://stream.watsonplatform.net/speech-to-
text/api/v1/recognize?continuous=true”
Disrupt SF 2015
{
"results": [
{
"alternatives": [
{
"confidence": 0.8691191673278809,
"transcript": “this is some transcribed speech"
}
Integrating Speech Recognition into your App
curl -k -u “username:password” -X POST --limit-rate 40K 
--header "Content-Type: audio/flac” --header "Transfer-Encoding: chunked" 
--data-binary @audio.flac 
“https://stream.watsonplatform.net/speech-to-
text/api/v1/recognize?continuous=true”
Disrupt SF 2015
Giving machines sight: Computer Vision
Cloud APIs provide the ability to recognize objects
(buildings, cars, ...), logos, and faces contained
within photographs.
What you can do: drive search in your application
with camera-phone images, automatically organize
photo libraries, "visually" index video files, filter
inappropriate content ...
Disrupt SF 2015
Integrating Computer Vision into your App
● APIs tag photos with what they contain, recognize faces, read signs
/product labels, and more
● Innovators include IBM Watson, AlchemyAPI, Google, Baidu, and others
● IBM Watson + AlchemyAPI computer vision API info available at:
○ http://www.alchemyapi.com/products/alchemyvision
○ http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/vi
sual-recognition.html
Computer Vision 1-liner:
curl --data-binary @photo.jpg ”http://access.alchemyapi.com/image/
ImageGetRankedImageKeywords?imagePostMode=raw&apikey="$API_K
EY
Disrupt SF 2015
Integrating Computer Vision into your App
curl --data-binary @photo.jpg "http://access.alchemyapi.com/calls/image/
ImageGetRankedImageKeywords?imagePostMode=raw&knowledgeGrap
h=1&apikey="$API_KEY
"imageKeywords": [
{
"text": "boxing",
"score": "0.970688”,
“knowledgeGraph”: {
“typeHierarchy”: “/activities/sports/boxing”
}
},
{
"text": "sport",
"score": "0.930862",
“knowledgeGraph”: {
“typeHierarchy”: “/activities/sport”
}
}
Disrupt SF 2015
Cloud APIs provide automatic translation of text
across many different languages.
What you can do: automatically translate foreign-
language content for your users, real-time
translation of forum posts or chat sessions, search
within foreign language documents ...
Breaking language barriers: Machine Translation
Disrupt SF 2015
Integrating Machine Translation into your App
● APIs automatically translate between many different languages.
● Innovators include IBM Watson, Google, and Microsoft
● IBM Watson translation API info available here:
○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developerclou
d/language-translation/api/v2/
Language Translation example:
curl -u “username:password“ -H "content-type: plain/text“ -X POST -d "text=Hello world.“
"https://gateway.watsonplatform.net/language-
translation/api/v2/translate?source=en&target=es"
Disrupt SF 2015
Integrating Machine Translation into your App
"translations": [
{
"translatedText": ”Where is my hotel?"
}
]
“¿Dónde está mi
hotel?"
curl -u “username:password“ -H "content-type: plain/text“ -X POST -d "text=¿Dónde está mi hotel?"
"https://gateway.watsonplatform.net/language-translation/api/v2/translate?source=es&target=en"
Disrupt SF 2015
Cloud APIs provide the ability for computers to
derive "meaning" from text (documents, web pages,
tweets, …)
What you can do: tag documents by topic, drive
content recommendation engines, contextually
target advertisements ...
Reading like a Human: Natural Language Processing
Disrupt SF 2015
Integrating Natural Language Processing
into your App
● APIs automatically tag documents, extract facts and events, ...
● Innovators include IBM Watson, AlchemyAPI, Google, and others
● IBM Watson + AlchemyAPI language API info available here:
○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/
services-catalog.html
○ http://www.alchemyapi.com/
Named entity tagging + sentiment analysis 1-liner:
curl "http://access.alchemyapi.com/calls/text/
TextGetRankedNamedEntities?apikey=$API_KEY&sentiment=1&text=Woohoo
+I+am+coming+to+San+Fran!"
Disrupt SF 2015
"language": "english",
"entities": [
{
"type": "City",
"relevance": "0.33",
"sentiment": {
"type": "positive",
"score": "0.325672"
},
"count": "1",
"text": ”San Fran",
"disambiguated": {
"name": ”San Francisco",
"website": "http://www.sfgov.org",
"dbpedia": "http://dbpedia.org/resource/San_Francisco",
"freebase": "http://rdf.freebase.com/ns/m.0d61p"
”Woohoo I am coming to San Fran! #TCDisrupt"
Integrating Natural Language Processing into your App
curl "http://access.alchemyapi.com/calls/text/
TextGetRankedNamedEntities?apikey=$API_KEY&sentiment=1&text=Woohoo
+I+am+coming+to+San+Fran!"
Disrupt SF 2015
Expert in a box: Question Answering
Cloud APIs provide the ability to answer natural
language questions, such as "Who invented the
Segway?"
What you can do: leverage questions like "was this
company acquired?" to trigger processes in data
pipelines or GUI displays, automatically answer
questions from your own corpus of data ...
Disrupt SF 2015
Integrating Question Answering into your App
● APIs automatically answer questions posed in plain language
● Innovators include IBM Watson, AlchemyAPI, Google, and others
● IBM Watson question answering API info available here:
○ https://www.ibmdw.net/watson/docs/
IBM Watson Example API Call JSON:
{
"question":{
"questionText":"His 1983 hit "Beat it" featured Eddie Van Halen on guitar."
}
}
Disrupt SF 2015
Integrating Question Answering into your App
"answers": [
{
"id": 0,
"text": "Michael Jackson",
"confidence": 0.42276
}
{
"question":{
"questionText":"His 1983 hit "Beat it" featured Eddie Van Halen on guitar."
}
}
Disrupt SF 2015
Putting it all together: Sample A.I. App Workflow
Use Watson Speech API to accept speech input
Use Watson Translation API to convert to English
“Es esta venenosa?"
"Is this poisonous?"
Take a picture of the item the question is about
Use AlchemyVision API to interpret the photograph
"fly agaric"
Use Watson Q&A API to answer the question
Is this poisonous + fly
agaric
Example app: "Voice + visual assistant for international hikers"
Disrupt SF 2015
Getting Started: Watson + Alchemy Resources
Sign up for Bluemix (Get API keys!)
https://console.ng.bluemix.net/registration/
GitHub (Sample code!)
Watson: https://github.com/watson-developer-cloud
AlchemyAPI: https://github.com/AlchemyAPI
App Gallery (Get inspired!)
http://devpost.com/software/built-with/ibm-watson
Ask for help! Just look for someone wearing a Watson shirt.
Disrupt SF 2015
Hackathons: Where great ideas are born!
• I’ve been sponsoring and judging hackathons for the past 5
years
• Seen multiple teams raise funding, build companies, have
successful exits
• We hold internal hackathons monthly and frequently see
innovations pushed into production
• If your startup isn’t doing internal hackathons yet – get going!
They’re *awesome*
Let’s go build something amazing. Change the world. Use A.I. to make it happen!
Disrupt SF 2015
Thanks for listening! Questions ?
Elliot Turner
Director of Alchemy, IBM Watson
CEO & Founder, AlchemyAPI
eturner@us.ibm.com

Contenu connexe

Tendances

Watson API Use Case Demos for the Nittany Watson Challenge
Watson API Use Case Demos for the Nittany Watson ChallengeWatson API Use Case Demos for the Nittany Watson Challenge
Watson API Use Case Demos for the Nittany Watson ChallengePenn State EdTech Network
 
IBM Verse - Presentation
IBM Verse - PresentationIBM Verse - Presentation
IBM Verse - PresentationJonas Rudbeck
 
iPhone Developer_ankush
iPhone Developer_ankushiPhone Developer_ankush
iPhone Developer_ankushankush Ankush
 
Wdc tech talk cooper hackathon 2015
Wdc tech talk cooper hackathon 2015Wdc tech talk cooper hackathon 2015
Wdc tech talk cooper hackathon 2015IBM
 
Microsoft student partners fy14 reruitment
Microsoft student partners fy14 reruitmentMicrosoft student partners fy14 reruitment
Microsoft student partners fy14 reruitmentNiket Chandrawanshi
 
Impact Of The Cloud For IT Managers
Impact Of The Cloud For IT ManagersImpact Of The Cloud For IT Managers
Impact Of The Cloud For IT ManagersSimon Guest
 
What the App? : A Modernization Strategy for Your Business Applications
What the App? : A Modernization Strategy for Your Business ApplicationsWhat the App? : A Modernization Strategy for Your Business Applications
What the App? : A Modernization Strategy for Your Business ApplicationsJohn Head
 
Inside Networks Article May 2013
Inside Networks Article May 2013Inside Networks Article May 2013
Inside Networks Article May 2013Ian Moyse ☁
 
Ten Things Every Tech Savvy Exec Should Know
Ten Things Every Tech Savvy Exec Should KnowTen Things Every Tech Savvy Exec Should Know
Ten Things Every Tech Savvy Exec Should KnowDeltinaU
 
Access Your Desktop Anywhere, Anytime with Amazon WorkSpaces
Access Your Desktop Anywhere, Anytime with Amazon WorkSpacesAccess Your Desktop Anywhere, Anytime with Amazon WorkSpaces
Access Your Desktop Anywhere, Anytime with Amazon WorkSpacesTechSoup
 
Rapid e-Learning : The Emperor’s New Clothes?
Rapid e-Learning : The Emperor’s New Clothes?Rapid e-Learning : The Emperor’s New Clothes?
Rapid e-Learning : The Emperor’s New Clothes?Saffron Interactive
 
Builder: A human-assisted AI platform that lets you build, run, and scale sof...
Builder: A human-assisted AI platform that lets you build, run, and scale sof...Builder: A human-assisted AI platform that lets you build, run, and scale sof...
Builder: A human-assisted AI platform that lets you build, run, and scale sof...Amazon Web Services
 
Scaling LinkedIn - A Brief History
Scaling LinkedIn - A Brief HistoryScaling LinkedIn - A Brief History
Scaling LinkedIn - A Brief HistoryJosh Clemm
 
1129 Going mobile with ibm verse
1129  Going mobile with ibm verse1129  Going mobile with ibm verse
1129 Going mobile with ibm verseStijn Van Herzele
 
Microservices Workshop - Craft Conference
Microservices Workshop - Craft ConferenceMicroservices Workshop - Craft Conference
Microservices Workshop - Craft ConferenceAdrian Cockcroft
 
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...Richard Harbridge
 
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...Daniel Zivkovic
 

Tendances (20)

IBM Watson Overview
IBM Watson OverviewIBM Watson Overview
IBM Watson Overview
 
Watson API Use Case Demos for the Nittany Watson Challenge
Watson API Use Case Demos for the Nittany Watson ChallengeWatson API Use Case Demos for the Nittany Watson Challenge
Watson API Use Case Demos for the Nittany Watson Challenge
 
IBM Verse - Presentation
IBM Verse - PresentationIBM Verse - Presentation
IBM Verse - Presentation
 
iPhone Developer_ankush
iPhone Developer_ankushiPhone Developer_ankush
iPhone Developer_ankush
 
Wdc tech talk cooper hackathon 2015
Wdc tech talk cooper hackathon 2015Wdc tech talk cooper hackathon 2015
Wdc tech talk cooper hackathon 2015
 
Microsoft student partners fy14 reruitment
Microsoft student partners fy14 reruitmentMicrosoft student partners fy14 reruitment
Microsoft student partners fy14 reruitment
 
Impact Of The Cloud For IT Managers
Impact Of The Cloud For IT ManagersImpact Of The Cloud For IT Managers
Impact Of The Cloud For IT Managers
 
What the App? : A Modernization Strategy for Your Business Applications
What the App? : A Modernization Strategy for Your Business ApplicationsWhat the App? : A Modernization Strategy for Your Business Applications
What the App? : A Modernization Strategy for Your Business Applications
 
Inside Networks Article May 2013
Inside Networks Article May 2013Inside Networks Article May 2013
Inside Networks Article May 2013
 
Ten Things Every Tech Savvy Exec Should Know
Ten Things Every Tech Savvy Exec Should KnowTen Things Every Tech Savvy Exec Should Know
Ten Things Every Tech Savvy Exec Should Know
 
Access Your Desktop Anywhere, Anytime with Amazon WorkSpaces
Access Your Desktop Anywhere, Anytime with Amazon WorkSpacesAccess Your Desktop Anywhere, Anytime with Amazon WorkSpaces
Access Your Desktop Anywhere, Anytime with Amazon WorkSpaces
 
Rapid e-Learning : The Emperor’s New Clothes?
Rapid e-Learning : The Emperor’s New Clothes?Rapid e-Learning : The Emperor’s New Clothes?
Rapid e-Learning : The Emperor’s New Clothes?
 
Builder: A human-assisted AI platform that lets you build, run, and scale sof...
Builder: A human-assisted AI platform that lets you build, run, and scale sof...Builder: A human-assisted AI platform that lets you build, run, and scale sof...
Builder: A human-assisted AI platform that lets you build, run, and scale sof...
 
Scaling LinkedIn - A Brief History
Scaling LinkedIn - A Brief HistoryScaling LinkedIn - A Brief History
Scaling LinkedIn - A Brief History
 
1129 Going mobile with ibm verse
1129  Going mobile with ibm verse1129  Going mobile with ibm verse
1129 Going mobile with ibm verse
 
Microservices Workshop - Craft Conference
Microservices Workshop - Craft ConferenceMicroservices Workshop - Craft Conference
Microservices Workshop - Craft Conference
 
Smart Housekeeping Apps
Smart Housekeeping AppsSmart Housekeeping Apps
Smart Housekeeping Apps
 
A plumber's guide to SaaS
A plumber's guide to SaaSA plumber's guide to SaaS
A plumber's guide to SaaS
 
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...
Is Your SharePoint Healthy? What's The Right Prescription? - SharePoint Sympo...
 
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...
Building a Data Cloud to enable Analytics & AI-Driven Innovation - Lak Lakshm...
 

En vedette

Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...
Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...
Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...IBM France Lab
 
IBM an Era of new computing
IBM an Era of new computingIBM an Era of new computing
IBM an Era of new computingShane McCaul
 
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...Dataconomy Media
 
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...IBM Watson
 
IBM Watson Innovation Day Boston
IBM Watson Innovation Day BostonIBM Watson Innovation Day Boston
IBM Watson Innovation Day BostonIBM Watson
 
IBM Watson Health: How cognitive technologies have begun transforming clinica...
IBM Watson Health: How cognitive technologies have begun transforming clinica...IBM Watson Health: How cognitive technologies have begun transforming clinica...
IBM Watson Health: How cognitive technologies have begun transforming clinica...Maged N. Kamel Boulos
 
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...IBM Watson
 
Building with Watson - Serverless Chatbots with PubNub and Conversation
Building with Watson - Serverless Chatbots with PubNub and ConversationBuilding with Watson - Serverless Chatbots with PubNub and Conversation
Building with Watson - Serverless Chatbots with PubNub and ConversationIBM Watson
 
IBM Watson Analytics Presentation
IBM Watson Analytics PresentationIBM Watson Analytics Presentation
IBM Watson Analytics PresentationIan Balina
 

En vedette (9)

Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...
Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...
Bluemix Paris Meetup- #10 - Développer des applications cognitives avec IBM ...
 
IBM an Era of new computing
IBM an Era of new computingIBM an Era of new computing
IBM an Era of new computing
 
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...
Ajit Jaokar, Data Science for IoT professor at Oxford University “Enterprise ...
 
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...
Watson DevCon 2016 - The Flu Fighters: Using IBM Cognitive Computing to Fight...
 
IBM Watson Innovation Day Boston
IBM Watson Innovation Day BostonIBM Watson Innovation Day Boston
IBM Watson Innovation Day Boston
 
IBM Watson Health: How cognitive technologies have begun transforming clinica...
IBM Watson Health: How cognitive technologies have begun transforming clinica...IBM Watson Health: How cognitive technologies have begun transforming clinica...
IBM Watson Health: How cognitive technologies have begun transforming clinica...
 
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...
Watson DevCon 2016: Myca - My Career Advisor: Providing Individualized Career...
 
Building with Watson - Serverless Chatbots with PubNub and Conversation
Building with Watson - Serverless Chatbots with PubNub and ConversationBuilding with Watson - Serverless Chatbots with PubNub and Conversation
Building with Watson - Serverless Chatbots with PubNub and Conversation
 
IBM Watson Analytics Presentation
IBM Watson Analytics PresentationIBM Watson Analytics Presentation
IBM Watson Analytics Presentation
 

Similaire à Disrupting Your Hack With AI

apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...
apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...
apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...apidays
 
API Design in the Age of Bots, IoT, and Voice
API Design in the Age of Bots, IoT, and VoiceAPI Design in the Age of Bots, IoT, and Voice
API Design in the Age of Bots, IoT, and VoiceLaunchAny
 
⛳️ Votre API passe-t-elle le contrôle technique ?
⛳️ Votre API passe-t-elle le contrôle technique ?⛳️ Votre API passe-t-elle le contrôle technique ?
⛳️ Votre API passe-t-elle le contrôle technique ?François-Guillaume Ribreau
 
$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki
$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki
$10,000 Phantom App & Playbook Contest - F5 and Cisco MerakiJoel W. King
 
Firefox OS - A (web) developers dream - muxCamp 2014
Firefox OS - A (web) developers dream - muxCamp 2014Firefox OS - A (web) developers dream - muxCamp 2014
Firefox OS - A (web) developers dream - muxCamp 2014Carsten Sandtner
 
Andriy Vandakurov about "Frontend. Global domination"
Andriy Vandakurov about  "Frontend. Global domination" Andriy Vandakurov about  "Frontend. Global domination"
Andriy Vandakurov about "Frontend. Global domination" Pivorak MeetUp
 
BLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitBLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitRené Winkelmeyer
 
Chaos engineering applied
Chaos engineering appliedChaos engineering applied
Chaos engineering appliedRamon Anger
 
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS Amplify
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS AmplifyTake Mobile and Web Apps to the Next Level with AWS AppSync and AWS Amplify
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS AmplifyAmazon Web Services
 
The Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTThe Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTBruno Kessler Foundation
 
Open Event API
Open Event APIOpen Event API
Open Event APIAvi Aryan
 
(Christian heilman) firefox
(Christian heilman) firefox(Christian heilman) firefox
(Christian heilman) firefoxNAVER D2
 
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...André Goliath
 
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt Sharma
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt SharmaGuest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt Sharma
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt SharmaShivamDuttSharma
 
ArcReady - Architecting Modern Distributed Applications
ArcReady -  Architecting Modern Distributed ApplicationsArcReady -  Architecting Modern Distributed Applications
ArcReady - Architecting Modern Distributed ApplicationsMicrosoft ArcReady
 
IBM Bluemix™ Architecture & Deep Dive
IBM Bluemix™ Architecture & Deep DiveIBM Bluemix™ Architecture & Deep Dive
IBM Bluemix™ Architecture & Deep DiveIBM
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaChristian Heilmann
 

Similaire à Disrupting Your Hack With AI (20)

apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...
apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...
apidays LIVE London 2021 - API Horror Stories from an Unnamed Coworking Compa...
 
API Design in the Age of Bots, IoT, and Voice
API Design in the Age of Bots, IoT, and VoiceAPI Design in the Age of Bots, IoT, and Voice
API Design in the Age of Bots, IoT, and Voice
 
⛳️ Votre API passe-t-elle le contrôle technique ?
⛳️ Votre API passe-t-elle le contrôle technique ?⛳️ Votre API passe-t-elle le contrôle technique ?
⛳️ Votre API passe-t-elle le contrôle technique ?
 
$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki
$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki
$10,000 Phantom App & Playbook Contest - F5 and Cisco Meraki
 
Firefox OS - A (web) developers dream - muxCamp 2014
Firefox OS - A (web) developers dream - muxCamp 2014Firefox OS - A (web) developers dream - muxCamp 2014
Firefox OS - A (web) developers dream - muxCamp 2014
 
Andriy Vandakurov about "Frontend. Global domination"
Andriy Vandakurov about  "Frontend. Global domination" Andriy Vandakurov about  "Frontend. Global domination"
Andriy Vandakurov about "Frontend. Global domination"
 
Pivorak.javascript.global domination
Pivorak.javascript.global dominationPivorak.javascript.global domination
Pivorak.javascript.global domination
 
BLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business ToolkitBLUG 2011 - Explaining the IBM Social Business Toolkit
BLUG 2011 - Explaining the IBM Social Business Toolkit
 
Chaos engineering applied
Chaos engineering appliedChaos engineering applied
Chaos engineering applied
 
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS Amplify
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS AmplifyTake Mobile and Web Apps to the Next Level with AWS AppSync and AWS Amplify
Take Mobile and Web Apps to the Next Level with AWS AppSync and AWS Amplify
 
Starwest 2008
Starwest 2008Starwest 2008
Starwest 2008
 
Designing & Building Secure Web APIs
Designing & Building Secure Web APIsDesigning & Building Secure Web APIs
Designing & Building Secure Web APIs
 
The Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTThe Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReST
 
Open Event API
Open Event APIOpen Event API
Open Event API
 
(Christian heilman) firefox
(Christian heilman) firefox(Christian heilman) firefox
(Christian heilman) firefox
 
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...
Von JavaEE auf Microservice in 6 Monaten - The Good, the Bad, and the wtfs...
 
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt Sharma
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt SharmaGuest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt Sharma
Guest Lecture _ Python Basics _ Alexa Skill Dev _ by Shivam Dutt Sharma
 
ArcReady - Architecting Modern Distributed Applications
ArcReady -  Architecting Modern Distributed ApplicationsArcReady -  Architecting Modern Distributed Applications
ArcReady - Architecting Modern Distributed Applications
 
IBM Bluemix™ Architecture & Deep Dive
IBM Bluemix™ Architecture & Deep DiveIBM Bluemix™ Architecture & Deep Dive
IBM Bluemix™ Architecture & Deep Dive
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 

Plus de IBM Watson

Easily Deploy your Chat Bot to Multiple Channels with Stamplay
Easily Deploy your Chat Bot to Multiple Channels with StamplayEasily Deploy your Chat Bot to Multiple Channels with Stamplay
Easily Deploy your Chat Bot to Multiple Channels with StamplayIBM Watson
 
Application Developer Predictions 2017 - It's All About Cognitive
Application Developer Predictions 2017 - It's All About CognitiveApplication Developer Predictions 2017 - It's All About Cognitive
Application Developer Predictions 2017 - It's All About CognitiveIBM Watson
 
Building with Watson - Advanced Integrations with Watson Conversation
Building with Watson - Advanced Integrations with Watson ConversationBuilding with Watson - Advanced Integrations with Watson Conversation
Building with Watson - Advanced Integrations with Watson ConversationIBM Watson
 
Watson Equipment Advisor
Watson Equipment Advisor Watson Equipment Advisor
Watson Equipment Advisor IBM Watson
 
Refinery Advisor
Refinery Advisor Refinery Advisor
Refinery Advisor IBM Watson
 
Cognitive Reservoir Analytics
Cognitive Reservoir Analytics Cognitive Reservoir Analytics
Cognitive Reservoir Analytics IBM Watson
 
Cognitive Overview
Cognitive Overview Cognitive Overview
Cognitive Overview IBM Watson
 
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI Approach
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI ApproachWatson DevCon 2016: Why Audience Intelligence Requires a Modular AI Approach
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI ApproachIBM Watson
 
Watson DevCon 2016 - Watson Beat: Making Music Cognitive
Watson DevCon 2016 - Watson Beat: Making Music CognitiveWatson DevCon 2016 - Watson Beat: Making Music Cognitive
Watson DevCon 2016 - Watson Beat: Making Music CognitiveIBM Watson
 
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...IBM Watson
 
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIs
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIsWatson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIs
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIsIBM Watson
 
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...IBM Watson
 
Watson DevCon 2016 - From Jeopardy! to the Future
Watson DevCon 2016 - From Jeopardy! to the FutureWatson DevCon 2016 - From Jeopardy! to the Future
Watson DevCon 2016 - From Jeopardy! to the FutureIBM Watson
 
Get More From Your Messages with Twilio + Watson Add-Ons
Get More From Your Messages with Twilio + Watson Add-OnsGet More From Your Messages with Twilio + Watson Add-Ons
Get More From Your Messages with Twilio + Watson Add-OnsIBM Watson
 
5 Reasons to Attend the Upcoming Watson Developer Conference
5 Reasons to Attend the Upcoming Watson Developer Conference5 Reasons to Attend the Upcoming Watson Developer Conference
5 Reasons to Attend the Upcoming Watson Developer ConferenceIBM Watson
 
Application Starter Kits for Developers - Building with Watson
Application Starter Kits for Developers - Building with WatsonApplication Starter Kits for Developers - Building with Watson
Application Starter Kits for Developers - Building with WatsonIBM Watson
 
Cognitive Business: Where digital business meets digital intelligence
Cognitive Business: Where digital business meets digital intelligenceCognitive Business: Where digital business meets digital intelligence
Cognitive Business: Where digital business meets digital intelligenceIBM Watson
 
What Does It Mean To Be A Cognitive Company
What Does It Mean To Be  A Cognitive CompanyWhat Does It Mean To Be  A Cognitive Company
What Does It Mean To Be A Cognitive CompanyIBM Watson
 
Custom Image Classifier with Visual Recognition: Building with Watson
Custom Image Classifier with Visual Recognition: Building with Watson Custom Image Classifier with Visual Recognition: Building with Watson
Custom Image Classifier with Visual Recognition: Building with Watson IBM Watson
 
Leading in the Cognitive Age
Leading in the Cognitive AgeLeading in the Cognitive Age
Leading in the Cognitive AgeIBM Watson
 

Plus de IBM Watson (20)

Easily Deploy your Chat Bot to Multiple Channels with Stamplay
Easily Deploy your Chat Bot to Multiple Channels with StamplayEasily Deploy your Chat Bot to Multiple Channels with Stamplay
Easily Deploy your Chat Bot to Multiple Channels with Stamplay
 
Application Developer Predictions 2017 - It's All About Cognitive
Application Developer Predictions 2017 - It's All About CognitiveApplication Developer Predictions 2017 - It's All About Cognitive
Application Developer Predictions 2017 - It's All About Cognitive
 
Building with Watson - Advanced Integrations with Watson Conversation
Building with Watson - Advanced Integrations with Watson ConversationBuilding with Watson - Advanced Integrations with Watson Conversation
Building with Watson - Advanced Integrations with Watson Conversation
 
Watson Equipment Advisor
Watson Equipment Advisor Watson Equipment Advisor
Watson Equipment Advisor
 
Refinery Advisor
Refinery Advisor Refinery Advisor
Refinery Advisor
 
Cognitive Reservoir Analytics
Cognitive Reservoir Analytics Cognitive Reservoir Analytics
Cognitive Reservoir Analytics
 
Cognitive Overview
Cognitive Overview Cognitive Overview
Cognitive Overview
 
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI Approach
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI ApproachWatson DevCon 2016: Why Audience Intelligence Requires a Modular AI Approach
Watson DevCon 2016: Why Audience Intelligence Requires a Modular AI Approach
 
Watson DevCon 2016 - Watson Beat: Making Music Cognitive
Watson DevCon 2016 - Watson Beat: Making Music CognitiveWatson DevCon 2016 - Watson Beat: Making Music Cognitive
Watson DevCon 2016 - Watson Beat: Making Music Cognitive
 
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...
Watson DevCon 2016 - Do More with Less Code: Enriched Communications with Twi...
 
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIs
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIsWatson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIs
Watson DevCon 2016 - The Future of Discovery: Deep Insights with Cognitive APIs
 
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...
Watson DevCon 2016 - Engage and Be Engaging: Building Compassionate and Perso...
 
Watson DevCon 2016 - From Jeopardy! to the Future
Watson DevCon 2016 - From Jeopardy! to the FutureWatson DevCon 2016 - From Jeopardy! to the Future
Watson DevCon 2016 - From Jeopardy! to the Future
 
Get More From Your Messages with Twilio + Watson Add-Ons
Get More From Your Messages with Twilio + Watson Add-OnsGet More From Your Messages with Twilio + Watson Add-Ons
Get More From Your Messages with Twilio + Watson Add-Ons
 
5 Reasons to Attend the Upcoming Watson Developer Conference
5 Reasons to Attend the Upcoming Watson Developer Conference5 Reasons to Attend the Upcoming Watson Developer Conference
5 Reasons to Attend the Upcoming Watson Developer Conference
 
Application Starter Kits for Developers - Building with Watson
Application Starter Kits for Developers - Building with WatsonApplication Starter Kits for Developers - Building with Watson
Application Starter Kits for Developers - Building with Watson
 
Cognitive Business: Where digital business meets digital intelligence
Cognitive Business: Where digital business meets digital intelligenceCognitive Business: Where digital business meets digital intelligence
Cognitive Business: Where digital business meets digital intelligence
 
What Does It Mean To Be A Cognitive Company
What Does It Mean To Be  A Cognitive CompanyWhat Does It Mean To Be  A Cognitive Company
What Does It Mean To Be A Cognitive Company
 
Custom Image Classifier with Visual Recognition: Building with Watson
Custom Image Classifier with Visual Recognition: Building with Watson Custom Image Classifier with Visual Recognition: Building with Watson
Custom Image Classifier with Visual Recognition: Building with Watson
 
Leading in the Cognitive Age
Leading in the Cognitive AgeLeading in the Cognitive Age
Leading in the Cognitive Age
 

Dernier

Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Thomas Poetter
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...ssuserf63bd7
 
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesConf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesTimothy Spann
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一F sss
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanMYRABACSAFRA2
 
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhThiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhYasamin16
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改yuu sss
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Cathrine Wilhelmsen
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPTBoston Institute of Analytics
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Seán Kennedy
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxdolaknnilon
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our WorldEduminds Learning
 
Student Profile Sample report on improving academic performance by uniting gr...
Student Profile Sample report on improving academic performance by uniting gr...Student Profile Sample report on improving academic performance by uniting gr...
Student Profile Sample report on improving academic performance by uniting gr...Seán Kennedy
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queensdataanalyticsqueen03
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max PrincetonTimothy Spann
 

Dernier (20)

Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
 
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
Statistics, Data Analysis, and Decision Modeling, 5th edition by James R. Eva...
 
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesConf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一
办理学位证加利福尼亚大学洛杉矶分校毕业证,UCLA成绩单原版一比一
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population Mean
 
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhhThiophen Mechanism khhjjjjjjjhhhhhhhhhhh
Thiophen Mechanism khhjjjjjjjhhhhhhhhhhh
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)
 
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default  Presentation : Data Analysis Project PPTPredictive Analysis for Loan Default  Presentation : Data Analysis Project PPT
Predictive Analysis for Loan Default Presentation : Data Analysis Project PPT
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
IMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptxIMA MSN - Medical Students Network (2).pptx
IMA MSN - Medical Students Network (2).pptx
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our World
 
Student Profile Sample report on improving academic performance by uniting gr...
Student Profile Sample report on improving academic performance by uniting gr...Student Profile Sample report on improving academic performance by uniting gr...
Student Profile Sample report on improving academic performance by uniting gr...
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queens
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max Princeton
 

Disrupting Your Hack With AI

  • 1. Disrupting Your Hack With Artificial Intelligence Elliot Turner (AlchemyAPI, IBM Watson) TechCrunch Disrupt SF Sept 19, 2015
  • 2. Disrupt SF 2015 Some Background … (now 70,000+) !
  • 3. Disrupt SF 2015 Some Background … He took it pretty well!
  • 4. Disrupt SF 2015 HAL? Robots? SIRI? Watson? A.I.? What exactly are we talking about?
  • 5. Disrupt SF 2015 A.I. = Smarter Applications
  • 6. Disrupt SF 2015 A.I. = Disrupting Industries
  • 7. Disrupt SF 2015 A.I. = Increasingly Embedded Everywhere Monitoring your credit card transactions for fraud… Recommending products on retail websites... Understanding your voice on your mobile phone… Analyzing your tax returns… Reading your handwriting on personal checks… Blocking spam in your inbox…
  • 8. Disrupt SF 2015 Using A.I. Cloud APIs - No PhD Required Speech Recognition Machine Translation Computer Vision Natural Language Processing Question Answering Automated Dialog Vast array of A.I. technologies, one HTTP call away. Even a Raspberry Pi can use it!
  • 9. Disrupt SF 2015 Watson Developer Cloud IBM is democratizing “Full Stack A.I.” via the Watson Developer Cloud
  • 10. Disrupt SF 2015 Building an A.I.- enabled Hack "Is this poisonous?" Example app: "Voice + visual assistant for hikers in any country" Intended use case: Answer verbal and visual questions about plants and animals encountered on a hike “Es esta venenosa?"
  • 11. Disrupt SF 2015 Cloud APIs provide speech recognition capability to any network-enabled device, across many different spoken languages. What you can do: respond to spoken commands, transcribe audio and video files, search audio streams for specific key phrases ... Moving beyond the keyboard: Speech Recognition
  • 12. Disrupt SF 2015 Integrating Speech Recognition into your App ● APIs support analyzing audio files or streaming audio data in real-time ● Innovators include IBM Watson, Nuance, Google, and AT&T ● IBM Watson speech API info available at: ○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developerclou d/speech-to-text.html Speech recognition example: curl -k -u “username:password” -X POST --limit-rate 40K --header "Content-Type: audio/flac” --header "Transfer-Encoding: chunked" --data-binary @audio.flac “https://stream.watsonplatform.net/speech-to- text/api/v1/recognize?continuous=true”
  • 13. Disrupt SF 2015 { "results": [ { "alternatives": [ { "confidence": 0.8691191673278809, "transcript": “this is some transcribed speech" } Integrating Speech Recognition into your App curl -k -u “username:password” -X POST --limit-rate 40K --header "Content-Type: audio/flac” --header "Transfer-Encoding: chunked" --data-binary @audio.flac “https://stream.watsonplatform.net/speech-to- text/api/v1/recognize?continuous=true”
  • 14. Disrupt SF 2015 Giving machines sight: Computer Vision Cloud APIs provide the ability to recognize objects (buildings, cars, ...), logos, and faces contained within photographs. What you can do: drive search in your application with camera-phone images, automatically organize photo libraries, "visually" index video files, filter inappropriate content ...
  • 15. Disrupt SF 2015 Integrating Computer Vision into your App ● APIs tag photos with what they contain, recognize faces, read signs /product labels, and more ● Innovators include IBM Watson, AlchemyAPI, Google, Baidu, and others ● IBM Watson + AlchemyAPI computer vision API info available at: ○ http://www.alchemyapi.com/products/alchemyvision ○ http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/vi sual-recognition.html Computer Vision 1-liner: curl --data-binary @photo.jpg ”http://access.alchemyapi.com/image/ ImageGetRankedImageKeywords?imagePostMode=raw&apikey="$API_K EY
  • 16. Disrupt SF 2015 Integrating Computer Vision into your App curl --data-binary @photo.jpg "http://access.alchemyapi.com/calls/image/ ImageGetRankedImageKeywords?imagePostMode=raw&knowledgeGrap h=1&apikey="$API_KEY "imageKeywords": [ { "text": "boxing", "score": "0.970688”, “knowledgeGraph”: { “typeHierarchy”: “/activities/sports/boxing” } }, { "text": "sport", "score": "0.930862", “knowledgeGraph”: { “typeHierarchy”: “/activities/sport” } }
  • 17. Disrupt SF 2015 Cloud APIs provide automatic translation of text across many different languages. What you can do: automatically translate foreign- language content for your users, real-time translation of forum posts or chat sessions, search within foreign language documents ... Breaking language barriers: Machine Translation
  • 18. Disrupt SF 2015 Integrating Machine Translation into your App ● APIs automatically translate between many different languages. ● Innovators include IBM Watson, Google, and Microsoft ● IBM Watson translation API info available here: ○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developerclou d/language-translation/api/v2/ Language Translation example: curl -u “username:password“ -H "content-type: plain/text“ -X POST -d "text=Hello world.“ "https://gateway.watsonplatform.net/language- translation/api/v2/translate?source=en&target=es"
  • 19. Disrupt SF 2015 Integrating Machine Translation into your App "translations": [ { "translatedText": ”Where is my hotel?" } ] “¿Dónde está mi hotel?" curl -u “username:password“ -H "content-type: plain/text“ -X POST -d "text=¿Dónde está mi hotel?" "https://gateway.watsonplatform.net/language-translation/api/v2/translate?source=es&target=en"
  • 20. Disrupt SF 2015 Cloud APIs provide the ability for computers to derive "meaning" from text (documents, web pages, tweets, …) What you can do: tag documents by topic, drive content recommendation engines, contextually target advertisements ... Reading like a Human: Natural Language Processing
  • 21. Disrupt SF 2015 Integrating Natural Language Processing into your App ● APIs automatically tag documents, extract facts and events, ... ● Innovators include IBM Watson, AlchemyAPI, Google, and others ● IBM Watson + AlchemyAPI language API info available here: ○ https://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/ services-catalog.html ○ http://www.alchemyapi.com/ Named entity tagging + sentiment analysis 1-liner: curl "http://access.alchemyapi.com/calls/text/ TextGetRankedNamedEntities?apikey=$API_KEY&sentiment=1&text=Woohoo +I+am+coming+to+San+Fran!"
  • 22. Disrupt SF 2015 "language": "english", "entities": [ { "type": "City", "relevance": "0.33", "sentiment": { "type": "positive", "score": "0.325672" }, "count": "1", "text": ”San Fran", "disambiguated": { "name": ”San Francisco", "website": "http://www.sfgov.org", "dbpedia": "http://dbpedia.org/resource/San_Francisco", "freebase": "http://rdf.freebase.com/ns/m.0d61p" ”Woohoo I am coming to San Fran! #TCDisrupt" Integrating Natural Language Processing into your App curl "http://access.alchemyapi.com/calls/text/ TextGetRankedNamedEntities?apikey=$API_KEY&sentiment=1&text=Woohoo +I+am+coming+to+San+Fran!"
  • 23. Disrupt SF 2015 Expert in a box: Question Answering Cloud APIs provide the ability to answer natural language questions, such as "Who invented the Segway?" What you can do: leverage questions like "was this company acquired?" to trigger processes in data pipelines or GUI displays, automatically answer questions from your own corpus of data ...
  • 24. Disrupt SF 2015 Integrating Question Answering into your App ● APIs automatically answer questions posed in plain language ● Innovators include IBM Watson, AlchemyAPI, Google, and others ● IBM Watson question answering API info available here: ○ https://www.ibmdw.net/watson/docs/ IBM Watson Example API Call JSON: { "question":{ "questionText":"His 1983 hit "Beat it" featured Eddie Van Halen on guitar." } }
  • 25. Disrupt SF 2015 Integrating Question Answering into your App "answers": [ { "id": 0, "text": "Michael Jackson", "confidence": 0.42276 } { "question":{ "questionText":"His 1983 hit "Beat it" featured Eddie Van Halen on guitar." } }
  • 26. Disrupt SF 2015 Putting it all together: Sample A.I. App Workflow Use Watson Speech API to accept speech input Use Watson Translation API to convert to English “Es esta venenosa?" "Is this poisonous?" Take a picture of the item the question is about Use AlchemyVision API to interpret the photograph "fly agaric" Use Watson Q&A API to answer the question Is this poisonous + fly agaric Example app: "Voice + visual assistant for international hikers"
  • 27. Disrupt SF 2015 Getting Started: Watson + Alchemy Resources Sign up for Bluemix (Get API keys!) https://console.ng.bluemix.net/registration/ GitHub (Sample code!) Watson: https://github.com/watson-developer-cloud AlchemyAPI: https://github.com/AlchemyAPI App Gallery (Get inspired!) http://devpost.com/software/built-with/ibm-watson Ask for help! Just look for someone wearing a Watson shirt.
  • 28. Disrupt SF 2015 Hackathons: Where great ideas are born! • I’ve been sponsoring and judging hackathons for the past 5 years • Seen multiple teams raise funding, build companies, have successful exits • We hold internal hackathons monthly and frequently see innovations pushed into production • If your startup isn’t doing internal hackathons yet – get going! They’re *awesome* Let’s go build something amazing. Change the world. Use A.I. to make it happen!
  • 29. Disrupt SF 2015 Thanks for listening! Questions ? Elliot Turner Director of Alchemy, IBM Watson CEO & Founder, AlchemyAPI eturner@us.ibm.com