awacke1 commited on
Commit
c301132
·
1 Parent(s): 640050f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -17
app.py CHANGED
@@ -16,23 +16,7 @@ nlp = spacy.load("en_core_web_sm")
16
  ruler = nlp.add_pipe("entity_ruler", before="ner")
17
  ruler.from_disk("tokens.json")
18
 
19
- description = "Engineering Type Median Salary (May 2020) Job Growth Rate (2020-30)
20
- Petroleum Engineers $137,330 8%
21
- Computer Hardware Engineers $119,560 2%
22
- Aerospace Engineers $118,610 8%
23
- Nuclear Engineers $116,140 -8%
24
- Chemical Engineers $108,540 9%
25
- Electrical and Electronics Engineers $103,390 7%
26
- Materials Engineers $95,640 8%
27
- Marine Engineers $95,440 4%
28
- Health and Safety Engineers $94,240 6%
29
- Mining and Geological Engineers $93,800 4%
30
- Biomedical Engineers $92,620 6%
31
- Environmental Engineers $92,120 4%
32
- Mechanical Engineers $90,160 7%
33
- Industrial Engineers $88,950 14%
34
- Civil Engineers $88,570 8%
35
- Agricultural Engineers $84,410 5%"
36
 
37
  text = st.text_area(label='Engineering Description', value=description, placeholder='Enter Text for Technology or Engineering')
38
 
 
16
  ruler = nlp.add_pipe("entity_ruler", before="ner")
17
  ruler.from_disk("tokens.json")
18
 
19
+ description = "Engineering Jobs Salary, Job Growth Rate, Petroleum Engineers $137,330 8%, Computer Hardware Engineers $119,560 2%, Aerospace Engineers $118,610 8%, Nuclear Engineers $116,140 -8%, Chemical Engineers $108,540 9%, Electrical and Electronics Engineers $103,390 7%, Materials Engineers $95,640 8%, Marine Engineers $95,440 4%, Health and Safety Engineers $94,240 6%, Mining and Geological Engineers $93,800 4%, Biomedical Engineers $92,620 6%, Environmental Engineers $92,120 4%, Mechanical Engineers $90,160 7%, Industrial Engineers $88,950 14%, Civil Engineers $88,570 8%, Agricultural Engineers $84,410 5%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  text = st.text_area(label='Engineering Description', value=description, placeholder='Enter Text for Technology or Engineering')
22