Skip to content

Commit 7254ca7

Browse files
committed
4.1.0
1 parent aad1953 commit 7254ca7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "punuy-eval",
3-
"version": "4.0.2",
3+
"version": "4.1.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/lib/experiments/experiment/aux.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ export async function saveExpVarCombData<T extends GenericExpTypes>(
127127
`💾 Saving experiment ${name} with traceId ${traceId} to ${filename}.`
128128
);
129129
logger.info(
130-
`🥇 It ran successfully ${data.results.raw.length}/${data.meta.trials
130+
`🥇 It ran successfully ${data.results.raw.length}/${
131+
data.meta.trials
131132
} times with variables ${JSON.stringify(getVarIds(data.variables))}.`
132133
);
133134

src/scripts/dsSampleFromDsName.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ const sampleFromName = async (vars: ExpVarMatrix) => {
6363
for (const exp of res.experiments) {
6464
logger.info(
6565
{ ...exp.results.aggregated?.resultTypes },
66-
`${exp.meta.name} ${JSON.stringify(getVarIds(exp.variables))} ${exp.results.aggregated?.okDataAvg
66+
`${exp.meta.name} ${JSON.stringify(getVarIds(exp.variables))} ${
67+
exp.results.aggregated?.okDataAvg
6768
}`
6869
);
6970
logger.debug(

0 commit comments

Comments
 (0)