Spaces:
Running on CPU Upgrade

osv5m commited on
Commit
16190fc
·
verified ·
1 Parent(s): da54960

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -44,10 +44,12 @@ RULES = """<h1>OSV-5M (plonk)</h1>
44
  <h3> Click "Select" to finalize your selection and then "Next" to move to the next image.</h3>
45
 
46
  <h2> AI Competitors </h2>
47
- <h3> You will compete against two AIs: Plonk-AI (our best model) and Baseline-AI (a simpler approach). These AIs have not been trained on any of the images you will see; in fact, they haven't seen anything within a 1km radius of them. Like you, the AIs will need to pick up on geographic clues to pinpoint the locations of the images.</h3>
 
 
48
 
49
  <h2> Geoscore </h2>
50
- <h3> The geoscore is calculated based on how close each guess is to the true location as in Geoguessr, with a maximum of 5000 points, using the formula := 5000*exp(-d/1492.7) </h3>
51
  """
52
  css = """
53
  @font-face {
@@ -80,6 +82,12 @@ h3 {
80
 
81
  space_js = """
82
  <script src="https://cdn.jsdelivr.net/npm/@rapideditor/[email protected]/dist/country-coder.iife.min.js"></script>
 
 
 
 
 
 
83
  <script>
84
  function shortcuts(e) {
85
  var event = document.all ? window.event : e;
 
44
  <h3> Click "Select" to finalize your selection and then "Next" to move to the next image.</h3>
45
 
46
  <h2> AI Competitors </h2>
47
+ <h3> You will compete against two AIs: Plonk-AI (our best model) and Baseline-AI (a simpler approach).</h3>
48
+ <h3> These AIs have not been trained on any of the images you will see; in fact, they haven't seen anything within a 1km radius of them.</h3>
49
+ <h3> Like you, the AIs will need to pick up on geographic clues to pinpoint the locations of the images.</h3>
50
 
51
  <h2> Geoscore </h2>
52
+ <h3> The geoscore is calculated based on how close each guess is to the true location as in Geoguessr, with a maximum of 5000 points. We use the formula $g(d) = 5000 \\exp(\\frac{-d}/{1492.7})$ </h3>
53
  """
54
  css = """
55
  @font-face {
 
82
 
83
  space_js = """
84
  <script src="https://cdn.jsdelivr.net/npm/@rapideditor/[email protected]/dist/country-coder.iife.min.js"></script>
85
+ <script type="text/x-mathjax-config">
86
+ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
87
+ </script>
88
+ <script type="text/javascript"
89
+ src="http://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
90
+ </script>
91
  <script>
92
  function shortcuts(e) {
93
  var event = document.all ? window.event : e;