Collecting Uncertain Data the Reactive Way

Jeff Smith
Jeff SmithDesigning machine learning systems that scale
Collecting Uncertain Data
the Reactive Way
Jeff Smith
@jeffksmithjr
x.ai is a personal assistant
who schedules meetings for you
Collecting Uncertain Data the Reactive Way
Reactive Machine Learning
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Machine Learning Systems
Machine Learning Systems
Machine Learning Systems
Traits of Reactive Systems
Traits of Reactive Systems
Reactive Strategies
Reactive Strategies
Reactive Machine Learning
Reactive Machine Learning
Reactive Machine Learning
Collecting Data
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
What’s for
dinner?
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Collecting Uncertain Data the Reactive Way
Reactive Data Collection
Modeling Uncertain Data
Certain Data Model
case class ZebraReading(sensorId: Int,
locationId: Int,
timestamp: Long,
count: Int)
Collecting Uncertain Data the Reactive Way
Uncertainty Interval
27 33
Uncertain Data Model
case class PreyReading(sensorId: Int,
locationId: Int,
timestamp: Long,
animalsLowerBound: Double,
animalsUpperBound: Double,
percentZebras: Double)
Scaling Data Collection
Collecting Uncertain Data the Reactive Way
Simple Data Architecture
Simple Data Architecture
Mutable State
case class Region(id: Int)
import collection.mutable.HashMap
var densities = new HashMap[Region, Double]()
densities.put(Region(4), 52.4)
Scaling with Queues
Scaling with Queues
Out of Order Updates
Out of Order Updates
densities.put(Region(6), 73.6)
densities.put(Region(6), 0.5)
densities.get(Region(6)).get
Out of Order Updates
densities.put(Region(6), 73.6)
densities.put(Region(6), 0.5)
densities.get(Region(6)).get
densities.put(Region(6), 0.5)
densities.put(Region(6), 73.6)
densities.get(Region(6)).get
Concurrent Collections
import collection.mutable._
var synchronizedDensities = new LinkedHashMap[Region, Double]()
with SynchronizedMap[Region, Double]
Scaling with Locks
Scaling with Locks
Immutable Facts
case class PreyReading(sensorId: Int,
locationId: Int,
timestamp: Long,
animalsLowerBound: Double,
animalsUpperBound: Double,
percentZebras: Double)
implicit val preyReadingFormatter = Json.format[PreyReading]
Immutable Facts
val reading = PreyReading(36,
12,
currentTimeMillis(),
12.0,
18.0,
0.60)
val setDoc = bucket.set[PreyReading](readingId(reading), reading)
Scaling with Distributed Databases
Scaling with Distributed Databases
Handling Incomplete Data
Distributed Data Storage
Querying Complete Data
(bucket.searchValues[PreyReading]("prey", "by_sensor_id")
(new Query().setIncludeDocs(true)))
.enumerate.apply(Iteratee.foreach { doc =>
println(s"Prey Reading: $doc")})
Complete Data
Partition Tolerance
Partition Tolerance
Partition Tolerance
Partition Tolerance
Querying Incomplete Data
(bucket.searchValues[PreyReading]("prey", "by_sensor_id")
(new Query().setIncludeDocs(true)))
.enumerate.apply(Iteratee.foreach { doc =>
println(s"Prey Reading: $doc")})
Incomplete Data
Incomplete Data
Reactive Data Collection
For Later
reactivemachinelearning.com
medium.com/data-engineering
M A N N I N G
Jeff Smith
x.ai
@xdotai
hello@human.x.ai
New York, New York
skillsmatter.com/conferences/
6862-scala-exchange-2015#skillscasts
Thank You
Collecting Uncertain Data
the Reactive Way
Jeff Smith
@jeffksmithjr
1 sur 69

Recommandé

