snaramirez872 commited on
Commit
07a5159
·
1 Parent(s): 05235d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ st.title("Gibberish Detector")
11
 
12
  user_input = str(st.text_input("Enter some words", "pasghetti"))
13
 
14
- st.markdown("Input was: ", str(user_input))
15
 
16
  classifier = pipeline("sentiment-analysis", model=mod, tokenizer=TKR)
17
  # result = classifier(["This is a sample text made by Sean Ramirez.", "This is another sample text."]) # leftover from initial testing
 
11
 
12
  user_input = str(st.text_input("Enter some words", "pasghetti"))
13
 
14
+ st.write("Input was: ", str(user_input))
15
 
16
  classifier = pipeline("sentiment-analysis", model=mod, tokenizer=TKR)
17
  # result = classifier(["This is a sample text made by Sean Ramirez.", "This is another sample text."]) # leftover from initial testing