ppsingh commited on
Commit
7de8f90
1 Parent(s): 3c4db39

add Policy_action and Indicator

Browse files
Files changed (2) hide show
  1. app.py +2 -1
  2. paramconfig.cfg +4 -4
app.py CHANGED
@@ -59,7 +59,8 @@ with st.expander("ℹ️ - About this app", expanded=False):
59
  not at specific Sector level but are applicable at economic \
60
  wide scale. """)
61
  st.write("")
62
- apps = [processing.app, target_extraction.app, netzero.app, ghg.app]
 
63
  # sector.app, adapmit.app]
64
 
65
  # policyaction.app, indicator.app, ]
 
59
  not at specific Sector level but are applicable at economic \
60
  wide scale. """)
61
  st.write("")
62
+ apps = [processing.app, target_extraction.app, netzero.app, ghg.app,
63
+ policyaction.app, indicator.app]
64
  # sector.app, adapmit.app]
65
 
66
  # policyaction.app, indicator.app, ]
paramconfig.cfg CHANGED
@@ -43,7 +43,7 @@ THRESHOLD = 0.50
43
  MODEL = ppsingh/mpnet-adaptation_mitigation-classifier
44
  SPLIT_BY = word
45
  REMOVE_PUNC = 0
46
- SPLIT_LENGTH = 60
47
  SPLIT_OVERLAP = 10
48
  RESPECT_SENTENCE_BOUNDARY = 1
49
  TOP_KEY = 10
@@ -63,17 +63,17 @@ THRESHOLD = 0.50
63
  MODEL = ppsingh/action-policy-plans-classifier
64
  SPLIT_BY = word
65
  REMOVE_PUNC = 0
66
- SPLIT_LENGTH = 60
67
  SPLIT_OVERLAP = 10
68
  RESPECT_SENTENCE_BOUNDARY = 1
69
  TOP_KEY = 10
70
 
71
  [indicator]
72
  THRESHOLD = 0.50
73
- MODEL = ilaria-oneofftech/ikitracs_mitigation
74
  SPLIT_BY = word
75
  REMOVE_PUNC = 0
76
- SPLIT_LENGTH = 60
77
  SPLIT_OVERLAP = 10
78
  RESPECT_SENTENCE_BOUNDARY = 1
79
  TOP_KEY = 10
 
43
  MODEL = ppsingh/mpnet-adaptation_mitigation-classifier
44
  SPLIT_BY = word
45
  REMOVE_PUNC = 0
46
+ SPLIT_LENGTH = 80
47
  SPLIT_OVERLAP = 10
48
  RESPECT_SENTENCE_BOUNDARY = 1
49
  TOP_KEY = 10
 
63
  MODEL = ppsingh/action-policy-plans-classifier
64
  SPLIT_BY = word
65
  REMOVE_PUNC = 0
66
+ SPLIT_LENGTH = 80
67
  SPLIT_OVERLAP = 10
68
  RESPECT_SENTENCE_BOUNDARY = 1
69
  TOP_KEY = 10
70
 
71
  [indicator]
72
  THRESHOLD = 0.50
73
+ MODEL = mtyrrell/CPU_Mitigation_Classifier
74
  SPLIT_BY = word
75
  REMOVE_PUNC = 0
76
+ SPLIT_LENGTH = 80
77
  SPLIT_OVERLAP = 10
78
  RESPECT_SENTENCE_BOUNDARY = 1
79
  TOP_KEY = 10