mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-18 00:45:54 +00:00
Add multy score to exreport
This commit is contained in:
15
src/Utils.py
15
src/Utils.py
@@ -13,14 +13,23 @@ class Folders:
|
||||
class Files:
|
||||
index = "all.txt"
|
||||
|
||||
exreport_output = "exreport.txt"
|
||||
exreport_err = "exreport_err.txt"
|
||||
exreport_excel = "exreport.xlsx"
|
||||
cmd_open_macos = "/usr/bin/open"
|
||||
cmd_open_linux = "/usr/bin/xdg-open"
|
||||
exreport_pdf = "Rplots.pdf"
|
||||
benchmark_r = "benchmark.r"
|
||||
|
||||
@staticmethod
|
||||
def exreport_output(score):
|
||||
return f"exreport_{score}.txt"
|
||||
|
||||
@staticmethod
|
||||
def exreport_err(score):
|
||||
return f"exreport_err_{score}.txt"
|
||||
|
||||
@staticmethod
|
||||
def exreport_excel(score):
|
||||
return f"exreport_{score}.xlsx"
|
||||
|
||||
@staticmethod
|
||||
def exreport(score):
|
||||
return f"exreport_{score}.csv"
|
||||
|
Reference in New Issue
Block a user