updated categories to separate symbols 1 and 2
Browse files
app.py
CHANGED
|
@@ -25,10 +25,13 @@ POEM_TOKENS_CACHE = {}
|
|
| 25 |
|
| 26 |
# Define the tag options
|
| 27 |
TAGS = [
|
| 28 |
-
"Lacking clear textual evidence",
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
|
|
|
|
|
|
|
|
|
| 32 |
]
|
| 33 |
|
| 34 |
def get_connection():
|
|
@@ -280,10 +283,10 @@ with gr.Blocks() as app:
|
|
| 280 |
# Add the Markdown table above the Tags
|
| 281 |
table_md = gr.Markdown(
|
| 282 |
"""
|
| 283 |
-
| Symbol
|
| 284 |
-
|--------------------------------|--------------------------------------------------------------------|---------------------------------------------|------------------------------------------------|
|
| 285 |
-
| 😶 unclear or no evidence
|
| 286 |
-
| Lacking clear textual evidence
|
| 287 |
"""
|
| 288 |
)
|
| 289 |
# Add the Tags checkbox group below the table
|
|
|
|
| 25 |
|
| 26 |
# Define the tag options
|
| 27 |
TAGS = [
|
| 28 |
+
"Symbol 1: Lacking clear textual evidence",
|
| 29 |
+
"Symbol 2: Lacking clear textual evidence",
|
| 30 |
+
"Symbol 1: Containing specific questionable interpretations or symbolic leaps",
|
| 31 |
+
"Symbol 2: Containing specific questionable interpretations or symbolic leaps",
|
| 32 |
+
"Connection: Overly speculative or only loosely possible",
|
| 33 |
+
"Connection: Vague, simplistic, or no information gain",
|
| 34 |
+
"General: Vague, simplistic, or no information gain",
|
| 35 |
]
|
| 36 |
|
| 37 |
def get_connection():
|
|
|
|
| 283 |
# Add the Markdown table above the Tags
|
| 284 |
table_md = gr.Markdown(
|
| 285 |
"""
|
| 286 |
+
| Symbol 1 or 2 | Symbol 1 or 2 | Connection | Connection | Whole Analysis |
|
| 287 |
+
|--------------------------------------------------|------------------------------------------------------------------------------|---------------------------------------------------------|-------------------------------------------------------|--------------------------------------------------|
|
| 288 |
+
| 😶 unclear or no evidence or no information gain | 🙁bad or unsupportive evidence | 🙁lacking or bad evidence | 😵💫 vague, simplistic, or no information gain | 😵💫vague, simplistic, or no information gain |
|
| 289 |
+
| Symbol 1: Lacking clear textual evidence | Symbol 1: Containing specific questionable interpretations or symbolic leaps | Connection: Overly speculative or only loosely possible | Connection: vague, simplistic, or no information gain | Point: vague, simplistic, or no information gain |
|
| 290 |
"""
|
| 291 |
)
|
| 292 |
# Add the Tags checkbox group below the table
|