Spaces:
Running
Running
Change the name of the AIs
Browse filesChange the displayed name of the AIs
BERT-1 -> MELCHIOR-1
GPT-2 -> BALTHASAR-2
mT5-3 -> CASPER-3
app.py
CHANGED
@@ -59,9 +59,9 @@ def CASPER(sue):
|
|
59 |
return "承認" if probs[0][allow]>probs[1][deny] else "否定"
|
60 |
|
61 |
def greet(sue):
|
62 |
-
text1="
|
63 |
-
text2="
|
64 |
-
text3="
|
65 |
return text1+" "+text2+" "+text3+"\n____\n\n"+("|可決|" if sum(votes[-3:])>0 else "|否決|")+"\n____"
|
66 |
|
67 |
css=".gradio-container {background-color: black} .gr-button {background-color: blue;color:black; weight:200%;font-family:YuMincho}.block{color:orange;} .gr-box {text-align: center;font-size: 125%;border-color:orange;background-color: #000000;weight:200%;font-family:YuMincho}"
|
|
|
59 |
return "承認" if probs[0][allow]>probs[1][deny] else "否定"
|
60 |
|
61 |
def greet(sue):
|
62 |
+
text1="MELCHIOR-1"+MELCHIOR(sue)
|
63 |
+
text2="BALTHASAR-2"+BALTHASAR(sue)
|
64 |
+
text3="CASPER-3"+CASPER(sue)
|
65 |
return text1+" "+text2+" "+text3+"\n____\n\n"+("|可決|" if sum(votes[-3:])>0 else "|否決|")+"\n____"
|
66 |
|
67 |
css=".gradio-container {background-color: black} .gr-button {background-color: blue;color:black; weight:200%;font-family:YuMincho}.block{color:orange;} .gr-box {text-align: center;font-size: 125%;border-color:orange;background-color: #000000;weight:200%;font-family:YuMincho}"
|