Sreeja6600 commited on
Commit
9b0e350
·
verified ·
1 Parent(s): 282478b

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -9
src/streamlit_app.py CHANGED
@@ -1,17 +1,11 @@
1
- import altair as alt
2
  import numpy as np
3
  import pandas as pd
4
  import streamlit as st
 
5
 
6
- """
7
- # Welcome to Streamlit!
8
 
9
- Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
10
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
11
- forums](https://discuss.streamlit.io).
12
-
13
- In the meantime, below is an example of what you can do with just a few lines of code:
14
- """
15
 
16
  num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
17
  num_turns = st.slider("Number of turns in spiral", 1, 300, 31)
 
 
1
  import numpy as np
2
  import pandas as pd
3
  import streamlit as st
4
+ import sklearn
5
 
6
+ st.title("Tags Predictor")
7
+ st.text_input("Enter the text")
8
 
 
 
 
 
 
 
9
 
10
  num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
11
  num_turns = st.slider("Number of turns in spiral", 1, 300, 31)