mcamargo00 commited on
Commit
a1c981d
·
verified ·
1 Parent(s): e87cacb

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -513,6 +513,9 @@ def classify_solution(question: str, solution: str):
513
  res = analyze_single(question, solution)
514
 
515
  return list(res.values())
 
 
 
516
 
517
 
518
 
 
513
  res = analyze_single(question, solution)
514
 
515
  return list(res.values())
516
+ except Exception:
517
+ logger.exception("inference failed")
518
+
519
 
520
 
521