adding print statements
Browse files
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)
|