Spaces:
Running
Running
Andrea Maldonado
commited on
Commit
·
c55374f
1
Parent(s):
b1629d6
Adds missing space in print
Browse files- tag/benchmark.py +2 -2
tag/benchmark.py
CHANGED
@@ -157,14 +157,14 @@ class BenchmarkTest:
|
|
157 |
log_path = params[INPUT_PATH]
|
158 |
else:
|
159 |
log_path = os.path.join(params[INPUT_PATH], log+".xes")
|
160 |
-
success_msg = f" SUCCESS: Benchmarking event-log {log} with {miner} took"# {dt.now()-start_bench} sec."
|
161 |
try:
|
162 |
log = xes_importer.apply(f"{log_path}", parameters={"show_progress_bar": False})
|
163 |
except FileNotFoundError:
|
164 |
print(f" FAILED: Cannot find {log_path}" )
|
165 |
else:
|
166 |
log=log
|
167 |
-
success_msg = f" SUCCESS: Benchmarking one event-log with {miner} took"# {dt.now()-start_bench} sec."
|
168 |
if miner == 'sm':
|
169 |
bpmn_graph = self.split_miner_wrapper(log_path)
|
170 |
if bpmn_graph is None:
|
|
|
157 |
log_path = params[INPUT_PATH]
|
158 |
else:
|
159 |
log_path = os.path.join(params[INPUT_PATH], log+".xes")
|
160 |
+
success_msg = f" SUCCESS: Benchmarking event-log {log} with {miner} took "# {dt.now()-start_bench} sec."
|
161 |
try:
|
162 |
log = xes_importer.apply(f"{log_path}", parameters={"show_progress_bar": False})
|
163 |
except FileNotFoundError:
|
164 |
print(f" FAILED: Cannot find {log_path}" )
|
165 |
else:
|
166 |
log=log
|
167 |
+
success_msg = f" SUCCESS: Benchmarking one event-log with {miner} took "# {dt.now()-start_bench} sec."
|
168 |
if miner == 'sm':
|
169 |
bpmn_graph = self.split_miner_wrapper(log_path)
|
170 |
if bpmn_graph is None:
|