Introducing Reactive Machine Learning par
Introducing Reactive Machine LearningIntroducing Reactive Machine Learning
Introducing Reactive Machine LearningJeff Smith
2.4K vues81 diapositives
Spark for Reactive Machine Learning: Building Intelligent Agents at Scale par
Spark for Reactive Machine Learning: Building Intelligent Agents at ScaleSpark for Reactive Machine Learning: Building Intelligent Agents at Scale
Spark for Reactive Machine Learning: Building Intelligent Agents at ScaleJeff Smith
1.2K vues67 diapositives
Reactive Learning Agents par
Reactive Learning AgentsReactive Learning Agents
Reactive Learning AgentsJeff Smith
1.3K vues96 diapositives
Unafraid of Change: Optimizing ETL, ML, and AI in Fast-Paced Environments wit... par
Unafraid of Change: Optimizing ETL, ML, and AI in Fast-Paced Environments wit...Unafraid of Change: Optimizing ETL, ML, and AI in Fast-Paced Environments wit...
Unafraid of Change: Optimizing ETL, ML, and AI in Fast-Paced Environments wit...Databricks
516 vues28 diapositives
Machine Learning - Dataset Preparation par
Machine Learning - Dataset PreparationMachine Learning - Dataset Preparation
Machine Learning - Dataset PreparationAndrew Ferlitsch
2K vues16 diapositives
Is there a perfect data-parallel programming language? (Experiments with More... par
Is there a perfect data-parallel programming language? (Experiments with More...Is there a perfect data-parallel programming language? (Experiments with More...
Is there a perfect data-parallel programming language? (Experiments with More...Julian Hyde
366 vues97 diapositives

Contenu connexe

Tendances

Apprentissage statistique et analyse prédictive en Python avec scikit-learn p... par
Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...
Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...La Cuisine du Web
4.9K vues15 diapositives
Recommender Systems with Apache Spark's ALS Function par
Recommender Systems with Apache Spark's ALS FunctionRecommender Systems with Apache Spark's ALS Function
Recommender Systems with Apache Spark's ALS FunctionWill Johnson
24.1K vues33 diapositives
Basic of python for data analysis par
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysisPramod Toraskar
435 vues14 diapositives
Introduction to Machine Learning with SciKit-Learn par
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-LearnBenjamin Bengfort
17.5K vues78 diapositives
Next Generation Programming in R par
Next Generation Programming in RNext Generation Programming in R
Next Generation Programming in RFlorian Uhlitz
1.7K vues54 diapositives
PPT ON MACHINE LEARNING by Ragini Ratre par
PPT ON MACHINE LEARNING by Ragini RatrePPT ON MACHINE LEARNING by Ragini Ratre
PPT ON MACHINE LEARNING by Ragini RatreRaginiRatre
265 vues38 diapositives

Tendances(20)

Apprentissage statistique et analyse prédictive en Python avec scikit-learn p... par La Cuisine du Web
Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...
Apprentissage statistique et analyse prédictive en Python avec scikit-learn p...
La Cuisine du Web4.9K vues
Recommender Systems with Apache Spark's ALS Function par Will Johnson
Recommender Systems with Apache Spark's ALS FunctionRecommender Systems with Apache Spark's ALS Function
Recommender Systems with Apache Spark's ALS Function
Will Johnson24.1K vues
Introduction to Machine Learning with SciKit-Learn par Benjamin Bengfort
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-Learn
Benjamin Bengfort17.5K vues
Next Generation Programming in R par Florian Uhlitz
Next Generation Programming in RNext Generation Programming in R
Next Generation Programming in R
Florian Uhlitz1.7K vues
PPT ON MACHINE LEARNING by Ragini Ratre par RaginiRatre
PPT ON MACHINE LEARNING by Ragini RatrePPT ON MACHINE LEARNING by Ragini Ratre
PPT ON MACHINE LEARNING by Ragini Ratre
RaginiRatre265 vues
Java Collection framework par ankitgarg_er
Java Collection frameworkJava Collection framework
Java Collection framework
ankitgarg_er14.3K vues
Collections In Java par Binoj T E
Collections In JavaCollections In Java
Collections In Java
Binoj T E9.9K vues
5 collection framework par Minal Maniar
5 collection framework5 collection framework
5 collection framework
Minal Maniar2.6K vues
Data preprocessing for Machine Learning with R and Python par Akhilesh Joshi
Data preprocessing for Machine Learning with R and PythonData preprocessing for Machine Learning with R and Python
Data preprocessing for Machine Learning with R and Python
Akhilesh Joshi648 vues
Java collections concept par kumar gaurav
Java collections conceptJava collections concept
Java collections concept
kumar gaurav7.8K vues
Text Classification in Python – using Pandas, scikit-learn, IPython Notebook ... par Jimmy Lai
Text Classification in Python – using Pandas, scikit-learn, IPython Notebook ...Text Classification in Python – using Pandas, scikit-learn, IPython Notebook ...
Text Classification in Python – using Pandas, scikit-learn, IPython Notebook ...
Jimmy Lai29.6K vues
Data Structures for Statistical Computing in Python par Wes McKinney
Data Structures for Statistical Computing in PythonData Structures for Statistical Computing in Python
Data Structures for Statistical Computing in Python
Wes McKinney89.5K vues
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ... par Salah Amean
Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Salah Amean7.8K vues

En vedette

Reactive Machine Learning On and Beyond the JVM par
Reactive Machine Learning On and Beyond the JVMReactive Machine Learning On and Beyond the JVM
Reactive Machine Learning On and Beyond the JVMJeff Smith
1.4K vues100 diapositives
Visual Data Representation Techniques Combining Art and Design par
Visual Data Representation Techniques Combining Art and DesignVisual Data Representation Techniques Combining Art and Design
Visual Data Representation Techniques Combining Art and DesignLogo Design Guru
59.7K vues30 diapositives
Analytics Trends 2016: The next evolution par
Analytics Trends 2016: The next evolutionAnalytics Trends 2016: The next evolution
Analytics Trends 2016: The next evolutionDeloitte United States
170.7K vues24 diapositives
Reactive Machine Learning and Functional Programming par
Reactive Machine Learning and Functional ProgrammingReactive Machine Learning and Functional Programming
Reactive Machine Learning and Functional ProgrammingJeff Smith
2.2K vues89 diapositives
Impact Hiring: How Data Will Transform Youth Employment par
Impact Hiring: How Data Will Transform Youth EmploymentImpact Hiring: How Data Will Transform Youth Employment
Impact Hiring: How Data Will Transform Youth EmploymentThe Rockefeller Foundation
19.5K vues16 diapositives
Data Gravity, IoT, and Time Series - ThingMonk 2015 par
Data Gravity, IoT, and Time Series - ThingMonk 2015Data Gravity, IoT, and Time Series - ThingMonk 2015
Data Gravity, IoT, and Time Series - ThingMonk 2015dave.m
27.6K vues60 diapositives

En vedette(20)

Reactive Machine Learning On and Beyond the JVM par Jeff Smith
Reactive Machine Learning On and Beyond the JVMReactive Machine Learning On and Beyond the JVM
Reactive Machine Learning On and Beyond the JVM
Jeff Smith1.4K vues
Visual Data Representation Techniques Combining Art and Design par Logo Design Guru
Visual Data Representation Techniques Combining Art and DesignVisual Data Representation Techniques Combining Art and Design
Visual Data Representation Techniques Combining Art and Design
Logo Design Guru59.7K vues
Reactive Machine Learning and Functional Programming par Jeff Smith
Reactive Machine Learning and Functional ProgrammingReactive Machine Learning and Functional Programming
Reactive Machine Learning and Functional Programming
Jeff Smith2.2K vues
Data Gravity, IoT, and Time Series - ThingMonk 2015 par dave.m
Data Gravity, IoT, and Time Series - ThingMonk 2015Data Gravity, IoT, and Time Series - ThingMonk 2015
Data Gravity, IoT, and Time Series - ThingMonk 2015
dave.m27.6K vues
IQ Crash Course - Big Data Analytics par InterQuest Group
IQ Crash Course - Big Data AnalyticsIQ Crash Course - Big Data Analytics
IQ Crash Course - Big Data Analytics
InterQuest Group63.6K vues
DAMA Webinar - Big and Little Data Quality par DATAVERSITY
DAMA Webinar - Big and Little Data QualityDAMA Webinar - Big and Little Data Quality
DAMA Webinar - Big and Little Data Quality
DATAVERSITY34K vues
Visualising Data with Code par Ri Liu
Visualising Data with CodeVisualising Data with Code
Visualising Data with Code
Ri Liu32.2K vues
Net Promoter Score Pitfalls to Avoid par Aureus Analytics
Net Promoter Score Pitfalls to AvoidNet Promoter Score Pitfalls to Avoid
Net Promoter Score Pitfalls to Avoid
Aureus Analytics44.4K vues
Working With Big Data par Seth Familian
Working With Big DataWorking With Big Data
Working With Big Data
Seth Familian291.8K vues
Bringing Data Scientists and Engineers Together par Jeff Smith
Bringing Data Scientists and Engineers TogetherBringing Data Scientists and Engineers Together
Bringing Data Scientists and Engineers Together
Jeff Smith990 vues
SPARK USE CASE- Distributed Reinforcement Learning for Electricity Market Bi... par Impetus Technologies
SPARK USE CASE-  Distributed Reinforcement Learning for Electricity Market Bi...SPARK USE CASE-  Distributed Reinforcement Learning for Electricity Market Bi...
SPARK USE CASE- Distributed Reinforcement Learning for Electricity Market Bi...
Bidding strategies in deregulated power market par Gautham Reddy
Bidding strategies in deregulated power marketBidding strategies in deregulated power market
Bidding strategies in deregulated power market
Gautham Reddy1.2K vues
The dab:group @AM:DataConsult Business Assurance Series (English) par dabGroup
The dab:group @AM:DataConsult Business Assurance Series (English)The dab:group @AM:DataConsult Business Assurance Series (English)
The dab:group @AM:DataConsult Business Assurance Series (English)
dabGroup612 vues

Similaire à Collecting Uncertain Data the Reactive Way

Machine Learning par
Machine LearningMachine Learning
Machine Learningbutest
382 vues33 diapositives
Machine Learning par
Machine LearningMachine Learning
Machine Learningbutest
1.4K vues33 diapositives
Intrusion Detection par
Intrusion DetectionIntrusion Detection
Intrusion Detectionbutest
925 vues34 diapositives
Data mining par
Data mining Data mining
Data mining Jhadesunil
245 vues56 diapositives
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John Melonakos par
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John MelonakosPT-4054, "OpenCL™ Accelerated Compute Libraries" by John Melonakos
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John MelonakosAMD Developer Central
1.6K vues64 diapositives
Machine Learning and Real-World Applications par
Machine Learning and Real-World ApplicationsMachine Learning and Real-World Applications
Machine Learning and Real-World ApplicationsMachinePulse
23.8K vues19 diapositives

Similaire à Collecting Uncertain Data the Reactive Way(20)

Machine Learning par butest
Machine LearningMachine Learning
Machine Learning
butest382 vues
Machine Learning par butest
Machine LearningMachine Learning
Machine Learning
butest1.4K vues
Intrusion Detection par butest
Intrusion DetectionIntrusion Detection
Intrusion Detection
butest925 vues
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John Melonakos par AMD Developer Central
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John MelonakosPT-4054, "OpenCL™ Accelerated Compute Libraries" by John Melonakos
PT-4054, "OpenCL™ Accelerated Compute Libraries" by John Melonakos
Machine Learning and Real-World Applications par MachinePulse
Machine Learning and Real-World ApplicationsMachine Learning and Real-World Applications
Machine Learning and Real-World Applications
MachinePulse23.8K vues
Supervised vs unsupervised learning - infographic par Intellspot
Supervised vs unsupervised learning - infographicSupervised vs unsupervised learning - infographic
Supervised vs unsupervised learning - infographic
Intellspot740 vues
Machine Learning : why we should know and how it works par Kevin Lee
Machine Learning : why we should know and how it worksMachine Learning : why we should know and how it works
Machine Learning : why we should know and how it works
Kevin Lee139 vues
PPT par butest
PPTPPT
PPT
butest849 vues
Introduction to Deep Learning and neon at Galvanize par Intel Nervana
Introduction to Deep Learning and neon at GalvanizeIntroduction to Deep Learning and neon at Galvanize
Introduction to Deep Learning and neon at Galvanize
Intel Nervana1.4K vues
Towards Efficient Privacy-preserving Image Feature Extraction in Cloud Computing par Si Chen
Towards Efficient Privacy-preserving Image Feature Extraction in Cloud ComputingTowards Efficient Privacy-preserving Image Feature Extraction in Cloud Computing
Towards Efficient Privacy-preserving Image Feature Extraction in Cloud Computing
Si Chen1.7K vues
International Journal of Computational Engineering Research(IJCER) par ijceronline
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline73 vues
Lecture-1-Introduction-to-Data-Mining.pdf par Jojo314349
Lecture-1-Introduction-to-Data-Mining.pdfLecture-1-Introduction-to-Data-Mining.pdf
Lecture-1-Introduction-to-Data-Mining.pdf
Jojo31434915 vues
Bayesian Network 을 활용한 예측 분석 par datasciencekorea
Bayesian Network 을 활용한 예측 분석Bayesian Network 을 활용한 예측 분석
Bayesian Network 을 활용한 예측 분석
datasciencekorea8.7K vues
Nimrita koul Machine Learning par Nimrita Koul
Nimrita koul  Machine LearningNimrita koul  Machine Learning
Nimrita koul Machine Learning
Nimrita Koul272 vues
What the Brain says about Machine Intelligence par Numenta
What the Brain says about Machine Intelligence What the Brain says about Machine Intelligence
What the Brain says about Machine Intelligence
Numenta11.5K vues

Plus de Jeff Smith

Questioning Conversational AI par
Questioning Conversational AIQuestioning Conversational AI
Questioning Conversational AIJeff Smith
184 vues38 diapositives
Neuroevolution in Elixir par
Neuroevolution in ElixirNeuroevolution in Elixir
Neuroevolution in ElixirJeff Smith
141 vues63 diapositives
Tools for Making Machine Learning more Reactive par
Tools for Making Machine Learning more ReactiveTools for Making Machine Learning more Reactive
Tools for Making Machine Learning more ReactiveJeff Smith
134 vues79 diapositives
Building Learning Agents par
Building Learning AgentsBuilding Learning Agents
Building Learning AgentsJeff Smith
433 vues113 diapositives
Reactive for Machine Learning Teams par
Reactive for Machine Learning TeamsReactive for Machine Learning Teams
Reactive for Machine Learning TeamsJeff Smith
424 vues42 diapositives
Characterizing Intelligence with Elixir par
Characterizing Intelligence with ElixirCharacterizing Intelligence with Elixir
Characterizing Intelligence with ElixirJeff Smith
575 vues29 diapositives

Plus de Jeff Smith(10)

Questioning Conversational AI par Jeff Smith
Questioning Conversational AIQuestioning Conversational AI
Questioning Conversational AI
Jeff Smith184 vues
Neuroevolution in Elixir par Jeff Smith
Neuroevolution in ElixirNeuroevolution in Elixir
Neuroevolution in Elixir
Jeff Smith141 vues
Tools for Making Machine Learning more Reactive par Jeff Smith
Tools for Making Machine Learning more ReactiveTools for Making Machine Learning more Reactive
Tools for Making Machine Learning more Reactive
Jeff Smith134 vues
Building Learning Agents par Jeff Smith
Building Learning AgentsBuilding Learning Agents
Building Learning Agents
Jeff Smith433 vues
Reactive for Machine Learning Teams par Jeff Smith
Reactive for Machine Learning TeamsReactive for Machine Learning Teams
Reactive for Machine Learning Teams
Jeff Smith424 vues
Characterizing Intelligence with Elixir par Jeff Smith
Characterizing Intelligence with ElixirCharacterizing Intelligence with Elixir
Characterizing Intelligence with Elixir
Jeff Smith575 vues
Huhdoop?: Uncertain Data Management on Non-Relational Database Systems par Jeff Smith
Huhdoop?: Uncertain Data Management on Non-Relational Database SystemsHuhdoop?: Uncertain Data Management on Non-Relational Database Systems
Huhdoop?: Uncertain Data Management on Non-Relational Database Systems
Jeff Smith5.9K vues
Breadth or Depth: What's in a column-store? par Jeff Smith
Breadth or Depth: What's in a column-store?Breadth or Depth: What's in a column-store?
Breadth or Depth: What's in a column-store?
Jeff Smith1.1K vues
Save the server, Save the world par Jeff Smith
Save the server, Save the worldSave the server, Save the world
Save the server, Save the world
Jeff Smith865 vues
NoSQL in Perspective par Jeff Smith
NoSQL in PerspectiveNoSQL in Perspective
NoSQL in Perspective
Jeff Smith893 vues

Dernier

Best Home Security Systems.pptx par
Best Home Security Systems.pptxBest Home Security Systems.pptx
Best Home Security Systems.pptxmogalang
9 vues16 diapositives
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ... par
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...DataScienceConferenc1
6 vues15 diapositives
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ... par
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...DataScienceConferenc1
10 vues18 diapositives
SUPER STORE SQL PROJECT.pptx par
SUPER STORE SQL PROJECT.pptxSUPER STORE SQL PROJECT.pptx
SUPER STORE SQL PROJECT.pptxkhan888620
13 vues16 diapositives
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an... par
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...StatsCommunications
7 vues26 diapositives
Short Story Assignment by Kelly Nguyen par
Short Story Assignment by Kelly NguyenShort Story Assignment by Kelly Nguyen
Short Story Assignment by Kelly Nguyenkellynguyen01
20 vues17 diapositives

Dernier(20)

Best Home Security Systems.pptx par mogalang
Best Home Security Systems.pptxBest Home Security Systems.pptx
Best Home Security Systems.pptx
mogalang9 vues
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ... par DataScienceConferenc1
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...
[DSC Europe 23][AI:CSI] Aleksa Stojanovic - Applying AI for Threat Detection ...
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ... par DataScienceConferenc1
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...
[DSC Europe 23] Predrag Ilic & Simeon Rilling - From Data Lakes to Data Mesh ...
SUPER STORE SQL PROJECT.pptx par khan888620
SUPER STORE SQL PROJECT.pptxSUPER STORE SQL PROJECT.pptx
SUPER STORE SQL PROJECT.pptx
khan88862013 vues
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an... par StatsCommunications
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...
OECD-Persol Holdings Workshop on Advancing Employee Well-being in Business an...
Short Story Assignment by Kelly Nguyen par kellynguyen01
Short Story Assignment by Kelly NguyenShort Story Assignment by Kelly Nguyen
Short Story Assignment by Kelly Nguyen
kellynguyen0120 vues
6498-Butun_Beyinli_Cocuq-Daniel_J.Siegel-Tina_Payne_Bryson-2011-259s.pdf par 10urkyr34
6498-Butun_Beyinli_Cocuq-Daniel_J.Siegel-Tina_Payne_Bryson-2011-259s.pdf6498-Butun_Beyinli_Cocuq-Daniel_J.Siegel-Tina_Payne_Bryson-2011-259s.pdf
6498-Butun_Beyinli_Cocuq-Daniel_J.Siegel-Tina_Payne_Bryson-2011-259s.pdf
10urkyr347 vues
Listed Instruments Survey 2022.pptx par secretariat4
Listed Instruments Survey  2022.pptxListed Instruments Survey  2022.pptx
Listed Instruments Survey 2022.pptx
secretariat452 vues
Chapter 3b- Process Communication (1) (1)(1) (1).pptx par ayeshabaig2004
Chapter 3b- Process Communication (1) (1)(1) (1).pptxChapter 3b- Process Communication (1) (1)(1) (1).pptx
Chapter 3b- Process Communication (1) (1)(1) (1).pptx
CRM stick or twist workshop par info828217
CRM stick or twist workshopCRM stick or twist workshop
CRM stick or twist workshop
info82821714 vues
[DSC Europe 23] Danijela Horak - The Innovator’s Dilemma: to Build or Not to ... par DataScienceConferenc1
[DSC Europe 23] Danijela Horak - The Innovator’s Dilemma: to Build or Not to ...[DSC Europe 23] Danijela Horak - The Innovator’s Dilemma: to Build or Not to ...
[DSC Europe 23] Danijela Horak - The Innovator’s Dilemma: to Build or Not to ...
Ukraine Infographic_22NOV2023_v2.pdf par AnastosiyaGurin
Ukraine Infographic_22NOV2023_v2.pdfUkraine Infographic_22NOV2023_v2.pdf
Ukraine Infographic_22NOV2023_v2.pdf
AnastosiyaGurin1.4K vues
[DSC Europe 23] Matteo Molteni - Implementing a Robust CI Workflow with dbt f... par DataScienceConferenc1
[DSC Europe 23] Matteo Molteni - Implementing a Robust CI Workflow with dbt f...[DSC Europe 23] Matteo Molteni - Implementing a Robust CI Workflow with dbt f...
[DSC Europe 23] Matteo Molteni - Implementing a Robust CI Workflow with dbt f...
CRIJ4385_Death Penalty_F23.pptx par yvettemm100
CRIJ4385_Death Penalty_F23.pptxCRIJ4385_Death Penalty_F23.pptx
CRIJ4385_Death Penalty_F23.pptx
yvettemm1007 vues
[DSC Europe 23] Stefan Mrsic_Goran Savic - Evolving Technology Excellence.pptx par DataScienceConferenc1
[DSC Europe 23] Stefan Mrsic_Goran Savic - Evolving Technology Excellence.pptx[DSC Europe 23] Stefan Mrsic_Goran Savic - Evolving Technology Excellence.pptx
[DSC Europe 23] Stefan Mrsic_Goran Savic - Evolving Technology Excellence.pptx

Collecting Uncertain Data the Reactive Way