From 1024eb51945b83b8e000ae7b98687c48620e46d4 Mon Sep 17 00:00:00 2001 From: "apoorvagni@kubuntu" Date: Fri, 17 Apr 2020 11:03:15 +0530 Subject: [PATCH] updated + #13 --- public/index.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/public/index.html b/public/index.html index 0e197e0..a915a48 100644 --- a/public/index.html +++ b/public/index.html @@ -80,7 +80,7 @@

Mining Gold!

For now, let us make a simplifying assumption, the gold content lies in a one-dimensional space, i.e., we are talking about gold distribution only about a line. We want to find the location along this line with the maximum gold while only drilling a few times (as drilling is expensive).

- Initially, we have no idea about the amount of gold at different locations. The only way to learn the gold distribution is by drilling at different locations. This drilling is costly. Thus, we want to minimize the number of drillings required while still finding the location of maximum gold quickly. + Initially, we have no idea about the gold distribution. The only way to learn the gold distribution to drill at different locations. However, this drilling is costly. Thus, we want to minimize the number of drillings required while still finding the location of maximum gold quickly.

@@ -91,7 +91,7 @@

Mining Gold!

  • Problem 1: Best Estimate of Gold Distribution (Active Learning)
    - In this problem, we want to estimate the amount of gold on the one-dimensional line. We can not drill at every location due to the prohibitive cost. Instead, we should drill at those locations that provide us with the maximum information about the distribution of the gold. This problem is akin to + Here we want to estimate the amount of gold on the one-dimensional line. We can not drill at every location due to the prohibitive cost. Instead, we should drill at those locations that provide us with the maximum information about the distribution of the gold. This problem is akin to active learning . @@ -101,7 +101,7 @@

    Mining Gold!

  • Problem 2: Location of Maximum Gold (Bayesian Optimization)
    - In this problem, we want to find the location in the one-dimensional space where the gold quantity is the maximum, using a small number of drillings. This problem is akin to + Here we want to find the location in the one-dimensional space where the gold quantity is the maximum, using a small number of drillings. This problem is akin to Bayesian Optimization (BO). @@ -110,8 +110,7 @@

    Mining Gold!

    - In this article, we will soon see how the two problems are related, - but not the same. + We will soon see how the two problems are related, but not the same.