ashishraics commited on
Commit
ca4171a
1 Parent(s): 95d622d

task creation

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import streamlit as st
3
+
4
+ st.title("NLP use cases")
5
+
6
+ with st.sidebar:
7
+ st.title("NLP tasks")
8
+ st.selectbox(label="Select task from drop down menu",
9
+ options=['Detect Sentiment','Zero Shot Classification'])