avsolatorio commited on
Commit
4efedce
·
1 Parent(s): 96070b5

Update view

Browse files

Signed-off-by: avsolatorio <[email protected]>

Files changed (1) hide show
  1. app.py +21 -2
app.py CHANGED
@@ -1,6 +1,8 @@
1
  import gradio as gr
2
  import wbgtopic
3
 
 
 
4
  clf = wbgtopic.WBGDocTopic()
5
 
6
 
@@ -8,5 +10,22 @@ def fn(inputs):
8
  return clf.suggest_topics(inputs)
9
 
10
 
11
- demo = gr.Interface(fn=clf.suggest_topics, inputs="text", outputs=gr.JSON(label="Suggested topics"))
12
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
  import wbgtopic
3
 
4
+ SAMPLE_TEXT = """A growing literature attributes gender inequality in labor market outcomes in part to the reduction in female labor supply after childbirth, the child penalty. However, if social norms constrain married women’s activities outside the home, then marriage can independently reduce employment, even in the absence childbearing. Given the correlation in timing between childbirth and marriage, conventional estimates of child penalties will conflate these two effects. The paper studies the marriage penalty in South Asia, a context featuring conservative gender norms and low female labor force participation. The study introduces a split-sample, pseudo-panel approach that allows for the separation of marriage and child penalties even in the absence of individual-level panel data. Marriage reduces women’s labor force participation in South Asia by 12 percentage points, whereas the marginal penalty of childbearing is small. Consistent with the central roles of both opportunity costs and social norms, the marriage penalty is smaller among cohorts with higher education and less conservative gender attitudes."""
5
+
6
  clf = wbgtopic.WBGDocTopic()
7
 
8
 
 
10
  return clf.suggest_topics(inputs)
11
 
12
 
13
+ with gr.Blocks(title="WBG-Document-Topic-Classifier") as demo:
14
+
15
+ text = gr.Textbox(
16
+ value=SAMPLE_TEXT, label="query", placeholder="Enter your text here"
17
+ )
18
+
19
+ output = gr.JSON(label="Suggested topics")
20
+ submit_btn = gr.Button("Submit")
21
+
22
+ # Submitting
23
+ text.submit(
24
+ fn=fn, inputs=[text], outputs=output
25
+ )
26
+ submit_btn.click(
27
+ fn=fn, inputs=[text], outputs=output
28
+ )
29
+
30
+ demo.queue(default_concurrency_limit=5)
31
+ demo.launch(debug=True)