We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9256f commit 6b4652fCopy full SHA for 6b4652f
backend/utils/runExperiments.js
@@ -108,7 +108,10 @@ async function runExperimentsForGroupedConfig(currentConfig) {
108
const timeStart = performance.now();
109
const RUN_CONFIG_PATH = path.join(config.CONFIGS_DIR, "run_config.json");
110
const allExperimentResults = [];
111
-
+ if (currentConfig.config_type === 0) {
112
+ const CUSTOM_CONFIG_PATH = path.join(config.CONFIGS_DIR, "custom_config.json");
113
+ writeJsonFile(CUSTOM_CONFIG_PATH, currentConfig.custom_config)
114
+ }
115
const configTypes = (currentConfig.config_type === -1)
116
? Array.from({ length: 6 }, (_, i) => i + 1)
117
: [currentConfig.config_type];
0 commit comments