Skip to content

Commit

Permalink
Merge pull request #27 from opensource-spraakherkenning-nl/skip-norm-…
Browse files Browse the repository at this point in the history
…interf

Fix issue with getting values from form submit
  • Loading branch information
greenw0lf authored Nov 20, 2023
2 parents 0db9095 + f0e687e commit b213412
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ASR_NL_benchmark/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def upload_page():
hyp = os.path.join(os.path.sep,'input',request.form.get('hyp'))
ref = os.path.join(os.path.sep,'input',request.form.get('ref'))
kind = request.form.get('kind')
skip_ref_norm = request.form.get('skip_ref_norm')
skip_hyp_norm = request.form.get('skip_hyp_norm')
skip_ref_norm = request.form.get('skip-ref-norm')
skip_hyp_norm = request.form.get('skip-hyp-norm')
print(skip_hyp_norm)
print(skip_ref_norm)
global benchmarking
Expand Down

0 comments on commit b213412

Please sign in to comment.