SlideShare uma empresa Scribd logo
1 de 117
Baixar para ler offline
An Ironic Solution
to Fruitless Online Debate
The
The
Shitposting
Shitposting
AI
AI
Speakers
Speakers
Partner
Thomas Endres
Oracle® JavaOne Rockstar
Intel® Black Belt Software Developer
Intel® Software Innovator
Intel® Top Innovator 2014 - 2019
Principal Consultant
Martin Förtsch
Oracle® JavaOne Rockstar
Intel® Black Belt Software Developer
Intel® Software Innovator
Intel® Top Innovator 2014 - 2019
Software Consultant
Jonas Mayer
Bedroom DJ
Teakwondo Black Belt
GameStar Certified Hacker
Intel® Software Innovator
Ernst von Oelsen Hannes Perrot Kai Guther Laura Jehn
Leonard Husmann Ma hias Beuerle Sandro Bauer UVM!
Shitposting Team
TNG Innovation Hacking
TNG Innovation Hacking
●
Learn Motivate Just Because
Why?
Innovation Hacking
Innovation Hacking
Going Public
Innovation Hacking
Innovation Hacking
●
Going Public
Innovation Hacking
Innovation Hacking
●
Going Public
Innovation Hacking
Innovation Hacking
●
...and bearing the consequences
Innovation Hacking
Innovation Hacking
A Typical Shitpost
Innovation Hacking
Innovation Hacking
●
Our Typical Reaction
Innovation Hacking
Innovation Hacking
●
The Shitposting Circle Jerk
How online discussion works
How online discussion works
●
The Jonas Simulator (2020)
First Automization Experiments
First Automization Experiments
●
Automate Reply Generation with AI
First Idea
First Idea
●
A Huge Waste of Human Resources
This is a global problem
This is a global problem
●
Industrial Revolution
Inspiration from History
Inspiration from History
●
Taking the Human out of the Loop
The Solution: The Shitposting AI
The Solution: The Shitposting AI
●
Rehumanizing the AI Discussion
Robot Heads
Robot Heads
●
Agenda
Agenda
Introduction
Generating Social Media Comments
Creating Human Voices
Building Robot Heads
Putting it all together
NLP-Powered Robot Discussions
What is this all about?
What is this all about?
▲
What is NLP?
NLP in a nutshell
NLP in a nutshell
▲
NLP is everywhere!
NLP in a nutshell
NLP in a nutshell
▲
Automatic Summarization
NLP in a nutshell
NLP in a nutshell
▲
Sentiment Analysis
NLP in a nutshell
NLP in a nutshell
▲
The Biological Neuron
By BruceBlaus - Own work, CC BY 3.0, h ps:/
/commons.wikimedia.org/w/index.php?curid=28761830
Original by en:User:Chris 73, updated by en:User:Diberri, converted to SVG by Zom - Own work, CC BY-SA 3.0
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
The Artificial Neuron
axon from
a neuron
dendrite output axon
f
ω0x0
x0
ω0x0 + b
f(ω0x0 + b)
synapse
activation
function
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
Neural Cell Activation
activate
bias
sum
weight
ω=0.7
ω=1.4
ω=0.3
f
f(u) = max(0, u)
u
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
Turning text into numbers: Tokenization
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
Byte-Pair Tokenizer Demo
Input
Please start the demo!
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
A Neural Network
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
A Neural Network
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
A Neural Network
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
Easy Right?
Neural Networks in a Nutshell
Neural Networks in a Nutshell
▲
Neural Networks think in Distances
Neural Networks in a Nutshell
Neural Networks in a Nutshell
■
Neural Networks think in Distances
Neural Networks in a Nutshell
Neural Networks in a Nutshell
■
Neural Networks think in Distances
Neural Networks in a Nutshell
Neural Networks in a Nutshell
■
Neural Networks think in Distances
Neural Networks in a Nutshell
Neural Networks in a Nutshell
■
Agenda
Agenda
Introduction
Generating Social Media Comments
Creating Human Voices
Building Robot Heads
Putting it all together
Overview
Generating Social Media Comments
Generating Social Media Comments
■
OpenAI GPT
Generating Social Media Comments
Generating Social Media Comments
■
Generative Pretrained Transformer
Generating Social Media Comments
Generating Social Media Comments
■
GPT Demo
Input
Please start the demo!
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
Next Word Prediction
Generating Social Media Comments
Generating Social Media Comments
■
GPT Architecture
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Masked Self-Attention
Generating Social Media Comments
Generating Social Media Comments
●
Decoder Layer
Generating Social Media Comments
Generating Social Media Comments
●
GPT in Detail
Generating Social Media Comments
Generating Social Media Comments
●
Training GPT
Generating Social Media Comments
Generating Social Media Comments
▲
Training GPT
Generating Social Media Comments
Generating Social Media Comments
▲
Training GPT
Generating Social Media Comments
Generating Social Media Comments
▲
Training GPT
Generating Social Media Comments
Generating Social Media Comments
▲
Training GPT
Generating Social Media Comments
Generating Social Media Comments
▲
Choosing a Model
Generating Social Media Comments
Generating Social Media Comments
▲
GPT-2 Sizes
Generating Social Media Comments
Generating Social Media Comments
▲
Training Data
Generating Social Media Comments
Generating Social Media Comments
▲
Choosing a Platform
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Python Reddit API Wrapper
Collecting a Comment Dataset
Collecting a Comment Dataset
■
import praw
reddit = praw.Reddit("user")
subreddit = reddit.subreddit("all")
for submission in subreddit.top("day", limit=None):
comments = submission.comments.list()
Twitter API
Collecting a Comment Dataset
Collecting a Comment Dataset
■
import searchtweets
root_tweet = self.search_for_root_tweet(keyword)
query = searchtweets.gen_request_parameters(f"conversation_id
results = searchtweets.ResultStream(request_parameters=query,
for page in result.stream():
tweets = page['data']
A Typical Social Media Thread
Collecting a Comment Dataset
Collecting a Comment Dataset
■
But we Need a Text File!
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Converting Threads to Text Files
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Continuous Trainer
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Continuous Trainer
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Continuous Trainer
Collecting a Comment Dataset
Collecting a Comment Dataset
■
Comments Generator Demo
Input
Please start the demo!
Generating Social Media Comments
Generating Social Media Comments
■
Agenda
Agenda
Introduction
Generating Social Media Comments
Creating Human Voices
Building Robot Heads
Putting it all together
Overview
Creating Human Voices
Creating Human Voices
●
Text to Speech: A known Problem
Creating Human Voices
Creating Human Voices
●
Tacotron
Creating Human Voices
Creating Human Voices
●
Tacotron
Creating Human Voices
Creating Human Voices
●
Tacotron 2 (2017)
Audio Deepfakes
Audio Deepfakes
●
Multispeaker Tacotron
Creating Human Voices
Creating Human Voices
●
Demo Multispeaker
Creating Human Voices
Creating Human Voices
CoquiAI 🐸GlowTTS
Creating Human Voices
Creating Human Voices
Agenda
Agenda
Introduction
Generating Social Media Comments
Creating Human Voices
Building Robot Heads
Putting it all together
Overview
Building Robot Heads
Building Robot Heads
We're Pretty Experienced with Robots
Building Robot Heads
Building Robot Heads
Hardware Setup
Building Robot Heads
Building Robot Heads
Head Chassis
Building Robot Heads
Building Robot Heads
Electronics Mount
Building Robot Heads
Building Robot Heads
Electronics Mount
Building Robot Heads
Building Robot Heads
Hardware Hacking at it's Finest!
Building Robot Heads
Building Robot Heads
Expectation
Building Robot Heads
Building Robot Heads
Reality
Building Robot Heads
Building Robot Heads
Agenda
Agenda
Introduction
Generating Social Media Comments
Creating Human Voices
Building Robot Heads
Putting it all together
Overview
Putting it all together
Putting it all together
Overview
Putting it all together
Putting it all together
Overview
Putting it all together
Putting it all together
Overview
Putting it all together
Putting it all together
NLP Has Huge GPU Requirements
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Client-Server Architecture
Putting it all together
Putting it all together
Full Robot Discussion Demo
Putting it all together
Putting it all together
We Solved The Biggest Problem of the 21st Century
Summary
Summary
Let User Interact with Robot Heads
Future Work
Future Work
Partner
Thomas Endres
Oracle® JavaOne Rockstar
Intel® Black Belt Software Developer
Intel® Software Innovator
Intel® Top Innovator 2014 - 2018
Principal Consultant
Martin Förtsch
Oracle® JavaOne Rockstar
Intel® Black Belt Software Developer
Intel® Software Innovator
Intel® Top Innovator 2014 - 2018
Software Consultant
Jonas Mayer
Bedroom DJ
Teakwondo Black Belt
GameStar Certified Hacker
Intel® Software Innovator
Speakers
Speakers

Mais conteúdo relacionado

Semelhante a The Shitposting AI With Thomas Endres & Jonas Mayer | Current 2022

How To Do Kick-Ass Software Development, by Sven Peters
How To Do Kick-Ass Software Development, by Sven PetersHow To Do Kick-Ass Software Development, by Sven Peters
How To Do Kick-Ass Software Development, by Sven Peters
ZeroTurnaround
 
Educate with articulate
Educate with articulateEducate with articulate
Educate with articulate
James O'Neill
 
Stanford CS547 April2009
Stanford CS547 April2009Stanford CS547 April2009
Stanford CS547 April2009
John Lilly
 

Semelhante a The Shitposting AI With Thomas Endres & Jonas Mayer | Current 2022 (20)

Digital Dragons 2023 (1).pdf
Digital Dragons 2023 (1).pdfDigital Dragons 2023 (1).pdf
Digital Dragons 2023 (1).pdf
 
Orientation session
Orientation sessionOrientation session
Orientation session
 
Words matter: Sharing Vocabulary to Strengthen Teams
Words matter: Sharing Vocabulary to Strengthen TeamsWords matter: Sharing Vocabulary to Strengthen Teams
Words matter: Sharing Vocabulary to Strengthen Teams
 
Intuition & Use-Cases of Embeddings in NLP & beyond
Intuition & Use-Cases of Embeddings in NLP & beyondIntuition & Use-Cases of Embeddings in NLP & beyond
Intuition & Use-Cases of Embeddings in NLP & beyond
 
Yuandong Tian at AI Frontiers : Planning in Reinforcement Learning
Yuandong Tian at AI Frontiers : Planning in Reinforcement LearningYuandong Tian at AI Frontiers : Planning in Reinforcement Learning
Yuandong Tian at AI Frontiers : Planning in Reinforcement Learning
 
InfoSession2022_merged (1).pdf
InfoSession2022_merged (1).pdfInfoSession2022_merged (1).pdf
InfoSession2022_merged (1).pdf
 
50.000 orange stickies later
50.000 orange stickies later50.000 orange stickies later
50.000 orange stickies later
 
Google Assistant Overview
Google Assistant Overview  Google Assistant Overview
Google Assistant Overview
 
Game Design for Modern Times
Game Design for Modern TimesGame Design for Modern Times
Game Design for Modern Times
 
MURAL Webinar: How Design Sprints Can Be Reformatted For Any Workshop/Meeting
MURAL Webinar: How Design Sprints Can Be Reformatted For Any Workshop/MeetingMURAL Webinar: How Design Sprints Can Be Reformatted For Any Workshop/Meeting
MURAL Webinar: How Design Sprints Can Be Reformatted For Any Workshop/Meeting
 
OpenOffice, Open Business
OpenOffice, Open BusinessOpenOffice, Open Business
OpenOffice, Open Business
 
How To Do Kick-Ass Software Development, by Sven Peters
How To Do Kick-Ass Software Development, by Sven PetersHow To Do Kick-Ass Software Development, by Sven Peters
How To Do Kick-Ass Software Development, by Sven Peters
 
Educate with articulate
Educate with articulateEducate with articulate
Educate with articulate
 
Stanford CS547 April2009
Stanford CS547 April2009Stanford CS547 April2009
Stanford CS547 April2009
 
How To Do Kick-Ass Software Development
How To Do Kick-Ass Software DevelopmentHow To Do Kick-Ass Software Development
How To Do Kick-Ass Software Development
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-317-409 (1)
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-317-409 (1)Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-317-409 (1)
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-317-409 (1)
 
Programming For Non-Programmers @ Social Media Week
Programming For Non-Programmers @ Social Media Week Programming For Non-Programmers @ Social Media Week
Programming For Non-Programmers @ Social Media Week
 
Coding your company culture
Coding your company cultureCoding your company culture
Coding your company culture
 
Intro to Python for Data Science
Intro to Python for Data ScienceIntro to Python for Data Science
Intro to Python for Data Science
 
Yu-kai Chou's Workshop for Accenture on Gamification (Octalysis)
Yu-kai Chou's Workshop for Accenture on Gamification (Octalysis) Yu-kai Chou's Workshop for Accenture on Gamification (Octalysis)
Yu-kai Chou's Workshop for Accenture on Gamification (Octalysis)
 

Mais de HostedbyConfluent

Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
HostedbyConfluent
 
Evolution of NRT Data Ingestion Pipeline at Trendyol
Evolution of NRT Data Ingestion Pipeline at TrendyolEvolution of NRT Data Ingestion Pipeline at Trendyol
Evolution of NRT Data Ingestion Pipeline at Trendyol
HostedbyConfluent
 

Mais de HostedbyConfluent (20)

Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Renaming a Kafka Topic | Kafka Summit London
Renaming a Kafka Topic | Kafka Summit LondonRenaming a Kafka Topic | Kafka Summit London
Renaming a Kafka Topic | Kafka Summit London
 
Evolution of NRT Data Ingestion Pipeline at Trendyol
Evolution of NRT Data Ingestion Pipeline at TrendyolEvolution of NRT Data Ingestion Pipeline at Trendyol
Evolution of NRT Data Ingestion Pipeline at Trendyol
 
Ensuring Kafka Service Resilience: A Dive into Health-Checking Techniques
Ensuring Kafka Service Resilience: A Dive into Health-Checking TechniquesEnsuring Kafka Service Resilience: A Dive into Health-Checking Techniques
Ensuring Kafka Service Resilience: A Dive into Health-Checking Techniques
 
Exactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and KafkaExactly-once Stream Processing with Arroyo and Kafka
Exactly-once Stream Processing with Arroyo and Kafka
 
Fish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit LondonFish Plays Pokemon | Kafka Summit London
Fish Plays Pokemon | Kafka Summit London
 
Tiered Storage 101 | Kafla Summit London
Tiered Storage 101 | Kafla Summit LondonTiered Storage 101 | Kafla Summit London
Tiered Storage 101 | Kafla Summit London
 
Building a Self-Service Stream Processing Portal: How And Why
Building a Self-Service Stream Processing Portal: How And WhyBuilding a Self-Service Stream Processing Portal: How And Why
Building a Self-Service Stream Processing Portal: How And Why
 
From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...
From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...
From the Trenches: Improving Kafka Connect Source Connector Ingestion from 7 ...
 
Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...
Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...
Future with Zero Down-Time: End-to-end Resiliency with Chaos Engineering and ...
 
Navigating Private Network Connectivity Options for Kafka Clusters
Navigating Private Network Connectivity Options for Kafka ClustersNavigating Private Network Connectivity Options for Kafka Clusters
Navigating Private Network Connectivity Options for Kafka Clusters
 
Apache Flink: Building a Company-wide Self-service Streaming Data Platform
Apache Flink: Building a Company-wide Self-service Streaming Data PlatformApache Flink: Building a Company-wide Self-service Streaming Data Platform
Apache Flink: Building a Company-wide Self-service Streaming Data Platform
 
Explaining How Real-Time GenAI Works in a Noisy Pub
Explaining How Real-Time GenAI Works in a Noisy PubExplaining How Real-Time GenAI Works in a Noisy Pub
Explaining How Real-Time GenAI Works in a Noisy Pub
 
TL;DR Kafka Metrics | Kafka Summit London
TL;DR Kafka Metrics | Kafka Summit LondonTL;DR Kafka Metrics | Kafka Summit London
TL;DR Kafka Metrics | Kafka Summit London
 
A Window Into Your Kafka Streams Tasks | KSL
A Window Into Your Kafka Streams Tasks | KSLA Window Into Your Kafka Streams Tasks | KSL
A Window Into Your Kafka Streams Tasks | KSL
 
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing PerformanceMastering Kafka Producer Configs: A Guide to Optimizing Performance
Mastering Kafka Producer Configs: A Guide to Optimizing Performance
 
Data Contracts Management: Schema Registry and Beyond
Data Contracts Management: Schema Registry and BeyondData Contracts Management: Schema Registry and Beyond
Data Contracts Management: Schema Registry and Beyond
 
Code-First Approach: Crafting Efficient Flink Apps
Code-First Approach: Crafting Efficient Flink AppsCode-First Approach: Crafting Efficient Flink Apps
Code-First Approach: Crafting Efficient Flink Apps
 
Debezium vs. the World: An Overview of the CDC Ecosystem
Debezium vs. the World: An Overview of the CDC EcosystemDebezium vs. the World: An Overview of the CDC Ecosystem
Debezium vs. the World: An Overview of the CDC Ecosystem
 
Beyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local DisksBeyond Tiered Storage: Serverless Kafka with No Local Disks
Beyond Tiered Storage: Serverless Kafka with No Local Disks
 

Último

Revolutionizing SAP® Processes with Automation and Artificial Intelligence
Revolutionizing SAP® Processes with Automation and Artificial IntelligenceRevolutionizing SAP® Processes with Automation and Artificial Intelligence
Revolutionizing SAP® Processes with Automation and Artificial Intelligence
Precisely
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
FIDO Alliance
 

Último (20)

Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - Questionnaire
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Overview of Hyperledger Foundation
Overview of Hyperledger FoundationOverview of Hyperledger Foundation
Overview of Hyperledger Foundation
 
Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptx
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptx
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Revolutionizing SAP® Processes with Automation and Artificial Intelligence
Revolutionizing SAP® Processes with Automation and Artificial IntelligenceRevolutionizing SAP® Processes with Automation and Artificial Intelligence
Revolutionizing SAP® Processes with Automation and Artificial Intelligence
 
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
 
Generative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdfGenerative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdf
 
Using IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & IrelandUsing IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & Ireland
 
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 

The Shitposting AI With Thomas Endres & Jonas Mayer | Current 2022