com3dian commited on
Commit
06795a1
·
1 Parent(s): d71c8e2
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -25,8 +25,7 @@ if uploaded_file is not None:
25
  os.makedirs("grobidoutputs", exist_ok=True)
26
  client = GrobidClient(config_path="./grobidconfig.json")
27
  client.process("processFulltextDocument",
28
- "./uploads/",
29
- output="./grobidoutputs/",
30
  n=20)
31
  output_file_path = os.path.join("./grobidoutputs", uploaded_file.name + ".tei.xml")
32
 
 
25
  os.makedirs("grobidoutputs", exist_ok=True)
26
  client = GrobidClient(config_path="./grobidconfig.json")
27
  client.process("processFulltextDocument",
28
+ "uploads/",
 
29
  n=20)
30
  output_file_path = os.path.join("./grobidoutputs", uploaded_file.name + ".tei.xml")
31