com3dian commited on
Commit
2e65567
·
1 Parent(s): ec04d10

fix config.json

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -29,10 +29,11 @@ if uploaded_file is not None:
29
  "./uploads/",
30
  output="./grobidoutputs/",
31
  n=20)
 
32
  output_file_path = os.path.join("grobidoutputs", os.path.splitext(uploaded_file.name)[0] + "tei.xml")
33
 
34
- monkeyReader = reader.MonkeyReader('monkey')
35
- outline = monkeyReader.readOutline(saved_file_path)
36
 
37
  for pre, fill, node in outline:
38
  st.write("%s%s" % (pre, node.name))
 
29
  "./uploads/",
30
  output="./grobidoutputs/",
31
  n=20)
32
+
33
  output_file_path = os.path.join("grobidoutputs", os.path.splitext(uploaded_file.name)[0] + "tei.xml")
34
 
35
+ monkeyReader = reader.MonkeyReader('x2d')
36
+ outline = monkeyReader.readOutline(output_file_path)
37
 
38
  for pre, fill, node in outline:
39
  st.write("%s%s" % (pre, node.name))