iSpr commited on
Commit
811776f
โ€ข
1 Parent(s): dd5d802

Update app.py

Browse files

remove input box values

Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -40,11 +40,11 @@ tokenizer, model, label_tbl, loc_tbl = md_loading()
40
 
41
 
42
  # ํ…์ŠคํŠธ input ๋ฐ•์Šค
43
- business = st.text_input('์‚ฌ์—…์ฒด๋ช…', '์ถฉ์ฒญ์ง€๋ฐฉํ†ต๊ณ„์ฒญ').replace(',', '')
44
- business_work = st.text_input('์‚ฌ์—…์ฒด ํ•˜๋Š”์ผ', 'ํ†ต๊ณ„์„œ๋น„์Šค ์ œ๊ณต ๋ฐ ์ง€์—ญํ†ต๊ณ„ ํ—ˆ๋ธŒ').replace(',', '')
45
- work_department = st.text_input('๊ทผ๋ฌด๋ถ€์„œ', '์ง€์—ญํ†ต๊ณ„๊ณผ').replace(',', '')
46
- work_position = st.text_input('์ง์ฑ…', '์ฃผ๋ฌด๊ด€').replace(',', '')
47
- what_do_i = st.text_input('๋‚ด๊ฐ€ ํ•˜๋Š” ์ผ', 'ํ†ต๊ณ„๋ฐ์ดํ„ฐ์„ผํ„ฐ ์šด์˜').replace(',', '')
48
 
49
  # md_input: ๋ชจ๋ธ์— ์ž…๋ ฅํ•  input ๊ฐ’ ์ •์˜
50
  md_input = ', '.join([business, business_work, work_department, work_position, what_do_i])
 
40
 
41
 
42
  # ํ…์ŠคํŠธ input ๋ฐ•์Šค
43
+ business = st.text_input('์‚ฌ์—…์ฒด๋ช…').replace(',', '')
44
+ business_work = st.text_input('์‚ฌ์—…์ฒด ํ•˜๋Š”์ผ').replace(',', '')
45
+ work_department = st.text_input('๊ทผ๋ฌด๋ถ€์„œ').replace(',', '')
46
+ work_position = st.text_input('์ง์ฑ…').replace(',', '')
47
+ what_do_i = st.text_input('๋‚ด๊ฐ€ ํ•˜๋Š” ์ผ').replace(',', '')
48
 
49
  # md_input: ๋ชจ๋ธ์— ์ž…๋ ฅํ•  input ๊ฐ’ ์ •์˜
50
  md_input = ', '.join([business, business_work, work_department, work_position, what_do_i])