raminass commited on
Commit
ca9892d
·
verified ·
1 Parent(s): e7b6515

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ df = pd.DataFrame(all["train"])
15
  choices = []
16
  for index, row in df[df.type == "per_curiam"].iterrows():
17
  if len(row["text"]) > 1000:
18
- choices.append((f"""{row["case_name"]}""", [row["text"], row["year_filed"]]))
19
 
20
  with open("j_year.json", "r") as j:
21
  judges_by_year = json.loads(j.read())
 
15
  choices = []
16
  for index, row in df[df.type == "per_curiam"].iterrows():
17
  if len(row["text"]) > 1000:
18
+ choices.append((f"""{row["case_name"]}""", [row["text"], row["year"]]))
19
 
20
  with open("j_year.json", "r") as j:
21
  judges_by_year = json.loads(j.read())