SlideShare a Scribd company logo
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

More Related Content

What's hot

What's hot (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
 

Similar to 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
 

Similar to 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
 

More from Neo4j

More from Neo4j (20)

GraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysisGraphAware - Transforming policing with graph-based intelligence analysis
GraphAware - Transforming policing with graph-based intelligence analysis
 
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product UpdatesGraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
GraphSummit Stockholm - Neo4j - Knowledge Graphs and Product Updates
 
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
KLARNA -  Language Models and Knowledge Graphs: A Systems ApproachKLARNA -  Language Models and Knowledge Graphs: A Systems Approach
KLARNA - Language Models and Knowledge Graphs: A Systems Approach
 
INGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by DesignINGKA DIGITAL: Linked Metadata by Design
INGKA DIGITAL: Linked Metadata by Design
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4j
 
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptxBT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
BT & Neo4j _ How Knowledge Graphs help BT deliver Digital Transformation.pptx
 
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit MilanWorkshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
Workshop: Enabling GenAI Breakthroughs with Knowledge Graphs - GraphSummit Milan
 
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 & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with GraphGraphSummit Milan & Stockholm - Neo4j: The Art of the Possible with Graph
GraphSummit Milan & Stockholm - 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
 

Recently uploaded

AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
Alluxio, Inc.
 
Mastering Windows 7 A Comprehensive Guide for Power Users .pdf
Mastering Windows 7 A Comprehensive Guide for Power Users .pdfMastering Windows 7 A Comprehensive Guide for Power Users .pdf
Mastering Windows 7 A Comprehensive Guide for Power Users .pdf
mbmh111980
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns
 

Recently uploaded (20)

AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
AI/ML Infra Meetup | Improve Speed and GPU Utilization for Model Training & S...
 
iGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by SkilrockiGaming Platform & Lottery Solutions by Skilrock
iGaming Platform & Lottery Solutions by Skilrock
 
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
A Python-based approach to data loading in TM1 - Using Airflow as an ETL for TM1
 
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
Gamify Your Mind; The Secret Sauce to Delivering Success, Continuously Improv...
 
De mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FMEDe mooiste recreatieve routes ontdekken met RouteYou en FME
De mooiste recreatieve routes ontdekken met RouteYou en FME
 
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdfA Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
A Comprehensive Appium Guide for Hybrid App Automation Testing.pdf
 
Mastering Windows 7 A Comprehensive Guide for Power Users .pdf
Mastering Windows 7 A Comprehensive Guide for Power Users .pdfMastering Windows 7 A Comprehensive Guide for Power Users .pdf
Mastering Windows 7 A Comprehensive Guide for Power Users .pdf
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
Agnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in KrakówAgnieszka Andrzejewska - BIM School Course in Kraków
Agnieszka Andrzejewska - BIM School Course in Kraków
 
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAGAI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
AI/ML Infra Meetup | Reducing Prefill for LLM Serving in RAG
 
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
Facemoji Keyboard released its 2023 State of Emoji report, outlining the most...
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
 
Studiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting softwareStudiovity film pre-production and screenwriting software
Studiovity film pre-production and screenwriting software
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
 
Accelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with PlatformlessAccelerate Enterprise Software Engineering with Platformless
Accelerate Enterprise Software Engineering with Platformless
 
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
AI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning FrameworkAI/ML Infra Meetup | Perspective on Deep Learning Framework
AI/ML Infra Meetup | Perspective on Deep Learning Framework
 
Top Mobile App Development Companies 2024
Top Mobile App Development Companies 2024Top Mobile App Development Companies 2024
Top Mobile App Development Companies 2024
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
 

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