kashif HF staff commited on
Commit
35e20a9
1 Parent(s): 05644f5

fix formatting

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -17,7 +17,7 @@ def mean(data, framework):
17
 
18
 
19
  for framework in frameworks:
20
- data.update({framework: mean(data, framework) for data in datasets})
21
 
22
  df = pd.DataFrame(data=data)
23
  table = df.to_markdown(index=False)
@@ -30,14 +30,12 @@ with gr.Blocks() as demo:
30
 
31
  This is a leaderboard of the MASE metric for time series forecasting problem on the different open datasets and models.
32
 
33
- The table is generated from the paper [AutoGluon–TimeSeries: AutoML for Probabilistic Time Series Forecasting](https://github.com/autogluon/autogluon) by
34
- Oleksandr Shchur, Caner Turkmen, Nick Erickson, Huibin Shen, Alexander Shirkov, Tony Hu, and Bernie Wang.
35
 
36
  ## MASE Metric
37
-
38
- {table}
39
  """
40
  )
 
41
 
42
  if __name__ == "__main__":
43
  demo.launch()
 
17
 
18
 
19
  for framework in frameworks:
20
+ data.update({framework: [mean(dataset, framework) for dataset in datasets]})
21
 
22
  df = pd.DataFrame(data=data)
23
  table = df.to_markdown(index=False)
 
30
 
31
  This is a leaderboard of the MASE metric for time series forecasting problem on the different open datasets and models.
32
 
33
+ The table is generated from the paper [AutoGluon–TimeSeries: AutoML for Probabilistic Time Series Forecasting](https://github.com/autogluon/autogluon) by Oleksandr Shchur, Caner Turkmen, Nick Erickson, Huibin Shen, Alexander Shirkov, Tony Hu, and Bernie Wang.
 
34
 
35
  ## MASE Metric
 
 
36
  """
37
  )
38
+ gr.Markdown(table)
39
 
40
  if __name__ == "__main__":
41
  demo.launch()