madani commited on
Commit
8741f92
1 Parent(s): f6a4723

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Create a Streamlit app
4
+ st.title("BERT Text Classification")
5
+
6
+ # Get user input
7
+ text = st.text_input("Enter some text to classify:")
8
+
9
+ st.write(text)