Basanth commited on
Commit
77de907
·
1 Parent(s): 64254d6

changed title

Browse files
Files changed (1) hide show
  1. apps/demo.py +2 -2
apps/demo.py CHANGED
@@ -10,9 +10,9 @@ model = load_model()
10
  skill_extractor = load_skill_extractor()
11
 
12
  def app():
13
- st.title("Demo")
14
  with st.form(key="text_val"):
15
- input_text = st.text_area('Enter or past the resume here', value=default_text(), height=200)
16
  submit_button = st.form_submit_button(label="Submit")
17
 
18
  cls_text = clean_text(input_text)
 
10
  skill_extractor = load_skill_extractor()
11
 
12
  def app():
13
+ st.title("Enter or past the resume here")
14
  with st.form(key="text_val"):
15
+ input_text = st.text_area('', value=default_text(), height=200)
16
  submit_button = st.form_submit_button(label="Submit")
17
 
18
  cls_text = clean_text(input_text)