Spaces:
Runtime error
Runtime error
base table
Browse files
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 |
|
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 |
|