SlideShare a Scribd company logo
1 of 95
Monte Carlo Tree Search in continuous spaces
using Voronoi optimistic optimization
with regret bounds
Beomjoon Kim
(with Kyungjae Lee, Sungbin Lim, Leslie Pack Kaelbling, Tomas Lozano-Perez)
Monte Carlo Tree Search in discrete action
spaces
Characteristics of robotics problems
Characteristics of robotics problems
Continuous and
high-dimensional
action spaces
Main question addressed in our paper
How can we extend MCTS to
high-dimensional continuous
action space problems?
First, consider the easier problem
• Assume planning horizon is 1
The problem is reduced to a budgeted-black-box-
function optimization (BBFO) problem
First, consider the easier problem
• Assume planning horizon is 1
• The problem is reduced to a budgeted-black-
box-function optimization (BBFO) problem
First, consider the easier problem
• Assume planning horizon is 1
• The problem is reduced to a budgeted-black-
box-function optimization (BBFO) problem
First, consider the easier problem
• Assume planning horizon is 1
• The problem is reduced to a budgeted-black-
box-function optimization (BBFO) problem
within n number of evaluations
BBFO: general problem formulation
BBFO: general problem formulation
• Given:
• Budget
• Bounded search space
• Objective function
BBFO problem formulation
• Goal: minimize the simple regret
A class of BBFO methods
Bayesian
Optimization
(BO)
EI (Mockus, 1974)
PI (Kushner, 1964)
GP-UCB(Srinivas et al., 2010)
ES (Hennig & Schuler, 2012)
PES (Hernandez-Lobato et al., 2014)
EST (Wang et al., 2016)
Drawback in high-dimensional search spaces
Bayesian
Optimization
(BO)
Hierarchical
Partitioning
(HP)
• EI (Mockus, 1974)
• PI (Kushner, 1964)
• GP-UCB( Auer, 2002; Srinivas et
al., 2010)
• ES (Hennig & Schuler, 2012)
• PES (Hernandez-Lobato et al.,
2014)
• EST (Wang et al., 2016)
Requires global
optimization of the
acquisition function
Another class of BBFO methods
Bayesian
Optimization
(BO)
Hierarchical
Partitioning
(HP)
• EI (Mockus, 1974)
• PI (Kushner, 1964)
• GP-UCB( Auer, 2002; Srinivas et
al., 2010)
• ES (Hennig & Schuler, 2012)
• PES (Hernandez-Lobato et al.,
2014)
• EST (Wang et al., 2016)
Requires global
optimization of the
acquisition function
Hierarchical
Partitioning
(HP)
DOO(Munos, 2011)
SOO(Valko et al., 2013)
HOO(Bubeck et al.,
2010)
How hierarchical partitioning methods work
• Consecutively partitioning the search space
How hierarchical partitioning methods work
• Consecutively partitioning the search space
• First evaluated point
How hierarchical partitioning methods work
• Partition space by constructing K cells. Let’s say K =
3
How hierarchical partitioning methods work
• Evaluate points in the new cells
How hierarchical partitioning methods work
• Choose the most promising cell
How hierarchical partitioning methods work
• Construct a new partition, and evaluate points
How hierarchical partitioning methods work
How to select the most promising cell?
Selecting the most promising cell
• Deterministic Optimistic Optimization [Munos 2011]
Compute b-values at each cell, where
Selecting the most promising cell
• Deterministic Optimistic Optimization [Munos 2011]
• Compute the b-value of each cell, where
Selecting the most promising cell
• Deterministic Optimistic Optimization [Munos 2011]
• Compute the b-value of each cell, where
Selecting the most promising cell
• Deterministic Optimistic Optimization [Munos 2011]
• Compute the b-value of each cell, where
Exploration bonus
Prefers larger cells
Diameter of a cell
Diameter of a cell
Diameter of a cell
DOO: Choose the cell with the highest b-value
DOO: exploration vs. exploitation
DOO: exploration vs. exploitation
Exploitation of current function knowledge
prefer cells that have high function values
DOO: exploration vs. exploitation
Exploration of the search
space
prefer cells with large diameters
Exploitation of current function knowledge
prefer cells that have high function values
BUT: it requires deciding which dimension to cut
BUT: it requires deciding which dimension to cut
BUT: it requires deciding which dimension to cut
BUT: it requires deciding which dimension to cut
VS.
BUT: it requires deciding which dimension to cut
In -dimensional search space, you
have number of choices
BUT: it requires deciding which dimension to cut
Finding the
optimal sequence of dimensions
to cut is not trivial
In -dimensional search space, you
have number of choices
DOO’s intuitive idea
• DOO idea:
• The larger the cell, the more the exploration
bonus
• The larger the value of the cell, the more the
exploitation bonus
Our main question
DOO idea:
The larger the cell, the more the exploration bonus
The larger the value of the cell, the more the
exploitation bonus
How can we use this idea
without cell constructions?
Our method: Implicitly construct cells
Our method: Implicitly construct Voronoi cells
Our method: Implicitly construct Voronoi cells
Voronoi cell:
A set of points closer to its
generator than all the other
generators
Our method: Implicitly construct Voronoi cells
Example
generator
Voronoi cell:
A set of points closer to its
generator than all the other
generators
Our method: Implicitly construct Voronoi cells
Example
generator
Voronoi cell:
A set of points closer to its
generator than all the other
generators
Our method: Implicitly construct Voronoi cells
Example
generator
Voronoi cell:
A set of points closer to its
generator than all the other
generators
Evaluated points
represent generators
Exploration
How do you prefer the larger cells
without constructing Voronoi cells?
Exploration
Use Voronoi bias
How do you prefer the larger cells
without constructing Voronoi
cells?
Exploration: Don't construct Vcells, use Voronoi bias
Exploration: Don't construct Vcells, use Voronoi bias
Volume of a cell
Volume of the search space
Exploration: Don't construct Vcells, use Voronoi bias
Exploration: Don't construct Vcells, use Voronoi bias
Exploration: Don't construct Vcells, use Voronoi bias
Exploration: Don't construct Vcells, use Voronoi bias
Exploration: Don't construct Vcells, use Voronoi bias
Exploitation
How do you select the cell with the highest value
without constructing Voronoi cells?
Exploitation
Use rejection sampling
How do you select the cell with the highest value
without constructing Voronoi cells?
Use rejection sampling to do exploitation
Assume best point found
so far
Use rejection sampling to do exploitation
Assume best point found
so far
Use rejection sampling to do exploitation
Assume best point found
so far
Randomly Sample:
Use rejection sampling to do exploitation
Reject until the sampled
point is closest to the
best point
Assume best point found
so far
Randomly Sample:
VOO: Voronoi optimistic optimization
VOO: Voronoi optimistic optimization
Search
space
VOO: Voronoi optimistic optimization
Search
space Exploration
parameter
VOO: Voronoi optimistic optimization
Search
space Exploration
parameter
Distance
metric
VOO: Voronoi optimistic optimization
Search
space Exploration
parameter
Distance
metric
Budget
VOO: Voronoi optimistic optimization
With probability
With probability
VOO: Voronoi optimistic optimization
Exploration
VOO: Voronoi optimistic optimization
With probability
With probability
Exploration
VOO: Voronoi optimistic optimization
With probability
With probability
Exploration
Exploitation
VOO: Voronoi optimistic optimization
Evaluate
With probability
With probability
Exploration
Exploitation
Optimizing Rastrigin function
Bestvaluefoundsofar
Number of evaluations
Optimizing 10 dimensional Rastrigin function
10D – Bayesian optimization methods
Bestvaluefoundsofar
Number of evaluations
REMBO
BaMSOO
GPUCB
10D – Hierarchical partitioning methods
Bestvaluefoundsofar
Number of evaluations
SOO
DOO
10D – Evolutionary algorithm
Bestvaluefoundsofar
Number of evaluations
CMA-ES
10D – Voronoi optimistic optimization
Bestvaluefoundsofar
Number of evaluations
VOO
20D – even more drastic difference
Bestvaluefoundsofar
Number of evaluations
VOO
From BBFO to MCTS
• So that was when planning horizon is 1
• What about planning horizon >= 1, for
deterministic environments?
Assign a VOO agent at each node
Solve for the optimal action with respect to the
estimated Q-function
But…we have access to , not the true
VOO applied to Trees (VOOT): high-level
idea
VOO applied to Trees (VOOT): high-level
idea
Assign a VOO agent at each node
Solve the action optimization problem using the
estimated Q-function
But…we have access to , not the true
Our main theoretical result
How many simulations do we need to guarantee
Our main theoretical result
How many simulations do we need to guarantee
Under mild assumptions,
Packing problem
Packing problem
• Actions: placements for three boxes (9
dim)
Reward function:
1/d if feasible,
r_min otherwise
Planning horizon: 20
Packing problem
• Actions: placements for three boxes (9
dim)
• Reward function:
• 1/d if feasible,
• r_min otherwise
Planning horizon: 20
Packing problem
• Actions: placements for three boxes (9
dim)
• Reward function:
• 1/d if feasible,
• r_min otherwise
• Total boxes to pack: 20
State-of-the-art RL algorithms
PPO
DDPG
State-of-the-art continuous-action MCTS
PW-UCT
DOOT
VOO applied to Trees
VOOT
Takeaways
Voronoi Optimistic Optimization applied to Trees
(VOOT) for deterministic environment
• Empirical contribution: improvement over the
state-of-the-art, especially in high-dimensional
action-spaces
• Theoretical contribution: regret-bound for
VOOT

