jpterry commited on
Commit
2b5e23b
·
1 Parent(s): 8b71b4f

adding print statements

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -44,8 +44,6 @@ def load_model(model: str, activation: bool=True):
44
  if activation:
45
  model += '_w_activation'
46
 
47
- print(model)
48
-
49
  sess_options = ort.SessionOptions()
50
  sess_options.intra_op_num_threads = 0
51
  ort_session = ort.InferenceSession(model_path + '%s.onnx' % (model), sess_options)
 
44
  if activation:
45
  model += '_w_activation'
46
 
 
 
47
  sess_options = ort.SessionOptions()
48
  sess_options.intra_op_num_threads = 0
49
  ort_session = ort.InferenceSession(model_path + '%s.onnx' % (model), sess_options)