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

More Related Content

What's hot

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 BBVABig-Data-Summit
 
Big io t Project New Overview
Big io t Project New OverviewBig io t Project New Overview
Big io t Project New OverviewBIG IoT Project
 
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 StartupsDatentreiber
 
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 2016LibreCon
 
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 SolutionAmir Sedighi
 
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 financeCerved Group SpA
 
Introducing ProHuddle
Introducing ProHuddleIntroducing ProHuddle
Introducing ProHuddleGerger
 
Connexa | Sustainable Online Communities
Connexa | Sustainable Online CommunitiesConnexa | Sustainable Online Communities
Connexa | Sustainable Online CommunitiesData Science Milan
 
Business Intelligence, where is the innovation?
Business Intelligence, where is the innovation?Business Intelligence, where is the innovation?
Business Intelligence, where is the innovation?ALTIC Altic
 
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, Neo4jNeo4j
 
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 2016Dinh Le Dat (Kevin D.)
 
Cognos consultant in saudi arabia
Cognos consultant in saudi arabiaCognos consultant in saudi arabia
Cognos consultant in saudi arabiaIman Ahmed
 
"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"Corporate Startup Summit
 
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...apidays
 
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 - evolerateDoerte-Katja Laue, Dr.
 
Customer Experience Management
Customer Experience ManagementCustomer Experience Management
Customer Experience ManagementTigerGraph
 
Neo4j GraphTalks - Einführung in Graphdatenbanken
Neo4j GraphTalks - Einführung in GraphdatenbankenNeo4j GraphTalks - Einführung in Graphdatenbanken
Neo4j GraphTalks - Einführung in GraphdatenbankenNeo4j
 
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 marketBig Data Value Association
 

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

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...Frosmo
 
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 ...TIBCO Jaspersoft
 
IoT Innovation Design Method (Picmet2019 Presentation)
IoT Innovation Design Method (Picmet2019 Presentation)IoT Innovation Design Method (Picmet2019 Presentation)
IoT Innovation Design Method (Picmet2019 Presentation)Naoshi Uchihira
 
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)
피규어 디자인과 3D 프린팅 : 박재완(PYPEP 대표)brainerymakers
 
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
 
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 methodsBruno Sbille
 
Creo xjh v2
Creo xjh v2Creo xjh v2
Creo xjh v2成 张
 
Wizard - Credential 2013
Wizard - Credential 2013Wizard - Credential 2013
Wizard - Credential 2013Vũ Thịnh
 
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, BuffPanelData Science Club
 
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 productionAndrea Baita
 
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 - ...Flink Forward
 
Designing better-ux-workshop-4
Designing better-ux-workshop-4Designing better-ux-workshop-4
Designing better-ux-workshop-4girish82
 
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...Sri Ambati
 
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 KukuyevaData Con LA
 
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 ToolsVMware Tanzu
 
Power BI storytelling 101
Power BI storytelling 101Power BI storytelling 101
Power BI storytelling 101Ida Bergum
 
Disruption: Designing Successful Startups
Disruption: Designing Successful StartupsDisruption: Designing Successful Startups
Disruption: Designing Successful StartupsJulian Scaff
 

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

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
 
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 ...Neo4j
 
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 BioinformaticiansNeo4j
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
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 GraphNeo4j
 
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 2024Neo4j
 
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.pdfNeo4j
 
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...Neo4j
 
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 grafosNeo4j
 
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...Neo4j
 
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 Neo4jNeo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Neo4j
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsNeo4j
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 

More from Neo4j (20)

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
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG time
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 

Recently uploaded

Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 

Recently uploaded (20)

Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 

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