More Related Content

What's hot

レコメンドシステムの社会実装
レコメンドシステムの社会実装レコメンドシステムの社会実装
レコメンドシステムの社会実装西岡 賢一郎
 
ウェーブレット木の世界
ウェーブレット木の世界ウェーブレット木の世界
ウェーブレット木の世界Preferred Networks
 
リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介Recruit Technologies
 
書籍「計算社会科学入門」第9章 統計モデリング
書籍「計算社会科学入門」第9章 統計モデリング書籍「計算社会科学入門」第9章 統計モデリング
書籍「計算社会科学入門」第9章 統計モデリングMasanori Takano
 
บทที่ 2 วิวัฒนาการมัลติมีเดีย
บทที่ 2 วิวัฒนาการมัลติมีเดียบทที่ 2 วิวัฒนาการมัลติมีเดีย
บทที่ 2 วิวัฒนาการมัลติมีเดียsomdetpittayakom school
 
実験心理学者のためのPython
実験心理学者のためのPython実験心理学者のためのPython
実験心理学者のためのPythonMasataka Miyoshi
 
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築Tomoyuki Kajiwara
 
Prophet入門【理論編】Facebookの時系列予測ツール
Prophet入門【理論編】Facebookの時系列予測ツールProphet入門【理論編】Facebookの時系列予測ツール
Prophet入門【理論編】Facebookの時系列予測ツールhoxo_m
 
