Begin adding TeX output to b_best -m any command

This commit is contained in:
2024-09-02 18:14:53 +02:00
parent 8372987dae
commit 4545f76667
5 changed files with 106 additions and 26 deletions

View File

@@ -11,6 +11,7 @@ namespace platform {
static std::string excel() { return "excel/"; }
static std::string grid() { return "grid/"; }
static std::string graphs() { return "graphs/"; }
static std::string tex() { return "tex/"; }
static std::string datasets()
{
auto env = platform::DotEnv();
@@ -36,6 +37,10 @@ namespace platform {
{
return "best_results_" + score + "_" + model + ".json";
}
static std::string bestResultsExcel()
{
return "BestResults.excel";
}
static std::string excelResults() { return "some_results.xlsx"; }
static std::string grid_input(const std::string& model)
{
@@ -45,6 +50,10 @@ namespace platform {
{
return grid() + "grid_" + model + "_output.json";
}
static std::string tex_output()
{
return "results.tex";
}
};
}
#endif