jmLuis commited on
Commit
e17e683
1 Parent(s): 0513b52

Extended Defintions

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -59,6 +59,24 @@ values = [
59
  ["15. Other", "Any frames that do not fit into the above categories"]
60
  ]
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  with gr.Blocks() as demo:
63
  with gr.Column():
64
  gr.Interface(
@@ -69,7 +87,7 @@ with gr.Blocks() as demo:
69
  examples=examples,
70
  allow_flagging="never",)
71
  gr.Dataframe(
72
- value= values,
73
  headers=["Policy Issue Frame", "Description"],
74
  datatype=["str", "str"],
75
  col_widths=[200, 200],
 
59
  ["15. Other", "Any frames that do not fit into the above categories"]
60
  ]
61
 
62
+ values_extended = [
63
+ ["1. Economic Frame", "The costs, benefits, or monetary/financial implications of the issue (to an individual, family, community, or the economy as a whole)."],
64
+ ["2. Capacity and Resources Frame", "The lack of or availability of physical, geographical, spatial, human, and financial resources, or the capacity of existing systems and resources to implement or carry out policy goals."],
65
+ ["3. Morality Frame", "Any perspective—or policy objective or action (including proposed action)— that is compelled by religious doctrine or interpretation, duty, honor, righteousness, or any other sense of ethics or social responsibility."],
66
+ ["4. Fairness and Equality Frame", "Equality or inequality with which laws, punishment, rewards, and resources are applied or distributed among individuals or groups. Also, the balance between the rights or interests of one individual or group compared to another individual or Group."],
67
+ ["5. Constitutionality and Jurisprudence Frame", "The constraints imposed on or freedoms granted to individuals, government, and corporations via the Constitution, Bill of Rights, and other amendments, or judicial interpretation. This deals specifically with the authority of government to regulate, and the authority of individuals/corporations to act independently of government."],
68
+ ["6. Policy Prescription and Evaluation Frame", "Particular policies proposed for addressing an identified problem, and figuring out if certain policies will work, or if existing policies are effective."],
69
+ ["7. Law and Order, Crime and Justice Frame", "Specific policies in practice and their enforcement, incentives, and implications. Includes stories about enforcement and interpretation of laws by individuals and law enforcement, breaking laws, loopholes, fines, sentencing, and punishment. Increases or reductions in crime."],
70
+ ["8. Security and Defense Frame", "Security, threats to security, and protection of one’s person, family, in-group, nation, etc. Generally, it is an action or a call to action that can be taken to protect the welfare of a person, group, or nation sometimes from a not yet manifested threat."],
71
+ ["9. Health and Safety Frame", "Healthcare access and effectiveness, illness, disease, sanitation, obesity, mental health effects, prevention of or perpetuation of gun violence, infrastructure, and building safety."],
72
+ ["10. Quality of Life Frame", "The effects of a policy on individuals’ wealth, mobility, access to resources, happiness, social structures, ease of day-to-day routines, quality of community life, etc."],
73
+ ["11. Cultural Identity Frame", "The social norms, trends, values, and customs constituting culture(s), as they relate to a specific policy issue."],
74
+ ["12. Public Opinion Frame", "References to general social attitudes, polling, and demographic information, as well as implied or actual consequences of diverging from or getting ahead of public opinion or polls"],
75
+ ["13. Political Frame", "Any political considerations surrounding an issue. Issue actions or efforts or stances that are political, such as partisan filibusters, lobbyist involvement, bipartisan efforts, deal-making and vote trading, appealing to one’s base, and mentions of political maneuvering. Explicit statements that a policy issue is good or bad for a particular political party."],
76
+ ["14. External Regulation and Reputation Frame", "The country’s external relations with another nation; the external relations of one state with another; or relations between groups. This includes trade agreements and outcomes, comparisons of policy outcomes, or desired policy outcomes."],
77
+ ["15. Other", "Any frames that do not fit into the above categories"]
78
+ ]
79
+
80
  with gr.Blocks() as demo:
81
  with gr.Column():
82
  gr.Interface(
 
87
  examples=examples,
88
  allow_flagging="never",)
89
  gr.Dataframe(
90
+ value= values_extended,
91
  headers=["Policy Issue Frame", "Description"],
92
  datatype=["str", "str"],
93
  col_widths=[200, 200],