Spaces:
Sleeping
Sleeping
apply
Browse files
app.py
CHANGED
|
@@ -45,15 +45,26 @@ MAPPING_FILENAME = "combination_to_filename.json"
|
|
| 45 |
CONDITIONS = ["Ours", "w_o_Proto_Loss", "w_o_HitL", "w_o_Tuning", "LLM-based"]
|
| 46 |
CRITERIA = ["Alignment", "Naturalness", "Attractiveness"]
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
CRITERIA_GUIDANCE_JP = [
|
| 49 |
-
"ใใญในใใจ่กจๆ
ใใฉใใ ใไธ่ดใใฆใ
|
| 50 |
-
"ใใญในใใฎ
|
| 51 |
-
"ใใญในใใฎ
|
| 52 |
]
|
| 53 |
CRITERIA_GUIDANCE_EN = [
|
| 54 |
-
"
|
| 55 |
-
"
|
| 56 |
-
"
|
| 57 |
]
|
| 58 |
IMAGE_LABELS = ['A', 'B', 'C', 'D', 'E']
|
| 59 |
|
|
|
|
| 45 |
CONDITIONS = ["Ours", "w_o_Proto_Loss", "w_o_HitL", "w_o_Tuning", "LLM-based"]
|
| 46 |
CRITERIA = ["Alignment", "Naturalness", "Attractiveness"]
|
| 47 |
|
| 48 |
+
# CRITERIA_GUIDANCE_JP = [
|
| 49 |
+
# "ใใญในใใจ่กจๆ
ใใฉใใ ใไธ่ดใใฆใใใ",
|
| 50 |
+
# "ใใญในใใฎๆๆ
ใซๆฒฟใฃใใปใชใใ่จใฃใฆใใใจๆณๅใใใจใใ่กจๆ
ใใฉใใ ใ่ช็ถใ",
|
| 51 |
+
# "ใใญในใใฎๆๆ
ใซๆฒฟใฃใใปใชใใ่จใฃใฆใใใจๆณๅใใใจใใ่กจๆ
ใใฉใใ ใ้ญ
ๅ็ใ"
|
| 52 |
+
# ]
|
| 53 |
+
# CRITERIA_GUIDANCE_EN = [
|
| 54 |
+
# "how well the expression aligns with the text",
|
| 55 |
+
# "imagining the character is speaking a line that matches the emotion of the text, how natural the facial expression is",
|
| 56 |
+
# "imagining the character is speaking a line that matches the emotion of the text, how attractive the facial expression is"
|
| 57 |
+
# ]
|
| 58 |
+
|
| 59 |
CRITERIA_GUIDANCE_JP = [
|
| 60 |
+
"ใใญในใใจไธๅๅใฎ่กจๆ
ใใฉใใ ใไธ่ดใใฆใใพใใ๏ผ",
|
| 61 |
+
"ๆ็คบใใใใใญในใใจไธๅๅใฎ่กจๆ
ใ่ๆ
ฎใใไธใงใใใฎใญใฃใฉใฏใฟใผใฏใฉใใ ใ่ช็ถใซ่ฆใใพใใ๏ผ",
|
| 62 |
+
"ๆ็คบใใใใใญในใใจไธๅๅใฎ่กจๆ
ใ่ๆ
ฎใใไธใงใใใฎใญใฃใฉใฏใฟใผใฏใฉใใ ใ้ญ
ๅ็ใซ่ฆใใพใใ๏ผ"
|
| 63 |
]
|
| 64 |
CRITERIA_GUIDANCE_EN = [
|
| 65 |
+
"How well does the text align with the upper half of the expression?",
|
| 66 |
+
"Considering the provided text and the upper half of the expression, how natural was the character overall?",
|
| 67 |
+
"Considering the provided text and the upper half of the expression, how attractive was the character overall?"
|
| 68 |
]
|
| 69 |
IMAGE_LABELS = ['A', 'B', 'C', 'D', 'E']
|
| 70 |
|