Clémentine
commited on
Commit
·
c9d5f10
1
Parent(s):
6b71193
figure update
Browse files
app/src/content/embeds/finetasks-monotonicity.html
CHANGED
|
@@ -391,20 +391,10 @@
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
| 394 |
-
|
| 395 |
-
// Debug: log unique runnames before processing
|
| 396 |
-
const uniqueRunnames = [...new Set(sortedData.map(row => row.runname))];
|
| 397 |
-
console.log('Unique runnames in data:', uniqueRunnames);
|
| 398 |
-
console.log('Processed runnames:', uniqueRunnames.map(rn => processRunName(rn)));
|
| 399 |
-
|
| 400 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
| 401 |
-
console.log('Grouped data keys:', Object.keys(groupedData));
|
| 402 |
-
|
| 403 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 404 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 405 |
const traces = createTraces(smoothedData, metric);
|
| 406 |
-
console.log('Number of traces:', traces.length);
|
| 407 |
-
console.log('Trace names:', traces.map(t => t.name));
|
| 408 |
|
| 409 |
const plotContainer = container.querySelector('.plot-container');
|
| 410 |
|
|
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 394 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
|
|
|
|
|
|
| 395 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 396 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 397 |
const traces = createTraces(smoothedData, metric);
|
|
|
|
|
|
|
| 398 |
|
| 399 |
const plotContainer = container.querySelector('.plot-container');
|
| 400 |
|
app/src/content/embeds/finetasks-ordering.html
CHANGED
|
@@ -391,20 +391,10 @@
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
| 394 |
-
|
| 395 |
-
// Debug: log unique runnames before processing
|
| 396 |
-
const uniqueRunnames = [...new Set(sortedData.map(row => row.runname))];
|
| 397 |
-
console.log('Unique runnames in data:', uniqueRunnames);
|
| 398 |
-
console.log('Processed runnames:', uniqueRunnames.map(rn => processRunName(rn)));
|
| 399 |
-
|
| 400 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
| 401 |
-
console.log('Grouped data keys:', Object.keys(groupedData));
|
| 402 |
-
|
| 403 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 404 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 405 |
const traces = createTraces(smoothedData, metric);
|
| 406 |
-
console.log('Number of traces:', traces.length);
|
| 407 |
-
console.log('Trace names:', traces.map(t => t.name));
|
| 408 |
|
| 409 |
const plotContainer = container.querySelector('.plot-container');
|
| 410 |
|
|
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 394 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
|
|
|
|
|
|
| 395 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 396 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 397 |
const traces = createTraces(smoothedData, metric);
|
|
|
|
|
|
|
| 398 |
|
| 399 |
const plotContainer = container.querySelector('.plot-container');
|
| 400 |
|
app/src/content/embeds/finetasks-randomness.html
CHANGED
|
@@ -391,20 +391,10 @@
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
| 394 |
-
|
| 395 |
-
// Debug: log unique runnames before processing
|
| 396 |
-
const uniqueRunnames = [...new Set(sortedData.map(row => row.runname))];
|
| 397 |
-
console.log('Unique runnames in data:', uniqueRunnames);
|
| 398 |
-
console.log('Processed runnames:', uniqueRunnames.map(rn => processRunName(rn)));
|
| 399 |
-
|
| 400 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
| 401 |
-
console.log('Grouped data keys:', Object.keys(groupedData));
|
| 402 |
-
|
| 403 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 404 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 405 |
const traces = createTraces(smoothedData, metric);
|
| 406 |
-
console.log('Number of traces:', traces.length);
|
| 407 |
-
console.log('Trace names:', traces.map(t => t.name));
|
| 408 |
|
| 409 |
const plotContainer = container.querySelector('.plot-container');
|
| 410 |
|
|
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 394 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
|
|
|
|
|
|
| 395 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 396 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 397 |
const traces = createTraces(smoothedData, metric);
|
|
|
|
|
|
|
| 398 |
|
| 399 |
const plotContainer = container.querySelector('.plot-container');
|
| 400 |
|
app/src/content/embeds/finetasks-snr.html
CHANGED
|
@@ -391,20 +391,10 @@
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
| 394 |
-
|
| 395 |
-
// Debug: log unique runnames before processing
|
| 396 |
-
const uniqueRunnames = [...new Set(sortedData.map(row => row.runname))];
|
| 397 |
-
console.log('Unique runnames in data:', uniqueRunnames);
|
| 398 |
-
console.log('Processed runnames:', uniqueRunnames.map(rn => processRunName(rn)));
|
| 399 |
-
|
| 400 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
| 401 |
-
console.log('Grouped data keys:', Object.keys(groupedData));
|
| 402 |
-
|
| 403 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 404 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 405 |
const traces = createTraces(smoothedData, metric);
|
| 406 |
-
console.log('Number of traces:', traces.length);
|
| 407 |
-
console.log('Trace names:', traces.map(t => t.name));
|
| 408 |
|
| 409 |
const plotContainer = container.querySelector('.plot-container');
|
| 410 |
|
|
|
|
| 391 |
const plotData = (container, data, stats, metric, title, taskMetrics) => {
|
| 392 |
const groupSeeds = container.dataset.groupSeeds === 'true';
|
| 393 |
const sortedData = sortDataByTokens(data);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 394 |
const groupedData = groupDataByRunname(sortedData, groupSeeds, metric);
|
|
|
|
|
|
|
| 395 |
const interpolatedData = interpolateData(groupedData, metric);
|
| 396 |
const smoothedData = smoothData(interpolatedData, metric);
|
| 397 |
const traces = createTraces(smoothedData, metric);
|
|
|
|
|
|
|
| 398 |
|
| 399 |
const plotContainer = container.querySelector('.plot-container');
|
| 400 |
|