Update app.py
Browse files
app.py
CHANGED
@@ -64,15 +64,13 @@ def run_kmmlu_test(subject):
|
|
64 |
|
65 |
#subjects = df['subject'].unique().tolist()
|
66 |
|
67 |
-
iface = gr.Interface(
|
68 |
-
|
69 |
-
|
70 |
-
#
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
# description="์ ํํ ์ฃผ์ ์ ๋ํด KMMLU ํ
์คํธ๋ฅผ ์คํํฉ๋๋ค."
|
76 |
-
#)
|
77 |
|
78 |
iface.launch()
|
|
|
64 |
|
65 |
#subjects = df['subject'].unique().tolist()
|
66 |
|
67 |
+
iface = gr.Interface(
|
68 |
+
fn=run_kmmlu_test,
|
69 |
+
inputs=None,
|
70 |
+
#inputs=gr.Dropdown(choices=subjects, label="์ฃผ์ ์ ํ"),
|
71 |
+
outputs="text",
|
72 |
+
title="Llama 3๋ฅผ ์ด์ฉํ KMMLU ํ
์คํธ",
|
73 |
+
description="์ ํํ ์ฃผ์ ์ ๋ํด KMMLU ํ
์คํธ๋ฅผ ์คํํฉ๋๋ค."
|
74 |
+
)
|
|
|
|
|
75 |
|
76 |
iface.launch()
|