joaogante HF staff commited on
Commit
84ce1c5
1 Parent(s): f59b89f

base table

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -34,6 +34,7 @@ assert all(tag in HUB_TAGS for tag in TASK_TYPES.values())
34
  # Dict with the problems considered in this spaces, {problem: space tag}
35
  PROBLEMS = {
36
  "🤔 Baseline. The model is returning nothing / random words": "baseline",
 
37
  "😵‍💫 Hallucinations. I would like to reduce them": "hallucinations",
38
  "🌈 Interactivity. I would like a ChatGPT-like model": "interactity",
39
  "📏 Length. I want to control the length of the output": "length",
@@ -65,8 +66,8 @@ INIT_MARKDOWN = """
65
  """
66
 
67
  BASE_TABLE = """
68
- | Suggestion | Cost of experimenting | Playground |
69
- |-------------------------------------------------------------------------|:---------------------:|:----------:|
70
  """
71
  # =====================================================================================================================
72
 
 
34
  # Dict with the problems considered in this spaces, {problem: space tag}
35
  PROBLEMS = {
36
  "🤔 Baseline. The model is returning nothing / random words": "baseline",
37
+ "😵 Crashes. I want to prevent my model from crashing again": "crashes",
38
  "😵‍💫 Hallucinations. I would like to reduce them": "hallucinations",
39
  "🌈 Interactivity. I would like a ChatGPT-like model": "interactity",
40
  "📏 Length. I want to control the length of the output": "length",
 
66
  """
67
 
68
  BASE_TABLE = """
69
+ | Suggestion | Cost of experimenting | Examples |
70
+ |-------------------------------------------------------------------------|:---------------------:|:-----------:|
71
  """
72
  # =====================================================================================================================
73