Spaces:
Sleeping
Sleeping
import gradio as gr | |
import os | |
# PERSISTENT DATA STORAGE: these are used to upload user responses to a dataset | |
import json | |
from datetime import datetime | |
from pathlib import Path | |
from uuid import uuid4 | |
from huggingface_hub import CommitScheduler | |
JSON_DATASET_DIR = Path("json_dataset") | |
JSON_DATASET_DIR.mkdir(parents=True, exist_ok=True) | |
JSON_DATASET_PATH = JSON_DATASET_DIR / f"train-{uuid4()}.json" | |
scheduler = CommitScheduler( | |
repo_id="ebrowne/test-data", | |
repo_type="dataset", | |
folder_path=JSON_DATASET_DIR, | |
path_in_repo="data", | |
token = os.getenv("HF_TOKEN") | |
) | |
def save_json(score1, score2): | |
with scheduler.lock: | |
with JSON_DATASET_PATH.open("a") as f: | |
json.dump({"relevance": score1, "novelty": score2, "datetime": datetime.now().isoformat()}, f) | |
f.write("\n") | |
# READING EXISTING DATA: this is used to read questions | |
""" | |
from datasets import load_dataset | |
qa_data = load_dataset("ebrowne/test-data", data_files = "test.json") | |
q = qa_data["train"][0] # loaded question data | |
""" | |
# VARIABLES: will eventually be loaded with JSON from a dataset | |
""" | |
question_text = q["prompt"] + " " + q["question"] | |
answers_text = [q["a"], q["b"], q["c"], q["d"]] | |
""" | |
question_text = "An act of Congress provides that \"no federal court shall order the implementation of a public school desegregation plan that would require the transportation of any student to a school other than the school closest or next closest to his place of residence.\" Which of the following is the strongest argument for the constitutionality of the act?" | |
answers_text = ["The Fourteenth Amendment authorizes Congress to define governmental conduct which violates the equal protection clause.", "Under Article III, Congress may restrict the jurisdiction of the federal courts.", "Transportation of students is subject to regulation by Congress because commerce is involved.", "Congress provides partial support for public education and is therefore entitled to establish conditions upon the expenditure of federal grants."] | |
answer_id = 1 | |
passage_texts = ["The IDEA also requires states receiving federal funds to educate disabled children in the \"[l]east restrictive environment\" appropriate for each child. 20 U.S.C. § 1412(a)(5). The statute mandates at § 1412(a)(5)(A):", | |
"Under the current iteration of Arkansas' school choice law-the 2017 Act-a school that claims a conflict with participating in school choice must show that it is subject to an active and enforceable desegregation court order or plan that \"explicitly limits the transfer of students between school districts.\" Ark. Code Ann. § 6-18-1906(a)(2). Accordingly, for Junction City to receive an exemption from participating in school choice under the 2017 Act, it must show that it is subject to a desegregation order that explicitly bars \"inter-district\" student transfers.", | |
"This is not to say that a school may unilaterally reject or revise a child's stay-put IEP-that would defang the stay-put requirement entirely. To the contrary, the Supreme Court has made clear that the IDEA \"strip[s] schools of the unilateral authority they had traditionally employed to exclude disabled students.\" Honig , 484 U.S. at 323, 108 S.Ct. 592 (emphasis omitted); see also Sch. Comm. of the Town of Burlington v. Dep't of Educ. , 471 U.S. 359, 373, 105 S.Ct. 1996, 85 L.Ed.2d 385 (1985). Courts should therefore view deviations from the IEP \"with a critical eye to ensure that motivations other than those compatible with the statute, such as bureaucratic inertia, are not driving the decision.\" John M. , 502 F.3d at 715. But context matters; for example, as a child moves \"from elementary school to middle school or from middle school to high school,\" not every change necessitated by a new educational environment will necessarily violate the IDEA. See id. at 714-15.", | |
"Under § 79-209(2), all schools are required to have a policy that states the number of absences after which the school shall render services to address a student's barriers to attendance. Such services shall include, but not be limited to:", | |
"To assure that children attending public schools obtain a high quality education, the legislature shall make adequate provision to ensure that ... there are a sufficient number of classrooms ....", | |
"courts should not disturb a state's denial of IDEA reimbursement where the chief benefits of the chosen school are the kind of advantages that might be preferred by parents of any child, disabled or not. Rather, the unilateral private placement is only appropriate if it provides education instruction [specially ] designed to meet the unique needs of a handicapped child.", | |
"It is also likely that residents of the States will attend out-of-state schools that invoke the Exemptions, and that such students will seek contraceptive services through programs in their home states, also giving rise to fiscal injuries to the States that only a nationwide injunction can remedy.", | |
"Although state classifications based on alienage are generally suspect, a state may reserve a government position for citizens if it is related to self-governance, involves policymaking, or requires exercise of important discretionary power over citizens. In these cases, only a rationality test is used. A public school teacher at the primary and secondary school level performs an important governmental function (e.g., he influences students' attitudes about government, the political process, citizenship, etc.), and therefore the exclusion of aliens is rationally related to the state's interest in furthering educational goals. [Ambach v. Norwick (1979)]", | |
"Passage 9", | |
"Passage 10"] | |
generation_4 = "Here is a generation at 4 passages." | |
generation_6 = "Here is a generation at 6 passages." | |
generation_10 = "Here is a generation at 10 passages." | |
gold_passage = "GOLD PASSAGE" | |
step = 0 | |
# BLOCKS: main user interface | |
user_id = "NO_ID" | |
with gr.Blocks() as user_eval: | |
# Title text introducing study | |
gr.Markdown(""" | |
# Legal Retriever Evaluation Study | |
Score the passages based on the question and provided answer choices. | |
""") | |
# Passages and user evaluations thereof | |
with gr.Row(equal_height = False, visible = False) as evals: | |
# Passage text | |
with gr.Column(scale = 2) as passages: | |
selection = gr.Markdown(""" | |
### Retrieved Passage | |
""" + passage_texts[0]) | |
line = gr.Markdown("---") | |
answers_text[answer_id] = "**" + answers_text[answer_id] + "**" | |
passage_display = gr.Markdown(""" | |
### Question and Answer | |
*""" + question_text + | |
"""* \n | |
""" + answers_text[0] + | |
""" \n | |
""" + answers_text[1] + | |
""" \n | |
""" + answers_text[2] + | |
""" \n | |
""" + answers_text[3]) | |
# Scoring box | |
with gr.Column(scale = 1) as scores: | |
desc_1 = gr.Markdown("How **relevant** is this passage to the question?") | |
eval_1 = gr.Slider(1, 5, step = 0.5) | |
desc_2 = gr.Markdown("How would you rate the passage's **quality** in terms of detail, clarity, and focus?") | |
eval_2 = gr.Slider(1, 5, step = 0.5) | |
desc_3 = gr.Markdown("How effectively does the passage **lead you to the correct answer?**") | |
eval_3 = gr.Slider(1, 5, step = 0.5) | |
btn = gr.Button("Next") | |
def next(eval_1, eval_2, eval_3): | |
global step | |
step += 1 | |
print(eval_1 + eval_2 + eval_3) | |
if step == len(passage_texts): | |
return { | |
selection: gr.Markdown("Done!") | |
} | |
else: | |
return { | |
selection: gr.Markdown(""" | |
### Retrieved Passage | |
""" + passage_texts[step]) | |
} | |
btn.click(fn = next, inputs = [eval_1, eval_2, eval_3], outputs = [selection]) | |
# Question and answering dynamics | |
with gr.Row() as question: | |
if user_id == "NO_ID": | |
with gr.Column(): | |
gr.Markdown("---") | |
gr.Markdown("# Enter email to start") | |
gr.Markdown("Thank you so much for your participation in our study! Please enter your email — we're using it to keep track of which questions you've answered and which you haven't seen. Use the same email every time to keep your progress saved. :)") | |
email = gr.Textbox("Email") | |
s = gr.Button("Start!") | |
def submit_email(): | |
global user_id | |
user_id = email | |
return { | |
question: gr.Row(visible = True), | |
} | |
s.click(fn = submit_email, outputs = [question]) | |
else: | |
with gr.Column(): | |
gr.Markdown("---") | |
gr.Markdown("**Question**") | |
gr.Markdown(question_text) | |
a = gr.Button(answers_text[0]) | |
b = gr.Button(answers_text[1]) | |
c = gr.Button(answers_text[2]) | |
d = gr.Button(answers_text[3]) | |
def answer(): | |
return { | |
question: gr.Row(visible = False), | |
evals: gr.Row(visible = True) | |
} | |
a.click(fn = answer, outputs = [question, evals]) | |
b.click(fn = answer, outputs = [question, evals]) | |
c.click(fn = answer, outputs = [question, evals]) | |
d.click(fn = answer, outputs = [question, evals]) | |
# Starts on question, switches to evaluation after the user answers | |
user_eval.launch() | |
# https://github.com/gradio-app/gradio/issues/5791 |