ksatzke commited on
Commit
5b8f50d
·
verified ·
1 Parent(s): 78fc145

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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")