SlideShare une entreprise Scribd logo
1  sur  69
Device Tracking in
Practice
From Idea to Production
2
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
3
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
4
2017
The Workshop
• Build software
Device Tracking in Practice: From Idea to Production
What do we do in The Workshop?
• IT intelligence
• Analytics
5
2017
The Workshop
Our clients
Device Tracking in Practice: From Idea to Production
What do we do in The Workshop?
have customers
that make online purchases
on our clients’ websites
24/7from all over the world
6
2017
The Workshop
Fraud costs GBP 193 bln per year in the UK alone
Device Tracking in Practice: From Idea to Production
Fraud is expensive
Card fraud hits more and more card holders
33% of cardholders have been victims of card fraud
7
2017
The Workshop
• IP blacklisting
• Card blacklisting
• KYC verification
• Geo-location validation
Device Tracking in Practice: From Idea to Production
Anti-fraud tools we use
8
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
9
2017
The Workshop
Customers use browsers
Device Tracking in Practice: From Idea to Production
What’s a device?
10
2017
The Workshop
Customers use browsers
Device Tracking in Practice: From Idea to Production
What’s a device?
No device at all
11
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
12
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
• HSTS
• IndexedDB
• Local storage
• Web SQL database
• HTTP cookie
13
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
14
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
15
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
• user agent
• pixel ratio
• resolution
• do no track
• plugins
• js fonts…
16
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
17
2017
The Workshop
We can get information about the browser
Device Tracking in Practice: From Idea to Production
What’s a device?
18
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it?
19
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it?
20
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it?
Relational model
21
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it?
Relational model
CID SC FP BL BT
22
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Relational model
- Customers with same device?
CID SC FP BL BT
23
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Relational model
- Customers with same device?
SELECT D1.CID, D2.CID FROM DEVICES D1, DEVICES D2
WHERE D1.SC = D2.SC AND D1.FP=D2.SC ...
AND C1.CID <> C2.CID
CID SC FP BL BT
24
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Relational model
- Customers that share device of customers with same device?
CID SC FP BL BT
25
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Relational model
- Customers that share device of customers with same device? 2 hops
CID SC FP BL BT
26
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Relational model
- Customers that share device of customers with same device? 2 hops
SELECT D1.CID, D3.CID
FROM DEVICES D1, DEVICES D2, DEVICES D3
WHERE D1.SC = D2.SC AND D1.FP=D2.SC [...]
AND D2.SC = D3.SC AND D2.FP=D3.FP [...]
AND C1.CID <> C2.CID AND C1.CID <> C3.CID
CID SC FP BL BT
27
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it?
Relational model
CID SC FP BL BT
- 3 hops?
- Credit cards in common?
- What data points do the devices have in common?
These ones are real cases that would require lot of joins, big
indexes, complex and hard to maintain queries …
28
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
29
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
30
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
31
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
- Customers with same device?
32
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
- Customers with same device?
MATCH (c1:Customer)-[:USED_DEVICE]->(:Device)<-
[:USED_DEVICE]-(c2:Customer)
RETURN c1, c2
33
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
- Customers with same device?
MATCH (c1:Customer)-[:USED_DEVICE]->(:Device)<-
[:USED_DEVICE]-(c2:Customer)
RETURN c1, c2
- OR *
MATCH (c1:Customer)-[:USED_DEVICE*2]-(c2:Customer)
RETURN c1, c2
34
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
- 3 hops?
MATCH (c1:Customer)-[:USED_DEVICE*6]-(c2:Customer)
RETURN c1, c2
35
2017
The Workshop
Device Tracking in Practice: From Idea to Production
How to model it? And query?
Graph-based model
- 3 hops?
MATCH (c1:Customer)-[:USED_DEVICE*6]-(c2:Customer)
RETURN c1, c2
- Credit cards in common?
MATCH (c1:Customer)-[:USED_DEVICE*6]-(c2:Customer)
MATCH (c1)-->(cc:CreditCard)<--(c2)
RETURN cc
36
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
37
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Transaction screening
The concept
38
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Transaction screening
The concept
39
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Transaction screening
The concept
*
40
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
41
2017
The Workshop
We collect various pieces of
information from the customers:
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
• Device info
• Date of birth
• ZIP/Postal code
• Phone number
• Name
• Email address
42
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
43
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
44
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
45
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
duplicate
When customers match the duplicate account detection criteria we mark them in the
graph as duplicates.
46
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
47
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Duplicate accounts detection
48
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Screening using duplicate-account model
The concept
49
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Screening using duplicate-account model
The concept
50
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Screening using duplicate-account model
The concept
*
51
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Screening using duplicate-account model
The concept
*
52
2017
The Workshop
Device Tracking in Practice: From Idea to Production
53
2017
The Workshop
What do we do in The Workshop
Device tracking
Fraud screening for ecommerce
Duplicate account concept
Go-live and performance
Q & A
agenda
54
2017
The Workshop
This is the theory
Device Tracking in Practice: From Idea to Production
Go live & Performance
*
55
2017
The Workshop
And this is reality
Device Tracking in Practice: From Idea to Production
Go live & Performance
*
56
2017
The Workshop
And this is reality
Device Tracking in Practice: From Idea to Production
Go live & Performance
*
*
57
2017
The Workshop
And this is reality, dense nodes with unknown distribution
Device Tracking in Practice: From Idea to Production
Go live & Performance
58
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Customers sharing the same
date of birth.
59
2017
The Workshop
Device Tracking in Practice: From Idea to Production
Customers sharing the same
post code.
60
2017
The Workshop
And this is reality
Device Tracking in Practice: From Idea to Production
Go live & Performance
- Connected customers:
MATCH (c1:Customer-->(n)<--(c2:Customer)
[...]
RETURN c1, c2
61
2017
The Workshop
And this is reality
Device Tracking in Practice: From Idea to Production
Go live & Performance
- Connected customers:
MATCH (c1:Customer-->(n)<--(c2:Customer)
[...]
RETURN c1, c2
What if there are millions of customers?
What if there are a lot of transactions per second?
62
2017
The Workshop
Device Tracking in Practice: From Idea to Production
63
2017
The Workshop
Traversal API to the rescue!
Device Tracking in Practice: From Idea to Production
Go live & Performance
64
2017
The Workshop
Traversal API to the rescue!
Device Tracking in Practice: From Idea to Production
Go live & Performance
- Navigate ‘n’ levels of depth
- Navigate through these relationships
- Apply custom criteria like
· Stop traversing on a fraudulent customer
· Ignore specific paths …
- “smart” traversing:
· Identify candidate nodes where start (clearly non
dense nodes)
· Run several iterations instead of “all at once”
65
2017
The Workshop
Traversal API to the rescue!
Device Tracking in Practice: From Idea to Production
Go live & Performance
GraphDb.traversalDescription()
.uniqueness(uniqueness).depthFirst()
.evaluator(Evaluators.toDepth(depth))
.evaluator(new Evaluator() {
@Override
public Evaluation evaluate(Path path) {
if (isIgnoredPath(path)) {
return Evaluation.EXCLUDE_AND_PRUNE;
}
if (path.length() > 0 && path.endNode() != null
&& path.endNode().hasLabel(EVIDENCE_LABEL)) {
return Evaluation.INCLUDE_AND_PRUNE;
}
return Evaluation.EXCLUDE_AND_CONTINUE;
}
}).traverse(sourceNodes)
66
2017
The Workshop
Traversal API to the rescue!
Device Tracking in Practice: From Idea to Production
Go live & Performance
67
2017
The Workshop
Architectural overview
Device Tracking in Practice: From Idea to Production
Go live & Performance
68
2017
The Workshop
Our DB
Device Tracking in Practice: From Idea to Production
Go live & Performance
Q & A

Contenu connexe

Tendances

Tendances (20)

BDAS-2017 | Lesson learned from the application of data science at BBVA
BDAS-2017 | Lesson learned from the application of data science at BBVABDAS-2017 | Lesson learned from the application of data science at BBVA
BDAS-2017 | Lesson learned from the application of data science at BBVA
 
Big io t Project New Overview
Big io t Project New OverviewBig io t Project New Overview
Big io t Project New Overview
 
Self-Service.AI - Pitch Competition for AI-Driven SaaS Startups
Self-Service.AI - Pitch Competition for AI-Driven SaaS StartupsSelf-Service.AI - Pitch Competition for AI-Driven SaaS Startups
Self-Service.AI - Pitch Competition for AI-Driven SaaS Startups
 
Data Warehousing Trends
Data Warehousing TrendsData Warehousing Trends
Data Warehousing Trends
 
IoT's impact on products design and innovation - LibreCon 2016
IoT's impact on products design and innovation - LibreCon 2016IoT's impact on products design and innovation - LibreCon 2016
IoT's impact on products design and innovation - LibreCon 2016
 
Helio, a Continues Real-Time Fraud Detection and Monitoring Solution
Helio, a Continues Real-Time Fraud Detection and Monitoring SolutionHelio, a Continues Real-Time Fraud Detection and Monitoring Solution
Helio, a Continues Real-Time Fraud Detection and Monitoring Solution
 
Cerved Datascience Milan
Cerved Datascience MilanCerved Datascience Milan
Cerved Datascience Milan
 
The Italian business graph: fueling innovation in finance
The Italian business graph: fueling innovation in financeThe Italian business graph: fueling innovation in finance
The Italian business graph: fueling innovation in finance
 
Introducing ProHuddle
Introducing ProHuddleIntroducing ProHuddle
Introducing ProHuddle
 
Connexa | Sustainable Online Communities
Connexa | Sustainable Online CommunitiesConnexa | Sustainable Online Communities
Connexa | Sustainable Online Communities
 
Business Intelligence, where is the innovation?
Business Intelligence, where is the innovation?Business Intelligence, where is the innovation?
Business Intelligence, where is the innovation?
 
GraphTour Keynote, Emil Eifrem, CEO and Founder, Neo4j
GraphTour Keynote, Emil Eifrem, CEO and Founder, Neo4jGraphTour Keynote, Emil Eifrem, CEO and Founder, Neo4j
GraphTour Keynote, Emil Eifrem, CEO and Founder, Neo4j
 
ANTS and BIG DATA - The it outsourcing trend - ICTCom 2016
ANTS and BIG DATA - The it outsourcing trend - ICTCom 2016ANTS and BIG DATA - The it outsourcing trend - ICTCom 2016
ANTS and BIG DATA - The it outsourcing trend - ICTCom 2016
 
Cognos consultant in saudi arabia
Cognos consultant in saudi arabiaCognos consultant in saudi arabia
Cognos consultant in saudi arabia
 
"Young talent exploring disruptive trends and technologies"
"Young talent exploring disruptive trends and technologies""Young talent exploring disruptive trends and technologies"
"Young talent exploring disruptive trends and technologies"
 
APIdays Helsinki 2019 - Connect your Application to Finnish Trust Network wit...
APIdays Helsinki 2019 - Connect your Application to Finnish Trust Network wit...APIdays Helsinki 2019 - Connect your Application to Finnish Trust Network wit...
APIdays Helsinki 2019 - Connect your Application to Finnish Trust Network wit...
 
Thinking ahead for the customer of tomorrow - Doerte Laue - evolerate
Thinking ahead for the customer of tomorrow - Doerte Laue - evolerateThinking ahead for the customer of tomorrow - Doerte Laue - evolerate
Thinking ahead for the customer of tomorrow - Doerte Laue - evolerate
 
Customer Experience Management
Customer Experience ManagementCustomer Experience Management
Customer Experience Management
 
Neo4j GraphTalks - Einführung in Graphdatenbanken
Neo4j GraphTalks - Einführung in GraphdatenbankenNeo4j GraphTalks - Einführung in Graphdatenbanken
Neo4j GraphTalks - Einführung in Graphdatenbanken
 
Open source experiences in AI and DataViz for manufacturing market
Open source experiences in AI and DataViz for manufacturing marketOpen source experiences in AI and DataViz for manufacturing market
Open source experiences in AI and DataViz for manufacturing market
 

Similaire à GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production

Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
Codiax
 
Creo xjh v2
Creo xjh v2Creo xjh v2
Creo xjh v2
成 张
 
Designing better-ux-workshop-4
Designing better-ux-workshop-4Designing better-ux-workshop-4
Designing better-ux-workshop-4
girish82
 

Similaire à GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production (20)

Webinar: Hur man kombinerar teknik och ett “growth mindset” för bästa kundup...
Webinar: Hur man kombinerar teknik och ett  “growth mindset” för bästa kundup...Webinar: Hur man kombinerar teknik och ett  “growth mindset” för bästa kundup...
Webinar: Hur man kombinerar teknik och ett “growth mindset” för bästa kundup...
 
The Case for Embedded Analytics: Improve the Value of your Applications with ...
The Case for Embedded Analytics: Improve the Value of your Applications with ...The Case for Embedded Analytics: Improve the Value of your Applications with ...
The Case for Embedded Analytics: Improve the Value of your Applications with ...
 
IoT Innovation Design Method (Picmet2019 Presentation)
IoT Innovation Design Method (Picmet2019 Presentation)IoT Innovation Design Method (Picmet2019 Presentation)
IoT Innovation Design Method (Picmet2019 Presentation)
 
The ROI of UX
The ROI of UXThe ROI of UX
The ROI of UX
 
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)
 
Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
Victoria Albrecht (Springbok AI) – Learnings from Deploying AI and Chatbot Pr...
 
What's Agile ? Introduction to Agile methods
What's Agile ? Introduction to Agile methodsWhat's Agile ? Introduction to Agile methods
What's Agile ? Introduction to Agile methods
 
Creo xjh v2
Creo xjh v2Creo xjh v2
Creo xjh v2
 
Wizard - Credential 2013
Wizard - Credential 2013Wizard - Credential 2013
Wizard - Credential 2013
 
A Big (Query) Frog in a Small Pond, Jakub Motyl, BuffPanel
A Big (Query) Frog in a Small Pond, Jakub Motyl, BuffPanelA Big (Query) Frog in a Small Pond, Jakub Motyl, BuffPanel
A Big (Query) Frog in a Small Pond, Jakub Motyl, BuffPanel
 
Machine learning with Spark : the road to production
Machine learning with Spark : the road to productionMachine learning with Spark : the road to production
Machine learning with Spark : the road to production
 
Flink Forward Berlin 2017: Bas Geerdink, Martijn Visser - Fast Data at ING - ...
Flink Forward Berlin 2017: Bas Geerdink, Martijn Visser - Fast Data at ING - ...Flink Forward Berlin 2017: Bas Geerdink, Martijn Visser - Fast Data at ING - ...
Flink Forward Berlin 2017: Bas Geerdink, Martijn Visser - Fast Data at ING - ...
 
Designing better-ux-workshop-4
Designing better-ux-workshop-4Designing better-ux-workshop-4
Designing better-ux-workshop-4
 
From Rapid Prototypes to an end-to-end Model Deployment: an AI Hedge Fund Use...
From Rapid Prototypes to an end-to-end Model Deployment: an AI Hedge Fund Use...From Rapid Prototypes to an end-to-end Model Deployment: an AI Hedge Fund Use...
From Rapid Prototypes to an end-to-end Model Deployment: an AI Hedge Fund Use...
 
Design Thinking for the Business Case
Design Thinking for the Business CaseDesign Thinking for the Business Case
Design Thinking for the Business Case
 
3D Printing and Entrepreneurship A Co-Evolution
3D Printing and Entrepreneurship A Co-Evolution3D Printing and Entrepreneurship A Co-Evolution
3D Printing and Entrepreneurship A Co-Evolution
 
Data Science: Good, Bad and Ugly by Irina Kukuyeva
Data Science: Good, Bad and Ugly by Irina KukuyevaData Science: Good, Bad and Ugly by Irina Kukuyeva
Data Science: Good, Bad and Ugly by Irina Kukuyeva
 
Operationalizing Data Science: The Right Architecture and Tools
Operationalizing Data Science: The Right Architecture and ToolsOperationalizing Data Science: The Right Architecture and Tools
Operationalizing Data Science: The Right Architecture and Tools
 
Power BI storytelling 101
Power BI storytelling 101Power BI storytelling 101
Power BI storytelling 101
 
Disruption: Designing Successful Startups
Disruption: Designing Successful StartupsDisruption: Designing Successful Startups
Disruption: Designing Successful Startups
 

Plus de Neo4j

Plus de Neo4j (20)

Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
Workshop -  Architecting Innovative Graph Applications- GraphSummit MilanWorkshop -  Architecting Innovative Graph Applications- GraphSummit Milan
Workshop - Architecting Innovative Graph Applications- GraphSummit Milan
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
 
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4jGraphSummit Milan - Visione e roadmap del prodotto Neo4j
GraphSummit Milan - Visione e roadmap del prodotto Neo4j
 
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with GraphGraphSummit Milan - Neo4j: The Art of the Possible with Graph
GraphSummit Milan - Neo4j: The Art of the Possible with Graph
 
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
LARUS - Galileo.XAI e Gen-AI: la nuova prospettiva di LARUS per il futuro del...
 
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale IbridaUNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
UNI DI NAPOLI FEDERICO II - Il ruolo dei grafi nell'AI Conversazionale Ibrida
 
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
 
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptxFrom Knowledge Graphs via Lego Bricks to scientific conversations.pptx
From Knowledge Graphs via Lego Bricks to scientific conversations.pptx
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMs
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 

Dernier

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 

Dernier (20)

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 

GraphTour - The Workshop - Device Tracking in Practice: From Idea to Production