Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -627,6 +627,12 @@ def main():
|
|
627 |
|
628 |
|
629 |
if __name__ == "__main__":
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
model_checkpoint = "sgugger/glue-mrpc"
|
631 |
dataset_name = "nyu-mll/glue"
|
632 |
metric = load("glue", "mrpc")
|
|
|
627 |
|
628 |
|
629 |
if __name__ == "__main__":
|
630 |
+
|
631 |
+
st.title("Hugging Face Model Evaluation Demo")
|
632 |
+
|
633 |
+
# Create an input text box
|
634 |
+
input_text = st.text_input("Enter model and dataset identifiers", "")
|
635 |
+
|
636 |
model_checkpoint = "sgugger/glue-mrpc"
|
637 |
dataset_name = "nyu-mll/glue"
|
638 |
metric = load("glue", "mrpc")
|