Python 学習教材 (300~309ページ)
Python 学習教材 (300~309ページ)Python 学習教材 (300~309ページ)
Python 学習教材 (300~309ページ)Jun MITANI
 
Rあんなときこんなとき(tokyo r#12)
Rあんなときこんなとき(tokyo r#12)Rあんなときこんなとき(tokyo r#12)
Rあんなときこんなとき(tokyo r#12)Shintaro Fukushima
 
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜kusukawa
 
科学技術計算関連Pythonパッケージの概要
科学技術計算関連Pythonパッケージの概要科学技術計算関連Pythonパッケージの概要
科学技術計算関連Pythonパッケージの概要Toshihiro Kamishima
 
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition 全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition __john_smith__
 
Rを用いたLTV(Life Time Value)の推定
Rを用いたLTV(Life Time Value)の推定Rを用いたLTV(Life Time Value)の推定
Rを用いたLTV(Life Time Value)の推定宏喜 佐野
 
Arc015途中まで解説
Arc015途中まで解説Arc015途中まで解説
Arc015途中まで解説AtCoder Inc.
 
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナーKoichi Hamada
 
Prophet入門【R編】Facebookの時系列予測ツール
Prophet入門【R編】Facebookの時系列予測ツールProphet入門【R編】Facebookの時系列予測ツール
Prophet入門【R編】Facebookの時系列予測ツールhoxo_m
 

What's hot (20)

レコメンドシステムの社会実装
レコメンドシステムの社会実装レコメンドシステムの社会実装
レコメンドシステムの社会実装
 
ウェーブレット木の世界
ウェーブレット木の世界ウェーブレット木の世界
ウェーブレット木の世界
 
最大流 (max flow)
最大流 (max flow)最大流 (max flow)
最大流 (max flow)
 
リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介リクルート式 自然言語処理技術の適応事例紹介
リクルート式 自然言語処理技術の適応事例紹介
 
書籍「計算社会科学入門」第9章 統計モデリング
書籍「計算社会科学入門」第9章 統計モデリング書籍「計算社会科学入門」第9章 統計モデリング
書籍「計算社会科学入門」第9章 統計モデリング
 
บทที่ 2 วิวัฒนาการมัลติมีเดีย
บทที่ 2 วิวัฒนาการมัลติมีเดียบทที่ 2 วิวัฒนาการมัลติมีเดีย
บทที่ 2 วิวัฒนาการมัลติมีเดีย
 
実験心理学者のためのPython
実験心理学者のためのPython実験心理学者のためのPython
実験心理学者のためのPython
 
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築
単語分散表現のアライメントに基づく文間類似度を用いたテキスト平易化のための単言語パラレルコーパスの構築
 
RでWAIC
RでWAICRでWAIC
RでWAIC
 
Prophet入門【理論編】Facebookの時系列予測ツール
Prophet入門【理論編】Facebookの時系列予測ツールProphet入門【理論編】Facebookの時系列予測ツール
Prophet入門【理論編】Facebookの時系列予測ツール
 
Sutton chapter4
Sutton chapter4Sutton chapter4
Sutton chapter4
 
Python 学習教材 (300~309ページ)
Python 学習教材 (300~309ページ)Python 学習教材 (300~309ページ)
Python 学習教材 (300~309ページ)
 
Rあんなときこんなとき(tokyo r#12)
Rあんなときこんなとき(tokyo r#12)Rあんなときこんなとき(tokyo r#12)
Rあんなときこんなとき(tokyo r#12)
 
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜
小さな自動化から始める快適お仕事生活〜ラズパイ+Node-REDでローコードに自動化しよう〜
 
科学技術計算関連Pythonパッケージの概要
科学技術計算関連Pythonパッケージの概要科学技術計算関連Pythonパッケージの概要
科学技術計算関連Pythonパッケージの概要
 
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition 全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
全部Excelだけで実現しようとして後悔するデータ分析 2nd Edition
 
Rを用いたLTV(Life Time Value)の推定
Rを用いたLTV(Life Time Value)の推定Rを用いたLTV(Life Time Value)の推定
Rを用いたLTV(Life Time Value)の推定
 
Arc015途中まで解説
Arc015途中まで解説Arc015途中まで解説
Arc015途中まで解説
 
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー
「樹木モデルとランダムフォレスト-機械学習による分類・予測-」-データマイニングセミナー
 
Prophet入門【R編】Facebookの時系列予測ツール
Prophet入門【R編】Facebookの時系列予測ツールProphet入門【R編】Facebookの時系列予測ツール
Prophet入門【R編】Facebookの時系列予測ツール
 

Similar to Monte Carlo Tree Search in continuous spaces using Voronoi optimistic optimization with regret bounds

Learning loss for active learning
Learning loss for active learningLearning loss for active learning
Learning loss for active learningNAVER Engineering
 
ICIS2021 Making the Crowd Wiser: (Re)combination through teaming
ICIS2021 Making the Crowd Wiser: (Re)combination through teamingICIS2021 Making the Crowd Wiser: (Re)combination through teaming
ICIS2021 Making the Crowd Wiser: (Re)combination through teamingssuserb4c6711
 
Opinion Driven Decision Support System
Opinion Driven Decision Support SystemOpinion Driven Decision Support System
Opinion Driven Decision Support SystemKavita Ganesan
 
The deep bootstrap framework review
The deep bootstrap framework reviewThe deep bootstrap framework review
The deep bootstrap framework reviewtaeseon ryu
 
Exploratory Testing Explained (Tampere Goes Agile - 2013)
Exploratory Testing Explained (Tampere Goes Agile - 2013)Exploratory Testing Explained (Tampere Goes Agile - 2013)
Exploratory Testing Explained (Tampere Goes Agile - 2013)Aleksis Tulonen
 
Recommendation engine Using Genetic Algorithm
Recommendation engine Using Genetic AlgorithmRecommendation engine Using Genetic Algorithm
Recommendation engine Using Genetic AlgorithmVaibhav Varshney
 
Characterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentCharacterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentUniversity of Bologna
 
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReadersRakuten Group, Inc.
 
Discovery Hub: on-the-fly linked data exploratory search
Discovery Hub: on-the-fly linked data exploratory searchDiscovery Hub: on-the-fly linked data exploratory search
Discovery Hub: on-the-fly linked data exploratory searchFabien Gandon
 
Learning from Noisy Label Distributions (ICANN2017)
Learning from Noisy Label Distributions (ICANN2017)Learning from Noisy Label Distributions (ICANN2017)
Learning from Noisy Label Distributions (ICANN2017)Yuya Yoshikawa
 
Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Engr Nosheen Memon
 
NIPS 2016. BayesOpt workshop invited talk.
NIPS 2016.  BayesOpt workshop invited talk.NIPS 2016.  BayesOpt workshop invited talk.
NIPS 2016. BayesOpt workshop invited talk.Joshua Knowles
 
Decision Forests and discriminant analysis
Decision Forests and discriminant analysisDecision Forests and discriminant analysis
Decision Forests and discriminant analysispotaters
 
ObjRecog2-17 (1).pptx
ObjRecog2-17 (1).pptxObjRecog2-17 (1).pptx
ObjRecog2-17 (1).pptxssuserc074dd
 
Discovering and Monitoring Product Features and the Opinions on them with OPI...
Discovering and Monitoring Product Features and the Opinions on them with OPI...Discovering and Monitoring Product Features and the Opinions on them with OPI...
Discovering and Monitoring Product Features and the Opinions on them with OPI...Eirini Ntoutsi
 

Similar to Monte Carlo Tree Search in continuous spaces using Voronoi optimistic optimization with regret bounds (18)

Learning loss for active learning
Learning loss for active learningLearning loss for active learning
Learning loss for active learning
 
ICIS2021 Making the Crowd Wiser: (Re)combination through teaming
ICIS2021 Making the Crowd Wiser: (Re)combination through teamingICIS2021 Making the Crowd Wiser: (Re)combination through teaming
ICIS2021 Making the Crowd Wiser: (Re)combination through teaming
 
Genetic Algorithm
Genetic Algorithm Genetic Algorithm
Genetic Algorithm
 
Opinion Driven Decision Support System
Opinion Driven Decision Support SystemOpinion Driven Decision Support System
Opinion Driven Decision Support System
 
The deep bootstrap framework review
The deep bootstrap framework reviewThe deep bootstrap framework review
The deep bootstrap framework review
 
Exploratory Testing Explained (Tampere Goes Agile - 2013)
Exploratory Testing Explained (Tampere Goes Agile - 2013)Exploratory Testing Explained (Tampere Goes Agile - 2013)
Exploratory Testing Explained (Tampere Goes Agile - 2013)
 
Recommendation engine Using Genetic Algorithm
Recommendation engine Using Genetic AlgorithmRecommendation engine Using Genetic Algorithm
Recommendation engine Using Genetic Algorithm
 
Characterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentCharacterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experiment
 
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders
[Rakuten TechConf2014] [C-2] Big Data for eBooks and eReaders
 
Discovery Hub: on-the-fly linked data exploratory search
Discovery Hub: on-the-fly linked data exploratory searchDiscovery Hub: on-the-fly linked data exploratory search
Discovery Hub: on-the-fly linked data exploratory search
 
Learning from Noisy Label Distributions (ICANN2017)
Learning from Noisy Label Distributions (ICANN2017)Learning from Noisy Label Distributions (ICANN2017)
Learning from Noisy Label Distributions (ICANN2017)
 
Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO)
 
NIPS 2016. BayesOpt workshop invited talk.
NIPS 2016.  BayesOpt workshop invited talk.NIPS 2016.  BayesOpt workshop invited talk.
NIPS 2016. BayesOpt workshop invited talk.
 
bbch5.ppt.ppt
bbch5.ppt.pptbbch5.ppt.ppt
bbch5.ppt.ppt
 
Decision Forests and discriminant analysis
Decision Forests and discriminant analysisDecision Forests and discriminant analysis
Decision Forests and discriminant analysis
 
ObjRecog2-17 (1).pptx
ObjRecog2-17 (1).pptxObjRecog2-17 (1).pptx
ObjRecog2-17 (1).pptx
 
Discovering and Monitoring Product Features and the Opinions on them with OPI...
Discovering and Monitoring Product Features and the Opinions on them with OPI...Discovering and Monitoring Product Features and the Opinions on them with OPI...
Discovering and Monitoring Product Features and the Opinions on them with OPI...
 
CLIM Program: Remote Sensing Workshop, Computational and Statistical Trade-of...
CLIM Program: Remote Sensing Workshop, Computational and Statistical Trade-of...CLIM Program: Remote Sensing Workshop, Computational and Statistical Trade-of...
CLIM Program: Remote Sensing Workshop, Computational and Statistical Trade-of...
 

Recently uploaded

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard37
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 

Recently uploaded (20)

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

Monte Carlo Tree Search in continuous spaces using Voronoi optimistic optimization with regret bounds