ppsingh commited on
Commit
9d65825
1 Parent(s): d6024bf
Files changed (1) hide show
  1. app.py +30 -19
app.py CHANGED
@@ -51,29 +51,40 @@ with st.expander("ℹ️ - About this app", expanded=False):
51
  'T_Economy_Unc','T_Adaptation_C','T_Adaptation_Unc','T_Transport_C',
52
  'T_Transport_O_C','T_Transport_O_Unc','T_Transport_Unc']
53
  - 'Others': Other Targets beside covered above
54
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  """)
56
- # st.
57
 
58
- # What Happens in background?
 
59
 
60
- # - Step 1: Once the document is provided to app, it undergoes *Pre-processing*.\
61
- # In this step the document is broken into smaller paragraphs \
62
- # (based on word/sentence count).
63
- # - Step 2: The paragraphs are fed to **Target Classifier** which detects if
64
- # the paragraph contains any *Target* related information or not.
65
- # - Step 3: The paragraphs which are detected containing some target \
66
- # related information are then fed to multiple classifier to enrich the
67
- # Information Extraction.
68
 
69
- # The Step 2 and 3 are repated then similarly for
70
-
71
- # Classifers:
72
- # - **Netzero**: Detects if any Netzero commitment is present in paragraph or not.
73
- # - **GHG**: Detects if any GHG related information present in paragraph or not.
74
- # - **Sector**: Detects which sectors are spoken/discussed about in paragraph.
75
- # - **Adaptation-Mitigation**: Detects if the paragraph is related to Adaptation and/or Mitigation.
76
- # """)
77
 
78
  st.write("")
79
  apps = [processing.app, target_extraction.app, netzero.app, ghg.app,
 
51
  'T_Economy_Unc','T_Adaptation_C','T_Adaptation_Unc','T_Transport_C',
52
  'T_Transport_O_C','T_Transport_O_Unc','T_Transport_Unc']
53
  - 'Others': Other Targets beside covered above
54
+ - **GHG Target**: GHG targets refer to contributions framed as targeted \
55
+ outcomes in GHG terms.
56
+ - 'GHG': target_labels_ghg_yes = ['T_Transport_Unc','T_Transport_C']
57
+ - 'NON GHG TRANSPORT TARGET': target_labels_ghg_no = ['T_Adaptation_Unc',\
58
+ 'T_Adaptation_C', 'T_Transport_O_Unc', 'T_Transport_O_C']
59
+ - 'OTHERS': Other Targets beside covered above.
60
+ - **Conditionality**:An “unconditional contribution” is what countries \
61
+ could implement without any conditions and based on their own \
62
+ resources and capabilities. A “conditional contribution” is one \
63
+ that countries would undertake if international means of support \
64
+ are provided, or other conditions are met.
65
+ - **Action**:Actions are an intention to implement specific means of \
66
+ achieving GHG reductions, usually in forms of concrete projects.
67
+ - **Policies and Plans**:Policies are domestic planning documents \
68
+ such as policies, regulations or guidlines, and Plans are broader \
69
+ than specific policies or actions, such as a general intention \
70
+ to ‘improve efficiency’, ‘develop renewable energy’, etc. \
71
+ The terms come from the World Bank's NDC platform and WRI's publication.
72
  """)
 
73
 
74
+ st.write("""
75
+ What Happens in background?
76
 
77
+ - Step 1: Once the document is provided to app, it undergoes *Pre-processing*.\
78
+ In this step the document is broken into smaller paragraphs \
79
+ (based on word/sentence count).
80
+ - Step 2: The paragraphs are fed to **Target Classifier** which detects if
81
+ the paragraph contains any *Target* related information or not.
82
+ - Step 3: The paragraphs which are detected containing some target \
83
+ related information are then fed to multiple classifier to enrich the
84
+ Information Extraction.
85
 
86
+ The Step 2 and 3 are repated then similarly for Action and Policies & Plans.
87
+ """)
 
 
 
 
 
 
88
 
89
  st.write("")
90
  apps = [processing.app, target_extraction.app, netzero.app, ghg.app,