diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29b5b8..bc1eca6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - with: - version: 10 - uses: actions/setup-node@v4 with: @@ -32,4 +30,4 @@ jobs: run: pnpm -r run build - name: Run all tests - run: pnpm -r run test + run: pnpm exec vitest run diff --git a/README.md b/README.md index 8ce3c74..011d349 100644 --- a/README.md +++ b/README.md @@ -229,40 +229,17 @@ const model = await storage.load('my-agent-v1'); ## Demos -Five interactive demos showing the framework in action. Each one is a full package you can run locally. +The [shared demo catalogue](packages/web/data/demos.json) supplies the homepage, documentation and static build with the same routes and metadata. See the documentation catalogue at `/docs/demos` when running the web app locally. -### 2D Demos — Canvas + Charts - -| Demo | What it shows | Algorithm | -|---|---|---| -| **GridWorld** | Agent finds the shortest path in a 7×7 grid | Q-Table, DQN, PPO | -| **CartPole** | Classic pole-balancing benchmark with Euler physics | DQN, PPO | -| **MountainCar** | Agent discovers momentum strategy to climb a hill | DQN, PPO | - -### 3D Demos — React Three Fiber - -| Demo | What it shows | Tech | -|---|---|---| -| **CartPole 3D** | Metallic cart and pole, sunset environment, contact shadows | R3F + drei | -| **Car Circuit** | 3D car learns to drive an oval circuit — chase cam, HUD, minimap, fading trail, 1x–50x speed slider | R3F + drei | - -### Run them locally +**Circuit Racing** features two licensed 3D vehicles, a shared arcade simulation, learned imitation drivers, local checkpoints and races. Its evaluation reports include failures. The keyboard player mode shares the same physics as its opponents. ```bash -git clone https://github.com/IgnitionAI/ignition.git -cd ignition pnpm install -pnpm -r run build - -# Pick your demo: -pnpm --filter demo-gridworld dev # http://localhost:3001 -pnpm --filter demo-cartpole dev # http://localhost:3002 -pnpm --filter demo-mountaincar dev # http://localhost:3003 -pnpm --filter demo-cartpole-3d dev # http://localhost:3010 -pnpm --filter demo-car-circuit dev # http://localhost:3020 +pnpm --filter demo-car-circuit dev +# Other package names and available methods: packages/web/data/demos.json ``` -Each demo has: live 3D/2D visualization, Train/Inference/Stop/Reset controls, algorithm picker (DQN/PPO), live reward chart, and a code panel showing the exact API you'd write in your own project. +The build currently excludes Target Chasing pending a separate compatibility check. The old oval Circuit tutorial remains a teaching example and uses an incompatible observation/action contract. --- @@ -354,3 +331,57 @@ The codebase follows: Built by [@salim4n](https://github.com/salim4n) / [@IgnitionAI](https://github.com/IgnitionAI) **Star the repo** ⭐ if you think creative JS devs deserve proper RL tooling. + +## PPO rollout and episode boundaries + +The public training loop collects **128 transitions** before an automatic PPO +update. Configure this with `env.train('ppo', { rolloutSize: 256 })`. +`batchSize` controls optimizer minibatches, independently of `rolloutSize`. +Calling `agent.train()` explicitly still updates all currently collected data, +including a partial rollout. A singleton or constant-advantage batch keeps its +raw advantages rather than removing its learning signal through normalization. + +`TrainingEnv.done()` remains required for compatibility. Existing environments +continue to treat `done()` as a terminal condition. To distinguish external time +limits, optionally provide `truncated(): boolean`. In that case termination +falls back to `done() && !truncated()`. An optional `terminated(): boolean` +overrides that fallback; when both explicit flags are true, termination takes +precedence for value bootstrapping. Either flag resets the episode, retaining +its final observation in the returned transition. + +PPO bootstraps nonterminal rollout ends and truncations from their actual next +observation; its advantage trace stops at either episode boundary. DQN and +Q-table also bootstrap truncations. Inference never trains. Manual environment +reset and inference steps discard incomplete PPO rollouts; stop/resume alone +retains them. Loading a PPO checkpoint discards pending transitions. + +Custom agents can optionally implement `shouldTrain()` to control automatic +update cadence and `discardRollout()` to discard on-policy data when the training +trajectory is interrupted. Agents without these hooks retain per-step updates. + +## Circuit evaluation (local demo API) + +The Circuit demo exposes `evaluateCircuit(policy, { policyId, circuit })` from +its evaluation module. Pass a versioned policy identifier and `training` or +`test`. The evaluator requests greedy actions through `IgnitionEnv.inferStep()` +and never invokes the supplied policy's `train()` or `remember()`. Evaluate a +checkpoint that is not being trained concurrently. + +Protocol `circuit-evaluation-v1` fixes two distinct oval geometries, three starting +waypoints, a 1,500-transition limit per episode and a three-lap success criterion. +It returns a JSON-serializable versioned report with per-episode outcomes, +transition counts, completed laps and simulated lap times (50 ms per step). +These are simulated times, not browser execution times. Preserve the report with +its checkpoint and avoid training or selecting models on the reserved test track. + +The existing three-argument `CircuitEnv` constructor remains supported. Its +optional fourth argument configures `maxSteps`, `targetLaps` and `startWaypoint`. +Terminal failure/success and external time limits are distinct; `lastEpisode` +retains the final metrics after an automatic reset. Completed laps require net +forward progress from the selected starting position, rather than merely +crossing the start line. + +This is the historical oval protocol. The current Circuit Racing experience uses +its own `circuit-racing-v1`, `racing-observation-v1` and `circuit-race-v1` contracts. +See [Circuit Racing](packages/demo-car-circuit/README.md) for current behavior, +learned checkpoint reports and validation boundaries. diff --git a/packages/backend-tfjs/src/agents/dqn.ts b/packages/backend-tfjs/src/agents/dqn.ts index 4e11d1f..b4ceca4 100644 --- a/packages/backend-tfjs/src/agents/dqn.ts +++ b/packages/backend-tfjs/src/agents/dqn.ts @@ -22,6 +22,7 @@ export class DQNAgent implements AgentInterface { private trainStepCounter = 0; private actionSize: number; private bestReward = -Infinity; + private random: () => number = Math.random; constructor(private config: DQNConfig) { const result = DQNConfigSchema.safeParse(config); @@ -48,6 +49,13 @@ export class DQNAgent implements AgentInterface { console.warn('[DQNAgent] Backend init warning:', err) ); + if (config.seed !== undefined) { + let state = config.seed >>> 0; + this.random = () => { + state = (Math.imul(state, 1664525) + 1013904223) >>> 0; + return state / 4294967296; + }; + } this.actionSize = actionSize; this.gamma = gamma; this.epsilon = epsilon; @@ -56,16 +64,16 @@ export class DQNAgent implements AgentInterface { this.batchSize = batchSize; this.targetUpdateFrequency = targetUpdateFrequency; - this.model = buildQNetwork(inputSize, actionSize, hiddenLayers, lr); - this.targetModel = buildQNetwork(inputSize, actionSize, hiddenLayers, lr); + this.model = buildQNetwork(inputSize, actionSize, hiddenLayers, lr, config.seed); + this.targetModel = buildQNetwork(inputSize, actionSize, hiddenLayers, lr, config.seed); this.updateTargetModel(); - this.memory = new ReplayBuffer(memorySize); + this.memory = new ReplayBuffer(memorySize, this.random); } async getAction(state: number[], greedy?: boolean): Promise { - if (!greedy && Math.random() < this.epsilon) { - return Math.floor(Math.random() * this.actionSize); + if (!greedy && this.random() < this.epsilon) { + return Math.floor(this.random() * this.actionSize); } const stateTensor = tf.tensor2d([state]); @@ -93,27 +101,31 @@ export class DQNAgent implements AgentInterface { const states = batch.map(e => e.state); const nextStates = batch.map(e => e.nextState); - const stateTensor = tf.tensor2d(states); - const nextStateTensor = tf.tensor2d(nextStates); - - const qValues = this.model.predict(stateTensor) as tf.Tensor2D; - const nextQValues = this.targetModel.predict(nextStateTensor) as tf.Tensor2D; - - const qArray = qValues.arraySync() as number[][]; - const nextQArray = nextQValues.arraySync() as number[][]; - - const updatedQ = qArray.map((q, i) => { - const { action, reward, terminated, truncated } = batch[i]; - const done = terminated || truncated; - const a = action as number; - q[a] = done ? reward : reward + this.gamma * Math.max(...nextQArray[i]); - return q; + const { stateTensor, targetTensor } = tf.tidy(() => { + const stateTensor = tf.tensor2d(states); + const nextStateTensor = tf.tensor2d(nextStates); + const qValues = this.model.predict(stateTensor) as tf.Tensor2D; + const nextQValues = this.targetModel.predict(nextStateTensor) as tf.Tensor2D; + const qArray = qValues.arraySync() as number[][]; + const nextQArray = nextQValues.arraySync() as number[][]; + const onlineNextArray = this.config.doubleQ + ? (this.model.predict(nextStateTensor) as tf.Tensor2D).arraySync() as number[][] + : undefined; + const updatedQ = qArray.map((q, i) => { + const { action, reward, terminated } = batch[i]; + const online = onlineNextArray?.[i]; + const selectedAction = online ? online.indexOf(Math.max(...online)) : -1; + const bootstrap = online ? nextQArray[i][selectedAction] : Math.max(...nextQArray[i]); + q[action as number] = terminated ? reward : reward + this.gamma * bootstrap; + return q; + }); + return { stateTensor, targetTensor: tf.tensor2d(updatedQ) }; }); - - const targetTensor = tf.tensor2d(updatedQ); - await this.model.fit(stateTensor, targetTensor, { epochs: 1, verbose: 0 }); - - tf.dispose([stateTensor, nextStateTensor, qValues, nextQValues, targetTensor]); + try { + await this.model.fit(stateTensor, targetTensor, { epochs: 1, verbose: 0, ...(this.config.seed === undefined ? {} : { shuffle: false }) }); + } finally { + tf.dispose([stateTensor, targetTensor]); + } if (this.epsilon > this.minEpsilon) { this.epsilon *= this.epsilonDecay; @@ -127,7 +139,7 @@ export class DQNAgent implements AgentInterface { reset(): void { this.epsilon = this.config.epsilon ?? 1.0; - this.memory = new ReplayBuffer(this.config.memorySize); + this.memory = new ReplayBuffer(this.config.memorySize, this.random); this.trainStepCounter = 0; } @@ -139,8 +151,7 @@ export class DQNAgent implements AgentInterface { async loadFromHub(repoId: string, modelPath = 'model.json'): Promise { console.log(`[DQN] Loading model from HF Hub: ${repoId}`); const loadedModel = await loadModelFromHub(repoId, modelPath); - this.model = loadedModel as tf.Sequential; - await this.updateTargetModel(); + this.replaceModel(loadedModel as tf.Sequential); } async saveCheckpoint(repoId: string, token: string, checkpointName: string): Promise { @@ -164,8 +175,7 @@ export class DQNAgent implements AgentInterface { const modelPath = `model_${checkpointName}/model.json`; console.log(`[DQN] Loading checkpoint "${checkpointName}" from HF Hub...`); const model = await loadModelFromHub(repoId, modelPath); - this.model = model as tf.Sequential; - await this.updateTargetModel(); + this.replaceModel(model as tf.Sequential); console.log(`[DQN] ✅ Checkpoint "${checkpointName}" loaded`); } @@ -185,7 +195,7 @@ export class DQNAgent implements AgentInterface { if (!provider) { throw new Error('[DQN] No storageProvider configured. Pass one in DQNConfig.'); } - return provider.save(modelId, this.model, metadata); + return provider.save(modelId, this.model, { ...metadata, algorithm: this.config.doubleQ ? 'double-dqn' : 'dqn' }); } /** @@ -198,8 +208,16 @@ export class DQNAgent implements AgentInterface { throw new Error('[DQN] No storageProvider configured. Pass one in DQNConfig.'); } const loaded = await provider.load(modelId); - this.model = loaded as tf.Sequential; - await this.updateTargetModel(); + this.replaceModel(loaded as tf.Sequential); + } + + private replaceModel(loaded: tf.Sequential): void { + if (loaded === this.model) { this.targetModel.setWeights(loaded.getWeights()); return; } + try { this.targetModel.setWeights(loaded.getWeights()); } + catch (error) { loaded.optimizer?.dispose(); loaded.dispose(); throw error; } + this.model.optimizer?.dispose(); + this.model.dispose(); + this.model = loaded; } getState(): Record { @@ -227,7 +245,9 @@ export class DQNAgent implements AgentInterface { dispose(): void { console.log(`[DQN] Disposing model...`); + this.model?.optimizer?.dispose(); this.model?.dispose(); + this.targetModel?.optimizer?.dispose(); this.targetModel?.dispose(); this.memory = new ReplayBuffer(0); console.log(`[DQN] ✅ DQNAgent disposed`); diff --git a/packages/backend-tfjs/src/agents/ppo.ts b/packages/backend-tfjs/src/agents/ppo.ts index edda2a8..2465103 100644 --- a/packages/backend-tfjs/src/agents/ppo.ts +++ b/packages/backend-tfjs/src/agents/ppo.ts @@ -214,12 +214,16 @@ export class PPOAgent implements AgentInterface { }); } - /** - * Mettre à jour l'acteur et le critic sur les données collectées. - * Vide le buffer de rollout à la fin (algorithme on-policy). - * - * Appelé typiquement à la fin de chaque épisode ou après N steps. - */ + /** Discard data when the training trajectory is interrupted. */ + discardRollout(): void { + this.rollout = []; + } + + shouldTrain(): boolean { + return this.rollout.length >= (this.config.rolloutSize ?? 128); + } + + /** Explicitly update all collected transitions, including partial rollouts. */ async train(): Promise { const n = this.rollout.length; if (n === 0) return; @@ -254,6 +258,7 @@ export class PPOAgent implements AgentInterface { // Vider le rollout — PPO est on-policy this.rollout = []; + this.trainStepCounter++; } // ------------------------------------------------------------------------- @@ -279,21 +284,26 @@ export class PPOAgent implements AgentInterface { const advantages = new Array(n); const returns = new Array(n); - let nextValue = 0; // V(s_{T+1}) = 0 pour l'état terminal + // Evaluate the actual successor before any update, including truncated + // episodes and the end of a nonterminal rollout. + const nextValues = tf.tidy(() => { + const states = tf.tensor2d(this.rollout.map(e => e.nextState)); + return Array.from((this.criticNet.predict(states) as tf.Tensor).dataSync()); + }); let lastGAE = 0; for (let t = n - 1; t >= 0; t--) { const { reward, terminated, truncated, value } = this.rollout[t]; - const mask = (terminated || truncated) ? 0 : 1; + const bootstrapMask = terminated ? 0 : 1; + const traceMask = (terminated || truncated) ? 0 : 1; // Erreur TD - const delta = reward + this.gamma * nextValue * mask - value; + const delta = reward + this.gamma * nextValues[t] * bootstrapMask - value; // Accumulation GAE - lastGAE = delta + this.gamma * this.gaeLambda * mask * lastGAE; + lastGAE = delta + this.gamma * this.gaeLambda * traceMask * lastGAE; advantages[t] = lastGAE; returns[t] = lastGAE + value; - nextValue = value; } // Normalisation des avantages @@ -304,7 +314,9 @@ export class PPOAgent implements AgentInterface { return { returns, - advantages: advantages.map(a => (a - mean) / std), + advantages: n > 1 && std > 1e-8 + ? advantages.map(a => (a - mean) / std) + : advantages, }; } @@ -456,6 +468,9 @@ export class PPOAgent implements AgentInterface { } const actor = await provider.load(`${modelId}/actor`); const critic = await provider.load(`${modelId}/critic`); + this.actorNet.dispose(); + this.criticNet.dispose(); + this.rollout = []; this.actorNet = actor as tf.Sequential; this.criticNet = critic as tf.Sequential; console.log(`[PPO] ✅ Loaded model ${modelId}`); @@ -464,6 +479,8 @@ export class PPOAgent implements AgentInterface { dispose(): void { this.actorNet?.dispose(); this.criticNet?.dispose(); + this.actorOptimizer.dispose(); + this.criticOptimizer.dispose(); this.rollout = []; } } diff --git a/packages/backend-tfjs/src/agents/qtable.ts b/packages/backend-tfjs/src/agents/qtable.ts index 0efc7c0..1f7d984 100644 --- a/packages/backend-tfjs/src/agents/qtable.ts +++ b/packages/backend-tfjs/src/agents/qtable.ts @@ -140,8 +140,8 @@ export class QTableAgent implements AgentInterface { async train(): Promise { if (!this.lastExperience) return; - const { state, action, reward, nextState, terminated, truncated } = this.lastExperience; - const done = terminated || truncated; + const { state, action, reward, nextState, terminated } = this.lastExperience; + const done = terminated; const a = action as number; const sIdx = this.stateToIndex(state); const sNextIdx = this.stateToIndex(nextState); diff --git a/packages/backend-tfjs/src/defaults.ts b/packages/backend-tfjs/src/defaults.ts index 57e09f9..d5fe5ff 100644 --- a/packages/backend-tfjs/src/defaults.ts +++ b/packages/backend-tfjs/src/defaults.ts @@ -35,6 +35,7 @@ export const QTABLE_DEFAULTS: Record = { export const ALGORITHM_DEFAULTS: Record> = { dqn: DQN_DEFAULTS, + 'double-dqn': { ...DQN_DEFAULTS, doubleQ: true }, ppo: PPO_DEFAULTS, qtable: QTABLE_DEFAULTS, }; diff --git a/packages/backend-tfjs/src/ignition-env-tfjs.ts b/packages/backend-tfjs/src/ignition-env-tfjs.ts index 2626397..9b5c045 100644 --- a/packages/backend-tfjs/src/ignition-env-tfjs.ts +++ b/packages/backend-tfjs/src/ignition-env-tfjs.ts @@ -6,6 +6,7 @@ import { ALGORITHM_DEFAULTS } from './defaults'; import type { DQNConfig, PPOConfig, QTableConfig } from './types'; const FACTORIES: Record = { + 'double-dqn': (config) => new DQNAgent({ ...(config as unknown as DQNConfig), doubleQ: true }), dqn: (config) => new DQNAgent(config as unknown as DQNConfig), ppo: (config) => new PPOAgent(config as unknown as PPOConfig), qtable: (config) => new QTableAgent(config as unknown as QTableConfig), diff --git a/packages/backend-tfjs/src/memory/ReplayBuffer.ts b/packages/backend-tfjs/src/memory/ReplayBuffer.ts index bec1b13..e73742a 100644 --- a/packages/backend-tfjs/src/memory/ReplayBuffer.ts +++ b/packages/backend-tfjs/src/memory/ReplayBuffer.ts @@ -8,7 +8,7 @@ export class ReplayBuffer { private _size = 0; private readonly capacity: number; - constructor(capacity = 10000) { + constructor(capacity = 10000, private readonly random: () => number = Math.random) { this.capacity = capacity; this.buffer = new Array(capacity); } @@ -24,7 +24,7 @@ export class ReplayBuffer { const n = Math.min(batchSize, this._size); const sampled: Experience[] = []; for (let i = 0; i < n; i++) { - sampled.push(this.buffer[Math.floor(Math.random() * this._size)]); + sampled.push(this.buffer[Math.floor(this.random() * this._size)]); } return sampled; } diff --git a/packages/backend-tfjs/src/model/BuildMLP.ts b/packages/backend-tfjs/src/model/BuildMLP.ts index 0077b0a..de2581f 100644 --- a/packages/backend-tfjs/src/model/BuildMLP.ts +++ b/packages/backend-tfjs/src/model/BuildMLP.ts @@ -14,13 +14,15 @@ export function buildQNetwork( inputSize: number, outputSize: number, hiddenLayers: number[] = [24, 24], - lr: number = 0.001 + lr: number = 0.001, + seed?: number ): tf.Sequential { const model = tf.sequential(); // Input layer model.add(tf.layers.dense({ inputShape: [inputSize], + ...(seed === undefined ? {} : {kernelInitializer: tf.initializers.glorotUniform({seed})}), units: hiddenLayers[0], activation: 'relu', })); @@ -29,6 +31,7 @@ export function buildQNetwork( for (let i = 1; i < hiddenLayers.length; i++) { model.add(tf.layers.dense({ units: hiddenLayers[i], + ...(seed === undefined ? {} : {kernelInitializer: tf.initializers.glorotUniform({seed: seed + i})}), activation: 'relu', })); } @@ -36,6 +39,7 @@ export function buildQNetwork( // Output layer (linear activation for Q-values) model.add(tf.layers.dense({ units: outputSize, + ...(seed === undefined ? {} : {kernelInitializer: tf.initializers.glorotUniform({seed: seed + hiddenLayers.length})}), activation: 'linear', })); diff --git a/packages/backend-tfjs/src/schemas.ts b/packages/backend-tfjs/src/schemas.ts index 11a8aa2..857e210 100644 --- a/packages/backend-tfjs/src/schemas.ts +++ b/packages/backend-tfjs/src/schemas.ts @@ -6,6 +6,8 @@ const TFBackendSchema = z.enum(['webgpu', 'webgl', 'cpu', 'wasm', 'node', 'auto' export const DQNConfigSchema = z .object({ + doubleQ: z.boolean().optional(), + seed: z.number().int().min(1).max(1000000).optional(), backend: TFBackendSchema, inputSize: z .number() @@ -73,6 +75,7 @@ export type DQNConfig = z.infer; // ─── PPOConfig ──────────────────────────────────────────────────────────────── export const PPOConfigSchema = z.object({ + rolloutSize: z.number().int().positive().optional(), backend: TFBackendSchema, inputSize: z .number() diff --git a/packages/backend-tfjs/src/types.ts b/packages/backend-tfjs/src/types.ts index d10c952..98e2627 100644 --- a/packages/backend-tfjs/src/types.ts +++ b/packages/backend-tfjs/src/types.ts @@ -5,6 +5,10 @@ import type { ModelStorageProvider } from '@ignitionai/storage'; export type { AgentInterface, Experience } from '@ignitionai/core'; export interface DQNConfig { + /** Online action selection with target-network evaluation (default: false). */ + doubleQ?: boolean; + /** Reproducible initialization, exploration and replay sampling when supplied. */ + seed?: number; backend?: TFBackend; // TF.js backend to use (default: 'auto') inputSize: number; // Dimension du vecteur d'état actionSize: number; // Nombre d'actions discrètes @@ -21,6 +25,8 @@ export interface DQNConfig { } export interface PPOConfig { + /** Transitions collected before automatic training (default: 128). */ + rolloutSize?: number; backend?: TFBackend; // TF.js backend to use (default: 'auto') inputSize: number; // Dimension du vecteur d'état actionSize: number; // Nombre d'actions discrètes diff --git a/packages/backend-tfjs/test/double-dqn-api.test.ts b/packages/backend-tfjs/test/double-dqn-api.test.ts new file mode 100644 index 0000000..01dd3e7 --- /dev/null +++ b/packages/backend-tfjs/test/double-dqn-api.test.ts @@ -0,0 +1,34 @@ +import { expect, it, vi } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { IgnitionEnvTFJS } from '../src/ignition-env-tfjs'; +import type { ModelStorageProvider } from '@ignitionai/storage'; + +it('creates, trains, saves and greedily infers Double DQN through IgnitionEnv', async () => { + await tf.setBackend('cpu'); + let metadata: Record | undefined; + let saved: tf.Sequential | undefined; + const provider: ModelStorageProvider = { + async save(_id, model, meta) { saved = model as tf.Sequential; metadata = meta; return 'memory'; }, + async load() { throw new Error('Not used'); }, + async list() { return []; }, async exists() { return true; }, async delete() {}, + }; + const game = { actions: 2, observe: () => [0], step: (_action: number) => {}, + reward: () => 1, done: () => true, reset: () => {} }; + const env = new IgnitionEnvTFJS(game); + try { + env.train('double-dqn', { backend: 'cpu', batchSize: 1, memorySize: 2, storageProvider: provider }); + env.stop(); + await env.step(); + await env.save('double', { algorithm: 'wrong-caller-label' }); + expect(metadata?.algorithm).toBe('double-dqn'); + expect(env.agent?.getState?.().trainStepCounter).toBe(1); + const tensors = tf.memory().numTensors; + const failedFit = vi.spyOn(saved!, 'fit').mockRejectedValueOnce(new Error('injected fit failure')); + await expect(env.agent!.train()).rejects.toThrow('injected fit failure'); + expect(tf.memory().numTensors).toBe(tensors); + failedFit.mockRestore(); + const before = saved!.getWeights().map(t => Array.from(t.dataSync())); + await env.inferStep(); + expect(saved!.getWeights().map(t => Array.from(t.dataSync()))).toEqual(before); + } finally { env.stop(); env.agent?.dispose?.(); } +}); diff --git a/packages/backend-tfjs/test/double-dqn.test.ts b/packages/backend-tfjs/test/double-dqn.test.ts new file mode 100644 index 0000000..d65a83c --- /dev/null +++ b/packages/backend-tfjs/test/double-dqn.test.ts @@ -0,0 +1,39 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { DQNAgent } from '../src/agents/dqn'; +import type { ModelStorageProvider } from '@ignitionai/storage'; + +it.each([false, true])('separates online selection from target evaluation: doubleQ=%s', async doubleQ => { + await tf.setBackend('cpu'); + const net = tf.sequential(); + net.add(tf.layers.dense({ inputShape: [1], units: 8, activation: 'relu', kernelInitializer: 'zeros' })); + net.add(tf.layers.dense({ units: 2, kernelInitializer: 'zeros' })); + net.compile({ optimizer: tf.train.sgd(0.1), loss: 'meanSquaredError' }); + const setBias = (bias: number[]) => tf.tidy(() => { + const weights = net.getWeights(); + net.setWeights([...weights.slice(0, -1), tf.tensor1d(bias)]); + }); + setBias([1, 4]); + let learned = 0; + let savedMetadata: Record | undefined; + const provider: ModelStorageProvider = { + async load() { return net; }, + async save(_id, model, metadata) { + learned = tf.tidy(() => (model.predict(tf.tensor2d([[0]])) as tf.Tensor).dataSync()[0]); + savedMetadata = metadata; + return 'memory'; + }, async list() { return []; }, async exists() { return true; }, async delete() {}, + }; + const agent = new DQNAgent({ inputSize: 1, actionSize: 2, hiddenLayers: [8], batchSize: 1, + memorySize: 2, gamma: 1, backend: 'cpu', storageProvider: provider, doubleQ }); + try { + await agent.load('fixture'); // target values [1,4] + setBias([3, 2]); // online chooses action 0; target would choose action 1 + expect(await agent.getAction([0], true)).toBe(0); + agent.remember({ state: [0], action: 0, nextState: [0], reward: 0, terminated: false, truncated: true }); + await agent.train(); + await agent.save('result'); + expect(learned).toBeCloseTo(doubleQ ? 2.8 : 3.1, 4); + expect(savedMetadata?.algorithm).toBe(doubleQ ? 'double-dqn' : 'dqn'); + } finally { agent.dispose(); } +}); diff --git a/packages/backend-tfjs/test/dqn-load-memory.test.ts b/packages/backend-tfjs/test/dqn-load-memory.test.ts new file mode 100644 index 0000000..25d71f2 --- /dev/null +++ b/packages/backend-tfjs/test/dqn-load-memory.test.ts @@ -0,0 +1,15 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { DQNAgent } from '../src/agents/dqn'; +import { buildQNetwork } from '../src/model/BuildMLP'; +it('releases replaced networks and owned optimizers after repeated loads',async()=>{ + await tf.setBackend('cpu'); const baseline=tf.memory().numTensors; + const agent=new DQNAgent({inputSize:2,actionSize:2,hiddenLayers:[8],backend:'cpu',storageProvider:{ + async load(){return buildQNetwork(2,2,[8]);},async save(){return'memory';},async list(){return[];},async exists(){return true;},async delete(){}, + }}); + await agent.load('first');const loaded=tf.memory().numTensors; + for(let i=0;i<3;i++)await agent.load('next'); + const repeated=tf.memory().numTensors; + agent.dispose(); + expect(repeated).toBe(loaded);expect(tf.memory().numTensors).toBe(baseline); +}); diff --git a/packages/backend-tfjs/test/dqn-seed.test.ts b/packages/backend-tfjs/test/dqn-seed.test.ts new file mode 100644 index 0000000..b3feb7d --- /dev/null +++ b/packages/backend-tfjs/test/dqn-seed.test.ts @@ -0,0 +1,23 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { DQNAgent } from '../src/agents/dqn'; +it('repeats initialization, exploration and replay updates with a supplied seed', async () => { + await tf.setBackend('cpu'); + const snapshots: unknown[] = []; + const storageProvider = { + async save(_id: string, model: unknown) { snapshots.push((model as tf.Sequential).getWeights().map(t=>Array.from(t.dataSync())));return 'memory'; }, + async load():Promise{throw new Error('unused');},async list(){return[];},async exists(){return true;},async delete(){}, + }; + const config = { inputSize: 2, actionSize: 2, hiddenLayers: [8], batchSize: 64, memorySize: 128, storageProvider, backend: 'cpu' as const, seed: 29 }; + const a = new DQNAgent(config), b = new DQNAgent(config); + try { + for (let i=0;i<70;i++) { + expect(await a.getAction([i/10,1])).toBe(await b.getAction([i/10,1])); + const exp={state:[i/10,1],nextState:[(i+1)/10,1],action:i%2,reward:i/10,terminated:false,truncated:false}; + a.remember(exp); b.remember(exp); await a.train(); await b.train(); + } + for (let i=0;i<10;i++) expect(await a.getAction([i/10,1],true)).toBe(await b.getAction([i/10,1],true)); + expect(a.getState()).toEqual(b.getState()); + await a.save("a");await b.save("b");expect(snapshots[0]).toEqual(snapshots[1]); + } finally {a.dispose();b.dispose();} +}); diff --git a/packages/backend-tfjs/test/dqn-truncation.test.ts b/packages/backend-tfjs/test/dqn-truncation.test.ts new file mode 100644 index 0000000..55709de --- /dev/null +++ b/packages/backend-tfjs/test/dqn-truncation.test.ts @@ -0,0 +1,31 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { DQNAgent } from '../src/agents/dqn'; +import type { ModelStorageProvider } from '@ignitionai/storage'; + +it.each([false, true])('DQN bootstraps unless terminated=%s', async (terminated) => { + await tf.setBackend('cpu'); + const net = tf.sequential(); + net.add(tf.layers.dense({ inputShape: [1], units: 8, activation: 'relu', kernelInitializer: 'zeros' })); + net.add(tf.layers.dense({ units: 2, kernelInitializer: 'zeros', + biasInitializer: tf.initializers.constant({ value: 2 }) })); + net.compile({ optimizer: 'sgd', loss: 'meanSquaredError' }); + let learned = 0; + const provider: ModelStorageProvider = { + async load() { return net; }, + async save(_id, model) { + learned = tf.tidy(() => (model.predict(tf.tensor2d([[0]])) as tf.Tensor).dataSync()[0]); + return 'memory'; + }, async list() { return []; }, async exists() { return true; }, async delete() {}, + }; + const agent = new DQNAgent({ inputSize: 1, actionSize: 2, hiddenLayers: [8], batchSize: 1, + memorySize: 2, gamma: 0.9, backend: 'cpu', storageProvider: provider }); + try { + await agent.load('fixture'); + agent.remember({ state: [0], action: 0, nextState: [0], reward: 0.5, terminated, truncated: !terminated }); + await agent.train(); + await agent.save('result'); + if (terminated) expect(learned).toBeLessThan(2); + else expect(learned).toBeGreaterThan(2); + } finally { agent.dispose(); } +}); diff --git a/packages/backend-tfjs/test/ppo-bootstrap.test.ts b/packages/backend-tfjs/test/ppo-bootstrap.test.ts new file mode 100644 index 0000000..f636b76 --- /dev/null +++ b/packages/backend-tfjs/test/ppo-bootstrap.test.ts @@ -0,0 +1,93 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { PPOAgent } from '../src/agents/ppo'; +import type { ModelStorageProvider } from '@ignitionai/storage'; + +// A persisted policy with equal logits and a critic predicting V(s)=2. +function storage(): ModelStorageProvider { + return { + async load(id) { + const net = tf.sequential(); + net.add(tf.layers.dense({ inputShape: [1], units: id.endsWith('/actor') ? 2 : 1, + kernelInitializer: 'zeros', biasInitializer: tf.initializers.constant({ value: id.endsWith('/actor') ? 0 : 2 }) })); + return net; + }, + async save() { return 'memory'; }, async list() { return []; }, + async delete() {}, async exists() { return true; }, + }; +} + +it.each([ + { terminated: false, truncated: false, expected: 0 }, + { terminated: false, truncated: true, expected: 0 }, + { terminated: true, truncated: false, expected: 1 }, +])('single-transition update bootstraps only nonterminal states: %j', async ({ terminated, truncated, expected }) => { + const agent = new PPOAgent({ inputSize: 1, actionSize: 2, hiddenLayers: [8], + gamma: 0.9, epochs: 1, entropyCoef: 0, storageProvider: storage() }); + try { + await agent.load('fixture'); + const action = await agent.getAction([0], true); // tie chooses 0 + agent.remember({ state: [0], nextState: [0], action, reward: 0.5, terminated, truncated }); + // Nonterminal advantage: .5 + .9*2 - 2 = .3; terminal: .5 - 2 = -1.5. + await agent.train(); + expect(await agent.getAction([0], true)).toBe(expected); + } finally { agent.dispose(); } +}); + +it.each([false, true])('GAE does not carry rewards across an episode boundary (truncated=%s)', async (truncated) => { + let firstValue = 0; + const provider = storage(); + provider.load = async (id) => { + const net = tf.sequential(); + net.add(tf.layers.dense({ inputShape: [2], units: id.endsWith('/actor') ? 2 : 1, + useBias: false, kernelInitializer: tf.initializers.constant({ value: id.endsWith('/actor') ? 0 : 2 }) })); + return net; + }; + provider.save = async (id, model) => { + if (id.endsWith('/critic')) firstValue = tf.tidy(() => (model.predict(tf.tensor2d([[1, 0]])) as tf.Tensor).dataSync()[0]); + return 'memory'; + }; + const agent = new PPOAgent({ inputSize: 2, actionSize: 2, hiddenLayers: [8], + gamma: 0.9, gaeLambda: 1, epochs: 1, batchSize: 2, storageProvider: provider }); + try { + await agent.load('fixture'); + const action = await agent.getAction([1, 0], true); + agent.remember({ state: [1, 0], nextState: [1, 0], action, reward: 3, + terminated: !truncated, truncated }); + const nextAction = await agent.getAction([0, 1], true); + agent.remember({ state: [0, 1], nextState: [0, 1], action: nextAction, reward: -100, + terminated: true, truncated: false }); + await agent.train(); + await agent.save('result'); + // First target is 3 (terminal) or 4.8 (truncated), both above V=2. + // Leaking the next episode's -100 reward would instead decrease it. + expect(firstValue).toBeGreaterThan(2); + } finally { agent.dispose(); } +}); + +it('bootstraps the actual successor rather than the current observation', async () => { + const provider = storage(); + let probability = 0.5; + provider.load = async (id) => { + const net = tf.sequential(); + net.add(tf.layers.dense({ inputShape: [1], units: id.endsWith('/actor') ? 2 : 1, + kernelInitializer: tf.initializers.constant({ value: id.endsWith('/actor') ? 0 : 2 }), + biasInitializer: 'zeros' })); + return net; + }; + provider.save = async (id, model) => { + if (id.endsWith('/actor')) probability = tf.tidy(() => tf.softmax(model.predict(tf.tensor2d([[0]])) as tf.Tensor).dataSync()[0]); + return 'memory'; + }; + const agent = new PPOAgent({ inputSize: 1, actionSize: 2, hiddenLayers: [8], gamma: 0.9, + epochs: 1, entropyCoef: 0, storageProvider: provider }); + try { + await agent.load('fixture'); + const action = await agent.getAction([0], true); + agent.remember({ state: [0], nextState: [1], action, reward: -0.5, terminated: false, truncated: false }); + await agent.train(); + await agent.save('result'); + // -.5 + .9*V(1) - V(0) = 1.3. Using V(0) gives -.5 instead. + expect(probability).toBeGreaterThan(0.5); + } finally { agent.dispose(); } +}); diff --git a/packages/backend-tfjs/test/ppo-public.test.ts b/packages/backend-tfjs/test/ppo-public.test.ts new file mode 100644 index 0000000..033df38 --- /dev/null +++ b/packages/backend-tfjs/test/ppo-public.test.ts @@ -0,0 +1,44 @@ +import { expect, it, vi } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { IgnitionEnvTFJS } from '../src/ignition-env-tfjs'; + +it.each([11, 29, 47])('PPO learns rewarded actions through the public loop (seed %i)', async (seed) => { + await tf.setBackend('cpu'); + let rng = seed; + const random = vi.spyOn(Math, 'random').mockImplementation(() => { + rng = (Math.imul(rng, 1664525) + 1013904223) >>> 0; + return rng / 4294967296; + }); + let action = 0; + const env = new IgnitionEnvTFJS({ + actions: 2, observe: () => [0], step: (a: number | number[]) => { action = a as number; }, + reward: () => action === 1 ? 1 : -1, done: () => true, reset: () => {}, + }); + try { + env.train('ppo', { hiddenLayers: [8], lr: 0.01, entropyCoef: 0, batchSize: 32 }); + env.stop(); + for (let i = 0; i < 512; i++) await env.step(); + let correct = 0; + for (let i = 0; i < 200; i++) correct += (await env.agent!.getAction([0])) as number; + expect(correct / 200).toBeGreaterThan(0.8); + } finally { + env.stop(); + env.agent?.dispose?.(); + random.mockRestore(); + } +}, 30000); + +it.each(['reset', 'inferStep'] as const)('discards a partial rollout on %s', async (operation) => { + const env = new IgnitionEnvTFJS({ actions: 2, observe: () => [0], step: () => {}, + reward: () => 1, done: () => false, reset: () => {} }); + try { + env.train('ppo', { hiddenLayers: [8], rolloutSize: 2 }); + env.stop(); + await env.step(); + await env[operation](); + await env.step(); + expect(env.agent!.getState!().trainStepCounter).toBe(0); + await env.step(); + expect(env.agent!.getState!().trainStepCounter).toBe(1); + } finally { env.stop(); env.agent?.dispose?.(); } +}); diff --git a/packages/backend-tfjs/test/qtable-truncation.test.ts b/packages/backend-tfjs/test/qtable-truncation.test.ts new file mode 100644 index 0000000..26f9de4 --- /dev/null +++ b/packages/backend-tfjs/test/qtable-truncation.test.ts @@ -0,0 +1,13 @@ +import { it, expect } from 'vitest'; +import { QTableAgent } from '../src/agents/qtable'; + +it('Q-table bootstraps a truncated transition from its actual successor', async () => { + const agent = new QTableAgent({ inputSize: 1, actionSize: 2, lr: 0.9, gamma: 0.9, epsilon: 0 }); + agent.remember({ state: [1], action: 0, reward: 2, nextState: [1], terminated: true, truncated: false }); + await agent.train(); + agent.remember({ state: [0], action: 0, reward: 0.5, nextState: [0], terminated: true, truncated: false }); + await agent.train(); + agent.remember({ state: [0], action: 1, reward: 0, nextState: [1], terminated: false, truncated: true }); + await agent.train(); + expect(await agent.getAction([0], true)).toBe(1); +}); diff --git a/packages/core/src/env-validation.ts b/packages/core/src/env-validation.ts index eb5d2fb..78819e2 100644 --- a/packages/core/src/env-validation.ts +++ b/packages/core/src/env-validation.ts @@ -18,6 +18,9 @@ export function validateTrainingEnv(env: unknown): asserts env is TrainingEnv { assertFn(e, 'reward', 'TrainingEnv'); assertFn(e, 'done', 'TrainingEnv'); assertFn(e, 'reset', 'TrainingEnv'); + for (const name of ['terminated', 'truncated']) { + if (e[name] !== undefined) assertFn(e, name, 'TrainingEnv'); + } if (e.actions === undefined || e.actions === null) { throw new Error('[IgnitionAI] TrainingEnv must have an actions property (string[] or number)'); diff --git a/packages/core/src/ignition-env.ts b/packages/core/src/ignition-env.ts index 48c83af..a45e989 100644 --- a/packages/core/src/ignition-env.ts +++ b/packages/core/src/ignition-env.ts @@ -80,7 +80,8 @@ export class IgnitionEnv { const observation = this.env.observe(); const reward = this.env.reward(); - const terminated = this.env.done(); + const truncated = this.env.truncated?.() ?? false; + const terminated = this.env.terminated?.() ?? (this.env.done() && !truncated); const experience: Experience = { state: this.currentState, @@ -88,15 +89,15 @@ export class IgnitionEnv { reward, nextState: observation, terminated, - truncated: false, + truncated, }; this._agent.remember(experience); - await this._agent.train(); + if (this._agent.shouldTrain?.() ?? true) await this._agent.train(); - const result: StepResult = { observation, reward, terminated, truncated: false }; + const result: StepResult = { observation, reward, terminated, truncated }; - if (terminated) { + if (terminated || truncated) { this.env.reset(); this.currentState = this.env.observe(); } else { @@ -113,16 +114,18 @@ export class IgnitionEnv { this.stepCount++; + this._agent.discardRollout?.(); const action = await this._agent.getAction(this.currentState, true); this.env.step(action); const observation = this.env.observe(); const reward = this.env.reward(); - const terminated = this.env.done(); + const truncated = this.env.truncated?.() ?? false; + const terminated = this.env.terminated?.() ?? (this.env.done() && !truncated); - const result: StepResult = { observation, reward, terminated, truncated: false }; + const result: StepResult = { observation, reward, terminated, truncated }; - if (terminated) { + if (terminated || truncated) { this.env.reset(); this.currentState = this.env.observe(); } else { @@ -173,6 +176,7 @@ export class IgnitionEnv { } public reset(): void { + this._agent?.discardRollout?.(); this.env.reset(); this.currentState = this.env.observe(); this.stepCount = 0; diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 701f99f..d739e31 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -54,6 +54,10 @@ export interface AgentInterface { getAction(observation: number[], greedy?: boolean): Promise; remember(experience: Experience): void; train(): Promise; + /** Whether the collected transitions are ready for an automatic update. */ + shouldTrain?(): boolean; + /** Discard on-policy data when execution leaves the training trajectory. */ + discardRollout?(): void; /** Release TF/GPU/WASM resources held by the agent */ dispose?(): void; /** Reset agent internal state (epsilon, memory, counters…) */ @@ -99,6 +103,10 @@ export interface TrainingEnv { reward(): number; /** Return true if the episode is over */ done(): boolean; + /** Optional explicit terminal condition; overrides legacy done(). */ + terminated?(): boolean; + /** Optional external episode limit (default: false). */ + truncated?(): boolean; /** Reset the environment for a new episode */ reset(): void; } @@ -115,7 +123,7 @@ export interface InferenceEnv { // ─── Auto-configuration ───────────────────────────────────────────────────── -export type AlgorithmType = 'dqn' | 'ppo' | 'qtable'; +export type AlgorithmType = 'dqn' | 'double-dqn' | 'ppo' | 'qtable'; /** * Factory function that creates an agent from a merged config. diff --git a/packages/core/test/episode-end.test.ts b/packages/core/test/episode-end.test.ts new file mode 100644 index 0000000..c831461 --- /dev/null +++ b/packages/core/test/episode-end.test.ts @@ -0,0 +1,39 @@ +import { expect, it, vi } from 'vitest'; +import { IgnitionEnv } from '../src/ignition-env'; + +it.each(['step', 'inferStep'] as const)('%s reports truncation and resets without losing the last observation', async (method) => { + let position = 0; + const world = { + actions: 2, observe: () => [position], step: () => { position = 5; }, + reward: () => 1, done: () => true, truncated: () => true, + reset: () => { position = 0; }, + }; + const loop = new IgnitionEnv(world); + const remember = vi.fn(); + loop.agent = { getAction: async () => 0, remember, train: async () => {} }; + expect(await loop[method]()).toEqual({ observation: [5], reward: 1, terminated: false, truncated: true }); + expect(position).toBe(0); + if (method === 'step') expect(remember).toHaveBeenCalledWith(expect.objectContaining({ nextState: [5], terminated: false, truncated: true })); +}); + +it.each([ + { explicit: undefined, truncated: undefined, terminal: true, cut: false }, + { explicit: true, truncated: true, terminal: true, cut: true }, + { explicit: false, truncated: false, terminal: false, cut: false }, +])('preserves legacy done and explicit terminal precedence: %j', async ({ explicit, truncated, terminal, cut }) => { + const reset = vi.fn(); + const loop = new IgnitionEnv({ actions: 2, observe: () => [0], step: () => {}, + reward: () => 0, done: () => true, reset, + ...(explicit === undefined ? {} : { terminated: () => explicit }), + ...(truncated === undefined ? {} : { truncated: () => truncated }), + }); + loop.agent = { getAction: async () => 0, remember: () => {}, train: async () => {} }; + expect(await loop.step()).toMatchObject({ terminated: terminal, truncated: cut }); + expect(reset).toHaveBeenCalledTimes(terminal || cut ? 1 : 0); +}); + +it.each(['terminated', 'truncated'])('rejects a non-function %s callback at construction', (name) => { + expect(() => new IgnitionEnv({ actions: 2, observe: () => [0], step: () => {}, + reward: () => 0, done: () => false, reset: () => {}, [name]: true, + })).toThrow(new RegExp(name)); +}); diff --git a/packages/demo-car-circuit/README.md b/packages/demo-car-circuit/README.md new file mode 100644 index 0000000..3790a9b --- /dev/null +++ b/packages/demo-car-circuit/README.md @@ -0,0 +1,46 @@ +# Circuit Racing + +Driving/race V2 add boundary collisions and immobilization rescue. The bundled imitation checkpoints were trained afresh against these rules (learning V2). Old checkpoints are rejected instead of silently relabelled. The Q V3 comparison and all 200 evaluations are available in the linked report. Older checkpoints and results remain historical. + +Run `pnpm --filter demo-car-circuit dev` from the workspace root, then open the displayed local URL. Run tests from the root with `pnpm exec vitest run packages/demo-car-circuit/test` (the Vite root is `src`). + +The first racing slice provides two imported Kenney Car Kit vehicles (CC0), Alpine Park, a following camera and deterministic arcade driving at 60 simulation ticks per second. Accelerate with arrows/WASD/ZQSD, brake with Down/S, steer with Left/Right or A/Q/D. Escape, losing focus and changing vehicle pause the session. Both vehicles share identical physics. + +Asset license and provenance are in `src/public/models/`. The versioned nine-action driving contract is in `src/racing/driving.ts`. The legacy constant-speed environment and its evaluation tests remain available; its checkpoints are not compatible with the racing contract. + +Course mode adds a three-second countdown, three laps through 20 ordered checkpoints, standings and results. Up to four cars use a shared decision batch and physics clock. Ordered gates reject skipped checkpoints; brief cuts between gates are penalized rather than physically forbidden. Off-road excursions cost two seconds. Remaining within one metre for five seconds, on or off the road, rescues the vehicle to its last validated checkpoint and adds five seconds. Moving off-road does not trigger a rescue. Continuous rails at seven metres from the centreline contain the shared 1.2-metre collision radius, removing outward impact speed. Car contacts separate their collision bodies and reduce speed. A race stops at five simulated minutes or when all drivers finish. Equal times are ordered by stable driver ID. + +The observation mode explicitly uses four **rule-based reference controllers**, not learned policies. The Train mode now creates a real imitation MLP, aggregates trajectories on Alpine Park, and switches from solo to frozen reference traffic after eight rounds. A new run uses 16 rounds of 4,096 examples and three Adam epochs per round (learning rate 0.003, batch size 128, two 32-unit tanh layers, nine-way softmax). The seed fixes initialization and sampling; the 20-element observation contains driving state, track anticipation and up to three opponents. + +Stop completes the current gradient update then stops collection. Resume uses the loaded driver's seed and weights; loading recreates the optimizer, so this is a weights resume rather than an exact optimizer-state continuation. New driver discards the current unsaved network. Save stores real weights, contracts and reports in this browser's local garage. Reload refuses incompatible contracts or malformed weights. + +Evaluation reconstructs a separate frozen network and checks both circuits, solo and with three rule-based traffic vehicles, using scenario seeds 101/307/509. Success means three laps, no rescue and no more than ten penalty seconds. Results remain attached to the evaluated weights; resumed training clears old reports. + +`src/public/drivers/` contains all three scheduled training seeds and their complete reports, including failures. Aggregate measured success is 33/36 (9/12, 12/12 and 12/12 for seeds 11, 29 and 47); no checkpoint was selected by test-track performance. The three failures are seed 11 on the held-out circuit without traffic. These imitation drivers are imperfect and often make contact in traffic. The pre-run protocol and source hashes are retained in `src/public/drivers/protocol.json`; the former checkpoints are archived in `src/public/reports/imitation-v1/`. Run `pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/train-racing.mts` at the root to reproduce native training/evaluation (requires the installed TFJS Node addon). + +Course now opens a garage for two to four learned competitors. Select a local saved checkpoint or any of the three supplied trained networks, choose each vehicle independently, and start the AI race. The camera selector follows each driver's own speed, lap and penalty metrics. Results identify each checkpoint. Each race owns separately loaded frozen networks and disposes them on session changes. Missing bundled files are reported without hiding available local drivers; no rule-based substitute is used. + +Race V2 browser proof: new checkpoints 29 and 11 completed three laps in 103.27 s and 115.40 s, with zero penalties and rescues. The lap counter remains visible in narrow desktop windows and the result list separates checkpoint identity from finish time. The public integration test verifies completion with unchanged weights. In the garage, choose Play against AI to drive with one to three learned opponents. Choose your vehicle independently; arrows/WASD/ZQSD use the same nine-action physics as the networks. Opening garage controls pauses the race. The HUD adds position, laps, penalties and a live map; the camera remains on the player. + +Current player verification: shared-clock acceleration/braking and frozen-opponent tests pass; browser acceleration and Escape pause were observed. A browser run completing all three human laps remains unverified and is not claimed by the AI-only race proof. + +The frozen racing evaluation protocol names Alpine Park for training, Harbour for held-out testing, and seeds 101/307/509 before learned checkpoint selection. The original constant-speed evaluation has its separate version. + + +## DQN and Double DQN on the racing contract + +The method selector creates imitation, DQN or Double DQN drivers. Q-learning uses the same twenty observations, nine actions and arcade physics, with one decision every six ticks in training, evaluation and races. Q checkpoints use ReLU hidden layers and linear outputs; imitation retains tanh and softmax. The checkpoint algorithm and protocol identify the architecture and decision cadence, and all three methods can share a learned race. + +`racing-q-learning-v3` fixes 20,000 training decisions, five training seeds, and twenty frozen full-race evaluations per checkpoint (five evaluation seeds × both tracks × solo/traffic). Training starts at varied positions on Alpine Park, uses10,000 solo decisions then10,000 with frozen reference traffic, preserves off-road recovery and uses progress rewards; evaluation uses the full standing-start race. Resume recreates optimizer, replay and exploration from the loaded weights, rather than restoring exact training state. + +Native V3 results: DQN 42/100 successes (61 completed), Double DQN 33/100 (77 completed). Success rates across five training seeds ranged 0–85% and 0–80%; population standard deviations 38.0 and 33.0 percentage points. Double DQN finished more races but met the predeclared penalty/rescue criterion less often. Raw failures, all final checkpoints, timing, versions and source hashes are in `src/public/reports/racing-q-v3/` and its rendered report. Native and browser CPU runs use different numeric backends and need not produce identical trained weights or scores. + +V1 remains a historical archive: it stopped recoverable off-road excursions and trained solo only. V2 corrected that curriculum but still used race V1 without barrier collisions and with off-road-duration rescue. Neither archive validates the corrected race rules. + +Reproduce with `pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/compare-racing-q.mts`, then `node scripts/report-racing-q.mjs`. The source aliases match the demo's Vite aliases; the repository's existing package ESM export points at an unbuilt file, so the runner does not rely on that package export. The runner refuses to overwrite an existing protocol file. Preserve or move the existing `.scratch/circuit-racing/q-comparison-v3` directory before a fresh run. + +Browser CPU V3 verification: a newly trained Double DQN seed 11 checkpoint (`driver-11-1788717838571`) survived save → page reload → load and completed all twenty evaluations, with 15/20 successes. The evaluated copy was saved as `driver-11-1788718008363`. Old race-V1/Q-V2 checkpoints are explicitly rejected as incompatible. This checks the browser workflow independently of the native benchmark. The mixed browser race also completed: Double DQN checkpoint `driver-11-1788718008363` finished in 222.15 s and supplied imitation 29 in 240.77 s. Both finished three laps; this remains an AI-only race, not the outstanding human acceptance test. + +The training interface guides users through Train → Test → Save → Race with one primary action at each step. Technical configuration and individual evaluation results stay in expandable details. The 3D view is explicitly labelled as a session snapshot, not continuous racing. Saving carries the exact checkpoint into the garage; switching to player mode preserves that opponent. + +Interactive races now use **ghost mode** (`circuit-race-v2-ghost-v1`): cars cannot push or slow each other; rail collisions, off-road penalties and rescue still apply. This includes AI races and player opponents. Existing checkpoints can race in this mode, while their recorded training/evaluation scores remain explicitly labelled as contact-mode results. The default training/evaluation simulation keeps its original contact rules so those protocols are not silently changed. diff --git a/packages/demo-car-circuit/VALIDATION.md b/packages/demo-car-circuit/VALIDATION.md new file mode 100644 index 0000000..ea7431d --- /dev/null +++ b/packages/demo-car-circuit/VALIDATION.md @@ -0,0 +1,55 @@ +# Local validation — 6 September 2026 + +Status: implementation and automated/local-browser checks delivered; **a full human-driven three-lap race against a named learned checkpoint remains unverified**. No push, merge, deployment or issue closure is implied. + +## Scope and evidence + +| Scope | Evidence | Boundary | +| --- | --- | --- | +| #7 PPO public learning | Rollout/termination/truncation tests and public learning across seeds 11, 29, 47; native PPO convergence suite passes. | Three live Hugging Face tests skip without credentials. | +| #8 Frozen legacy Circuit evaluation | Distinct training/test tracks, controlled starts, explicit limits, versioned reports and public integration tests. | Legacy constant-speed checkpoints remain incompatible with Racing. | +| #10 Catalogue | One JSON catalogue drives eight routes, homepage counts and docs; all eight built with correct base paths. Production gallery and docs checked. | Target Chasing has not been accepted into this catalogue. | +| #13 3D driving | Two imported Kenney CC0 GLBs with texture, licence and source hashes; common fixed 60 Hz physics, keyboard/focus/pause tests and browser rendering. Asset failure/Retry previously verified; final rails and assets rendered in production localhost. | Arcade desktop physics with circular collision bodies; local measurements are not internet latency promises. | +| #14 Race rules | Race V2: ordered gates, three laps, standings/ties, car contacts, continuous rail contacts, penalties, immobilization rescue and common decision clock. Combined car/rail constraints and finish/rescue ordering have regression tests. Four rule references finish in public simulation tests. | Off-road costs 2 s. Staying within 1 m for 5 s triggers rescue (+5 s); moving excursions remain recoverable. | +| #15 Real driver persistence | Fresh imitation V2 seeds 11, 29, 47: 33/36 successes, all checkpoints/reports retained. Pre-run protocol and source hashes match commit `020ba09`. Browser Q V3 training → save → full reload → load → frozen evaluation also completed. | Seed 11 fails the three held-out solo scenarios. Frequent traffic contacts remain. Weights resume recreates optimizer. | +| #16 Learned races | Fresh imitation V2 checkpoints 29 and 11 completed three browser laps in 103.27 s and 115.40 s, zero penalties/rescues. Separate frozen copies and unchanged weights tested. | No rule-controller fallback. This is not a human race proof. | +| #11 Double DQN | Public analytic online/target test, API train/save/infer, same-seed weights, repeated-load memory test, selector and Q checkpoint reload. Browser CPU Double DQN seed 11 trained 20,000 transitions and scored 15/20 after save/full reload/load. Old race-V1 checkpoints show an incompatibility error. | Browser CPU and native TensorFlow are different numeric backends. Mixed browser race completed: Q checkpoint `driver-11-1788718008363` in 222.15 s, imitation `bundled-29` in 240.77 s. | +| #12 Equal-budget comparison | [V3 report](src/public/reports/racing-q-v3/index.html): five seeds × twenty full evaluations × two methods, 20,000 transitions and 4,993 updates each. All failures, weights, timings, versions and source hashes retained; two independent reviews verified the artifacts. | DQN 42/100 successes, 61 finishes; Double DQN 33/100, 77 finishes. No gain on aggregate success. V1/V2 are historical archives. | +| #17 Player versus trained AI | Two vehicle choices, one to three trained opponents, common physics/rules, HUD/map, pause/results. Public acceleration/braking/shared-clock/frozen-opponent tests pass. Browser short-key acceleration/pause previously verified. | **A complete three-lap human keyboard race against a named learned checkpoint is still unverified.** | + +## V3 experiment contract + +`racing-q-learning-v3`, driving `circuit-racing-v2`, race `circuit-race-v2`: 10,000 solo decisions, then 10,000 with three frozen rule-reference traffic drivers. Six common physics ticks per Q decision in training, evaluation and races. Boundaries, collisions, immobilization rescue and off-road penalties are shared. Episodes truncate after 600 decisions or at the curriculum boundary; only finishing terminates them. Last scheduled weights are retained without evaluation-based selection. + +Training seeds: 11, 29, 47, 73, 101. Evaluation seeds: 211, 307, 419, 509, 601 on Alpine Park and Harbour, solo and traffic. Success requires three laps, no rescue and at most ten penalty seconds. Evaluation seeds vary the initial heading narrowly; these are not independent broad driving scenarios. + +DQN success across training seeds: 0–85%, population standard deviation 38.0 percentage points. Double DQN: 0–80%, 33.0 points. More Double DQN finishes do not imply more successes because penalties/rescues count. The result does not demonstrate general algorithm superiority. + +V1 stopped recoverable off-road excursions and omitted training traffic. V2 corrected those two problems but used race V1 without boundary collision and rescued moving cars after five seconds off-road. Their raw data remains preserved; neither supports acceptance of the corrected rules. + +Browser CPU V3: checkpoint `driver-11-1788717838571` was saved after training, restored after full page reload and evaluated on all twenty scenarios (15/20 success). Evaluated copy: `driver-11-1788718008363`. Browser and native training are distinct runs on different numeric backends. The evaluated browser Q checkpoint then completed three laps against imitation 29: 222.15 s versus 240.77 s; both arrivals and checkpoint IDs were visible in the results. + +## Runtime measurements + +Final production localhost, Apple M4 / 16 GiB, Chromium 152 on macOS, 1280 × 720, four fresh imitation networks (11, 29, 47, 11): 180 animation-frame intervals, median **8.3 ms**, p95 **9.5 ms**, mean **8.331 ms**. Active four-car traffic, approximately 44 s into the race. Warm local rendering; not a universal hardware guarantee. Formula R / Sport GT, Alpine Park, driving/race V2 and observations V1. + +With browser cache disabled, final local Formula GLB transfer took **16.2 ms** (26,667 compressed body bytes), finishing 190.6 ms after navigation; texture **10.5 ms**, finishing 242.6 ms. Source GLB size: 167,272 bytes. Cache restored and Network instrumentation disabled afterward. Earlier asset-error validation blocked the GLB, observed “Le véhicule n’a pas pu être chargé.”, restored access and recovered via Retry; the loader/error boundary is unchanged by the rule correction. + +Final rendered V3 report opened through the Training link. Report, raw JSON and all ten weight files returned HTTP 200; raw JSON contains all 200 evaluations. Narrow-window lap counter and readable result rows checked visually. + +## Commands and remaining manual check + +- `npm test`: full workspace build, static demo build, Next build and **343 passing tests**, three credential-dependent integration skips. +- `pnpm run typecheck`: passed. +- `npm run lint`: exits successfully but explicitly skips ESLint because of existing configuration incompatibility. This is **not lint validation**. +- All eight production demo HTML files reference their correct `/demos//assets/` base. + +To complete #17: open local Circuit, choose Course → Play against AI, Sport GT and supplied imitation V2 checkpoint 29, then finish all three laps. Record checkpoint ID, result, penalties and replay/pause behavior. The available CUA key API emits short presses and has no key-hold operation. Automatic approval review rejected direct CDP key input in favour of CUA. The required human race has not been substituted with scripted AI driving. + +## Training UX follow-up + +The reported difficulty was clarified as an unclear workflow, not a failed training computation. Reproduced the old interface: “Nouveau pilote” trained 16 sessions but returned to “Prêt”, without a clear next action or snapshot explanation. The revised guided flow was exercised in the browser: train → 9/12 evaluated → save → garage checkpoint `driver-11-1788719094256` → player mode with the same checkpoint still selected. Existing training algorithms and protocols are unchanged. Circuit TypeScript checking, 61 Circuit tests and production build passed; the new entry screen was visually checked on localhost3030. The test driver in that origin was saved before refreshing. + +## Ghost-mode change requested by the maintainer + +The maintainer explicitly requested no collisions between cars after observing a pile-up. Interactive AI/player/reference races now use `circuit-race-v2-ghost-v1`; this supersedes the earlier car-contact requirement for those races. Barriers, gates, off-road penalties and immobilization rescue remain active. Training/evaluation retain contact rules; the garage labels their recorded scores accordingly. Previous race results above describe the earlier contact mode, not ghost-mode performance. Regression tests verify overlapping cars follow exactly the solo trajectory without speed loss, barriers still constrain them, and both learned AI/human races enable ghosts. All 65 Circuit tests, Circuit TypeScript checking and the production build pass. The new ghost label and four-car start were checked in the final localhost3030 build. diff --git a/packages/demo-car-circuit/package.json b/packages/demo-car-circuit/package.json index a196086..c670b37 100644 --- a/packages/demo-car-circuit/package.json +++ b/packages/demo-car-circuit/package.json @@ -3,16 +3,21 @@ "private": true, "version": "0.0.0", "type": "module", - "scripts": { "dev": "vite", "build": "vite build", "test": "vitest run" }, + "scripts": { + "dev": "vite", + "build": "vite build", + "test": "vitest run" + }, "dependencies": { "@ignitionai/backend-tfjs": "workspace:*", "@ignitionai/core": "workspace:*", "@react-three/drei": "^10.0.6", "@react-three/fiber": "^9.1.2", - "three": "^0.162.0", + "@tensorflow/tfjs": "4.22.0", "react": "^19.0.0", "react-dom": "^19.0.0", "recharts": "^2.15.3", + "three": "^0.162.0", "zustand": "^5.0.3" }, "devDependencies": { diff --git a/packages/demo-car-circuit/src/circuit-env.ts b/packages/demo-car-circuit/src/circuit-env.ts index a512287..676ee9a 100644 --- a/packages/demo-car-circuit/src/circuit-env.ts +++ b/packages/demo-car-circuit/src/circuit-env.ts @@ -4,6 +4,22 @@ import { OvalTrack } from './track'; const SPEED = 0.15; const STEER_DELTA = 0.08; // radians per step const MAX_STEPS = 500; +export const SIMULATION_STEP_SECONDS = 0.05; + +export interface CircuitOptions { + maxSteps?: number; + targetLaps?: number; + startWaypoint?: number; +} + +export interface CircuitEpisode { + transitions: number; + completedLaps: number; + lapTimesSeconds: number[]; + simulationSeconds: number; + endReason: 'success' | 'off-track' | 'time-limit'; +} + const LAP_BONUS = 50; const OFF_TRACK_PENALTY = -10; const LAPS_TO_WIN = 3; @@ -23,6 +39,14 @@ export class CircuitEnv implements TrainingEnv { stepCount = 0; laps = 0; private lastProgress = 0; + private readonly maxSteps: number; + private readonly targetLaps: number; + private readonly startWaypoint: number; + private forwardProgress = 0; + private lastLapStep = 0; + private lapTimesSeconds: number[] = []; + /** Most recent completed episode; retained across automatic resets. */ + lastEpisode: CircuitEpisode | null = null; private offTrack = false; private justCompletedLap = false; @@ -31,13 +55,22 @@ export class CircuitEnv implements TrainingEnv { private alignment = 0; private lateralNorm = 0; - constructor(straightLen = 10, radius = 4, halfWidth = 2) { + constructor(straightLen = 10, radius = 4, halfWidth = 2, options: CircuitOptions = {}) { this.track = new OvalTrack(straightLen, radius, halfWidth); - // Start on top straight, facing right - const start = this.track.waypoints[0]; + this.maxSteps = options.maxSteps ?? MAX_STEPS; + this.targetLaps = options.targetLaps ?? LAPS_TO_WIN; + this.startWaypoint = options.startWaypoint ?? 0; + if (!Number.isInteger(this.maxSteps) || this.maxSteps < 1 || + !Number.isInteger(this.targetLaps) || this.targetLaps < 1 || + !Number.isInteger(this.startWaypoint) || this.startWaypoint < 0 || + this.startWaypoint >= this.track.waypoints.length - 1) { + throw new Error('Invalid Circuit episode options'); + } + const start = this.track.waypoints[this.startWaypoint]; this.carX = start.x; this.carY = start.y; - this.carAngle = 0; + this.carAngle = this.track.nearestPoint(start.x, start.y).trackAngle; + this.lastProgress = this.track.nearestPoint(start.x, start.y).progress; } observe(): number[] { @@ -87,9 +120,12 @@ export class CircuitEnv implements TrainingEnv { // Lap completion — fire bonus only once per crossing this.justCompletedLap = false; - if (result.progress < 0.1 && this.lastProgress > 0.9) { + this.forwardProgress += delta; + if (!this.offTrack && this.forwardProgress >= this.laps + 1 - 1e-9) { this.laps++; this.justCompletedLap = true; + this.lapTimesSeconds.push((this.stepCount + 1 - this.lastLapStep) * SIMULATION_STEP_SECONDS); + this.lastLapStep = this.stepCount + 1; } this.lastProgress = result.progress; @@ -110,20 +146,37 @@ export class CircuitEnv implements TrainingEnv { return this.justCompletedLap ? base + LAP_BONUS : base; } + terminated(): boolean { + return this.offTrack || this.laps >= this.targetLaps; + } + + truncated(): boolean { + return !this.terminated() && this.stepCount >= this.maxSteps; + } + done(): boolean { - if (this.offTrack) return true; - if (this.laps >= LAPS_TO_WIN) return true; - return this.stepCount >= MAX_STEPS; + return this.terminated() || this.truncated(); } reset(): void { - const start = this.track.waypoints[0]; + if (this.done()) { + this.lastEpisode = { + transitions: this.stepCount, completedLaps: this.laps, + lapTimesSeconds: [...this.lapTimesSeconds], + simulationSeconds: this.stepCount * SIMULATION_STEP_SECONDS, + endReason: this.offTrack ? 'off-track' : this.laps >= this.targetLaps ? 'success' : 'time-limit', + }; + } + const start = this.track.waypoints[this.startWaypoint]; this.carX = start.x; this.carY = start.y; - this.carAngle = 0; + this.carAngle = this.track.nearestPoint(start.x, start.y).trackAngle; this.stepCount = 0; this.laps = 0; - this.lastProgress = 0; + this.lastProgress = this.track.nearestPoint(start.x, start.y).progress; + this.forwardProgress = 0; + this.lastLapStep = 0; + this.lapTimesSeconds = []; this.offTrack = false; this.justCompletedLap = false; this.progressDelta = 0; diff --git a/packages/demo-car-circuit/src/evaluation.ts b/packages/demo-car-circuit/src/evaluation.ts new file mode 100644 index 0000000..231d94d --- /dev/null +++ b/packages/demo-car-circuit/src/evaluation.ts @@ -0,0 +1,74 @@ +import { IgnitionEnv, type AgentInterface } from '@ignitionai/core'; +import { CircuitEnv, SIMULATION_STEP_SECONDS, type CircuitEpisode } from './circuit-env'; + +/** Fixed before checkpoint selection. Changing any setting requires a new id. */ +export const CIRCUIT_PROTOCOL = Object.freeze({ + id: 'circuit-evaluation-v1', + circuits: Object.freeze({ + training: Object.freeze({ straightLength: 10, radius: 4, halfWidth: 2 }), + test: Object.freeze({ straightLength: 6, radius: 6, halfWidth: 2 }), + }), + startWaypoints: Object.freeze([0, 16, 32]), + maxSteps: 1500, + targetLaps: 3, + stepSeconds: SIMULATION_STEP_SECONDS, +}); + +export interface CircuitEvaluationReport { + schemaVersion: 1; + protocolId: string; + policyId: string; + circuit: keyof typeof CIRCUIT_PROTOCOL.circuits; + protocol: typeof CIRCUIT_PROTOCOL; + episodes: (CircuitEpisode & { startWaypoint: number })[]; + totalTransitions: number; + completedLaps: number; + successfulEpisodes: number; + offTrackEpisodes: number; + truncatedEpisodes: number; +} + +/** Uses only the policy's greedy action interface; never calls train/remember. */ +export async function evaluateCircuit( + policy: Pick, + options: { policyId: string; circuit: keyof typeof CIRCUIT_PROTOCOL.circuits }, +): Promise { + if (!options.policyId.trim()) throw new Error('A versioned policyId is required'); + const track = CIRCUIT_PROTOCOL.circuits[options.circuit]; + if (!track) throw new Error('Unknown evaluation circuit'); + const episodes: CircuitEvaluationReport['episodes'] = []; + for (const startWaypoint of CIRCUIT_PROTOCOL.startWaypoints) { + const world = new CircuitEnv(track.straightLength, track.radius, track.halfWidth, { + startWaypoint, maxSteps: CIRCUIT_PROTOCOL.maxSteps, targetLaps: CIRCUIT_PROTOCOL.targetLaps, + }); + const loop = new IgnitionEnv(world); + loop.agent = { + async getAction(observation) { + const action = await policy.getAction(observation, true); + if (typeof action !== 'number' || !Number.isInteger(action) || action < 0 || action > 2) { + throw new Error('Circuit policy must return a discrete action in [0, 2]'); + } + return action; + }, + remember() { throw new Error('Evaluation cannot record training experience'); }, + async train() { throw new Error('Evaluation cannot train'); }, + }; + for (let step = 0; step < CIRCUIT_PROTOCOL.maxSteps; step++) { + const result = await loop.inferStep(); + if (result.terminated || result.truncated) break; + // Resolved policy promises alone do not yield to rendering or input. + if ((step + 1) % 32 === 0) await new Promise(resolve => setTimeout(resolve, 0)); + } + if (!world.lastEpisode) throw new Error('Evaluation did not produce a completed episode'); + episodes.push({ ...world.lastEpisode, startWaypoint }); + } + return { + schemaVersion: 1, protocolId: CIRCUIT_PROTOCOL.id, policyId: options.policyId, + circuit: options.circuit, protocol: CIRCUIT_PROTOCOL, episodes, + totalTransitions: episodes.reduce((sum, e) => sum + e.transitions, 0), + completedLaps: episodes.reduce((sum, e) => sum + e.completedLaps, 0), + successfulEpisodes: episodes.filter(e => e.endReason === 'success').length, + offTrackEpisodes: episodes.filter(e => e.endReason === 'off-track').length, + truncatedEpisodes: episodes.filter(e => e.endReason === 'time-limit').length, + }; +} diff --git a/packages/demo-car-circuit/src/main.tsx b/packages/demo-car-circuit/src/main.tsx index c5bac04..1dde2ed 100644 --- a/packages/demo-car-circuit/src/main.tsx +++ b/packages/demo-car-circuit/src/main.tsx @@ -1,6 +1,6 @@ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; -import App from './App'; +import App from './racing/RacingApp'; import './styles.css'; createRoot(document.getElementById('root')!).render(); diff --git a/packages/demo-car-circuit/src/public/drivers/README.md b/packages/demo-car-circuit/src/public/drivers/README.md new file mode 100644 index 0000000..3aef63a --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/README.md @@ -0,0 +1,7 @@ +# Learned demonstration drivers + +These are actual network weights trained by `scripts/train-racing.mts`, not rule controllers. Method: imitation with dataset aggregation, 16 fixed rounds, seeds 11/29/47, 65,536 examples per seed, three gradient epochs per round. Same 20-observation/nine-action contract and race physics as the player. Solo collection followed by frozen rule-based traffic. + +Checkpoint selection was the final scheduled update on the training track. All three scheduled seeds are included, without held-out selection. Reports include the untrained baseline and every evaluation (three scenario seeds, two circuits, solo/traffic). Aggregate success: 29/36. Each untrained baseline completed zero laps. Seed 11: 9/12, seed 29: 10/12, seed 47: 10/12. Failure reports remain included. Seed 11 fails all three solo Harbour runs; no universal driving competence is claimed. Traffic contains many repeated contact ticks; these drivers are not collision-free racers. + +Saved JSON files contain trained weights and contract metadata. Inference reconstructs the network and uses its output directly. No reference controller fallback is present. The reports were measured using TensorFlow.js 4.22 native on macOS arm64; browser backend variation requires a separate browser check. diff --git a/packages/demo-car-circuit/src/public/drivers/driver-11.json b/packages/demo-car-circuit/src/public/drivers/driver-11.json new file mode 100644 index 0000000..eb2c7d2 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/driver-11.json @@ -0,0 +1 @@ +{"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096},"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-learning-v2","seed":11,"updates":48,"samples":65536,"createdAt":"2026-09-06T17:52:30.333Z","weights":[{"shape":[20,32],"values":[0.7612519264221191,0.15566645562648773,0.6877385973930359,-0.3698507845401764,-0.7449214458465576,0.07730273902416229,0.14995832741260529,-0.5683470964431763,0.7195403575897217,1.0723806619644165,-0.856438934803009,-0.3648903965950012,-0.3670099377632141,-0.46315109729766846,0.525383472442627,-0.6812911629676819,-0.10873377323150635,0.7917916774749756,0.21900597214698792,-0.0011643237667158246,0.5070750713348389,0.34130460023880005,-0.07769997417926788,-1.0206106901168823,-0.6413770914077759,0.5369018912315369,-0.31507542729377747,0.14570794999599457,0.9682663679122925,-0.3907453715801239,0.07775330543518066,-0.13723699748516083,0.5763671398162842,0.16332320868968964,-0.11733322590589523,0.10526241362094879,0.10172218084335327,0.038919538259506226,0.10954318940639496,0.21770627796649933,-0.196794793009758,0.05888370797038078,0.02506248652935028,-0.06277914345264435,-0.013610664755105972,0.1736777275800705,0.42089277505874634,0.16464225947856903,-0.08201368898153305,0.2564795911312103,0.24723954498767853,0.10674552619457245,0.10521550476551056,0.07576068490743637,0.101612389087677,-0.08220699429512024,0.31160828471183777,0.2199295163154602,-0.026912394911050797,0.5364101529121399,-0.38365185260772705,0.20467102527618408,0.04170810431241989,0.14112238585948944,0.3998434841632843,-0.227192685008049,-0.08419710397720337,-0.40718552470207214,-0.1690686047077179,0.6424664258956909,-0.028970271348953247,-0.4525538384914398,-0.16795875132083893,0.3233764171600342,0.35365670919418335,-0.3522176444530487,-0.26252543926239014,0.2985861003398895,-0.5256119966506958,0.10176969319581985,0.6218955516815186,-0.3594473898410797,0.07848546653985977,0.49930906295776367,-0.349727064371109,-0.1975012868642807,0.18074271082878113,-0.31893667578697205,-0.5914115309715271,0.5307361483573914,0.017267121002078056,0.027251172810792923,-0.5233288407325745,-0.05988439917564392,0.27563661336898804,0.22037601470947266,-0.18101780116558075,0.4753718674182892,-0.6758929491043091,-0.477079302072525,0.4516289234161377,-0.3401351869106293,0.3541306257247925,0.451994389295578,0.373321533203125,0.437000572681427,-0.02035553753376007,-0.6407514214515686,0.11089780926704407,0.5898049473762512,0.11506084352731705,-0.19347934424877167,-0.143748939037323,0.4276074171066284,0.5363560318946838,-0.1557435840368271,-0.25342661142349243,0.14268621802330017,0.05244925990700722,-0.19123844802379608,-0.43035921454429626,-0.08003177493810654,0.5179058313369751,0.23618675768375397,0.10306227207183838,-0.33926475048065186,0.22952507436275482,0.28976646065711975,-0.9286502003669739,0.5673623085021973,-1.1781638860702515,-0.7607981562614441,-0.4005643129348755,-2.0657217502593994,1.9600728750228882,1.8476110696792603,0.742678701877594,0.2500031888484955,0.33812788128852844,-1.7298309803009033,1.2821646928787231,1.8244813680648804,-0.24145081639289856,-1.5404815673828125,-1.485015630722046,0.7748294472694397,1.5077459812164307,1.3481512069702148,-1.5019097328186035,1.5209523439407349,-2.0569369792938232,0.5739914178848267,-0.04291415959596634,1.180751085281372,0.81947922706604,-1.5517576932907104,0.0876818597316742,1.9478868246078491,-1.944172739982605,-1.132859468460083,-0.18799461424350739,-0.11239457875490189,0.15369310975074768,0.3061271905899048,-0.044452134519815445,-0.05338265746831894,-0.2880171537399292,0.5558185577392578,0.26100650429725647,-0.013323670253157616,0.21222522854804993,-0.22506549954414368,0.05743710696697235,-0.24022549390792847,0.25543731451034546,-0.08189259469509125,0.0994541347026825,0.2650046646595001,0.37753772735595703,-0.23703747987747192,-0.10478576272726059,-0.1899448037147522,-0.3076202869415283,0.43360891938209534,0.0011114008957520127,0.21801772713661194,-0.45686987042427063,-0.02853872999548912,0.17272916436195374,-0.12786339223384857,-0.3924940228462219,0.010622626170516014,0.15972506999969482,0.400329053401947,0.0537518747150898,0.47106364369392395,-0.16368891298770905,-0.051336079835891724,-0.3660120666027069,0.24083596467971802,-0.04005957394838333,-0.17360195517539978,0.014155827462673187,-0.20383566617965698,0.18165893852710724,-0.12950211763381958,-0.1931816041469574,0.10269830375909805,-0.08379243314266205,-0.08467528969049454,0.10028453171253204,0.22210998833179474,0.2123079001903534,0.11168527603149414,0.05596819147467613,-0.18802036345005035,0.12623363733291626,-0.14842376112937927,-0.06016337499022484,0.306450754404068,0.12078942358493805,0.2839212417602539,-0.08275843411684036,-0.2575736343860626,-0.009809627197682858,-0.19917240738868713,-0.0871986672282219,-0.22774477303028107,0.047099556773900986,0.04203188791871071,0.08338042348623276,-0.08759044855833054,-0.19672329723834991,0.17404194176197052,0.06941743940114975,0.11985118687152863,-0.24603137373924255,0.22811058163642883,-0.18885895609855652,-0.04458253085613251,-0.2352592498064041,0.011149046942591667,-0.23588357865810394,0.21747127175331116,-0.02825135551393032,-0.14002740383148193,0.15341846644878387,0.0483948215842247,-0.35041770339012146,0.13663163781166077,0.07232653349637985,-0.2594996988773346,-0.13597524166107178,-0.17701579630374908,0.1702679693698883,-0.20319606363773346,-0.008393974974751472,-0.15663214027881622,-0.05254697799682617,-0.06792158633470535,0.19108106195926666,-0.029467778280377388,-0.12748703360557556,-0.2891087830066681,0.2957668602466583,0.16850057244300842,0.1351350098848343,0.29386231303215027,0.09867998957633972,0.1299779713153839,-0.06548767536878586,0.02623051218688488,-0.016766950488090515,0.22569385170936584,0.08163243532180786,-0.24979867041110992,-0.29226046800613403,0.1476702094078064,0.02628156915307045,0.024932846426963806,-0.27773046493530273,-0.17132367193698883,0.058892540633678436,-0.13738343119621277,0.16867345571517944,0.243061825633049,0.26885145902633667,-0.19862374663352966,0.04451154172420502,-0.007287449203431606,-0.01444922760128975,-0.19358815252780914,-0.0914149209856987,-0.15823446214199066,0.1919344663619995,-0.28766247630119324,0.01981905847787857,0.01159743219614029,0.3598468005657196,-0.17866577208042145,0.1255495697259903,-0.3253943920135498,0.21235641837120056,-0.1243644580245018,0.08406142145395279,0.09460347890853882,-0.10233849287033081,-0.16172382235527039,-0.19937101006507874,-0.21393652260303497,0.28045853972435,-0.041387397795915604,-0.07404134422540665,-0.17250896990299225,0.08088071644306183,-0.15111202001571655,0.04957723245024681,0.07717058807611465,-0.022216306999325752,-0.1694607436656952,0.0749446228146553,0.06192903220653534,0.028501661494374275,0.032838672399520874,0.479889452457428,-0.13124866783618927,0.15023095905780792,0.19002534449100494,-0.27516311407089233,-0.32828789949417114,0.36915042996406555,-0.046009477227926254,0.2893555760383606,-0.024378245696425438,0.018337519839406013,-0.14463014900684357,0.12493611872196198,0.31193825602531433,-0.060025084763765335,-0.1580755114555359,0.26898664236068726,-0.01625176891684532,-0.08865038305521011,0.18296171724796295,-0.2043701708316803,-0.2550235390663147,-0.1484379768371582,0.39010170102119446,0.31353050470352173,-0.010630900971591473,-0.0499451644718647,-0.26140210032463074,0.11069988459348679,0.021976949647068977,-0.005003925878554583,-0.3037313222885132,0.12780137360095978,-0.08995658904314041,-0.10448238253593445,0.29501116275787354,0.014816626906394958,0.018656842410564423,-0.09575200825929642,0.0424562506377697,0.10590118914842606,0.06901815533638,-0.004890333395451307,0.24783748388290405,-0.20340877771377563,-0.3182069957256317,-0.1130610853433609,0.1988718956708908,0.10855892300605774,0.27349740266799927,-0.3369500935077667,0.2136094868183136,-0.20577512681484222,0.21793034672737122,0.0759994313120842,0.35596492886543274,-0.1491994559764862,0.060110293328762054,-0.09901583194732666,-0.1881679892539978,0.17304183542728424,-0.3659164011478424,0.14651943743228912,-0.2384059578180313,-0.07510264962911606,-0.23831266164779663,0.24513362348079681,0.1195153146982193,-0.251775324344635,0.1932116001844406,-0.0673590898513794,-0.09808477759361267,-0.19789835810661316,-0.10636193305253983,-0.3992747366428375,-0.24691003561019897,-0.14829008281230927,-0.4195701777935028,0.07716743648052216,-0.03659180924296379,0.1368652880191803,0.168833389878273,0.29355573654174805,0.02631397545337677,0.3770875036716461,-0.023090943694114685,0.37999165058135986,0.21906349062919617,-0.3274325728416443,0.12771397829055786,0.02262921817600727,0.012674007564783096,0.025685086846351624,0.34069353342056274,0.22675350308418274,-0.3293971121311188,0.17884913086891174,0.1007959395647049,-0.1531216949224472,-0.14162953197956085,-0.11044344305992126,-0.2011171132326126,-0.24461226165294647,0.23770681023597717,0.34420081973075867,0.15588179230690002,0.2433934062719345,0.0038499687798321247,-0.08108197897672653,0.22887583076953888,-0.1530524045228958,0.041972268372774124,-0.06691744178533554,0.016029860824346542,-0.11592330038547516,-0.09062646329402924,-0.13042816519737244,-0.2280716747045517,0.10990484803915024,-0.06688866764307022,0.21017961204051971,0.30071285367012024,0.07328639179468155,-0.09321033209562302,-0.2586239278316498,-0.2990315556526184,-0.07831685245037079,0.2247229516506195,-0.03355420008301735,-0.2470076084136963,-0.18648095428943634,0.01657131314277649,0.20119960606098175,-0.21298997104167938,0.025581179186701775,0.045971520245075226,-0.16206218302249908,0.2633807361125946,0.15603004395961761,0.30181097984313965,-0.1521597057580948,-0.07201524823904037,0.23989880084991455,0.1332174837589264,-0.23056726157665253,-0.14221535623073578,-0.11004805564880371,0.046307168900966644,0.14209286868572235,0.02512814849615097,-0.07837413251399994,0.1934116929769516,-0.0579075925052166,0.009699856862425804,-0.03288964182138443,-0.2172708660364151,-0.35569801926612854,-0.08351262658834457,0.1658446043729782,-0.1325330138206482,-0.0330503024160862,0.0012782240519300103,0.20371827483177185,-0.12684428691864014,0.003359654452651739,-0.05936753749847412,-0.20720642805099487,0.19388613104820251,-0.045507706701755524,0.04992275685071945,0.22450128197669983,0.2259518802165985,-0.182109534740448,0.12060001492500305,-0.19048714637756348,-0.22670675814151764,0.048152826726436615,0.12525980174541473,0.008323218673467636,0.29108235239982605,0.061242688447237015,0.07747160643339157,0.39258840680122375,-0.022681279107928276,-0.1642378270626068,0.12383689731359482,0.31168869137763977,0.3184562623500824,0.06320062279701233,0.17086949944496155,0.28605401515960693,-0.12582173943519592,-0.06515363603830338,0.2649608254432678,-0.19875966012477875,0.2941383719444275,-0.3131958842277527,-0.1795988231897354,0.15915529429912567,0.050799258053302765,0.1471383422613144,0.23471100628376007,0.29456067085266113,0.21635359525680542,-0.09340130537748337,0.12168817222118378,0.05390579625964165,0.15093927085399628,-0.09179717302322388,-0.17596931755542755,-0.18236331641674042,-0.20045140385627747,0.14974789321422577,0.15674994885921478,-0.2196231186389923,-0.09546782076358795,0.18996600806713104,-0.2127145379781723,-0.30907052755355835,0.25958606600761414,0.20370268821716309,-0.16066282987594604,-0.17258508503437042,-0.04945830628275871,0.14871053397655487,0.2346671223640442,0.22689680755138397,0.17076106369495392,0.11264881491661072,-0.07266293466091156,-0.12566722929477692,-0.22571440041065216,0.07531462609767914,-0.06915324181318283,0.07308009266853333,0.10535836964845657,0.17851775884628296,-0.1984652280807495,0.18780693411827087,0.014508619904518127,-0.06173548474907875,-0.13357360661029816,-0.15467378497123718,0.09061107039451599,0.2741043269634247,-0.08919063210487366,0.05034169554710388,-0.24826142191886902,0.24849657714366913,-0.3761461675167084,-0.19768546521663666,0.0424220971763134,-0.31107670068740845,-0.1038031131029129,0.04662896320223808,0.023675518110394478,0.16852837800979614,-0.21382437646389008,-0.0027069144416600466,-0.1711168885231018,-0.08873861283063889,-0.19508035480976105,0.08072807639837265,-0.2536759376525879,0.01766037382185459,-0.1375303864479065,0.07919670641422272,0.1179194524884224,-0.1327703446149826,0.18197889626026154,-0.16744661331176758,0.11173044145107269,0.025952890515327454,-0.09918879717588425,0.1301175057888031,0.09266702830791473,-0.17349542677402496,0.03041466698050499,-0.3778969645500183,-0.32745561003685,-0.017840759828686714,0.020493216812610626,-0.15230056643486023,0.2537666857242584,0.0439499095082283,0.17045220732688904,0.13214091956615448,0.10350588709115982,0.33220818638801575,-0.21394269168376923,0.05544465780258179,0.06715314835309982,-0.008827056735754013,-0.07636786997318268,0.002325570210814476,-0.21058812737464905,0.035423532128334045,0.06611935794353485,0.14725372195243835,-0.09394358098506927,-0.07442325353622437,-0.15121352672576904,-0.32828807830810547,0.13507284224033356,-0.1407950520515442,-0.28681808710098267,0.2718673050403595,0.08880622684955597,0.07269883155822754,0.01567002944648266,0.1695786863565445,0.14657311141490936,0.1176210567355156,0.17746113240718842,0.3076750934123993,-0.026685407385230064]},{"shape":[32],"values":[-0.22392547130584717,-0.4267354905605316,-0.10354828089475632,-0.018688932061195374,0.37827497720718384,-0.37222424149513245,-0.24272042512893677,0.32618632912635803,-0.30005091428756714,-0.3292991816997528,0.09786267578601837,-0.24579595029354095,-0.0603506863117218,0.2244245707988739,-0.026719192042946815,0.3122023940086365,0.0996176078915596,-0.20636191964149475,0.22290395200252533,-0.3495290279388428,-0.06329954415559769,-0.27795398235321045,0.10256288945674896,0.3973366916179657,-0.119169682264328,-0.41104602813720703,0.01786055974662304,0.14328618347644806,-0.2141152173280716,-0.15323853492736816,0.07284088432788849,0.2358081191778183]},{"shape":[32,32],"values":[0.490612268447876,-0.07237550616264343,-0.19758056104183197,-0.020065955817699432,0.004981557838618755,-0.18869724869728088,0.15727640688419342,0.593380331993103,0.4309978187084198,0.40081310272216797,-0.36637037992477417,0.6486150026321411,-0.386025071144104,-0.35277676582336426,0.025982452556490898,-0.6782984733581543,-0.6249541640281677,0.6203561425209045,0.7247509956359863,-0.12378481775522232,-0.23278288543224335,-0.2624061405658722,-0.5429955720901489,-0.5147106051445007,0.4338468611240387,-0.12749166786670685,-0.21316799521446228,-0.24770545959472656,0.17050494253635406,0.5254508852958679,0.2910245656967163,0.3312114477157593,0.18309137225151062,0.10647266358137131,0.13133956491947174,-0.4034264385700226,-0.16016510128974915,0.14740964770317078,0.11695141345262527,-0.45573851466178894,-0.41212573647499084,0.3745012581348419,-0.0695834830403328,0.01506432332098484,0.017823927104473114,-0.02970988117158413,0.06230196729302406,0.13356180489063263,-0.21926423907279968,0.20128214359283447,0.16692227125167847,-0.2510620355606079,-0.03460710495710373,0.31339231133461,-0.11540041118860245,-0.25020360946655273,0.05575741082429886,0.02587352879345417,0.04945855587720871,-0.24071061611175537,0.42495638132095337,-0.023130111396312714,-0.39336279034614563,-0.07497538626194,0.31279030442237854,-0.2334662824869156,-0.8842466473579407,-0.47136133909225464,-0.40815970301628113,-0.5167520046234131,-0.24174931645393372,0.93684321641922,0.9017570614814758,-0.03554779663681984,-0.5682307481765747,0.2834145724773407,-0.6940297484397888,-0.5440433621406555,-0.3138624131679535,-0.6440113186836243,-0.07156643271446228,0.47864240407943726,0.5388537645339966,-0.20188134908676147,-0.2864057719707489,-0.6666602492332458,-0.6446191072463989,-0.3555363714694977,0.2088712602853775,-0.11894022673368454,-0.49930503964424133,-0.10883183777332306,-0.6837666630744934,0.7795902490615845,0.566798746585846,0.6386804580688477,-0.11376593261957169,-0.3362196981906891,-0.032329920679330826,-0.23554475605487823,-0.4024551808834076,-0.3701682388782501,0.07019373029470444,-0.1177545040845871,0.02990732342004776,0.19207505881786346,0.09458177536725998,-0.4137173295021057,0.11773421615362167,-0.022891703993082047,-0.4246971905231476,-0.3207203149795532,0.29380157589912415,-0.32984185218811035,0.044293876737356186,0.07992759346961975,-0.5644517540931702,-0.19012129306793213,-0.11082939058542252,0.06645705550909042,0.3915137052536011,-0.1628393679857254,-0.6238742470741272,0.46118324995040894,-0.04979988932609558,0.09650149196386337,0.23888327181339264,0.3184460997581482,-0.11215028166770935,0.5728872418403625,-0.27832451462745667,0.14181940257549286,0.2095177322626114,-0.2773239314556122,-0.2864072024822235,0.1977853626012802,0.6064009070396423,-0.3204539120197296,0.525993287563324,-0.4943223297595978,-0.3462945222854614,1.267094612121582,0.09122870117425919,0.10208454728126526,0.8041605353355408,-0.5148199796676636,-0.4909377992153168,0.4687105417251587,-0.13342908024787903,-0.3880477845668793,0.6872108578681946,0.6143710017204285,-0.26460573077201843,0.6189171671867371,0.4488751292228699,0.7378432154655457,-0.5953150987625122,-0.3562004566192627,0.4483700692653656,0.31777068972587585,0.27200135588645935,-1.140807867050171,-0.2360026240348816,-1.0498799085617065,-1.3418718576431274,-0.6195932030677795,-0.08929695188999176,0.16070079803466797,0.7747441530227661,0.4545134902000427,-0.2877291142940521,0.8114304542541504,-0.28196579217910767,-0.4916636645793915,-1.4658222198486328,-0.2540217638015747,0.20204144716262817,0.12154685705900192,0.4914855360984802,-0.08332641422748566,-1.5569915771484375,-0.21855930984020233,0.018731042742729187,-0.06552351266145706,1.451425313949585,-0.8124302625656128,-1.0868936777114868,0.022491157054901123,-0.03817266970872879,0.4582532048225403,0.627734899520874,0.33316558599472046,0.004790155682712793,0.6976280808448792,1.0865575075149536,0.7348035573959351,0.5628617405891418,0.8399948477745056,0.30085447430610657,-0.6127763390541077,-1.034631371498108,-0.3417738676071167,-0.05407630652189255,0.3679671883583069,1.0967961549758911,-0.33130040764808655,0.5828102827072144,0.8937426805496216,-0.07087671756744385,0.36869022250175476,-0.3546401560306549,-0.18830591440200806,0.5680296421051025,0.777971088886261,-0.44073137640953064,0.1068166121840477,-0.42118149995803833,0.3937496244907379,0.7333282828330994,-0.4005601406097412,0.9157950282096863,-0.663224458694458,-0.9304604530334473,-0.5836399793624878,-0.30447739362716675,0.797516405582428,0.30726757645606995,0.6404428482055664,0.6425644755363464,0.7136090397834778,0.034993283450603485,-0.3743840456008911,-0.3969910144805908,0.27574867010116577,0.08837819844484329,-0.18090175092220306,0.22010540962219238,0.32214170694351196,0.8332885503768921,0.35697829723358154,0.30673307180404663,-0.4954023063182831,-0.38570111989974976,-0.0041614677757024765,0.5139723420143127,0.38505980372428894,0.5659735798835754,0.4229411482810974,-0.7143255472183228,0.6098709106445312,0.6320422291755676,-0.002220758469775319,0.22324341535568237,-0.36076095700263977,-0.5062811374664307,-0.2770485579967499,0.35906216502189636,0.39477863907814026,0.014904550276696682,0.29118412733078003,0.49291855096817017,0.2049199342727661,-0.05086164548993111,-0.34854158759117126,-0.5280609726905823,0.17538128793239594,0.007619522046297789,0.15839418768882751,-0.11253811419010162,-0.8729685544967651,0.2670493721961975,0.4238051772117615,-0.3316096365451813,0.35302454233169556,0.2753757834434509,-0.46524253487586975,0.0577741339802742,-0.07357155531644821,-0.5652779936790466,-0.6816983819007874,-0.12745055556297302,0.01280131470412016,0.3280298709869385,-0.9429712891578674,0.24377505481243134,0.05752880126237869,-0.1630626618862152,-0.15433751046657562,0.636591374874115,0.21820564568042755,0.03294196352362633,0.3138624429702759,0.15069714188575745,-0.09546702355146408,0.3211698830127716,0.06384753435850143,0.12474838644266129,0.5881988406181335,-0.8243787288665771,0.9872499704360962,0.2119901478290558,-1.1448476314544678,0.3722829520702362,-0.13099656999111176,-0.9465491771697998,1.072272539138794,0.37604179978370667,-0.3766704797744751,0.5252774953842163,-0.08024508506059647,-1.1128424406051636,-1.2145540714263916,-0.05335197597742081,0.0683383047580719,0.19285079836845398,-0.5083584785461426,0.14595447480678558,0.4169546663761139,-0.0869312658905983,0.003516694763675332,-0.37077227234840393,-0.2307738959789276,0.6579110622406006,-0.2666141390800476,-0.11155511438846588,0.5039480328559875,-0.22158107161521912,-0.25452348589897156,-0.05849945545196533,0.08664876222610474,0.0824521854519844,-0.5191907286643982,0.5622414350509644,0.45986804366111755,-0.3741612732410431,0.2157360017299652,0.6961899995803833,-0.9908164143562317,-0.5745099186897278,-0.17507632076740265,-0.17497213184833527,0.38741227984428406,0.6738104820251465,0.8101300597190857,0.32687288522720337,-0.4967241883277893,-0.4290715456008911,0.37548306584358215,0.5290359854698181,-0.39737123250961304,-0.2814239263534546,-0.02127469703555107,0.248816579580307,-0.28897824883461,-0.19763877987861633,-0.7369911074638367,-0.7191396951675415,0.06133496016263962,0.20802563428878784,-0.49487733840942383,-0.09154348820447922,-0.23661889135837555,0.08920436352491379,0.18344764411449432,-0.3002631664276123,-0.16924433410167694,-0.4217316508293152,-0.17028853297233582,0.2845325171947479,-0.22025907039642334,0.027832940220832825,0.19807203114032745,-1.0856853723526,-0.29117101430892944,0.02947171963751316,0.12200696766376495,0.5507836937904358,-0.25912487506866455,-0.7394168972969055,-0.022809723392128944,-0.23296940326690674,0.19541044533252716,0.24216870963573456,0.2720032334327698,-0.31032389402389526,0.24819836020469666,0.3896777927875519,0.011873072013258934,0.2512168288230896,0.7070876955986023,0.08354167640209198,-0.32977303862571716,-0.7257669568061829,-0.48314473032951355,0.13091608881950378,-0.20008067786693573,0.6726229786872864,0.18092875182628632,0.3962561786174774,0.4704359173774719,0.2903459668159485,0.07958629727363586,-0.35553327202796936,0.05916193872690201,0.3659404516220093,0.2738422751426697,0.3485843241214752,-0.0815681740641594,-0.34697583317756653,0.1570170372724533,0.01688298024237156,-0.18751095235347748,0.4906475841999054,-0.15469327569007874,-0.34413155913352966,-0.2654515206813812,-0.36522912979125977,0.765535831451416,0.6018585562705994,0.6725831031799316,0.509955644607544,0.7418041825294495,-0.03712109848856926,0.12001532316207886,-0.5379487872123718,-0.06664486974477768,0.1118832603096962,-0.26474741101264954,0.691231369972229,0.231576070189476,0.6843366622924805,0.5393940210342407,0.16674679517745972,-0.2593531608581543,-0.5696432590484619,0.33622556924819946,0.5386217832565308,0.22338882088661194,0.058433644473552704,0.11642306298017502,-0.8723664283752441,0.34204718470573425,0.7008327841758728,-0.1158270388841629,0.5819476246833801,-0.45979368686676025,-0.30902090668678284,-0.47512683272361755,-0.08539505302906036,0.08562297374010086,-0.10730144381523132,0.005778953433036804,0.19127270579338074,-0.18179333209991455,-0.08047554641962051,0.30383652448654175,0.0016573098255321383,-0.07193442434072495,-0.19271506369113922,-0.3775850236415863,-0.25005894899368286,-0.1525486558675766,0.009883874095976353,-0.24178645014762878,-0.15596428513526917,0.4592072665691376,0.18458649516105652,-0.23047514259815216,0.4579107463359833,0.037810903042554855,-0.42502322793006897,-0.12074294686317444,-0.414210706949234,0.2944190502166748,0.05991850420832634,-0.2168378084897995,-0.19129490852355957,0.3188929259777069,0.232677161693573,0.19004246592521667,-0.27736422419548035,-0.6667829751968384,-1.3453707695007324,-0.5755801200866699,-0.39657479524612427,-1.2069064378738403,-0.10360006988048553,0.4837874174118042,0.8659691214561462,0.4198618233203888,1.0099754333496094,-0.41175031661987305,-1.0678349733352661,0.7696145176887512,-0.7270861268043518,-0.8028147220611572,1.2333015203475952,-0.6363673210144043,0.48629823327064514,0.9250531196594238,-0.49283820390701294,-1.151825189590454,0.9596229195594788,0.9100298881530762,0.6146160960197449,-0.2156987339258194,-0.8898018002510071,1.5012413263320923,-0.7844572067260742,0.19278277456760406,0.855861485004425,0.9946542382240295,0.3636251389980316,-0.3314940631389618,-0.1779007762670517,0.005704960320144892,-0.43667763471603394,0.10843824595212936,-0.2621895670890808,0.11880097538232803,0.1294301599264145,0.05540299415588379,0.31216245889663696,0.6934798955917358,-0.4328927993774414,0.04858206957578659,-0.378276526927948,-0.4664686620235443,-0.07346843183040619,-0.07527654618024826,0.23636102676391602,-0.04428279027342796,-0.4489000737667084,-0.5491414070129395,-0.0020910920575261116,0.08547215908765793,0.21429678797721863,-0.46873044967651367,-0.6546591520309448,0.16836053133010864,-0.001184043474495411,0.18660351634025574,0.5481204986572266,0.024140210822224617,0.39017972350120544,0.2669263780117035,0.16942089796066284,0.2950694262981415,0.5070374011993408,-0.18696418404579163,-0.012784874998033047,0.008684604428708553,-0.548963189125061,0.19882486760616302,-0.5760186910629272,-0.06177563592791557,-0.07501660287380219,-0.24660605192184448,0.49045565724372864,0.3806908130645752,-0.7069211006164551,0.10913191735744476,0.07408415526151657,-0.12780006229877472,0.308709979057312,0.4394643306732178,-0.19269920885562897,-0.55313640832901,-0.3610512316226959,-0.127895787358284,0.36531496047973633,-0.5519348978996277,-0.13928286731243134,0.24235057830810547,-0.28167739510536194,-0.27737709879875183,-0.2297661304473877,0.3541201055049896,0.3463408052921295,0.384560763835907,0.3349548876285553,0.11806789040565491,-0.0183356162160635,-0.1787218153476715,-0.33594971895217896,0.2868621349334717,-0.258858323097229,0.05448654294013977,0.2801774740219116,0.07229705154895782,0.6163681745529175,0.2671789824962616,-0.28666913509368896,0.05754302442073822,-0.21600502729415894,0.0235101580619812,0.732239842414856,0.3668145537376404,0.26236292719841003,-0.11593461781740189,-0.7966192364692688,0.3503419756889343,0.7261507511138916,-0.3520406484603882,0.34398147463798523,0.08884280174970627,-0.3777162730693817,-0.01009984128177166,0.402119904756546,0.2624634802341461,0.8386793732643127,-0.02743063122034073,0.18144460022449493,0.9918337464332581,-0.11861497163772583,-0.05681630223989487,-0.7047066688537598,0.006216969806700945,-0.08454983681440353,0.475462943315506,1.0605045557022095,-0.007911517284810543,-0.05645917356014252,0.49688392877578735,-0.044687360525131226,-0.03531206399202347,0.27887269854545593,-0.24692246317863464,0.22441549599170685,0.8239491581916809,-0.2150801420211792,-0.22169429063796997,-0.2446913719177246,-0.22661392390727997,-0.019662214443087578,0.05218346044421196,0.5722745656967163,-0.46247997879981995,-0.757972002029419,-0.7251524925231934,0.2993182837963104,-0.22684694826602936,-0.8631775379180908,-0.10229650139808655,-0.5448225140571594,-0.6694772243499756,-0.09860045462846756,0.5522910356521606,0.4493227005004883,0.20033562183380127,-0.009646071121096611,0.2894948720932007,-0.5238224267959595,-0.23186138272285461,-0.2765253484249115,-0.5351312160491943,-0.2126895785331726,0.2355303168296814,0.7033394575119019,0.2067946344614029,-0.2901057302951813,-0.47118112444877625,-0.43326982855796814,-0.33538785576820374,0.2630738615989685,-0.2201233059167862,-0.5455217957496643,-0.09799309819936752,-0.3444348871707916,0.6573030352592468,0.6297896504402161,0.7162690162658691,0.18979401886463165,0.08866667747497559,0.8315675258636475,0.3122614026069641,0.5165501832962036,0.8389198184013367,0.2803201377391815,-0.8707872033119202,-1.099324107170105,-0.35197263956069946,-0.23600459098815918,-0.1526186466217041,0.9004241228103638,-0.22495508193969727,0.19655291736125946,1.0684226751327515,-0.1269766390323639,0.17191103100776672,-0.344209760427475,-0.39945629239082336,0.32393988966941833,0.9254797101020813,-0.3299204707145691,-0.5889464020729065,-0.5522823333740234,0.15507331490516663,0.5444283485412598,-0.3830223083496094,0.5585094690322876,-0.056752804666757584,-1.0689942836761475,-1.0410354137420654,0.03409132733941078,-0.6519477963447571,-1.135089635848999,-0.6186186671257019,-0.6487267017364502,-0.7920153737068176,-0.30352088809013367,0.28961464762687683,0.8057305812835693,0.2794918715953827,0.06759657710790634,0.09307520091533661,-1.2561954259872437,0.21274207532405853,-0.569210946559906,-0.8466107845306396,0.29878222942352295,0.13199131190776825,0.43305033445358276,0.606196403503418,-0.8233141303062439,-0.5114266276359558,0.24579210579395294,0.201779305934906,0.37033912539482117,-0.10870008170604706,-0.5276028513908386,0.5547743439674377,-0.6906890273094177,0.7279760837554932,1.331367015838623,0.9815071225166321,-0.512169361114502,1.0792245864868164,0.3365398943424225,0.5655309557914734,0.8580424189567566,0.032967835664749146,-0.20498041808605194,-0.073598213493824,0.013367613777518272,-0.7270520925521851,1.0959930419921875,-1.411588430404663,0.5567622184753418,0.7678900361061096,0.7738139629364014,0.30742567777633667,0.8986831307411194,-1.064292550086975,-0.6196033358573914,0.3749534785747528,0.5071035027503967,0.21431168913841248,1.2695724964141846,1.4176967144012451,-0.9218559861183167,0.7902081608772278,0.5617911219596863,1.3247852325439453,0.1505572646856308,-0.8559871912002563,0.10738874226808548,-0.526881992816925,0.12541136145591736,-0.08070892840623856,0.362510621547699,-0.25156423449516296,-0.1909782737493515,0.1440325379371643,0.3721820116043091,-0.5669866800308228,0.058635834604501724,-0.07581507414579391,-0.04672786965966225,-0.3978421986103058,0.14454105496406555,0.007064534351229668,-0.3562069535255432,0.3795446455478668,0.3177388906478882,-0.3104541301727295,-0.04047523811459541,0.025843463838100433,-0.5957219004631042,-0.11691733449697495,0.15697118639945984,0.026376932859420776,0.6430506110191345,0.011217040941119194,-0.5012872219085693,0.3289967179298401,0.2091042399406433,-0.048862624913454056,-0.07363419979810715,-0.3022357225418091,0.3598330616950989,0.08194411545991898,0.5839841961860657,0.3725607395172119,0.16685250401496887,1.0044708251953125,0.17267753183841705,-0.18971258401870728,-1.0732662677764893,0.25176721811294556,-0.6756799817085266,0.3006136417388916,0.8040363788604736,-0.7516220808029175,-0.061676025390625,0.6985412240028381,-1.001175045967102,0.21008948981761932,0.47231051325798035,-0.6463168859481812,0.2742736041545868,0.7240814566612244,-0.5343953371047974,-0.5025039315223694,-0.36024796962738037,-0.391475647687912,0.21331332623958588,-0.6049278378486633,0.8997302651405334,0.28124183416366577,-0.683793842792511,-0.5388889312744141,-0.3800072968006134,-0.1820448935031891,0.44088879227638245,0.39114323258399963,0.02473401464521885,0.02761887200176716,-0.0017713297856971622,-0.3850063383579254,-0.4609265625476837,0.0026175864040851593,0.3591335713863373,0.21177910268306732,0.20958004891872406,0.5017017722129822,0.11639624834060669,0.21190570294857025,-0.0758150964975357,0.30758360028266907,-0.3306252956390381,0.09754378348588943,0.36812838912010193,0.23943445086479187,0.5019564628601074,0.0577043779194355,0.0666455551981926,0.10234584659337997,0.31888875365257263,-0.27792251110076904,0.3563632071018219,-0.09224459528923035,-0.16302677989006042,-0.02997519262135029,-0.0022485204972326756,-0.1625206023454666,-0.6546162366867065,-0.3055559992790222,-0.07826767861843109,-0.2575451731681824,-0.4494783282279968,0.5708429217338562,0.5316338539123535,0.7929235696792603,-0.13162846863269806,-0.1001945361495018,-0.5018060803413391,-0.02957417443394661,-0.38600683212280273,-0.5247331261634827,-0.3791366219520569,0.2604398727416992,0.38869553804397583,0.10030893236398697,-0.37168267369270325,-0.3421562612056732,0.0620148591697216,0.28393810987472534,0.4256076514720917,-0.16007812321186066,0.006033423822373152,0.2594810128211975,-0.39864543080329895,0.6027436852455139,0.6448472738265991,0.5893829464912415,0.08816097676753998,0.24586200714111328,-0.24690783023834229,0.22744804620742798,0.31672903895378113,-0.09858506917953491,0.27846503257751465,0.23817501962184906,0.07766345143318176,-0.2938157320022583,-0.3869466483592987,0.06731496006250381,-0.14349032938480377,-0.3512040674686432,0.4005701541900635,-0.19484040141105652,-0.5391558408737183,0.7559271454811096,0.6331871747970581,-0.4717785716056824,0.14732828736305237,0.19828923046588898,-0.9103423953056335,-0.4234057366847992,-0.5452733039855957,0.42038044333457947,0.20165573060512543,-0.6937897801399231,0.003512460505589843,0.3953951895236969,0.05129680782556534,-0.09595586359500885,-0.4458109438419342,0.6033450365066528,0.8212144374847412,0.39562055468559265,0.5782824158668518,0.6996506452560425,-0.011114516295492649,-0.08981823921203613,-0.7277072668075562,-0.004479053430259228,-0.012881573289632797,-0.43534454703330994,0.8156074285507202,0.014103990979492664,0.386447012424469,0.7955275774002075,-0.12526027858257294,0.1197991743683815,-0.5992110371589661,-0.1832362860441208,0.32077673077583313,0.39529141783714294,0.1684882789850235,0.020196307450532913,-0.43419304490089417,0.06978464871644974,0.24751275777816772,0.4145761728286743,0.674875795841217,-0.6896867752075195,-0.7703534960746765,-0.7048383951187134,0.36757028102874756,-0.6438870429992676,-0.6784433126449585,-0.12175802886486053,-0.3420182764530182,-1.1324020624160767,-0.04701157286763191,0.45822739601135254,0.9728338122367859,0.02663823403418064,0.03751089796423912,-0.2927975654602051,-0.8613332509994507,0.28807881474494934,-0.5357498526573181,-1.1920294761657715,-0.03701632469892502,0.31192681193351746,0.499889075756073,0.6248802542686462,-0.773453950881958,-0.8572065830230713,0.28659021854400635,0.015819167718291283,0.13110198080539703,-0.1617671251296997,-0.49672731757164,0.32635924220085144,-0.7349966764450073,0.7772182822227478,1.2249619960784912,0.8771471977233887,0.12300677597522736,-0.3054502606391907,-0.46859046816825867,-0.03392251953482628,-0.60853111743927,-0.5208727121353149,-0.1020933985710144,-0.22190454602241516,0.2294093519449234,-0.10897038131952286,0.2621287405490875,0.4090694785118103,-0.457902193069458,-0.2702803313732147,-0.12755423784255981,-0.4621146619319916,-0.0058176107704639435,-0.14907145500183105,-0.178957998752594,0.3660459816455841,-0.18209026753902435,-0.09447161853313446,0.2132536619901657,0.23372013866901398,0.4549960196018219,-0.26961079239845276,-0.027600402012467384,0.24751420319080353,-0.3012785315513611,0.16868604719638824,0.5944145321846008,0.22624927759170532]},{"shape":[32],"values":[-0.24992388486862183,0.4094419777393341,-0.1014726385474205,0.26076143980026245,0.3596189618110657,-0.2007175236940384,-0.11144254356622696,0.250497430562973,0.2516873776912689,0.0019368411740288138,0.14424552023410797,-0.3059186041355133,-0.13996514678001404,0.2597050368785858,0.36567220091819763,-0.16298924386501312,0.1514018028974533,-0.2471422702074051,-0.17177879810333252,0.20784242451190948,0.3881898820400238,-0.24303680658340454,0.22659295797348022,0.30131152272224426,-0.3643046021461487,0.38377144932746887,0.29141053557395935,0.2855529487133026,-0.1509573608636856,-0.037420861423015594,0.2229485809803009,0.15543392300605774]},{"shape":[32,9],"values":[0.9458293914794922,0.7208852171897888,-0.09101652354001999,0.22315077483654022,0.1740654557943344,0.01503975223749876,-0.9138011932373047,0.07249376177787781,-0.34100615978240967,-1.112027883529663,-0.16928036510944366,-0.304256796836853,-1.1816169023513794,-0.047217484563589096,0.12237950414419174,-0.9484456777572632,0.33292579650878906,0.2900184690952301,-0.03869422897696495,-0.4632849097251892,0.8772854208946228,-0.5607486963272095,-0.5062042474746704,0.7576420903205872,-0.6571455597877502,-0.13379643857479095,1.0369573831558228,-0.656548261642456,-0.028426188975572586,0.05749531090259552,-0.9601958990097046,0.48332479596138,0.5158780217170715,-0.8588348627090454,0.28030893206596375,0.555699348449707,-0.9988669753074646,0.05140553042292595,-0.34732121229171753,-0.7954134345054626,0.018965767696499825,0.5789146423339844,-0.9779625535011292,0.4929926097393036,0.13967861235141754,-0.21898634731769562,-0.6805626749992371,0.6116634607315063,-0.32745733857154846,-0.9183499813079834,0.9981606602668762,-0.2076433151960373,-0.5667881369590759,0.8524587750434875,-0.5916324853897095,0.3422066867351532,0.3879607617855072,0.10804904252290726,-0.37782540917396545,0.19596543908119202,0.1645740419626236,-0.28910964727401733,-0.17948871850967407,-0.2322845607995987,-0.18375226855278015,-1.2334169149398804,0.20462612807750702,0.5374976396560669,0.21858137845993042,0.1053362488746643,0.21511130034923553,-0.2797672152519226,0.15704968571662903,0.3028707504272461,-0.8161266446113586,-0.24771031737327576,0.35004493594169617,-0.5306567549705505,0.3112664222717285,0.5405697226524353,-0.7603635787963867,0.9616612195968628,0.40631040930747986,-0.47589433193206787,-0.4330960810184479,0.3116168975830078,-0.25143203139305115,-0.5822207927703857,0.07040062546730042,0.23827657103538513,-0.09234248101711273,-0.7488561272621155,-0.5352222323417664,0.27795252203941345,-0.07460196316242218,-0.44653475284576416,0.8919246196746826,0.7458401918411255,0.7278710007667542,1.5564101934432983,0.7155425548553467,0.533819317817688,0.2831876575946808,-0.1414351612329483,-0.011841093190014362,-1.7012158632278442,-0.6242550015449524,0.008084475994110107,0.0358232818543911,-0.6082642078399658,0.4845001697540283,-0.1411709189414978,-0.5245992541313171,1.01331627368927,-0.3880709409713745,-0.3021444082260132,1.20933997631073,-0.44650596380233765,-1.1499946117401123,-1.1211926937103271,0.2869681417942047,0.2556520104408264,0.12516476213932037,0.22292457520961761,0.21103481948375702,0.3267728090286255,-0.5683481097221375,-0.19517135620117188,-0.14735707640647888,-0.5115399956703186,0.3638225495815277,0.34614622592926025,-1.1139063835144043,0.5381546020507812,0.45761752128601074,-0.02586003579199314,-0.7221769690513611,0.49079838395118713,-0.4599655270576477,-0.3035840690135956,0.30955949425697327,-0.5050970911979675,-0.43910524249076843,1.131892442703247,0.19890713691711426,-0.6035353541374207,-0.1721055656671524,0.07442747056484222,-0.6420642733573914,-0.3694515824317932,0.8383421301841736,0.669520914554596,0.4751370847225189,0.762592613697052,1.1030595302581787,1.105263590812683,0.28627824783325195,0.6502798199653625,-0.008593408390879631,-1.4081417322158813,-0.5499128699302673,-0.5981798768043518,0.8763684630393982,1.163177251815796,-0.4855276644229889,0.5243044495582581,0.31567898392677307,-0.08277306705713272,0.4064111113548279,-0.39896076917648315,-0.9070141911506653,0.4649873673915863,-0.9214296340942383,-0.9375966191291809,0.7383872866630554,0.37246543169021606,-0.8483100533485413,-0.04521108791232109,0.462695449590683,0.6443200707435608,-0.9682179689407349,0.4772762060165405,-0.10420674830675125,-0.8506788015365601,0.32134732604026794,0.26700514554977417,-0.930858850479126,0.3474504053592682,0.35213950276374817,-0.046391651034355164,-0.7232010960578918,0.5223701000213623,-0.3261633515357971,-0.13071255385875702,1.0149643421173096,-0.1508549153804779,-0.5221996903419495,0.8085750937461853,-1.0100733041763306,-1.500604510307312,-1.4684031009674072,-0.37146949768066406,-0.8156986832618713,0.1553051769733429,0.6865277886390686,1.508683681488037,1.1378505229949951,-0.059845998883247375,-1.7780681848526,-1.424721121788025,-0.05795697867870331,-0.18282325565814972,-0.40973830223083496,0.6102356910705566,1.0256927013397217,0.6882590651512146,1.3718934059143066,-0.3371189534664154,-0.07911533862352371,0.8412182927131653,-0.5005989074707031,-0.04699108004570007,0.7010127305984497,-0.46842217445373535,-0.4724738299846649,-1.9272816181182861,0.21360455453395844,0.29067304730415344,-0.8988683223724365,0.00553099112585187,0.2755656838417053,-0.013142531737685204,0.28008511662483215,-0.18434812128543854,-1.0308903455734253,-0.25457605719566345,-0.10638219118118286,-0.4944174587726593,0.44048139452934265,0.1528266817331314,-1.2385178804397583,0.45520347356796265,0.22025465965270996,0.48550793528556824,-0.7965674996376038,-0.8687244057655334,0.6478615999221802,-0.30609142780303955,-0.6218559741973877,0.9360402822494507,1.0766794681549072,0.38766491413116455,0.37986743450164795,-0.04903567209839821,0.48568135499954224,-0.062119126319885254,-0.6457128524780273,0.4487307071685791,-0.3572801947593689,-0.4641813635826111,0.38788163661956787,0.3057050406932831,0.36740773916244507,-0.6379198431968689,0.36990535259246826,0.636875331401825,-0.45160260796546936,-0.007640639785677195,-0.4390011131763458,-1.0487966537475586,0.23787277936935425,0.19841918349266052,-0.46349674463272095,0.27835187315940857,0.34413862228393555,-0.9826196432113647,0.20117221772670746,0.6599512696266174,-1.0878405570983887,0.21992073953151703,0.631327748298645,-0.9851923584938049,0.22198359668254852,0.41950908303260803,-0.6961958408355713,0.01192447543144226,0.25789496302604675,-0.7415537238121033]},{"shape":[9],"values":[-0.13291464745998383,-0.1915467232465744,-0.25876307487487793,-0.03294524550437927,0.09915414452552795,0.08029038459062576,0.038839682936668396,0.13339996337890625,0.08793042600154877]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/driver-29.json b/packages/demo-car-circuit/src/public/drivers/driver-29.json new file mode 100644 index 0000000..b2f5ca1 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/driver-29.json @@ -0,0 +1 @@ +{"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096},"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-learning-v2","seed":29,"updates":48,"samples":65536,"createdAt":"2026-09-06T17:53:09.200Z","weights":[{"shape":[20,32],"values":[-0.7791950702667236,-0.5601697564125061,0.7939755916595459,0.36842918395996094,-0.5496964454650879,-0.2506084144115448,-0.5681072473526001,0.8805273175239563,-0.8166716694831848,0.7626896500587463,0.299964040517807,-0.29574331641197205,0.08621044456958771,0.9891058206558228,0.29335901141166687,-0.6937823295593262,-0.7043188214302063,0.24231421947479248,-0.8357731103897095,-0.37882664799690247,0.24472883343696594,0.04686398431658745,-0.15945295989513397,-0.5308453440666199,0.7685803771018982,0.441502183675766,0.3335370123386383,0.09764494746923447,0.44059208035469055,0.5043792724609375,0.5948948264122009,-0.7002925276756287,-0.2512144446372986,-0.2119644582271576,0.07939455658197403,-0.2555665373802185,-0.16849243640899658,0.4390643835067749,0.19281697273254395,0.22818470001220703,0.03177894279360771,0.17774727940559387,0.13234254717826843,-0.020422348752617836,0.1862485706806183,0.013443036936223507,0.17841561138629913,0.2952486276626587,0.26512956619262695,0.3026208281517029,-0.00793231837451458,-0.006554335355758667,-0.08996184915304184,-0.0380776971578598,0.15025606751441956,0.20156288146972656,0.3644416928291321,-0.07195049524307251,-0.0312221497297287,0.29465705156326294,-0.08021492511034012,0.09102799743413925,-0.26231688261032104,0.1938031017780304,-0.20411892235279083,0.7876688241958618,-0.08342393487691879,-0.015392526052892208,0.5636956691741943,-0.6623106598854065,0.09393800050020218,-0.16234265267848969,0.1142362728714943,-0.10363277047872543,0.14577507972717285,-0.2131308615207672,-0.14845050871372223,0.46803009510040283,0.1707804948091507,0.6861932277679443,-0.06695014983415604,-0.9529750347137451,-0.3221023678779602,0.08230507373809814,-0.4306708872318268,0.13396255671977997,-0.11963305622339249,-0.029150230810046196,-0.04869221895933151,0.2109384834766388,-0.4731420576572418,0.02580031380057335,-0.27159395813941956,0.31456148624420166,-0.3413613438606262,0.04480192810297012,-0.12431102991104126,-0.060804322361946106,0.4766804277896881,-0.04307277500629425,-0.5976648926734924,-1.3185408115386963,-0.41926702857017517,0.05860419198870659,-0.4224141538143158,0.19927537441253662,0.18694359064102173,-0.17130355536937714,-0.0818985253572464,0.007283046841621399,0.2283959537744522,-0.14627043902873993,0.4030458927154541,-0.28290504217147827,0.23110751807689667,-0.657351553440094,-0.010343849658966064,0.5041086673736572,-0.1670529544353485,-0.13390527665615082,0.1390676200389862,-0.5416346788406372,0.4481312334537506,0.24708527326583862,-0.010088338516652584,-0.41277846693992615,0.10739646106958389,0.23711489140987396,1.2774507999420166,0.9598169326782227,1.6105389595031738,-1.3900824785232544,1.452724575996399,0.18995822966098785,-0.9274604320526123,0.09950321912765503,0.5753360390663147,0.899594783782959,1.4476935863494873,-1.390297770500183,1.911247730255127,0.5718966722488403,-1.9300076961517334,-1.664980173110962,1.7251198291778564,-1.1428477764129639,0.4387300908565521,-1.8481693267822266,1.6275774240493774,1.4494932889938354,1.7482975721359253,-0.8814770579338074,-0.030079927295446396,-0.7655313014984131,1.9958947896957397,1.5431207418441772,-1.3875207901000977,-1.219907522201538,-0.6709802746772766,1.5210914611816406,-0.1175866425037384,0.2972853481769562,0.11291525512933731,0.27771997451782227,0.09920497238636017,-0.24105721712112427,-0.2778252363204956,-0.23540441691875458,-0.23535871505737305,0.3680786192417145,-0.17783594131469727,-0.12979072332382202,-0.5775213241577148,-0.2527948021888733,0.19793502986431122,-0.19021035730838776,0.09583098441362381,-0.017525849863886833,0.24227198958396912,-0.052781686186790466,0.07100941985845566,0.517163097858429,0.03601505979895592,-0.16773101687431335,0.10584444552659988,-0.23179161548614502,-0.01909203641116619,0.29096248745918274,-0.34802165627479553,0.021817857399582863,-0.23595117032527924,0.2599836587905884,-0.12231364101171494,0.15803873538970947,-0.019443294033408165,-0.018594076856970787,0.252026230096817,-0.24122554063796997,0.2575337886810303,-0.015482516959309578,-0.09136714041233063,0.19672486186027527,-0.009750128723680973,-0.19994787871837616,-0.3309031128883362,0.2030322104692459,-0.3041682839393616,-0.0075397612527012825,-0.020498288795351982,-0.22088336944580078,0.08038438111543655,0.04239587113261223,0.14546595513820648,0.3940751254558563,-0.29513758420944214,0.4421067535877228,-0.020782379433512688,0.2994133532047272,0.01656593568623066,-0.09357926994562149,-0.1455666869878769,-0.010289021767675877,0.06650903820991516,-0.2943830192089081,0.16013877093791962,0.15731596946716309,-0.23013119399547577,0.07955549657344818,-0.053983721882104874,-0.3761765658855438,-0.09499702602624893,-0.10925047099590302,-0.04816002398729324,-0.15560968220233917,0.20128397643566132,0.15614061057567596,0.10330408811569214,0.0682511031627655,0.04962480813264847,0.14389918744564056,0.08657721430063248,-0.20891240239143372,-0.26648715138435364,0.07819650322198868,-0.003595764050260186,0.018498292192816734,0.2674272954463959,-0.05841168761253357,-0.011828192509710789,0.1581880748271942,-0.017100762575864792,0.27649617195129395,0.14368999004364014,0.1946791559457779,0.2527810037136078,0.15096861124038696,-0.22357848286628723,0.10149289667606354,0.014131277799606323,-0.3150171637535095,-0.15433497726917267,0.3115962743759155,0.09631617367267609,0.23966632783412933,-0.27806177735328674,-0.23401539027690887,-0.29519495368003845,-0.05555237457156181,0.08534540235996246,-0.21841353178024292,0.04891851544380188,0.10836562514305115,0.09090665727853775,-0.10742506384849548,-0.30356305837631226,-0.30364280939102173,0.04753294587135315,0.12806665897369385,0.1791037917137146,-0.14183944463729858,0.11246712505817413,-0.0862816870212555,-0.20175603032112122,0.33719971776008606,-0.1690894067287445,0.03047434613108635,0.06706281006336212,0.04974420741200447,-0.22646430134773254,-0.1506003737449646,0.03765621781349182,-0.13579504191875458,0.13031640648841858,0.21877627074718475,-0.06379605829715729,-0.2653883695602417,0.012196451425552368,0.0311149749904871,-0.20752981305122375,-0.06850355118513107,-0.24941065907478333,-0.2212827056646347,0.25067299604415894,-0.1638466864824295,-0.1674553006887436,-0.11976785957813263,0.05487579479813576,-0.015640366822481155,-0.1475536972284317,-0.10054975003004074,0.14097046852111816,-0.22089506685733795,0.10437244176864624,-0.29330766201019287,-0.13069893419742584,-0.2038186937570572,-0.20233683288097382,0.18658331036567688,-0.3203275203704834,0.3103940188884735,-0.11071456223726273,-0.13462306559085846,0.12315303832292557,0.09152085334062576,-0.4084773063659668,0.24194708466529846,-0.08812737464904785,-0.3970857262611389,-0.1523011028766632,-0.2860153317451477,0.1526796966791153,-0.23103518784046173,0.01040589064359665,-0.1845843344926834,0.04015170410275459,-0.29952263832092285,0.16524352133274078,0.01225157082080841,0.290358304977417,0.37587442994117737,0.25205451250076294,-0.05227646604180336,-0.3617745637893677,-0.04401594027876854,0.128123477101326,-0.012520527467131615,-0.08476300537586212,0.29530373215675354,0.12478886544704437,-0.22935213148593903,-0.4398946762084961,0.2563266456127167,0.19332729279994965,-0.2468024343252182,-0.10443136096000671,-0.3317278325557709,-0.20150424540042877,-0.23858213424682617,0.1454911082983017,-0.30415940284729004,0.339207261800766,0.04037505388259888,-0.19794605672359467,-0.20789362490177155,0.28965631127357483,0.15341602265834808,-0.2106320708990097,0.035936977714300156,0.028246914967894554,-0.252149760723114,0.261224627494812,-0.021771136671304703,-0.36954572796821594,0.11956821382045746,-0.2440134435892105,-0.21131201088428497,0.11020318418741226,-0.31990018486976624,-0.1907154619693756,-0.1901998072862625,0.14330479502677917,-0.06072814390063286,-0.21329720318317413,0.30725371837615967,0.24218380451202393,-0.06782091408967972,0.030871709808707237,0.017359677702188492,0.19318445026874542,-0.12337400764226913,-0.20960257947444916,-0.14822368323802948,-0.19765211641788483,-0.19465821981430054,0.07447593659162521,-0.020202195271849632,-0.1399299055337906,-0.20956538617610931,0.08005954325199127,0.01386265642940998,-0.08068428933620453,-0.04749984294176102,0.2072409689426422,-0.0011747879907488823,0.07073365151882172,-0.2895350754261017,-0.3067920207977295,-0.2337004691362381,0.034844666719436646,-0.21976028382778168,0.2249346226453781,-0.2984457015991211,0.31489747762680054,-0.18643590807914734,-0.00027549138758331537,0.08386009186506271,0.08662759512662888,-0.04728332906961441,-0.04920785129070282,-0.02723834663629532,0.1887362152338028,-0.17041555047035217,-0.2694191038608551,0.2972029447555542,0.23852114379405975,0.18596038222312927,0.24172672629356384,-0.07564836740493774,0.236568883061409,-0.2675659656524658,0.12244240194559097,-0.052144601941108704,-0.24492357671260834,-0.055315081030130386,-0.2785361409187317,0.315372496843338,0.1941840946674347,0.2395366132259369,-0.004280255641788244,0.057045336812734604,0.17734499275684357,-0.34031984210014343,-0.2434336394071579,-0.03407680615782738,0.02085251919925213,-0.20124894380569458,0.06257779896259308,-0.04378008842468262,-0.030418766662478447,-0.33000725507736206,-0.2687440514564514,-0.2288406789302826,0.3224163353443146,-0.10896485298871994,0.19803403317928314,0.2399231195449829,0.31614574790000916,-0.016942065209150314,-0.2576267123222351,-0.3450014889240265,0.17855054140090942,0.18872036039829254,0.042977381497621536,-0.0635322704911232,-0.1049688532948494,0.28054454922676086,0.3261737823486328,-0.024853577837347984,-0.3692984879016876,0.16041918098926544,-0.040556151419878006,0.17091920971870422,-0.04927223548293114,-0.15622451901435852,0.07101153582334518,-0.1736426204442978,-0.2714069187641144,-0.2653982639312744,-0.2735660672187805,-0.11697064340114594,-0.2576446235179901,-0.25882041454315186,-0.11174345016479492,-0.19404326379299164,0.0897643119096756,0.14344678819179535,0.20655910670757294,-0.23140612244606018,-0.24170485138893127,-0.21613574028015137,0.20916961133480072,-0.2536749243736267,0.10355087369680405,-0.20765770971775055,0.003949115052819252,-0.021731149405241013,-0.0246403981000185,0.07170576602220535,0.17921997606754303,0.00002611015224829316,0.011974393390119076,-0.21813108026981354,0.1175679862499237,0.009303569793701172,-0.15712179243564606,-0.0432962141931057,-0.03426751866936684,0.20397187769412994,0.2466837465763092,-0.17800456285476685,0.13638561964035034,-0.25659945607185364,-0.2018333375453949,0.3257809579372406,-0.20482103526592255,-0.028676774352788925,-0.055746231228113174,0.09410469233989716,0.25392967462539673,-0.13722358644008636,0.2111319601535797,0.23930037021636963,0.24225690960884094,0.14705944061279297,-0.16402073204517365,0.3137119710445404,-0.2648279368877411,0.14824946224689484,-0.23299287259578705,-0.21197868883609772,-0.11775534600019455,0.1383257806301117,0.21067164838314056,0.09133696556091309,0.0727909728884697,0.17542968690395355,-0.04855150729417801,0.11495353281497955,-0.029346568509936333,0.2343444526195526,-0.06477122753858566,0.0651247426867485,-0.12559819221496582,-0.14764471352100372,0.008002079091966152,0.2022048383951187,0.1509893238544464,0.2105538249015808,-0.10255146026611328,-0.20252004265785217,0.310634970664978,0.1989728957414627,-0.19575226306915283,-0.10580407083034515,-0.07028751820325851,-0.05404123663902283,0.08001331984996796,0.2874869406223297,0.16450683772563934,0.08354554325342178,0.17539775371551514,0.3058403730392456,-0.07788629084825516,-0.14240878820419312,-0.08665406703948975,0.022504927590489388,0.2926619350910187,0.0003229417488910258,-0.2430814504623413,-0.11168887466192245,0.15664243698120117,-0.1753586083650589,-0.13963988423347473,0.12074828892946243,-0.2418382316827774,-0.022534916177392006,0.07759768515825272,0.223746657371521,0.05058538541197777,0.23355770111083984,-0.28919386863708496,-0.1828584522008896,-0.21005594730377197,0.13769568502902985,0.04570640251040459,-0.09854276478290558,0.36025747656822205,-0.1465039700269699,-0.22765520215034485,-0.1794908046722412,0.2183433622121811,-0.2657219171524048,-0.17243868112564087,-0.03454698622226715,0.28918972611427307,0.23009276390075684,0.11521163582801819,-0.031140202656388283,0.32206791639328003,0.08016961812973022,-0.3084936738014221,-0.3063124418258667,-0.26053935289382935,-0.10096791386604309,-0.15963996946811676,-0.06397931277751923,-0.14038273692131042,-0.05552838742733002,-0.09734448045492172,-0.15998977422714233,-0.14111334085464478,0.31241098046302795,-0.2211342304944992,0.049493562430143356,-0.1797395944595337,-0.2453930824995041,-0.20146572589874268,-0.21198421716690063,-0.001709511736407876,-0.14511598646640778,-0.03438439220190048,-0.050886087119579315,0.05631474032998085,-0.22672142088413239,0.14823921024799347,-0.04626935347914696,0.27667236328125,0.1783701479434967,0.21726176142692566,0.2555510103702545,-0.32990896701812744,-0.07240458577871323,-0.23591022193431854,-0.038607921451330185,-0.002637256868183613,0.26574310660362244,-0.21615749597549438,0.08190765231847763,-0.14280135929584503,-0.2484685778617859]},{"shape":[32],"values":[0.24705877900123596,-0.12919795513153076,-0.23978641629219055,0.152475506067276,-0.09738339483737946,-0.2697758674621582,0.37173596024513245,-0.10140302032232285,0.17267268896102905,-0.3524838387966156,-0.15800590813159943,0.37575072050094604,0.06418021768331528,-0.36455023288726807,0.08267664909362793,0.16868343949317932,0.07190161198377609,0.09663014858961105,0.3912932276725769,-0.03944464400410652,-0.18167248368263245,0.3401661217212677,-0.11675716191530228,0.38345927000045776,-0.17618563771247864,-0.3927159905433655,-0.22933730483055115,0.08996524661779404,-0.3012435734272003,-0.3862471878528595,0.08213667571544647,0.28467339277267456]},{"shape":[32,32],"values":[0.2867824137210846,-0.5359315872192383,-0.8306464552879333,0.07748154550790787,-0.4093349575996399,-0.9445652365684509,-0.6605931520462036,0.040673624724149704,-1.0428242683410645,0.5661603212356567,0.3718492090702057,-0.7855689525604248,-0.750579833984375,0.302937388420105,0.7571651339530945,0.24199023842811584,0.5349481701850891,1.210941195487976,-0.5462035536766052,-0.9618079662322998,1.0052379369735718,-0.3241569995880127,0.5584990978240967,0.36115434765815735,-0.6629748940467834,0.7728127837181091,0.6069991588592529,-0.43135374784469604,0.15585316717624664,1.1045420169830322,-0.5092296600341797,0.7260270118713379,-0.46337956190109253,0.23979319632053375,-0.6027812957763672,0.08038987219333649,0.015502349473536015,-0.2637995183467865,-0.28698232769966125,-0.41677603125572205,0.05356340482831001,-0.09238531440496445,-0.2183007299900055,-0.31672748923301697,-0.007872180081903934,-0.19356751441955566,0.4139741361141205,0.11252114921808243,0.46923160552978516,0.09313589334487915,-0.269979864358902,-0.14286281168460846,0.5157959461212158,0.03964102640748024,0.2286645919084549,-0.1939663141965866,-0.34705981612205505,0.12233670800924301,0.07750527560710907,-0.3255465626716614,0.30145639181137085,0.02086590602993965,-0.2847044765949249,0.8498561382293701,0.2489045113325119,-0.23565322160720825,-0.3265707790851593,1.071318507194519,0.45104557275772095,-0.20188482105731964,-0.6976505517959595,0.7209103107452393,1.0692882537841797,0.557776153087616,0.053874850273132324,-0.6440030932426453,0.5850386023521423,0.5437377095222473,1.0883302688598633,-0.6243045926094055,-0.5037869811058044,0.053833793848752975,0.538147509098053,0.911346435546875,0.8004646301269531,-0.20147651433944702,0.7979257106781006,0.7178942561149597,-0.5463140606880188,-0.05361107736825943,-0.9058007001876831,-0.587347149848938,0.635579526424408,-0.17619441449642181,-0.671001672744751,0.2226116955280304,0.07809411734342575,0.5981389880180359,0.1630028635263443,-0.5041688084602356,0.11858583241701126,0.4407598376274109,0.47918909788131714,0.03971000388264656,0.12632893025875092,0.14480111002922058,0.07395573705434799,0.5748311281204224,0.05124756321310997,-0.36726152896881104,-0.604875385761261,0.011397574096918106,0.21451495587825775,-0.6690125465393066,0.3011035621166229,0.2699345648288727,-0.4483531713485718,-0.0655600056052208,-0.6154864430427551,0.047184862196445465,0.052892182022333145,-0.05939117819070816,-0.22473646700382233,0.5692533850669861,-0.08327529579401016,-0.02584453858435154,0.5057423114776611,-0.1251111626625061,-0.08622341603040695,-0.4282032251358032,-0.7599332332611084,0.5632681250572205,-0.04547327384352684,-0.18444405496120453,-0.5636320114135742,-0.13285160064697266,-0.39305204153060913,-0.4086902141571045,-0.036982789635658264,-0.6118264198303223,-0.19874010980129242,-0.3567030429840088,0.5409803986549377,0.024783911183476448,0.23802925646305084,0.02533954195678234,-0.31956255435943604,-0.13288384675979614,0.3357129693031311,-0.1452125459909439,0.6098676323890686,-0.10267283767461777,-0.29618310928344727,0.5014455914497375,0.13403800129890442,-0.7548916339874268,0.08897848427295685,0.3142472505569458,-0.36887410283088684,0.7472589612007141,-0.18937714397907257,0.016946541145443916,-0.34757471084594727,-0.3710881173610687,0.129984050989151,-0.007852112874388695,-0.16919873654842377,-0.31276530027389526,0.13753798604011536,-0.13427335023880005,-0.0012187024112790823,-0.3582999110221863,0.0014834145549684763,-0.2854292094707489,0.297945499420166,0.24004264175891876,-0.048531923443078995,-0.03715001046657562,-0.4559258818626404,-0.1985958367586136,0.05904124304652214,-0.09145762026309967,-0.11670541018247604,-0.3613802194595337,-0.25089043378829956,-0.19222226738929749,0.06293942779302597,-0.45102348923683167,0.13060520589351654,0.022221233695745468,-0.1233968734741211,-0.0143251558765769,-0.3493242561817169,0.4974497854709625,1.267055630683899,-0.8017855882644653,-0.46687066555023193,0.010965662077069283,0.6183453798294067,-0.21438702940940857,-0.6804887056350708,-0.3043586313724518,0.2886832058429718,0.05762787535786629,-0.36577579379081726,-0.14078374207019806,-0.5396560430526733,0.9809539318084717,0.6835902333259583,0.008752809837460518,-0.7371622920036316,-0.9939912557601929,-0.4027472138404846,0.17663560807704926,-0.7310407757759094,-0.23109544813632965,0.3709428608417511,0.5791194438934326,0.6407908201217651,0.759188175201416,-0.7196105718612671,0.5027514696121216,0.8618029952049255,-0.2788740396499634,-0.3569016456604004,-0.5365549325942993,-0.1674470752477646,0.37268251180648804,0.032715409994125366,-0.06585312634706497,0.03838999941945076,0.38869422674179077,0.34021538496017456,-0.0476810596883297,-0.095358707010746,0.21208633482456207,0.6694312691688538,-0.10013274103403091,0.22462518513202667,-0.4876875579357147,-0.3613130748271942,-0.19925272464752197,0.33235859870910645,0.4191078841686249,-0.021077660843729973,0.24007964134216309,-0.040760431438684464,-0.0897524282336235,0.19536899030208588,-0.10148096829652786,-0.7309865355491638,0.030217407271265984,0.029781149700284004,-0.3936024308204651,-0.585407555103302,-0.6003649234771729,-0.02235659398138523,0.13839802145957947,-0.48203325271606445,0.100445456802845,-0.16448165476322174,-0.3805428147315979,-0.08956362307071686,-0.27112117409706116,-0.4507123529911041,0.19008657336235046,-0.05810839682817459,-0.14840814471244812,-0.2886185348033905,-0.04962633177638054,0.33704909682273865,0.09055493026971817,0.43090835213661194,0.23483465611934662,-0.48775148391723633,-0.35838642716407776,0.32734131813049316,0.10744240134954453,0.40594351291656494,-0.33819419145584106,-0.1579272598028183,0.4369703233242035,0.4898833632469177,-0.20027302205562592,0.20407941937446594,0.4177045524120331,0.12752223014831543,0.3701772391796112,0.3317505121231079,-0.052843768149614334,0.13447651267051697,0.9153750538825989,0.48067209124565125,0.33510589599609375,-0.5462033748626709,0.14412465691566467,1.135257363319397,-0.2286854237318039,0.29378542304039,-0.08049145340919495,0.6041618585586548,0.2898049056529999,0.9005259871482849,-0.7155395746231079,-0.783818244934082,-0.3571441173553467,0.3254389464855194,0.6807265877723694,0.3993213176727295,0.18694984912872314,0.7627609372138977,0.1253913938999176,-0.5121670961380005,-0.275131493806839,-0.35697174072265625,-0.7616593241691589,0.008946755900979042,-0.597707211971283,-0.49927881360054016,0.4712788760662079,0.5429155230522156,-0.2522425055503845,-0.2209862917661667,0.09946326911449432,-0.35572269558906555,0.022332988679409027,-0.5023569464683533,0.41039663553237915,-0.16133762896060944,0.27441537380218506,0.4499109089374542,-0.4020777940750122,0.32998231053352356,0.6471583843231201,0.3999415934085846,-0.038404665887355804,-0.38491272926330566,0.26422548294067383,-0.08950769156217575,0.30910593271255493,0.27507996559143066,-0.1916496604681015,0.3491896688938141,0.724762499332428,-0.5838486552238464,0.3689196705818176,-0.36824822425842285,-0.415160596370697,0.2827686667442322,-0.1502816081047058,-0.6230078339576721,0.49320077896118164,-0.20918521285057068,-0.02907177060842514,0.5142195820808411,-0.6351916790008545,-0.08674979954957962,-0.12236182391643524,0.7683481574058533,-0.1284436583518982,-0.4826497435569763,-0.35634949803352356,-0.35467708110809326,0.6273911595344543,-0.3183290660381317,0.09105593711137772,-0.8484007716178894,0.45253586769104004,0.18576785922050476,0.039587486535310745,-0.10547364503145218,-0.40504586696624756,-0.4762360155582428,0.4184439480304718,-0.6731922030448914,-0.3999771177768707,0.495564728975296,-0.20117908716201782,0.6096715331077576,0.6811611652374268,-0.2949610650539398,0.24989433586597443,0.3431553542613983,-0.847610592842102,0.7792131304740906,-0.26374951004981995,0.2649959623813629,-0.019061001017689705,-0.26116782426834106,-0.47696125507354736,-0.4366057217121124,0.6301899552345276,-0.15226708352565765,0.3958037495613098,0.154968723654747,-0.1504412144422531,-0.3588351309299469,0.885989248752594,0.49883371591567993,-0.3835228979587555,0.17740094661712646,0.18542833626270294,-0.2728652358055115,0.16453716158866882,0.24643884599208832,-0.04135403037071228,0.3399127423763275,0.9914354085922241,-0.44374850392341614,0.6451534628868103,-0.123703233897686,-0.24403050541877747,0.46917665004730225,0.01814243197441101,-0.7079959511756897,0.3922722339630127,0.5105061531066895,-0.10324489325284958,-0.0713643878698349,0.9309157729148865,0.4058202803134918,0.4492097795009613,-0.3595428168773651,0.15591512620449066,1.3433605432510376,0.226430743932724,-0.01854739524424076,-0.3193080425262451,0.700283944606781,0.5410628914833069,0.7224050164222717,-0.7825401425361633,-0.8314094543457031,-0.861435055732727,0.8117793202400208,1.3118226528167725,0.1473044902086258,0.40865710377693176,0.35375937819480896,0.24811998009681702,-0.05219673737883568,-0.5337110161781311,-0.8398588299751282,-0.11732380092144012,0.4855771064758301,-1.2250767946243286,-0.541757345199585,0.4005097448825836,-0.2760586738586426,0.25431814789772034,1.1710132360458374,-0.7960717678070068,-0.21648092567920685,0.5280663967132568,1.0002530813217163,0.09444987028837204,0.022296464070677757,-0.185313880443573,0.030283160507678986,0.6714349985122681,0.48984912037849426,-0.3781890571117401,-0.7913772463798523,-0.005463452078402042,-0.08846711367368698,-0.4138811230659485,0.1081986278295517,0.3754650950431824,-0.8830843567848206,0.023184681311249733,-1.1167938709259033,-0.38733240962028503,0.6774742007255554,-0.14680440723896027,0.04340951517224312,1.1723644733428955,-0.6976692080497742,-0.31516340374946594,0.6092308163642883,-0.9517157077789307,-0.8275036215782166,0.7102636694908142,0.2821717858314514,-0.7899060845375061,-0.07436583191156387,-0.33499598503112793,0.2100541889667511,-0.9893754124641418,-0.5560229420661926,-0.8259038329124451,-0.29593536257743835,-0.012524545192718506,-0.10866405814886093,-0.7821229100227356,-0.688258171081543,0.6422660946846008,0.2636529207229614,0.2868109345436096,-0.40058669447898865,-0.15851466357707977,-0.5423986911773682,0.3709924817085266,-0.42805466055870056,-1.0515801906585693,0.002582390094175935,0.19155138731002808,0.8208383321762085,0.5555312037467957,-0.36680322885513306,-0.025233667343854904,0.8171139359474182,-0.20931552350521088,0.3670444190502167,0.1580546498298645,-0.4338979721069336,0.41093868017196655,-0.3714646100997925,-0.5161041617393494,-0.9053974151611328,-0.20793397724628448,-0.5944139361381531,0.12661495804786682,0.300174355506897,-0.7556501030921936,-0.2736946642398834,0.5083934664726257,0.8058741092681885,0.31100624799728394,0.3134390413761139,0.2818625271320343,-0.20143435895442963,0.05325751006603241,0.4112863540649414,-0.023877615109086037,0.5198774337768555,0.3163372576236725,-0.45384302735328674,0.6996660828590393,0.5705428719520569,-0.6445600390434265,0.3686150312423706,0.18983042240142822,-0.35490429401397705,0.4860333800315857,-0.2360142022371292,-0.030183056369423866,0.13736014068126678,-0.44874200224876404,-0.12492386251688004,0.3075348436832428,0.32077595591545105,0.030367525294423103,0.32728272676467896,-0.17687050998210907,-0.5419327020645142,0.15488147735595703,-0.35733672976493835,-0.3408394157886505,-0.39061251282691956,0.21778884530067444,-0.017544275149703026,-0.07952386885881424,-0.1910252422094345,-0.09371139109134674,-0.4135988652706146,0.701927661895752,-0.17527459561824799,-0.3342839777469635,0.1399170607328415,-0.04135885089635849,-0.3676184415817261,0.016095319762825966,0.049759939312934875,-0.2127242386341095,0.3748685121536255,-0.34855079650878906,0.46531423926353455,0.2982485592365265,-0.16933642327785492,-0.3974241018295288,-0.8871908783912659,-0.04258162900805473,-0.1068231463432312,0.09825227409601212,-1.4734864234924316,0.4036928415298462,0.5761649012565613,-0.07409805804491043,-1.344511866569519,0.44478145241737366,-0.18065449595451355,0.5348835587501526,0.44243982434272766,0.8580723404884338,-0.3059174716472626,-0.7940801978111267,0.4472547471523285,-0.08984536677598953,0.11421745270490646,0.29764148592948914,-0.23769411444664001,0.9373464584350586,0.6681077480316162,-0.2620665431022644,-0.42003440856933594,1.4167040586471558,0.05380784720182419,0.2796778082847595,-1.2241849899291992,0.2803129553794861,-0.1789293736219406,-0.5618681907653809,0.06948298215866089,0.18483301997184753,0.41033241152763367,-0.6043274998664856,-0.35508647561073303,-0.45505794882774353,-0.5557994246482849,0.45233845710754395,-0.1122308000922203,-1.0588799715042114,-0.5679447650909424,0.48018914461135864,-0.04611055180430412,-0.5578171014785767,-0.2881266176700592,-0.21109385788440704,-0.3517228066921234,0.34461578726768494,-0.3076052665710449,-1.315588116645813,0.16610778868198395,-0.23215322196483612,0.3758814334869385,0.47220978140830994,-0.09372062981128693,-0.0035852063447237015,0.35495054721832275,-0.5005314350128174,0.38898149132728577,-0.10991650074720383,-0.2996639311313629,0.6112251281738281,-0.09948055446147919,-0.0925898477435112,-0.28550833463668823,0.7336684465408325,0.3710496425628662,0.061101190745830536,0.4261593222618103,-0.5532717108726501,-0.049808893352746964,0.6456912755966187,0.42661410570144653,-0.66635662317276,-0.152417853474617,0.4897285997867584,0.28025275468826294,0.03946535289287567,0.6181283593177795,-0.23225514590740204,0.6125667095184326,0.5919502377510071,-0.7172961831092834,0.2615051567554474,-0.40106400847435,-0.16663892567157745,0.34238433837890625,-0.031107695773243904,-0.5931970477104187,0.5373041033744812,0.9632179737091064,0.24003693461418152,0.14194069802761078,0.20313847064971924,-0.028060609474778175,-0.13622228801250458,0.186616450548172,0.26547375321388245,-0.028914431110024452,0.4941559433937073,0.5697721838951111,-0.15214355289936066,-0.21677367389202118,0.75993812084198,0.24955390393733978,0.09167467057704926,-0.2869039475917816,-0.06837273389101028,-0.2332744300365448,0.09329697489738464,0.1717665046453476,-0.6555560827255249,0.01437142863869667,0.7263913750648499,0.09186431020498276,0.2787626385688782,0.2015705406665802,-0.1594432145357132,-0.22831398248672485,0.37658631801605225,-0.24755308032035828,-0.029000194743275642,0.2679053843021393,-0.24649901688098907,-0.12009203433990479,0.6372044086456299,0.022293170914053917,-0.4773135185241699,-1.0628907680511475,-0.023027392104268074,0.1706247627735138,0.12651361525058746,0.4044206440448761,-0.7670291066169739,-0.1841568946838379,0.1330626904964447,0.8716149926185608,-0.2500390410423279,-0.32050183415412903,0.7192303538322449,0.24640245735645294,-0.29498717188835144,1.0528318881988525,0.1601475179195404,0.9924386143684387,0.55842524766922,-0.8990769982337952,0.7024276256561279,0.21292796730995178,-0.8562759160995483,0.22965867817401886,0.415290892124176,-0.552833080291748,0.7239421010017395,-0.1986411213874817,1.0986859798431396,0.8490703105926514,-0.7863579988479614,-0.7568920254707336,0.12227188050746918,0.311007022857666,-0.7100790739059448,-0.7061201930046082,-0.22224651277065277,0.5381906032562256,0.10839749872684479,-0.5246747136116028,-0.222098246216774,-0.9051209688186646,0.8922883868217468,0.355995774269104,-0.08216618001461029,-0.678756594657898,-0.9877583384513855,-0.25969168543815613,-0.07017334550619125,-0.8534013032913208,-0.3274218738079071,0.025505859404802322,-0.09774526208639145,0.8507545590400696,0.5165218710899353,-0.3101006746292114,0.3435562252998352,0.48810824751853943,-0.28170591592788696,0.11773451417684555,0.48028600215911865,0.4214397072792053,0.20868952572345734,0.054141025990247726,-0.05672956258058548,0.010022019036114216,0.4578622877597809,0.6210322976112366,-0.2856173813343048,0.28692373633384705,0.17367731034755707,0.48082467913627625,0.0956139788031578,-0.11253119260072708,-0.6306169033050537,-0.46564239263534546,-0.31989312171936035,0.16995519399642944,0.6527432203292847,-0.21065209805965424,0.10841833055019379,0.25388047099113464,0.2723432183265686,0.09445533156394958,-0.3771667182445526,-0.7948885560035706,-0.18492119014263153,0.2723437547683716,-0.6910746097564697,-0.12703721225261688,-0.45928746461868286,-0.41268184781074524,-0.0464082807302475,-0.02383204735815525,0.5139328837394714,0.5656670928001404,0.2803786098957062,0.13876698911190033,-0.32454216480255127,0.664487898349762,-0.3857511878013611,-0.12806083261966705,0.35337868332862854,0.6540815234184265,-0.5718705058097839,-0.0871199294924736,-0.31428074836730957,-0.060361869633197784,-0.7421311140060425,-0.07108209282159805,0.461219847202301,-0.1236124038696289,0.3078896701335907,0.011551246047019958,-0.4892512261867523,-0.13495467603206635,-0.54783695936203,-0.5252698063850403,0.4616587460041046,-0.07935173064470291,-0.5790765881538391,-0.00785400066524744,-0.1426682472229004,0.6620293855667114,-1.0119816064834595,-1.3543753623962402,0.8096963763237,0.1787562221288681,-0.6417030096054077,-1.0490258932113647,0.5695925354957581,0.9533902406692505,0.08361794054508209,-0.3357694149017334,-1.0926604270935059,-0.00909824762493372,0.354799747467041,1.2872066497802734,-0.6527122855186462,-0.1731395274400711,0.5727984309196472,0.3440437912940979,0.4805576801300049,0.5222862958908081,-0.06218842417001724,0.9878119826316833,0.6743478178977966,-0.6634191274642944,0.30436599254608154,-0.8268835544586182,-0.7602790594100952,0.6717893481254578,-0.239108145236969,-1.2173171043395996,0.9408552050590515,0.9152117967605591,0.35113853216171265,-0.001270623062737286,0.24818453192710876,-0.5709594488143921,-0.0006175095913931727,-0.5379135012626648,0.4189293682575226,-0.19429917633533478,0.0014066086150705814,0.6949562430381775,-0.019896190613508224,0.21838785707950592,0.7386431694030762,0.07955316454172134,-0.23412330448627472,-0.013183840550482273,0.3751858174800873,-0.10947135090827942,-0.16900746524333954,0.12474346905946732,-0.2552706301212311,0.24456089735031128,0.7922909259796143,-0.5294915437698364,-0.13888326287269592,-0.03181689605116844,-0.365600049495697,0.10213523358106613,0.41036391258239746,-0.1502450853586197,0.18190346658229828,-0.5373265147209167,-0.1992669552564621,0.056482888758182526,-0.16588377952575684,0.7451217770576477,0.03245771303772926,0.40393614768981934,-0.24860025942325592,0.7752059698104858,0.19474102556705475,-0.7433568239212036,0.65325528383255,0.542515218257904,-0.7478229999542236,-0.4359307885169983,-0.18433478474617004,0.12098725140094757,-0.0626433715224266,0.3517713248729706,0.10750653594732285,-0.2637977600097656,0.6104981899261475,-0.1285545825958252,-0.7814645767211914,0.7138050198554993,-0.45949065685272217,-0.25753042101860046,0.26431453227996826,-0.07234490662813187,-0.891069233417511,0.1721552461385727,-0.7209014892578125,-1.0726326704025269,0.7672702670097351,0.5815094709396362,-0.012954709120094776,1.0742239952087402,0.6780077815055847,0.242084801197052,-0.3255450129508972,0.6631734371185303,-0.7591962218284607,-0.3933148682117462,0.3292979896068573,0.8265489339828491,-0.9023839235305786,-0.6481305956840515,0.11389070749282837,-0.2365110218524933,-0.38332316279411316,0.36018940806388855,0.20303820073604584,-0.5478567481040955,0.4560657739639282,-0.5086371898651123,-1.3477225303649902,0.3214535415172577,-0.8117403984069824,-0.43759962916374207,0.4152866303920746,0.4188234508037567,-0.8545427918434143,0.14533530175685883,-0.4560464024543762,0.22325900197029114,0.3322908878326416,0.11956839263439178,-0.20578618347644806,-0.005531316623091698,0.3866649270057678,0.4337906241416931,0.2198326289653778,0.42640236020088196,0.09221476316452026,-0.03481917083263397,0.04959811642765999,0.44180598855018616,0.07487238943576813,-0.17303362488746643,-0.04197607561945915,0.09250358492136002,-0.1309209167957306,-0.07157942652702332,0.16131772100925446,-0.5193358063697815,-0.2263651192188263,-0.35781845450401306,0.10019084811210632,0.35548195242881775,0.053879063576459885,-0.34671053290367126,0.0488320030272007,-0.12289343029260635,-0.22225123643875122,0.10330405086278915,-0.07442488521337509,0.8100211024284363,0.1237906813621521,0.005523874890059233,0.07165075093507767,-0.5933552980422974,-0.6653775572776794,-0.564006507396698,0.4309765100479126,-1.0071089267730713,0.4136658310890198,0.4387821555137634,-0.8839684724807739,-0.9567371010780334,0.8333805799484253,0.38371872901916504,0.3969345688819885,0.45244601368904114,0.8917227983474731,-0.0653938427567482,-0.4412398040294647,0.5543896555900574,-0.5784338712692261,0.6500410437583923,0.6364417672157288,-0.76371830701828,0.6568250060081482,0.2009851634502411,-0.26133421063423157,-0.31288063526153564,0.9409521818161011,-0.586254358291626,0.3810437023639679]},{"shape":[32],"values":[0.28028950095176697,0.05664032697677612,0.3102051317691803,-0.2603153586387634,-0.15711353719234467,-0.0069947149604558945,0.09091872721910477,0.07710558921098709,-0.3435112535953522,0.12599162757396698,0.29003703594207764,0.07838073372840881,-0.20448662340641022,0.2560493052005768,-0.21666228771209717,0.16880950331687927,0.062258780002593994,0.2121909111738205,-0.11807891726493835,-0.24317491054534912,-0.025873061269521713,-0.219040647149086,-0.19127196073532104,0.3578217923641205,0.015495997853577137,0.23010244965553284,0.23012316226959229,0.19973629713058472,-0.22953782975673676,0.2004798799753189,0.28532540798187256,-0.09779070317745209]},{"shape":[32,9],"values":[-1.1924099922180176,0.45173558592796326,-0.09489168226718903,-1.0964335203170776,0.4656166732311249,0.421685129404068,-0.7436148524284363,0.33160847425460815,0.4578549265861511,0.8247870206832886,0.20487911999225616,-1.0183054208755493,0.4895874261856079,0.07893498986959457,-0.08571425825357437,0.7949972748756409,0.40751373767852783,-0.06807764619588852,0.12054507434368134,-0.157417893409729,-1.3193894624710083,0.3038672208786011,0.43382778763771057,-0.11328789591789246,-0.14429983496665955,0.2217864990234375,0.3944847583770752,-0.023807086050510406,0.0376087911427021,0.7725224494934082,-0.471741259098053,-0.24725107848644257,0.9529924392700195,-0.2424325793981552,-0.7371037602424622,0.41970595717430115,1.0111761093139648,0.42609402537345886,0.17759399116039276,0.7187163233757019,-0.37015968561172485,-0.11295335739850998,-0.3970812261104584,-0.332459032535553,-0.2419755905866623,0.3981509208679199,0.5681076049804688,-0.8256512880325317,0.3963083326816559,0.668241024017334,-0.1192348450422287,0.417201966047287,-0.32635918259620667,-0.5118394494056702,-0.022487983107566833,0.40483060479164124,-0.2403460592031479,0.11807263642549515,0.28163468837738037,-0.6693847179412842,0.22311633825302124,0.41236045956611633,-0.7841390371322632,-0.8972867727279663,-0.08661312609910965,-0.1742323637008667,-0.15238109230995178,0.5476044416427612,0.13745912909507751,-1.1877912282943726,-0.19778022170066833,0.049798060208559036,1.3058525323867798,2.161909580230713,0.8577266931533813,0.3303088843822479,0.10381445288658142,-0.2776434123516083,-0.3561828136444092,-0.5349875688552856,-0.3445502817630768,-1.3442236185073853,-0.3504388630390167,0.10749547183513641,-0.4228696823120117,0.3093927800655365,0.4647561013698578,-0.5017069578170776,-0.04046163335442543,0.3315051794052124,-0.6289222836494446,0.20049653947353363,-0.24529677629470825,-0.8336660265922546,-0.0044998470693826675,-0.10994376987218857,-0.08180351555347443,0.42828088998794556,0.20613889396190643,0.2674091160297394,0.4781751036643982,-0.5951087474822998,0.4528917372226715,0.6774197220802307,-0.32141441106796265,-0.02003723941743374,0.3594813644886017,-1.1170135736465454,1.8530420064926147,1.3609145879745483,-0.06195373833179474,0.055745989084243774,0.15603463351726532,0.17574313282966614,-1.3377081155776978,-1.0909563302993774,-0.715333878993988,-0.7537602782249451,0.22337934374809265,-0.280016154050827,-0.9662323594093323,0.3734682500362396,0.33835530281066895,-1.3740429878234863,0.6015734672546387,0.2877187132835388,-0.03744517266750336,-0.03390556573867798,0.6706346869468689,0.03660912811756134,-0.4125462472438812,0.9169371128082275,-0.4090206027030945,-0.8171082735061646,0.9192864298820496,0.5778833031654358,-1.1524959802627563,-0.6986361145973206,0.6982316374778748,-0.4850229322910309,-0.8400447964668274,0.6437670588493347,0.6156830787658691,-0.036470815539360046,-0.3392123878002167,-0.8068424463272095,-0.5592089891433716,0.39687579870224,-0.5576223731040955,-0.6220369935035706,0.6820759177207947,0.007539333775639534,1.2084002494812012,-0.9113232493400574,-1.2224801778793335,0.1284424215555191,-0.7728873491287231,-0.23637478053569794,-0.17929835617542267,-0.6602624654769897,0.6217952370643616,0.6683717370033264,-0.1105194240808487,0.6602252721786499,1.096869707107544,0.02841203100979328,0.4758463501930237,-0.43948763608932495,-0.9622315168380737,-0.2318684160709381,-0.6377372145652771,0.5055878162384033,0.535396933555603,1.572292447090149,-0.09826403856277466,0.6657295227050781,-0.029382040724158287,-0.8108999133110046,-0.6266199946403503,-0.643731951713562,-0.5429866909980774,-0.6634363532066345,0.9000561833381653,-0.3749842047691345,-0.734531044960022,0.6065983772277832,-0.42934033274650574,-0.3325037658214569,1.1780256032943726,1.5022927522659302,0.11987849324941635,-0.0857919231057167,0.39774829149246216,-0.07184552401304245,-0.5638071298599243,-0.06585358828306198,-0.3814668357372284,0.1665237694978714,0.049693115055561066,-0.16401571035385132,0.9189916849136353,0.1574752926826477,-0.6764755845069885,0.9672754406929016,-0.18763954937458038,-0.7178239822387695,0.8391596078872681,-1.2622302770614624,0.567933201789856,-0.010941884480416775,-0.8512052893638611,0.3387950658798218,-0.0814334973692894,-1.4995801448822021,0.5138080716133118,0.36033347249031067,0.3077407479286194,0.36175552010536194,-0.15686829388141632,0.694915771484375,0.40556231141090393,-0.5773780345916748,0.5608168840408325,0.19576714932918549,-0.8214884400367737,-0.9258950352668762,-1.1132850646972656,-0.21757154166698456,-1.0444072484970093,-0.34486255049705505,0.2218898981809616,-0.5749183893203735,0.48296213150024414,0.20665420591831207,-0.07375073432922363,-1.5013792514801025,-1.3723046779632568,-0.002702942583709955,-0.5035792589187622,-0.5559892654418945,0.8301719427108765,1.0731244087219238,1.0798810720443726,-0.21244065463542938,0.3892362117767334,-0.963083803653717,0.42098987102508545,0.5731540322303772,-0.12033062428236008,0.15714174509048462,0.6606390476226807,-0.809857964515686,0.0998290553689003,0.02105291560292244,1.015639066696167,0.09936229884624481,-0.5064480900764465,0.6033005714416504,-0.312264621257782,-0.2546769678592682,-0.31306222081184387,-1.2086093425750732,-0.7134465575218201,-0.37290552258491516,-1.029334545135498,0.14096534252166748,0.3897869288921356,0.2819752097129822,0.4097382128238678,0.5742672681808472,0.35221317410469055,-0.0034190716687589884,-0.8231101632118225,0.4248160421848297,0.2512412965297699,-0.7507026195526123,0.5406633019447327,0.7944402098655701,-0.8126839995384216,-0.0017437380738556385,-0.7316305041313171,0.7583328485488892,-0.1406821608543396,-0.7502023577690125,0.7678561806678772,0.1243118867278099,-0.22998405992984772,0.7455736398696899]},{"shape":[9],"values":[-0.11669279634952545,-0.1530359536409378,-0.18009699881076813,-0.04431292414665222,-0.001317966845817864,0.01415996067225933,0.0023790965788066387,0.1873064935207367,0.17890916764736176]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/driver-47.json b/packages/demo-car-circuit/src/public/drivers/driver-47.json new file mode 100644 index 0000000..9224739 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/driver-47.json @@ -0,0 +1 @@ +{"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096},"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-learning-v2","seed":47,"updates":48,"samples":65536,"createdAt":"2026-09-06T17:53:44.954Z","weights":[{"shape":[20,32],"values":[0.761775553226471,-0.8870995044708252,-0.5183167457580566,0.33955320715904236,-0.10946860909461975,0.6761829257011414,-0.5061455965042114,-0.20162709057331085,-0.6538156270980835,-0.5107024908065796,0.1811945140361786,-0.7519963383674622,0.29969125986099243,-0.02755166031420231,-0.27425312995910645,-0.1730039119720459,-0.307142972946167,0.2504688799381256,0.731856644153595,0.6418006420135498,-0.893968403339386,-1.010434627532959,-0.2799774408340454,-0.2816201448440552,0.5497053861618042,0.891352653503418,-0.5132195949554443,0.8980291485786438,0.46788403391838074,-0.19760878384113312,-0.28434503078460693,0.03625574707984924,-0.009062799625098705,0.09257454425096512,0.2821301817893982,-0.06038304790854454,0.03759573772549629,0.44233107566833496,0.18273840844631195,0.12096348404884338,0.18293623626232147,0.049933239817619324,0.01912592723965645,0.05311460420489311,0.15182635188102722,0.23714832961559296,0.19058668613433838,-0.32120442390441895,-0.25560420751571655,0.16845399141311646,-0.08079446852207184,0.4741780757904053,0.21866942942142487,-0.07718122005462646,-0.15170496702194214,0.1984660029411316,0.0726531445980072,-0.01858999952673912,0.23005233705043793,0.12474995106458664,0.10736062377691269,0.07774076610803604,0.15640375018119812,-0.19735261797904968,0.04165098816156387,0.16200484335422516,0.11501124501228333,0.09093358367681503,0.49585413932800293,-0.6294277310371399,-0.23792532086372375,0.2889421284198761,-0.2658981382846832,-0.23931822180747986,0.5645997524261475,0.04728288576006889,-0.07305320352315903,-0.2266942411661148,-0.18301057815551758,-0.17875222861766815,0.286128431558609,-0.3011202812194824,0.3148963749408722,0.5415293574333191,0.34197360277175903,-0.18943709135055542,0.25820884108543396,-0.027225147932767868,0.8650999665260315,0.3907109498977661,-0.08632397651672363,-0.17131578922271729,-0.20851552486419678,-0.17904022336006165,0.2381926327943802,-0.8255351781845093,0.3316348195075989,0.46906614303588867,0.2513262629508972,-0.23744162917137146,-0.3065308928489685,0.12169139087200165,0.26648151874542236,-0.2643042206764221,0.29587069153785706,0.24407699704170227,-0.055271606892347336,0.28044891357421875,0.353697270154953,0.5777429938316345,-0.30180349946022034,0.5127021670341492,-0.02457873523235321,-0.04942712560296059,0.15792185068130493,-0.2578025162220001,-0.32744964957237244,0.14922089874744415,0.018288087099790573,0.17955560982227325,0.3639051020145416,0.3467271625995636,-0.18772150576114655,0.4748108983039856,0.2942976951599121,0.5492276549339294,-0.13994145393371582,-0.2011869102716446,1.516176462173462,0.32248929142951965,1.5372724533081055,-1.9521921873092651,1.7715566158294678,-1.2836542129516602,1.5941179990768433,-2.074617385864258,0.9810593724250793,1.4308674335479736,-0.8629003763198853,1.148155927658081,1.4728467464447021,1.1225618124008179,1.28267502784729,1.9467113018035889,-1.1698774099349976,1.8946123123168945,1.5101137161254883,-1.502384901046753,-0.925321638584137,-0.15327005088329315,1.6868107318878174,1.0313507318496704,0.30273130536079407,0.029083212837576866,0.9486597180366516,0.989885687828064,-0.6325308084487915,-1.091946005821228,1.426058292388916,1.8514207601547241,0.1125861257314682,-0.054765183478593826,-0.31481486558914185,-0.31682801246643066,0.12210500240325928,-0.07282928377389908,-0.031081203371286392,-0.039100926369428635,-0.37852784991264343,0.45062828063964844,-0.015549633651971817,-0.06705982238054276,0.3694510757923126,0.0869588702917099,0.10924024879932404,0.2587869465351105,-0.06876393407583237,0.4567239582538605,-0.2589787244796753,0.02166769653558731,-0.02891281060874462,0.2675511837005615,0.23609524965286255,0.5763884782791138,0.1324821263551712,0.05940091982483864,0.5229758024215698,-0.07255728542804718,-0.10542232543230057,-0.19925840198993683,-0.06212497875094414,-0.3111943304538727,-0.2524188756942749,0.2446826994419098,-0.06308520585298538,0.26557594537734985,-0.05887008085846901,-0.27888575196266174,0.2783118486404419,-0.05304513871669769,-0.08905944973230362,0.06701070815324783,-0.12087269127368927,-0.05304444208741188,-0.09893760085105896,-0.15617497265338898,-0.16645781695842743,-0.029496442526578903,-0.17791348695755005,0.17620037496089935,-0.11604061722755432,0.23169144988059998,-0.08829908072948456,-0.14760102331638336,-0.2523331344127655,0.19655632972717285,0.19899684190750122,0.2169632613658905,0.3894710838794708,-0.02685772441327572,-0.3166181147098541,-0.2816340923309326,-0.2152588814496994,-0.05614838749170303,-0.07579246163368225,-0.3390056788921356,0.11416465789079666,0.07417701184749603,-0.14982019364833832,-0.1453893631696701,-0.04481101781129837,0.10682869702577591,0.017749212682247162,0.10735476016998291,-0.11110478639602661,-0.13259194791316986,0.0327499583363533,0.35804593563079834,-0.26157277822494507,-0.025119896978139877,-0.007365909405052662,-0.0017492849146947265,-0.058995380997657776,-0.11722312867641449,0.05744913965463638,0.11379453539848328,0.28010812401771545,0.1376410871744156,-0.014905656687915325,0.14938612282276154,0.08599764853715897,-0.14362791180610657,0.004875587299466133,-0.12101337313652039,0.09527189284563065,-0.03884086757898331,0.17584693431854248,-0.013697662390768528,-0.15283168852329254,-0.15581977367401123,-0.20347008109092712,-0.023014795035123825,-0.14440353214740753,0.0025178163778036833,-0.02408410795032978,0.12634795904159546,-0.1604241281747818,-0.12558238208293915,-0.09265758842229843,-0.23221248388290405,0.05153810232877731,0.129067063331604,0.26632580161094666,0.18012778460979462,-0.05578567460179329,-0.16792352497577667,-0.13303016126155853,0.10064229369163513,0.3006744384765625,-0.19657273590564728,-0.04132148250937462,-0.12492280453443527,0.078109011054039,0.15261958539485931,0.3169741928577423,0.20482459664344788,-0.0032671240624040365,-0.27812302112579346,0.2572726011276245,0.06101913005113602,-0.33425500988960266,-0.1018727570772171,-0.03892626613378525,-0.20910215377807617,0.01515674963593483,0.0066686635836958885,-0.17246003448963165,0.17201192677021027,0.23896212875843048,0.0066820960491895676,-0.15421630442142487,-0.21262991428375244,0.30918020009994507,-0.16648024320602417,0.1560981571674347,-0.02215239778161049,-0.19098226726055145,-0.2039732187986374,0.28019729256629944,-0.2233600914478302,0.17470601201057434,0.14522133767604828,0.13319963216781616,-0.09050207585096359,-0.08337228745222092,-0.21838025748729706,0.0550200380384922,-0.12379774451255798,0.10220809280872345,-0.3062443137168884,0.12697595357894897,0.09197483956813812,0.23540513217449188,-0.11646579951047897,-0.265651673078537,0.13371625542640686,-0.28986847400665283,0.12735900282859802,0.21250425279140472,0.21635253727436066,0.17701230943202972,-0.2743801176548004,-0.14632244408130646,-0.3217317461967468,-0.061257828027009964,0.25685709714889526,-0.28904989361763,-0.24364586174488068,0.005470449570566416,-0.35165640711784363,-0.2465871423482895,-0.03010055422782898,0.11200734227895737,0.19820144772529602,-0.16451354324817657,-0.33398762345314026,-0.21905982494354248,-0.2920830249786377,0.2882011830806732,0.189424067735672,0.020044004544615746,0.2296738624572754,-0.027213212102651596,0.2071383148431778,0.20440754294395447,-0.12189275771379471,-0.30810707807540894,0.17087452113628387,0.05175486207008362,0.02326146326959133,0.14786331355571747,-0.31966662406921387,0.2185295820236206,-0.02438165806233883,-0.054687485098838806,0.2549892067909241,0.12462795525789261,-0.19118043780326843,-0.2662956714630127,0.1821461021900177,-0.07145590335130692,0.19908744096755981,0.1291242092847824,-0.2178342044353485,0.0357707254588604,-0.06178039684891701,-0.019826794043183327,0.009061239659786224,-0.06951616704463959,-0.19624696671962738,-0.21808233857154846,-0.13154780864715576,0.014204185456037521,0.16653025150299072,0.06188168004155159,0.05245472490787506,-0.21470791101455688,-0.21377387642860413,0.35387179255485535,-0.15007969737052917,-0.23767463862895966,0.17728610336780548,0.05695188418030739,-0.0716160461306572,-0.03874686360359192,0.30006787180900574,-0.2286648452281952,-0.22192031145095825,0.31197452545166016,0.017843985930085182,-0.23454789817333221,0.14211246371269226,0.09491566568613052,0.15211594104766846,-0.23467600345611572,-0.017826752737164497,0.021028269082307816,0.22717393934726715,-0.008901135064661503,0.21854154765605927,-0.09131438285112381,-0.17602908611297607,0.11540056020021439,0.1660730540752411,-0.028164274990558624,-0.14152292907238007,-0.02129533141851425,-0.04038301110267639,-0.09902849048376083,-0.18874196708202362,-0.004975179675966501,0.020705221220850945,-0.20190340280532837,0.2878988981246948,-0.24765115976333618,0.18608005344867706,-0.06632724404335022,0.13182033598423004,0.20498789846897125,-0.04476847127079964,0.058753278106451035,0.2184486836194992,0.12756229937076569,0.24027524888515472,-0.1388022005558014,-0.13920922577381134,-0.08722659200429916,0.05901172757148743,0.1783672422170639,0.20756763219833374,-0.08885754644870758,-0.07129272073507309,0.2623920738697052,0.01916584186255932,0.17275607585906982,-0.21000462770462036,-0.13503240048885345,-0.020691517740488052,-0.24452580511569977,-0.16187477111816406,-0.06878688931465149,-0.17427243292331696,0.13667693734169006,-0.09559827297925949,-0.2269223928451538,-0.3065398931503296,0.2980119287967682,-0.1638270914554596,0.27344706654548645,0.26213786005973816,0.09540512412786484,0.22214919328689575,-0.17053043842315674,-0.2131807953119278,0.1272234469652176,0.3154260218143463,-0.28763487935066223,0.15836399793624878,0.29064494371414185,-0.26801446080207825,-0.10490355640649796,0.1271941214799881,-0.17777840793132782,-0.3550070822238922,0.1507992446422577,-0.1187773197889328,-0.22342519462108612,0.060470931231975555,0.10815862566232681,0.32204297184944153,-0.22027626633644104,0.2141738086938858,0.2507474422454834,-0.1653956025838852,0.3398570418357849,0.0602082721889019,-0.08746004849672318,-0.07236351072788239,0.18970152735710144,0.22674046456813812,0.11605711281299591,-0.13973209261894226,0.23734316229820251,0.3577127456665039,0.266896516084671,-0.06517081707715988,-0.24508421123027802,-0.05009075254201889,0.25991037487983704,-0.2507515251636505,0.12032226473093033,-0.07681960612535477,0.039563704282045364,0.22790387272834778,0.2739316523075104,-0.12572512030601501,-0.29117104411125183,0.30089089274406433,0.06468604505062103,0.19036933779716492,0.2977302074432373,0.2518714666366577,-0.2393328994512558,-0.07003332674503326,-0.12146306782960892,0.2815740406513214,-0.04397670179605484,0.17056763172149658,0.22768399119377136,-0.19528934359550476,0.18583893775939941,-0.1406400203704834,-0.09237527847290039,-0.28125572204589844,-0.22993303835391998,-0.09678781777620316,-0.3763205111026764,-0.09708595275878906,-0.21125800907611847,-0.11531221121549606,0.1851922869682312,0.12496638298034668,-0.1532312035560608,0.145399808883667,0.1496427357196808,-0.023100024089217186,0.018985062837600708,0.14874960482120514,0.23680636286735535,-0.17327314615249634,-0.015596209093928337,-0.307685911655426,0.24000284075737,0.07845228165388107,-0.13445845246315002,-0.06803851574659348,0.20898853242397308,0.15893757343292236,-0.15791545808315277,0.0034950710833072662,0.21261022984981537,-0.3542878031730652,-0.2993057072162628,0.09643320739269257,0.1775309294462204,0.21869239211082458,0.19082163274288177,0.23553213477134705,-0.17517830431461334,-0.016946693882346153,0.16807903349399567,-0.13550759851932526,-0.022471409291028976,0.028192678466439247,0.0733843445777893,-0.10470789670944214,-0.22022747993469238,0.2884472608566284,0.20676568150520325,-0.16802752017974854,0.18432508409023285,-0.16858157515525818,0.26901793479919434,0.054905518889427185,-0.2732444405555725,0.23106034100055695,0.07118605077266693,0.016771962866187096,0.03587775677442551,-0.29414162039756775,-0.15792639553546906,-0.25746238231658936,-0.23471727967262268,0.11461181193590164,-0.10157990455627441,0.004386672284454107,0.21502351760864258,0.1198873370885849,0.02883106656372547,0.040018580853939056,0.1943988800048828,0.12382333725690842,0.16297583281993866,0.2505073845386505,-0.26742348074913025,-0.09238404035568237,-0.12554962933063507,-0.12271223962306976,-0.08333646506071091,0.3267751634120941,-0.13948915898799896,-0.27479392290115356,0.06568589061498642,-0.31829485297203064,0.03705845773220062,-0.0456264354288578,-0.08422590047121048,0.2056199312210083,0.14722871780395508,-0.06255228817462921,-0.3035590946674347,0.335353821516037,-0.32570594549179077,-0.01997729204595089,0.07291606813669205,0.3242628872394562,0.13794171810150146,-0.14399491250514984,0.17561085522174835,0.20374462008476257,-0.12505729496479034,0.0007132215541787446,-0.2594885528087616,0.21144267916679382,0.2323434054851532,-0.21213111281394958,-0.2255294919013977,-0.022840486839413643,-0.06528836488723755,0.1088690534234047,-0.0923762246966362,0.11726094782352448,0.3152772784233093,-0.02494044415652752,-0.02415798045694828,-0.2811844050884247,-0.044070273637771606,0.35233283042907715,-0.31193357706069946,0.19183078408241272]},{"shape":[32],"values":[-0.3295385241508484,0.37451863288879395,-0.06847739964723587,-0.01024829875677824,-0.031104812398552895,0.15681985020637512,-0.08740327507257462,0.14111478626728058,0.4368405044078827,0.3088090121746063,-0.19881519675254822,0.18407972157001495,-0.3561364710330963,0.2734314203262329,-0.08556516468524933,0.17181652784347534,0.2668954133987427,0.022269058972597122,-0.08909312635660172,-0.18813087046146393,0.15795965492725372,0.4615074098110199,-0.2347356528043747,0.3454533517360687,0.008931423537433147,-0.24942615628242493,-0.014211590401828289,-0.28201550245285034,-0.353187620639801,0.3925842344760895,-0.013547967188060284,-0.17878806591033936]},{"shape":[32,32],"values":[0.3205568492412567,0.6362789273262024,1.1226263046264648,-0.48619383573532104,0.11125840991735458,-0.8213338255882263,0.12648478150367737,-1.2191200256347656,0.9162977337837219,0.8063015937805176,1.0793273448944092,0.700495183467865,-0.9594169855117798,0.4753323793411255,-1.00948166847229,0.16853344440460205,0.6326369047164917,1.0152357816696167,0.2303767204284668,1.2308708429336548,-0.9310410618782043,1.3240960836410522,0.7322736382484436,-0.006886500399559736,1.1482619047164917,-1.0187091827392578,0.5579963326454163,1.1587787866592407,1.022547721862793,-0.660460352897644,0.9265148639678955,0.501757025718689,-0.6183537840843201,-0.36924147605895996,-0.9971825480461121,-0.09737321734428406,0.8442907333374023,0.9038249850273132,-1.0642603635787964,-0.04807208105921745,-0.8706007599830627,0.3894241154193878,-0.7373441457748413,0.06636645644903183,-0.542091429233551,-0.3436432182788849,-0.09067146480083466,0.42022740840911865,-0.4639787971973419,0.3644861876964569,-0.6259075999259949,-0.18965047597885132,0.19294461607933044,-0.7713996767997742,-1.2568645477294922,-0.6630182862281799,0.07372158765792847,1.3190547227859497,0.6920228004455566,-0.124302439391613,-0.2546214759349823,0.047158583998680115,-0.2031412571668625,-0.6793698072433472,-0.166825532913208,0.17115943133831024,0.033481255173683167,-0.360483855009079,0.6769105792045593,0.43368300795555115,-0.38022246956825256,-1.0070217847824097,-0.0016553013119846582,0.13862299919128418,0.17292743921279907,0.5889872908592224,-0.23560389876365662,0.6823276281356812,-0.26958441734313965,0.7843990325927734,-0.13360299170017242,-0.07650483399629593,-0.38927847146987915,1.060554027557373,-0.3143627643585205,-0.3271043598651886,-0.28261372447013855,-0.24933210015296936,0.13809557259082794,0.2646194100379944,0.6712133288383484,0.725433349609375,0.7558580040931702,-0.5967407822608948,0.2654685080051422,-0.40756160020828247,0.2810363173484802,-0.3685195744037628,-0.010870995931327343,0.1391228437423706,-0.5970834493637085,-0.12612412869930267,0.6764107942581177,1.0283706188201904,0.17315921187400818,-0.4975429177284241,-0.18455755710601807,-0.6232152581214905,0.26639434695243835,-0.8715034127235413,0.4918573498725891,-0.5839025974273682,0.05927012115716934,-0.16599425673484802,0.264390230178833,-0.6716374754905701,0.8816435933113098,0.21216432750225067,0.5007431507110596,0.1948074996471405,-0.5222387909889221,0.26123279333114624,-0.9227225184440613,-0.6269372701644897,-0.08241882920265198,0.2940591275691986,-0.1390356868505478,0.08323804289102554,-0.09925717115402222,-0.05007067695260048,-0.1814378947019577,-0.4027024507522583,0.6119086742401123,-0.20380142331123352,-0.16200684010982513,-0.4040076434612274,-0.01571127586066723,0.168615460395813,0.31439030170440674,0.5617806315422058,-0.0891033485531807,0.3250821530818939,-0.44736069440841675,0.22379106283187866,0.013143357820808887,0.2194671630859375,0.1329037994146347,0.6663464903831482,-0.2024582475423813,-0.24591505527496338,-0.20489905774593353,-0.23768888413906097,0.2582729756832123,0.027368132025003433,0.6477949023246765,0.21800950169563293,0.513658344745636,-0.4560507535934448,-0.19091109931468964,0.18298454582691193,-0.17317698895931244,0.1548623889684677,-0.028199682012200356,0.6449098587036133,-0.6333170533180237,-0.2323938012123108,0.29753947257995605,0.720672070980072,0.08895819634199142,0.44890719652175903,0.1207868903875351,-0.9173717498779297,-0.2791176438331604,-0.5976248979568481,-0.21765883266925812,-0.4923076033592224,0.4854161739349365,0.12176380306482315,0.07882970571517944,-0.36797404289245605,0.4330291152000427,0.11594857275485992,0.40487709641456604,-0.2007123976945877,-0.05170125141739845,-0.612307071685791,-1.0014183521270752,-0.23921526968479156,-0.1780792623758316,0.4548567533493042,0.12662452459335327,0.05324525013566017,-0.4403629004955292,0.4266185760498047,0.19162926077842712,-0.32210105657577515,0.8761909604072571,0.29488223791122437,-0.34153226017951965,-0.9821473360061646,-0.4060226380825043,0.22196489572525024,-0.11787386238574982,0.9159386157989502,-0.5707787275314331,0.025415586307644844,-0.2472507208585739,0.7237365245819092,0.1904325634241104,0.2539641559123993,-0.5649071335792542,0.7776625752449036,-0.5426073670387268,0.017243094742298126,-0.43731820583343506,-0.3152117431163788,0.28763240575790405,-0.17891381680965424,0.6963939070701599,0.7797462344169617,0.5041958093643188,-0.581087052822113,0.14419536292552948,-0.2598457634449005,-0.22094158828258514,-0.30438101291656494,-0.7126487493515015,0.6995192766189575,-0.9948516488075256,0.3234158158302307,0.5187560319900513,1.1485925912857056,0.12017452716827393,-0.5647355318069458,-0.8994225859642029,-0.4853873550891876,0.3750583231449127,-1.0576019287109375,0.4164336919784546,-0.5116350054740906,-0.12627507746219635,-0.5991450548171997,-0.0862949937582016,-1.2629677057266235,1.0275484323501587,-0.5028411149978638,-0.12358676642179489,0.12470375746488571,-0.5922420620918274,0.5192967057228088,-1.1139836311340332,-0.9827650785446167,-0.5806304216384888,0.8346881866455078,-0.2349023073911667,-0.16353890299797058,-0.6542671322822571,-0.22444121539592743,-0.09542819112539291,0.17302986979484558,0.6213886737823486,0.6283206343650818,-0.5072667598724365,-0.5547716021537781,-0.8824792504310608,0.7044263482093811,-0.21970751881599426,0.42944851517677307,-0.2182653397321701,0.40641483664512634,-0.582588791847229,0.8454508781433105,-0.38339266180992126,0.5259126424789429,-0.918961226940155,0.2980097234249115,-0.347461074590683,-0.9511593580245972,-0.9396184682846069,-0.2790198028087616,0.1501796543598175,0.7877378463745117,0.5588861107826233,0.1612425595521927,0.2571002244949341,0.24213038384914398,0.5719326138496399,-1.0397714376449585,-0.5928705334663391,0.007635406218469143,-0.1769530475139618,-0.4008640646934509,0.4373430907726288,0.3085445761680603,-0.4099608063697815,-0.3594744801521301,-0.20545437932014465,0.5828883051872253,0.28256335854530334,0.3552844524383545,-0.8042510151863098,-0.24244752526283264,-0.7406816482543945,0.2442808598279953,-0.15327349305152893,0.7591102123260498,-0.6283049583435059,0.07170852273702621,-0.5213009715080261,-0.3000101149082184,-0.3606424927711487,-0.41233503818511963,0.8202555179595947,0.03254802152514458,0.6798726916313171,0.28662803769111633,0.09692174941301346,0.08456496894359589,1.06277334690094,-0.7521647214889526,0.19741468131542206,-0.08163696527481079,0.11166659742593765,0.05119406804442406,-0.29113516211509705,0.0675167366862297,0.14102602005004883,0.004646756686270237,0.1832331418991089,-0.011173011735081673,-0.04428701847791672,-0.22882457077503204,0.2716369926929474,-0.1579887717962265,-0.0391153059899807,-0.24911648035049438,0.16166327893733978,-0.27296823263168335,-0.2791137099266052,-0.22442024946212769,0.2081863433122635,0.11310485005378723,0.18513935804367065,0.24221836030483246,-0.4468255341053009,0.2339947670698166,0.09566950052976608,0.03595871105790138,-0.09756729006767273,-0.038253989070653915,0.09717950969934464,-0.24200959503650665,-0.3748077154159546,-0.042422112077474594,-0.24149787425994873,0.12396446615457535,0.8413061499595642,0.5365616083145142,-0.7566099762916565,-0.4688622057437897,-0.6506397724151611,0.16907431185245514,0.11017844825983047,0.27315348386764526,-0.539914608001709,0.17111235857009888,-0.297413170337677,0.7297739386558533,-0.2325568050146103,0.18934699892997742,-0.8183171153068542,0.5989581346511841,-0.16811224818229675,-0.28930795192718506,-0.5880106091499329,-0.13229702413082123,-0.09419189393520355,0.40068718791007996,0.5922229886054993,0.4255681335926056,0.035862334072589874,-0.15846173465251923,0.2589331269264221,-0.7691444158554077,0.47417357563972473,0.38144299387931824,0.3973850905895233,-0.2267993837594986,0.3749939501285553,-0.4664483070373535,0.2671414911746979,-0.7375800609588623,0.34537839889526367,0.6345964670181274,0.7239864468574524,0.4671466648578644,-0.13220742344856262,0.5687568783760071,-0.518642783164978,-0.06227866932749748,0.5066178441047668,0.09657410532236099,0.13805226981639862,0.47880247235298157,-0.6447343230247498,0.3182154595851898,0.16445520520210266,-0.09134205430746078,0.3924989402294159,-0.6219587922096252,0.5311608910560608,0.5581690073013306,0.6135307550430298,-0.2986793518066406,0.21587082743644714,0.026201969012618065,0.034198109060525894,-0.20759397745132446,0.37494492530822754,0.13385552167892456,0.20424772799015045,0.1706082671880722,-0.2605883777141571,-0.2930559515953064,-0.18860752880573273,0.32802894711494446,-0.10852034389972687,0.25957852602005005,-0.38761815428733826,-0.2528740167617798,-0.7171845436096191,0.3165166974067688,-0.062360476702451706,0.7061627507209778,-0.2920476794242859,0.07489169389009476,-0.2343396097421646,-0.05521303787827492,0.140105202794075,-0.21875086426734924,0.8503003716468811,-0.0998280942440033,0.053406864404678345,-0.10040393471717834,0.05627385899424553,-0.3024067282676697,0.7428778409957886,-0.21897774934768677,-0.5076390504837036,0.1847749948501587,0.18470335006713867,-0.308957040309906,0.5286944508552551,-0.28185418248176575,0.02248668298125267,-0.5844438672065735,-0.23333555459976196,-0.017400069162249565,0.1648317128419876,0.23072682321071625,-0.30101484060287476,0.2780330777168274,0.033697519451379776,0.4820406138896942,-0.2525494396686554,0.13932369649410248,-0.38039320707321167,0.2547910511493683,-0.01703360676765442,-0.11321625858545303,-0.21326573193073273,-0.21265120804309845,0.35061338543891907,-0.04194686934351921,0.4190124273300171,0.3761601746082306,-0.28226912021636963,0.2577172517776489,0.3556361496448517,-0.4715780019760132,-0.16796299815177917,-0.08176197111606598,0.027613062411546707,-0.14949645102024078,0.5368250012397766,-0.15874826908111572,-0.28974032402038574,-0.34737712144851685,0.16506555676460266,0.7530514001846313,-0.050781093537807465,0.23976129293441772,-0.6360777020454407,0.371072918176651,-0.5957509279251099,-0.042570434510707855,-0.31819847226142883,0.6586726903915405,-0.5659444332122803,0.6857673525810242,-0.3800395727157593,0.15657302737236023,-0.145499125123024,-0.25816014409065247,1.1664142608642578,0.08558504283428192,0.5429625511169434,0.09685894101858139,0.2784724533557892,-0.09824993461370468,0.5665012001991272,-0.4504089057445526,0.14496459066867828,-0.3553101420402527,-0.19338995218276978,0.2884671688079834,-0.41682013869285583,0.2573772072792053,-0.17687107622623444,0.472128689289093,-0.3280620276927948,-0.331606924533844,-0.15420934557914734,-0.628667950630188,0.47006577253341675,0.09057430177927017,0.32881641387939453,-0.3736405372619629,-0.4706082046031952,-0.17967489361763,0.177508145570755,-0.775946319103241,0.46320584416389465,-0.5266603827476501,0.3848341107368469,0.4433445930480957,-0.3142794072628021,0.39081937074661255,-0.6012420058250427,-0.6371157765388489,-0.1447848081588745,0.24979040026664734,-0.48239031434059143,-0.07608966529369354,-0.03386811912059784,0.09319887310266495,0.06559213250875473,-0.40182122588157654,0.23406735062599182,0.030432993546128273,0.07789983600378036,-0.3896600902080536,0.08086725324392319,0.823225200176239,0.3456767797470093,0.10400766134262085,-0.9351327419281006,-0.01926473341882229,-0.46737420558929443,0.22544801235198975,0.1918632984161377,0.8856549263000488,0.07627339661121368,0.4738612771034241,-0.4345591366291046,0.1689021736383438,-0.25292840600013733,-0.05700590834021568,1.0877783298492432,0.030030103400349617,0.5090111494064331,0.5008127093315125,-0.23673100769519806,-0.45041245222091675,0.8428617119789124,-0.3305937945842743,0.33770236372947693,0.5726557374000549,0.35131365060806274,-0.7547099590301514,0.15461501479148865,-0.3083078861236572,-0.13100826740264893,-0.8898594975471497,0.28818514943122864,0.699713945388794,0.5744212865829468,0.4790094494819641,-0.6521716117858887,0.21027308702468872,-0.5691834092140198,0.021472256630659103,0.6921026706695557,0.779651939868927,-0.3945072293281555,0.700213611125946,-0.5114580392837524,0.7938627600669861,0.2738509774208069,-0.23732438683509827,0.958973228931427,-0.8661778569221497,0.37377476692199707,0.791027843952179,1.044909119606018,-0.39264318346977234,0.8789517283439636,-0.11892677843570709,0.7553820013999939,0.11882659047842026,-0.4295099079608917,-0.17864473164081573,-0.6272851824760437,-0.2894046902656555,0.7203443050384521,0.7899385690689087,0.7237770557403564,-0.48399829864501953,0.09865610301494598,-0.6579391956329346,0.6603959202766418,-0.6560134291648865,0.7182166576385498,-0.4744556248188019,0.9105814695358276,-0.8339905142784119,1.196587085723877,-0.3923662006855011,0.7463374137878418,0.3708340525627136,0.3593612015247345,-0.14679284393787384,-0.7933225631713867,-0.5309470891952515,-0.9252487421035767,-0.4647687077522278,-0.07728015631437302,0.1883378028869629,-0.7315676212310791,0.5687333941459656,-0.49662280082702637,-0.23787589371204376,-0.8962302803993225,-0.07517822831869125,0.3082186281681061,0.44496381282806396,-0.15543481707572937,0.693461000919342,-0.38210055232048035,-0.2314118593931198,-0.485583633184433,0.09077195823192596,0.39596372842788696,-0.36607834696769714,0.8667752146720886,0.3743171989917755,-0.17954955995082855,-0.5728728175163269,0.2293935865163803,-0.3911370038986206,0.5128755569458008,-0.6180715560913086,-0.4338025748729706,-0.056795407086610794,-0.7228366732597351,0.9702303409576416,-0.051792971789836884,-0.45821407437324524,-0.5365417003631592,0.3123697340488434,-0.15724419057369232,-0.2051670104265213,-1.2860186100006104,-1.3971304893493652,-1.067360758781433,0.31970950961112976,0.874021589756012,1.5683743953704834,-1.2496092319488525,0.054233040660619736,-1.0830820798873901,0.0994533896446228,-1.2907134294509888,0.5075713992118835,-0.20996016263961792,-0.5600680708885193,0.5898683667182922,1.1673105955123901,-1.1626754999160767,-0.45687422156333923,-0.738965630531311,-0.6452122926712036,0.35003387928009033,-1.632001519203186,-1.2186923027038574,-0.6531276702880859,-0.36054494976997375,1.6049307584762573,1.1131045818328857,-0.676588237285614,-0.7301057577133179,0.27934882044792175,0.18335838615894318,-1.5996778011322021,0.03908905014395714,0.28649982810020447,0.05226684361696243,-0.4029492735862732,0.8539789915084839,0.2888025939464569,-0.4119811952114105,-1.0813286304473877,-0.07649364322423935,0.08651972562074661,0.42633354663848877,0.6976281404495239,-0.06904970854520798,0.5760051608085632,-0.581823468208313,0.5649982690811157,0.040921688079833984,0.12633740901947021,0.0220529492944479,1.1729464530944824,-0.3885570764541626,-0.030675845220685005,-0.09757614135742188,-0.12916357815265656,0.06160615757107735,-0.29464688897132874,0.5639665126800537,0.8407576084136963,0.018835289403796196,-0.6685349345207214,0.5049765706062317,0.01653262972831726,-0.3599660098552704,-0.1411745399236679,0.05436437949538231,0.13482627272605896,-0.05323665961623192,-0.0590125173330307,0.03298300877213478,-0.2823348641395569,-0.35440734028816223,0.8627610206604004,0.22793757915496826,0.19429585337638855,-0.8852151036262512,-0.3759213387966156,-0.9381444454193115,-0.10779649019241333,-0.3684333860874176,0.5556934475898743,-0.40280604362487793,0.29894113540649414,-0.2515537738800049,-0.23018500208854675,-0.5771899223327637,-0.412819504737854,0.8847947716712952,0.41322562098503113,0.37510615587234497,0.007944988086819649,-0.2595842778682709,0.07647750526666641,0.4839499592781067,-0.20575742423534393,0.07510685920715332,-0.12983094155788422,0.33233901858329773,-0.21260468661785126,-0.37921106815338135,0.19110122323036194,0.1718883514404297,0.31809431314468384,0.374124139547348,0.5640757083892822,-0.12259357422590256,0.07129821926355362,-0.18666689097881317,-0.635422945022583,-0.5056395530700684,-0.19290626049041748,0.6275206208229065,0.3298240900039673,-0.01167572196573019,0.08787737041711807,-0.03787224739789963,-0.05663250386714935,-0.09165412187576294,-0.32388657331466675,0.524441123008728,-0.014671875163912773,-0.13365188241004944,0.17140913009643555,-0.14715810120105743,-0.16399596631526947,0.01262941025197506,0.2579863667488098,0.35812753438949585,0.5817397236824036,0.3580540716648102,-0.3115841746330261,-0.2536751925945282,-0.3030964732170105,0.5359212756156921,-0.000743686337955296,0.7226887345314026,0.23698177933692932,0.4718783497810364,0.08531112968921661,-0.22549456357955933,-0.6728203296661377,-0.3507368266582489,-0.47437170147895813,1.1534279584884644,0.031056536361575127,0.48730799555778503,-0.22344522178173065,0.1424938440322876,0.660639226436615,0.37334170937538147,-0.17099349200725555,0.11425722390413284,-0.2756024897098541,-0.024241171777248383,0.13009174168109894,-0.145379900932312,-0.3707941174507141,0.31744274497032166,0.4559422433376312,-0.30074408650398254,0.3368571400642395,-0.26781994104385376,-0.16477429866790771,0.425169438123703,0.18043304979801178,0.11063986271619797,-0.4218727648258209,-0.3608664870262146,0.23033560812473297,-0.01925869844853878,0.16208872199058533,-0.03770948946475983,-0.018243325874209404,0.14139410853385925,0.3524817228317261,-0.07577352225780487,0.16613875329494476,0.29890692234039307,0.4159506559371948,-0.16833464801311493,0.11735754460096359,-0.3369297981262207,-0.010886124335229397,0.23836801946163177,0.19458608329296112,0.41970545053482056,0.18793436884880066,-0.31953173875808716,-0.5581657886505127,0.15500988066196442,-0.18614745140075684,0.577776312828064,0.28245699405670166,0.598537027835846,-0.2245144546031952,-0.0730624720454216,-0.8378057479858398,0.3199174702167511,-0.7130542993545532,0.695626437664032,0.27184411883354187,0.6098447442054749,-0.06485062837600708,-0.20310445129871368,0.14279045164585114,-0.28007572889328003,-0.06878507137298584,0.6885280609130859,0.6719098091125488,0.24210192263126373,0.8211328983306885,-0.5367384552955627,0.4612405300140381,0.8874900341033936,-0.03092961013317108,0.2111535519361496,-0.8193098306655884,-0.007123354822397232,0.7065441608428955,0.5726706385612488,-0.46572744846343994,0.3537651002407074,0.5940794944763184,0.3629435896873474,-0.20025081932544708,0.40713948011398315,0.33187490701675415,-0.1743001788854599,-0.25768956542015076,0.49035757780075073,0.1966211348772049,0.47341102361679077,-0.6232001781463623,-0.07350476086139679,-0.08406360447406769,0.697165846824646,0.1862253099679947,0.08326514810323715,0.003878521267324686,0.35541704297065735,-0.15534445643424988,0.10259664058685303,-0.09206555783748627,-0.24679341912269592,0.3548475503921509,0.4717003405094147,-0.002161893993616104,-0.7012317776679993,-0.23631758987903595,-0.47930264472961426,-0.24530437588691711,0.1254693865776062,0.01827351003885269,-0.38828521966934204,0.24477623403072357,-0.14672917127609253,-0.6376445889472961,-0.2979520857334137,0.5509726405143738,0.053019262850284576,0.4714129865169525,-0.21020600199699402,0.698677122592926,-0.469511479139328,0.2573116421699524,-0.5547773838043213,-0.8980403542518616,-0.14919961988925934,-0.0517079122364521,0.10439185053110123,-0.2552686035633087,-0.17250493168830872,0.011256998404860497,-0.42252108454704285,-0.8199628591537476,0.21740208566188812,-0.46979576349258423,-0.1741926670074463,-0.0760551169514656,0.01946503110229969,0.10870950669050217,-0.7558829188346863,-0.51035475730896,-0.4737086296081543,0.8393837809562683,0.2213660627603531,0.046713653951883316,-0.18984021246433258,-0.1014338955283165,0.18504424393177032,-0.06714056432247162,0.6083926558494568,0.1738606095314026,-0.189065620303154,-0.45455148816108704,0.040289655327796936,0.5680937170982361,0.17739829421043396,0.6843222975730896,-0.03658599406480789,0.7562920451164246,-0.5143435001373291,0.35210832953453064,-0.03430129215121269,0.10221575945615768,-0.09330304712057114,0.42953726649284363,-0.5701923966407776,-0.20649130642414093,-0.10916133224964142,-0.04696464166045189,-0.19406315684318542,0.20455019176006317,0.6011446714401245,0.5237017869949341,0.07634935528039932,0.0531650185585022,0.30817726254463196,0.05184905230998993,-0.1256495863199234,0.00855970848351717,0.534311056137085,0.08078601956367493,0.3260166049003601,-0.482310026884079,-0.2887001931667328,-0.5034969449043274,-0.14899149537086487,0.2623198628425598,0.029452864080667496,0.33534157276153564,-0.26677629351615906,0.45956090092658997,-0.4682582914829254,0.046536948531866074,-0.4098966717720032,0.7576209902763367,-0.09313295781612396,0.6149092316627502,-0.6990143060684204,0.015581955201923847,-0.004742725752294064,0.10358656197786331,0.326924204826355,-0.27627798914909363,0.532078206539154,0.20595024526119232,0.4104361832141876,-0.1164994165301323,0.6051435470581055,-0.1879664808511734]},{"shape":[32],"values":[-0.3677062392234802,-0.2322254478931427,-0.19736258685588837,0.13764117658138275,0.11795495450496674,0.27173614501953125,-0.3241614103317261,0.22754748165607452,-0.3439497947692871,0.2902194857597351,-0.21092109382152557,-0.07391755282878876,-0.28295403718948364,-0.37899503111839294,-0.1847762167453766,0.02054220251739025,-0.11589860916137695,0.32411184906959534,-0.32892391085624695,-0.2711464464664459,0.23193007707595825,-0.23801401257514954,-0.21847911179065704,-0.27844977378845215,0.31007054448127747,0.36802250146865845,0.027875540778040886,-0.31400471925735474,-0.3010314702987671,0.15734781324863434,0.27536869049072266,-0.3618938624858856]},{"shape":[32,9],"values":[1.1358205080032349,1.5357801914215088,0.013296253979206085,0.41657599806785583,0.010348374024033546,-0.3540346324443817,-0.7125383019447327,-0.761861264705658,-0.18712739646434784,0.3820800483226776,0.1469748467206955,0.98333340883255,-0.12038000673055649,-0.042390547692775726,0.24637342989444733,0.08691424131393433,-0.37412896752357483,-0.09615978598594666,-0.8918530344963074,0.8813837766647339,0.4952978193759918,-0.1407882124185562,0.618312418460846,0.6167155504226685,-1.0420036315917969,-0.8056846857070923,-0.153488427400589,-0.07297128438949585,-0.24687471985816956,-0.5256463289260864,0.2347760945558548,0.6549448370933533,-0.736512303352356,0.35333240032196045,0.22675931453704834,-0.2536899149417877,-0.12439382821321487,-0.09311583638191223,0.16338789463043213,0.0390964075922966,-0.7602857947349548,0.15664149820804596,-0.3497302532196045,0.20485742390155792,1.4451406002044678,-0.0694076269865036,-1.252299427986145,-1.8180921077728271,-0.03220782056450844,-0.4352649450302124,0.3701775074005127,0.720853865146637,0.7914652228355408,1.2679681777954102,1.0263363122940063,1.377431035041809,-0.7760403156280518,0.9385541677474976,0.8160671591758728,0.2979871928691864,0.3323765993118286,-0.8409305810928345,-0.6550581455230713,0.10157104581594467,0.22847002744674683,-1.2119107246398926,0.14025911688804626,0.4646686613559723,-0.7612024545669556,0.34318292140960693,0.8171530961990356,-1.2787665128707886,1.2759065628051758,1.0041828155517578,0.22702816128730774,-0.27820074558258057,0.536773681640625,0.2098270207643509,-1.2976644039154053,-0.7229635715484619,-0.004604320973157883,-0.6819195747375488,0.1511511206626892,-0.3390301465988159,-0.8597286939620972,0.34823575615882874,0.17329254746437073,-0.8743488192558289,0.5624191761016846,0.462660551071167,0.03632102534174919,0.541663408279419,0.6615467071533203,-0.4733463227748871,-0.4211352467536926,1.110007882118225,-0.5700119137763977,-0.8906242251396179,-0.03109060786664486,-0.1467287540435791,-0.6589257717132568,0.7673984169960022,-0.016960255801677704,-0.8104934096336365,0.442290723323822,-0.35423022508621216,-0.11652727425098419,0.6623199582099915,0.8999412655830383,-0.27447691559791565,-0.3409968316555023,0.8950098752975464,-0.5729928612709045,0.02858581580221653,0.6865801215171814,-0.5812647938728333,-0.41379019618034363,0.12323854863643646,0.01809883862733841,1.5135022401809692,0.10988986492156982,-0.5562158226966858,0.34612008929252625,-0.35431328415870667,-0.36799243092536926,-0.24831300973892212,1.0768966674804688,-0.3644700050354004,0.19094093143939972,0.5324773788452148,-0.42404693365097046,-0.38176459074020386,1.381330132484436,-0.06447603553533554,-0.3467964231967926,-0.06738205999135971,-0.10622584819793701,0.06665681302547455,-0.15704640746116638,-0.40748435258865356,-0.2560059130191803,-0.09729623049497604,0.00022662864648737013,1.1482524871826172,0.7715109586715698,0.5450785160064697,1.1330657005310059,-0.3920321762561798,0.40480121970176697,-0.18520215153694153,-1.1575915813446045,-0.07034096866846085,-0.4683297872543335,-1.3737242221832275,0.33372756838798523,0.32284441590309143,-0.3730925917625427,0.26359373331069946,0.04960673674941063,-1.20431649684906,0.28140828013420105,-0.13713476061820984,1.5206416845321655,1.0668442249298096,-0.169187992811203,0.5108500719070435,-0.2333676517009735,-0.2486070990562439,0.06880587339401245,-0.5353126525878906,-0.5768533945083618,0.18028679490089417,-0.3680240511894226,1.218530535697937,-0.35189101099967957,-0.42922309041023254,1.1384971141815186,-0.3316003382205963,-0.9481524229049683,1.1120349168777466,0.17420856654644012,0.40151697397232056,-0.5843230485916138,0.4159756302833557,-0.26598623394966125,-0.8252682089805603,0.6426746249198914,0.5161231756210327,-0.8989779353141785,0.5304558873176575,1.0147637128829956,1.902488112449646,0.15529504418373108,0.672544002532959,0.24907328188419342,-0.49649378657341003,-1.0473476648330688,-0.8343101143836975,0.3537900149822235,1.3437467813491821,0.46300208568573,0.952913761138916,0.14096954464912415,-0.4110470116138458,-0.7461418509483337,-0.5809774398803711,-0.6248494386672974,0.6047748923301697,0.36735883355140686,0.2946411371231079,0.34178978204727173,0.006045354995876551,-0.361712783575058,0.07634533941745758,-0.4455118179321289,-0.12082581222057343,-1.0587719678878784,0.6539087295532227,-0.1588689237833023,-1.268432855606079,0.42519310116767883,0.2859092950820923,-1.1256507635116577,0.10583142936229706,0.271322637796402,-0.21360287070274353,-1.3930853605270386,-1.6906559467315674,0.019694820046424866,0.04304495081305504,-0.8116024136543274,0.44976744055747986,0.7653565406799316,0.9175565242767334,-0.10204718261957169,-1.0626626014709473,0.5002710223197937,-0.674906849861145,-0.47355449199676514,0.7274664044380188,-0.2167895883321762,0.07799381017684937,1.150610089302063,-0.423514187335968,-0.09398093074560165,0.5462342500686646,-0.7228648066520691,-0.38451671600341797,0.8506072163581848,-0.3149472177028656,-0.8290064334869385,0.5170337557792664,0.18035420775413513,0.29692813754081726,1.4217842817306519,-0.06850408762693405,-0.28371942043304443,0.37189674377441406,-0.48013147711753845,-0.619573712348938,0.04323676973581314,0.44494032859802246,0.26484808325767517,-0.6302530765533447,0.38885799050331116,0.25254034996032715,-0.8156455755233765,0.08515738695859909,0.5269455909729004,-0.19180838763713837,-0.7620398998260498,0.1554311215877533,-0.017265891656279564,-0.5115765333175659,0.50758296251297,0.432113379240036,-0.7895911335945129,0.2749324142932892,0.44954660534858704,1.0529519319534302,1.422037124633789,0.028818003833293915,0.8037059307098389,0.10640047490596771,-0.39525753259658813,-0.3431425988674164,-0.642103910446167,-0.41437265276908875]},{"shape":[9],"values":[-0.17149531841278076,-0.22442983090877533,-0.14440490305423737,-0.021540062502026558,0.05281178653240204,-0.10054496675729752,0.04753660038113594,0.1707531064748764,0.14867499470710754]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/protocol.json b/packages/demo-car-circuit/src/public/drivers/protocol.json new file mode 100644 index 0000000..2cd508e --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/protocol.json @@ -0,0 +1,48 @@ +{ + "protocol": { + "id": "racing-learning-v2", + "driving": "circuit-racing-v2", + "observation": "racing-observation-v1", + "race": "circuit-race-v2", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "seeds": [ + 11, + 29, + 47 + ], + "rounds": 16, + "sourceHashes": { + "packages/demo-car-circuit/src/racing/driving.ts": "7a0c694794810a651525746d613549859a8dc5ba6c81e94e61a5201f1e589979", + "packages/demo-car-circuit/src/racing/race.ts": "e83a8e10fc984f6e9ee22c74e0e56af97e9a508916a57ba97956371f2045ad68", + "packages/demo-car-circuit/src/racing/observations.ts": "284640c1e5c00d854013ac724910b4a565596320477f0346dbc7c43f3bb9f9e4", + "packages/demo-car-circuit/src/racing/reference.ts": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "packages/demo-car-circuit/src/racing/training.ts": "04e2eb652afd50eb316a812d12f1eac5b9001b9811861f420da54c24cc826ccd", + "packages/demo-car-circuit/src/racing/learning-protocol.ts": "577e69cbc007db07cde13feeb5152a8a6f0e7bb2e530db580bdb25fe1e1e128a", + "packages/demo-car-circuit/src/racing/learned-driver.ts": "67dd9890d773d8f1935f6b02da8585da9e09bbb6190af0239e37c71bc548e361" + }, + "head": "5847b7651daebef749d438c7e45feb32c3cbbd28", + "createdAt": "2026-09-06T17:52:16.391Z", + "node": "v22.14.0", + "tfjs": "4.22.0", + "backend": "tensorflow", + "platform": "darwin", + "arch": "arm64" +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/report-11.json b/packages/demo-car-circuit/src/public/drivers/report-11.json new file mode 100644 index 0000000..58fcb55 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/report-11.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v2", + "driving": "circuit-racing-v2", + "observation": "racing-observation-v1", + "race": "circuit-race-v2", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 300, + "rescues": 60, + "contacts": 0 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 80.1, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 80.06666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 80.01666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 127.81666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3989 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 115.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3678 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 113.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3435 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 135, + "rescues": 27, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 135, + "rescues": 27, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 135, + "rescues": 27, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 169.01666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3045 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 187.16666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2892 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 164.96666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2626 + } + ], + "seconds": 38.444 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/report-29.json b/packages/demo-car-circuit/src/public/drivers/report-29.json new file mode 100644 index 0000000..5910da8 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/report-29.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v2", + "driving": "circuit-racing-v2", + "observation": "racing-observation-v1", + "race": "circuit-race-v2", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 300, + "rescues": 60, + "contacts": 0 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.91666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 77.08333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 167.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3965 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 122.8, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3581 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 145.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3645 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 92.51666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 92.13333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 96.66666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 153.91666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3824 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 146.7, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2530 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 132.46666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2359 + } + ], + "seconds": 34.116 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/drivers/report-47.json b/packages/demo-car-circuit/src/public/drivers/report-47.json new file mode 100644 index 0000000..797d290 --- /dev/null +++ b/packages/demo-car-circuit/src/public/drivers/report-47.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v2", + "driving": "circuit-racing-v2", + "observation": "racing-observation-v1", + "race": "circuit-race-v2", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 282, + "rescues": 56, + "contacts": 42 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 120.26666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3355 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 121.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3551 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 118.63333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3325 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.56666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.6, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.68333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 162.13333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2950 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 158.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2515 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.51666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3616 + } + ], + "seconds": 33.535 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/models/License.txt b/packages/demo-car-circuit/src/public/models/License.txt new file mode 100644 index 0000000..60bca66 --- /dev/null +++ b/packages/demo-car-circuit/src/public/models/License.txt @@ -0,0 +1,28 @@ + + + Car Kit (3.1) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 02-04-2026 14:03 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + You can use this content for personal, educational, and commercial purposes. + + Support by crediting 'Kenney' or 'www.kenney.nl' (this is not a requirement) + + ------------------------------ + + • Website : www.kenney.nl + • Donate : www.kenney.nl/donate + + • Patreon : patreon.com/kenney + + Follow on social media for updates: + + • Twitter: twitter.com/KenneyNL + • BlueSky: kenney.bsky.social + • Instagram: instagram.com/kenney_nl \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/models/PROVENANCE.md b/packages/demo-car-circuit/src/public/models/PROVENANCE.md new file mode 100644 index 0000000..f5b337f --- /dev/null +++ b/packages/demo-car-circuit/src/public/models/PROVENANCE.md @@ -0,0 +1,10 @@ +# Kenney Car Kit 3.1 + +Source: https://kenney.nl/assets/car-kit + +Archive: https://kenney.nl/media/pages/assets/car-kit/1a312ec241-1775131960/kenney_car-kit.zip + +License: CC0; original License.txt included. GLB files copied without modification. + +- race.glb: SHA256 e1408c4c6e135f5a39c5f34cbfbcac9ae21c5c491e793fdee74bccac8334d942 +- sedan-sports.glb: SHA256 2889c428ca1dd9c975c3ff760eb8757883490410555ab60b818f712f583826d6 \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/models/Textures/colormap.png b/packages/demo-car-circuit/src/public/models/Textures/colormap.png new file mode 100644 index 0000000..5c4b185 Binary files /dev/null and b/packages/demo-car-circuit/src/public/models/Textures/colormap.png differ diff --git a/packages/demo-car-circuit/src/public/models/race.glb b/packages/demo-car-circuit/src/public/models/race.glb new file mode 100644 index 0000000..69d4315 Binary files /dev/null and b/packages/demo-car-circuit/src/public/models/race.glb differ diff --git a/packages/demo-car-circuit/src/public/models/sedan-sports.glb b/packages/demo-car-circuit/src/public/models/sedan-sports.glb new file mode 100644 index 0000000..07442cb Binary files /dev/null and b/packages/demo-car-circuit/src/public/models/sedan-sports.glb differ diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/README.md b/packages/demo-car-circuit/src/public/reports/imitation-v1/README.md new file mode 100644 index 0000000..c8683d9 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/README.md @@ -0,0 +1 @@ +Historical imitation V1 checkpoints and reports. Race V1 lacked boundary collisions and rescued any five-second off-road excursion. These weights are incompatible with race/driving V2; no current acceptance claim. diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-11.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-11.json new file mode 100644 index 0000000..3843347 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-11.json @@ -0,0 +1 @@ +{"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-learning-v1","seed":11,"updates":48,"samples":65536,"createdAt":"2026-09-06T16:08:08.382Z","weights":[{"shape":[20,32],"values":[0.7662398815155029,0.15150514245033264,0.6886430382728577,-0.3688841760158539,-0.7444329261779785,0.08348602056503296,0.14541901648044586,-0.5694031715393066,0.722967267036438,1.0724462270736694,-0.8567120432853699,-0.3598369061946869,-0.37135934829711914,-0.4677908420562744,0.5280458331108093,-0.681696891784668,-0.10545718669891357,0.792594313621521,0.2182445079088211,0.0002866219147108495,0.5119280815124512,0.34146296977996826,-0.07468391954898834,-1.020184874534607,-0.640769898891449,0.5356532335281372,-0.3242756426334381,0.14866209030151367,0.9725106954574585,-0.3950018584728241,0.07908976078033447,-0.1350409984588623,0.5740941166877747,0.14499442279338837,-0.10016711056232452,0.10603732615709305,0.10509097576141357,0.03250978887081146,0.09968509525060654,0.2408009022474289,-0.18626129627227783,0.0585113987326622,0.019503870978951454,-0.04489220678806305,-0.019641706719994545,0.17260520160198212,0.41982501745224,0.1547541618347168,-0.08508484065532684,0.24239854514598846,0.23104451596736908,0.09771068394184113,0.10837209969758987,0.07555531710386276,0.10281349718570709,-0.07188168168067932,0.3387993574142456,0.22121040523052216,-0.057484280318021774,0.5211179256439209,-0.37865012884140015,0.19823390245437622,0.049254897981882095,0.14595836400985718,0.3790963888168335,-0.24804693460464478,-0.08119001239538193,-0.39856472611427307,-0.1774311661720276,0.6011093854904175,-0.014564097858965397,-0.4267628490924835,-0.14869874715805054,0.3296651840209961,0.3433752655982971,-0.36976662278175354,-0.25666582584381104,0.3145981729030609,-0.5147938132286072,0.10389754176139832,0.6087018847465515,-0.38758939504623413,0.09679936617612839,0.4695352613925934,-0.35486072301864624,-0.20285262167453766,0.18694493174552917,-0.3005217909812927,-0.6147792935371399,0.48264971375465393,0.007014530710875988,0.03496081382036209,-0.4996394217014313,-0.05071737617254257,0.28237438201904297,0.2463892102241516,-0.20890749990940094,0.43472808599472046,-0.6870946884155273,-0.44906362891197205,0.4679509997367859,-0.3570500612258911,0.34459683299064636,0.4653838574886322,0.32798004150390625,0.4033393859863281,-0.001199517399072647,-0.6161071062088013,0.1234421506524086,0.6090041399002075,0.10472927242517471,-0.1273256242275238,-0.14896070957183838,0.3436756432056427,0.5313869118690491,-0.17502479255199432,-0.2634965777397156,0.10304400324821472,0.09328073263168335,-0.12526999413967133,-0.4037785530090332,-0.14370611310005188,0.5494517087936401,0.26928088068962097,0.07554392516613007,-0.32392969727516174,0.2433033585548401,0.32506614923477173,-0.9360371828079224,0.5693376660346985,-1.1854400634765625,-0.7631576657295227,-0.40326589345932007,-2.056920289993286,1.9691495895385742,1.8554507493972778,0.7427190542221069,0.2484302967786789,0.3307555615901947,-1.7026039361953735,1.286824107170105,1.8271243572235107,-0.23104113340377808,-1.5419261455535889,-1.4858347177505493,0.7685897350311279,1.5013011693954468,1.3617116212844849,-1.5069470405578613,1.53016996383667,-2.063436269760132,0.5769596099853516,-0.023740828037261963,1.196594476699829,0.8264307975769043,-1.5632109642028809,0.08674957603216171,1.9560433626174927,-1.953688621520996,-1.1356375217437744,-0.18338631093502045,-0.10945255309343338,0.16532407701015472,0.28292492032051086,-0.060587771236896515,-0.05012902244925499,-0.2863399088382721,0.553411602973938,0.2818179130554199,0.006550931371748447,0.18424031138420105,-0.22697922587394714,0.043340153992176056,-0.2514674961566925,0.27228987216949463,-0.09330818057060242,0.09781666845083237,0.2762434482574463,0.3794291913509369,-0.23861941695213318,-0.09187182784080505,-0.18992893397808075,-0.3031792640686035,0.417838454246521,-0.014218446798622608,0.22796078026294708,-0.4730689525604248,-0.02371823973953724,0.20006519556045532,-0.13870543241500854,-0.38608860969543457,0.012804967351257801,0.1475759595632553,0.3968034088611603,0.0487917959690094,0.45772650837898254,-0.16548623144626617,-0.04588351026177406,-0.36357811093330383,0.2482028752565384,-0.034338951110839844,-0.16970990598201752,0.0068528540432453156,-0.19817546010017395,0.17805328965187073,-0.12817735970020294,-0.19423151016235352,0.09856361895799637,-0.08447956293821335,-0.08997918665409088,0.09418881684541702,0.22252780199050903,0.21090571582317352,0.11235278099775314,0.05655583366751671,-0.186097651720047,0.12745662033557892,-0.14713960886001587,-0.06349152326583862,0.3061567544937134,0.12558500468730927,0.2859901785850525,-0.08234860748052597,-0.2534751892089844,-0.01644262485206127,-0.201091006398201,-0.08814039081335068,-0.2415294349193573,0.048777371644973755,0.041364360600709915,0.08626311272382736,-0.07757439464330673,-0.19642576575279236,0.17213772237300873,0.07516833394765854,0.11525272578001022,-0.24593575298786163,0.2292710840702057,-0.18726779520511627,-0.04683918505907059,-0.2363470047712326,0.006174509413540363,-0.23664765059947968,0.2190781533718109,-0.030367745086550713,-0.1367909014225006,0.15190011262893677,0.05587070807814598,-0.3389817774295807,0.1371951848268509,0.070962093770504,-0.25866618752479553,-0.13446064293384552,-0.1762092560529709,0.1663927286863327,-0.20750494301319122,-0.010001113638281822,-0.14365817606449127,-0.06793595105409622,-0.03236323967576027,0.1856984794139862,-0.028552180156111717,-0.12287241220474243,-0.28438934683799744,0.306514710187912,0.16697371006011963,0.12774302065372467,0.30230388045310974,0.10328009724617004,0.1309596747159958,-0.06311525404453278,0.024697769433259964,-0.010938556864857674,0.2249782532453537,0.09261245280504227,-0.24657662212848663,-0.2930588126182556,0.15673814713954926,0.024359097704291344,0.019869696348905563,-0.26812151074409485,-0.17124857008457184,0.05544034764170647,-0.15408693253993988,0.1634589582681656,0.2436036467552185,0.2661658227443695,-0.18229623138904572,0.04022446647286415,-0.01260251272469759,-0.017097823321819305,-0.1962285190820694,-0.0855162963271141,-0.15663954615592957,0.19083720445632935,-0.2812567949295044,0.0206363033503294,0.009133436717092991,0.36147794127464294,-0.17738133668899536,0.12714163959026337,-0.3252379298210144,0.19927051663398743,-0.12389571964740753,0.08741650730371475,0.08747011423110962,-0.1000419408082962,-0.1577548086643219,-0.20109719038009644,-0.2119651585817337,0.28171396255493164,-0.03306359425187111,-0.06191755458712578,-0.17375986278057098,0.0803912803530693,-0.1522514671087265,0.04534834250807762,0.07785248756408691,-0.024130869656801224,-0.16752998530864716,0.08107103407382965,0.06732799857854843,0.04055379703640938,-0.0026342268101871014,0.46927395462989807,-0.14070506393909454,0.1592714935541153,0.18354320526123047,-0.25838547945022583,-0.3089292049407959,0.36180025339126587,-0.05058429390192032,0.2886297404766083,-0.025116154924035072,0.009973053820431232,-0.15301433205604553,0.12213336676359177,0.32428038120269775,-0.06030265986919403,-0.15919046103954315,0.26513344049453735,-0.012227332219481468,-0.09452086687088013,0.17862260341644287,-0.20293943583965302,-0.24789801239967346,-0.14951737225055695,0.38425078988075256,0.3220232427120209,-0.010699013248085976,-0.05411580950021744,-0.26308268308639526,0.11617344617843628,0.01431114599108696,-0.00479393033310771,-0.3104272484779358,0.12818607687950134,-0.08777958899736404,-0.10750934481620789,0.2984274625778198,0.017315873876214027,0.017968710511922836,-0.1000680923461914,0.03992830589413643,0.10077450424432755,0.06913133710622787,0.002258791122585535,0.24736249446868896,-0.20135267078876495,-0.3181566298007965,-0.11425916850566864,0.1999291628599167,0.11267739534378052,0.2735925018787384,-0.33544617891311646,0.21324652433395386,-0.2100009322166443,0.21707352995872498,0.06912786513566971,0.3547714054584503,-0.1436898559331894,0.05804004147648811,-0.09934248775243759,-0.18459255993366241,0.18492092192173004,-0.3534501791000366,0.14058707654476166,-0.21406061947345734,-0.0847024992108345,-0.23406730592250824,0.24244211614131927,0.11949014663696289,-0.23664721846580505,0.19663570821285248,-0.07626251876354218,-0.08391132950782776,-0.19681595265865326,-0.11278718709945679,-0.3867065906524658,-0.25012078881263733,-0.1392783522605896,-0.4197915494441986,0.07169323414564133,-0.03765660151839256,0.13840320706367493,0.1746167540550232,0.29530614614486694,0.019722387194633484,0.3939727246761322,-0.024118827655911446,0.3637142479419708,0.20644311606884003,-0.32381176948547363,0.12205980718135834,0.025434888899326324,0.028507690876722336,0.03207039833068848,0.33592185378074646,0.22907690703868866,-0.3447839319705963,0.1834263652563095,0.10088324546813965,-0.15716852247714996,-0.13537640869617462,-0.10649021714925766,-0.19988086819648743,-0.2492152750492096,0.23508095741271973,0.34080472588539124,0.15400777757167816,0.24525810778141022,0.003048056038096547,-0.08043766766786575,0.22834627330303192,-0.15101122856140137,0.0422808937728405,-0.06435716897249222,0.01680930331349373,-0.11294282972812653,-0.08576143532991409,-0.12677539885044098,-0.22926290333271027,0.10036292672157288,-0.06524641811847687,0.2147405445575714,0.2972783148288727,0.07399140298366547,-0.09109368920326233,-0.25966325402259827,-0.2841886281967163,-0.07094576209783554,0.2375188022851944,-0.03971739858388901,-0.24825310707092285,-0.18302157521247864,0.013076618313789368,0.20283257961273193,-0.20987874269485474,0.020113106817007065,0.04261794686317444,-0.1625104546546936,0.26118823885917664,0.15802940726280212,0.29818296432495117,-0.15811727941036224,-0.06026405841112137,0.24287563562393188,0.13199442625045776,-0.22624796628952026,-0.13880130648612976,-0.11291492730379105,0.03594827651977539,0.13991081714630127,0.031351447105407715,-0.070345938205719,0.1918712705373764,-0.054471250623464584,0.010924668982625008,-0.035032499581575394,-0.22568707168102264,-0.3502241373062134,-0.09117848426103592,0.1660546064376831,-0.13922879099845886,-0.032665736973285675,0.0034553473815321922,0.2006913125514984,-0.123428113758564,0.005858920980244875,-0.06005571037530899,-0.21152254939079285,0.19135837256908417,-0.05063429847359657,0.05003601685166359,0.23165014386177063,0.22547656297683716,-0.18005339801311493,0.12065019458532333,-0.1916852593421936,-0.22564952075481415,0.052271224558353424,0.1253547966480255,0.009826736524701118,0.29071924090385437,0.057016827166080475,0.0766150951385498,0.38571697473526,-0.023874379694461823,-0.15872813761234283,0.1217670813202858,0.31136196851730347,0.3220314681529999,0.0641581192612648,0.17662043869495392,0.2710748314857483,-0.12741360068321228,-0.06281191110610962,0.24915429949760437,-0.19562624394893646,0.3100396394729614,-0.30551677942276,-0.18422284722328186,0.15612083673477173,0.03566619008779526,0.1541333943605423,0.24033139646053314,0.3053247630596161,0.21910524368286133,-0.10231008380651474,0.12267948687076569,0.064407117664814,0.14895789325237274,-0.0950280949473381,-0.16915298998355865,-0.1843140572309494,-0.19666732847690582,0.1554231494665146,0.15080827474594116,-0.2203589230775833,-0.11074567586183548,0.188805490732193,-0.20849843323230743,-0.3103110194206238,0.2782864570617676,0.21026068925857544,-0.16547521948814392,-0.16864077746868134,-0.04303489252924919,0.14914493262767792,0.24319441616535187,0.2217445820569992,0.17022085189819336,0.11661923676729202,-0.07117940485477448,-0.12867386639118195,-0.2163117527961731,0.07116291671991348,-0.07474753260612488,0.06954366713762283,0.10459742695093155,0.18556804955005646,-0.2039104700088501,0.18395192921161652,0.015944888815283775,-0.057332251220941544,-0.13367199897766113,-0.1503017544746399,0.09296829253435135,0.2857970893383026,-0.09012506902217865,0.037157755345106125,-0.24626241624355316,0.25180724263191223,-0.38109877705574036,-0.19586727023124695,0.04571736603975296,-0.31100156903266907,-0.09528344869613647,0.041031867265701294,-0.0021741343662142754,0.17021720111370087,-0.23128816485404968,0.005233600735664368,-0.16161835193634033,-0.08587989956140518,-0.19588923454284668,0.08350507915019989,-0.2809545695781708,0.02970990724861622,-0.12691721320152283,0.08863863348960876,0.11228733509778976,-0.14501336216926575,0.1902434229850769,-0.16355521976947784,0.11276838183403015,0.01805555820465088,-0.09352964907884598,0.11778149008750916,0.08931165188550949,-0.1813991814851761,0.03644615411758423,-0.3554743528366089,-0.3405444920063019,-0.01275517139583826,0.02793573960661888,-0.1582053154706955,0.24403588473796844,0.04942364990711212,0.16278643906116486,0.13235078752040863,0.0968100056052208,0.3325921297073364,-0.21176566183567047,0.052417706698179245,0.07056941837072372,-0.006327794399112463,-0.07705601304769516,-0.0019905478693544865,-0.21311591565608978,0.03029690496623516,0.0662325844168663,0.15440261363983154,-0.09441915899515152,-0.07236724346876144,-0.15116333961486816,-0.3294859230518341,0.13613007962703705,-0.13667652010917664,-0.28672298789024353,0.27337121963500977,0.08844312280416489,0.06847292929887772,0.014813432469964027,0.16270731389522552,0.14538009464740753,0.123130664229393,0.17539113759994507,0.307348370552063,-0.02310982719063759]},{"shape":[32],"values":[-0.21909277141094208,-0.43290722370147705,-0.10342632979154587,-0.023305967450141907,0.3785715699195862,-0.37025216221809387,-0.24556156992912292,0.32936394214630127,-0.2978765070438385,-0.32978108525276184,0.09474308043718338,-0.24806912243366241,-0.06463310122489929,0.22441498935222626,-0.02250981144607067,0.3117109537124634,0.10117409378290176,-0.20618100464344025,0.22191061079502106,-0.34859535098075867,-0.059675365686416626,-0.27792641520500183,0.10399790108203888,0.39733439683914185,-0.12282254546880722,-0.4119341969490051,0.013559936545789242,0.14202703535556793,-0.21005156636238098,-0.1552008092403412,0.07249321043491364,0.2388950139284134]},{"shape":[32,32],"values":[0.5042830109596252,-0.09014109522104263,-0.197612002491951,-0.006745198275893927,-0.023619605228304863,-0.1866925209760666,0.15413352847099304,0.5368921160697937,0.4386928379535675,0.39101478457450867,-0.3633923828601837,0.6322101950645447,-0.3832452595233917,-0.37681496143341064,0.014400854706764221,-0.6855100393295288,-0.6144633889198303,0.6328778862953186,0.7158591747283936,-0.13136141002178192,-0.2237684279680252,-0.2659306228160858,-0.5506540536880493,-0.5145538449287415,0.4300624132156372,-0.11723138391971588,-0.22616976499557495,-0.25056445598602295,0.16730189323425293,0.5329301357269287,0.2945577800273895,0.33261048793792725,0.20087644457817078,0.1164974495768547,0.13875240087509155,-0.40579932928085327,-0.13018479943275452,0.1479879766702652,0.12188596278429031,-0.4009605646133423,-0.3973252773284912,0.3835182189941406,-0.06798747926950455,0.01905968226492405,0.015622137114405632,0.0012477352283895016,0.0778699591755867,0.1305462121963501,-0.21393316984176636,0.20081602036952972,0.16389118134975433,-0.2696390151977539,-0.025113152340054512,0.30371302366256714,-0.10330120474100113,-0.2436201125383377,0.05303953215479851,0.039479054510593414,0.06216791272163391,-0.23804348707199097,0.4277642071247101,-0.03176765888929367,-0.3926270306110382,-0.07238079607486725,0.31944990158081055,-0.2302771657705307,-0.8897037506103516,-0.45249003171920776,-0.41490811109542847,-0.5202892422676086,-0.2600279748439789,0.8404431939125061,0.9023479223251343,-0.042112238705158234,-0.5636172294616699,0.2719811201095581,-0.6942974328994751,-0.554820716381073,-0.30821502208709717,-0.6527342796325684,-0.06771958619356155,0.48115748167037964,0.5295531749725342,-0.1861618459224701,-0.2710456848144531,-0.6590291857719421,-0.6559422016143799,-0.3561141788959503,0.19151858985424042,-0.11425794661045074,-0.488293319940567,-0.11017731577157974,-0.6938963532447815,0.7940636873245239,0.5666778087615967,0.6420795917510986,-0.12233927845954895,-0.330810546875,-0.03095807321369648,-0.2449830174446106,-0.39490509033203125,-0.3679894506931305,0.08269070088863373,-0.0790402889251709,0.025685511529445648,0.1859428435564041,0.09025996923446655,-0.4035310745239258,0.11693336814641953,-0.026763824746012688,-0.4243173599243164,-0.3170483410358429,0.29330381751060486,-0.3260183036327362,0.04875830188393593,0.07081069052219391,-0.5711960792541504,-0.19018881022930145,-0.102317214012146,0.06279203295707703,0.3996068239212036,-0.17644880712032318,-0.6255443096160889,0.45995765924453735,-0.04384010657668114,0.09075383841991425,0.23662324249744415,0.3142419755458832,-0.10653514415025711,0.5745928287506104,-0.2829630374908447,0.1500341147184372,0.20788395404815674,-0.28259533643722534,-0.2873566448688507,0.15569670498371124,0.6154280304908752,-0.3255501389503479,0.5157648324966431,-0.49994492530822754,-0.3492438495159149,1.2657952308654785,0.09270798414945602,0.09450598061084747,0.8031587600708008,-0.5166824460029602,-0.4910791218280792,0.471979022026062,-0.12642276287078857,-0.39179563522338867,0.6775293350219727,0.6116546988487244,-0.2719912528991699,0.624998927116394,0.4545328617095947,0.7338414788246155,-0.6045213341712952,-0.35674893856048584,0.4545147716999054,0.3250548243522644,0.2755894958972931,-1.1113823652267456,-0.24501372873783112,-1.0017144680023193,-1.3203414678573608,-0.6294044256210327,-0.09573870897293091,0.18394629657268524,0.7805435657501221,0.46173617243766785,-0.2774942219257355,0.8142560720443726,-0.2951997220516205,-0.4951237738132477,-1.427536129951477,-0.2622995674610138,0.2173887938261032,0.12144454568624496,0.47954800724983215,-0.08270277827978134,-1.4915480613708496,-0.23590798676013947,0.04566363990306854,-0.060768093913793564,1.4010848999023438,-0.8195803761482239,-1.0635066032409668,0.033480167388916016,-0.04356174170970917,0.46120843291282654,0.6417524218559265,0.3398267328739166,0.016669243574142456,0.6860440373420715,1.0929343700408936,0.7123554944992065,0.5496697425842285,0.8513287901878357,0.3103597164154053,-0.6393807530403137,-1.0333890914916992,-0.36111512780189514,-0.05079708993434906,0.35612455010414124,1.104900598526001,-0.3429713249206543,0.5713453888893127,0.8786389827728271,-0.05889773741364479,0.36364877223968506,-0.35520365834236145,-0.20425494015216827,0.5498439073562622,0.7777095437049866,-0.4429646134376526,0.10844399034976959,-0.4015246331691742,0.42978230118751526,0.7126315832138062,-0.39354458451271057,0.9254270792007446,-0.669012725353241,-0.9300620555877686,-0.5911031365394592,-0.3075050115585327,0.8015957474708557,0.308906614780426,0.6518149375915527,0.6503925919532776,0.713019073009491,0.030300239101052284,-0.4156772196292877,-0.3861044943332672,0.2670711278915405,0.08910857886075974,-0.20038242638111115,0.22255904972553253,0.3140505254268646,0.838375985622406,0.3548072874546051,0.31132933497428894,-0.4924042224884033,-0.38639360666275024,0.0002550794160924852,0.5127627849578857,0.38742008805274963,0.5434756875038147,0.4249389171600342,-0.7112624645233154,0.622215211391449,0.6504901647567749,-0.0030065812170505524,0.21572773158550262,-0.3622916042804718,-0.5065879821777344,-0.27570316195487976,0.3357582092285156,0.3168136775493622,0.025192324072122574,0.23962804675102234,0.42608723044395447,0.21278338134288788,-0.06592723727226257,-0.20070777833461761,-0.5675106644630432,0.20957013964653015,-0.027664078399538994,0.1654728502035141,-0.09325221180915833,-0.7819374203681946,0.2047334760427475,0.49049824476242065,-0.3844340443611145,0.34663787484169006,0.3017837107181549,-0.4561316668987274,-0.011773250997066498,-0.030545152723789215,-0.566208004951477,-0.6806126832962036,-0.07534797489643097,0.0234752856194973,0.26398617029190063,-0.9632359743118286,0.2521553337574005,0.08377684652805328,-0.20814253389835358,-0.17013691365718842,0.6429846882820129,0.1725015938282013,0.034425631165504456,0.29960840940475464,0.09683369845151901,-0.08541196584701538,0.30450639128685,0.023329120129346848,0.12259367108345032,0.5909400582313538,-0.7870517373085022,0.9609614610671997,0.21734710037708282,-1.1929776668548584,0.3304801285266876,-0.14166004955768585,-0.929496705532074,1.0738238096237183,0.37665581703186035,-0.37448880076408386,0.5024996995925903,-0.07441572844982147,-1.125558614730835,-1.1957664489746094,-0.04375581443309784,0.07198744267225266,0.15257292985916138,-0.501750111579895,0.1546918898820877,0.43263310194015503,-0.08977105468511581,-0.0017173618543893099,-0.38530418276786804,-0.21474356949329376,0.658280074596405,-0.25761309266090393,-0.0993884727358818,0.5052453875541687,-0.21779733896255493,-0.3356318771839142,-0.06824158877134323,0.08764797449111938,0.09319471567869186,-0.51179039478302,0.5641534328460693,0.41476017236709595,-0.359327495098114,0.22269561886787415,0.6978732347488403,-0.9909806251525879,-0.5864783525466919,-0.15761016309261322,-0.16205313801765442,0.38844266533851624,0.6707112789154053,0.8068820834159851,0.32027584314346313,-0.5086190700531006,-0.41656073927879333,0.3874492645263672,0.5294313430786133,-0.4046246409416199,-0.2836383283138275,-0.02692222408950329,0.24669001996517181,-0.23730513453483582,-0.20223358273506165,-0.7090931534767151,-0.6969600915908813,0.057600680738687515,0.19950881600379944,-0.4887915551662445,-0.09920721501111984,-0.22466564178466797,0.09819846600294113,0.19255565106868744,-0.30337533354759216,-0.17050494253635406,-0.38115665316581726,-0.1677805483341217,0.28014886379241943,-0.21637441217899323,0.01924014464020729,0.21194981038570404,-1.048879861831665,-0.29032430052757263,0.041805803775787354,0.12517890334129333,0.5120618343353271,-0.2891231179237366,-0.7025619149208069,-0.017719099298119545,-0.23409846425056458,0.19845224916934967,0.24303601682186127,0.27214929461479187,-0.3011503517627716,0.23944780230522156,0.3918052613735199,0.0279400497674942,0.24416619539260864,0.7056629657745361,0.0710659846663475,-0.3812544047832489,-0.7231264114379883,-0.47194236516952515,0.14206939935684204,-0.20268777012825012,0.6765146851539612,0.17570023238658905,0.40617725253105164,0.4807601571083069,0.29009291529655457,0.08138475567102432,-0.3764652907848358,0.0760822743177414,0.3795483708381653,0.27309519052505493,0.33727744221687317,-0.07505428045988083,-0.3538050055503845,0.17404213547706604,0.0296771340072155,-0.18057206273078918,0.483379065990448,-0.1573207974433899,-0.3466559946537018,-0.26356109976768494,-0.38703176379203796,0.804512083530426,0.599362313747406,0.684076726436615,0.5364117622375488,0.738310694694519,-0.056229185312986374,0.011343469843268394,-0.5398069024085999,-0.059615571051836014,0.12863008677959442,-0.2898412048816681,0.6971870064735413,0.2047952115535736,0.7035121917724609,0.5477936267852783,0.173933744430542,-0.2546635866165161,-0.5848396420478821,0.37514999508857727,0.5487802624702454,0.23704789578914642,0.03589319437742233,0.12894856929779053,-0.8848134875297546,0.35073527693748474,0.7208733558654785,-0.09456393122673035,0.5687708854675293,-0.46118858456611633,-0.31474536657333374,-0.47489720582962036,-0.07746005058288574,0.07900653034448624,-0.10896541178226471,0.013162276707589626,0.18131272494792938,-0.18389683961868286,-0.08793830871582031,0.2978318929672241,0.010394372045993805,-0.0777430310845375,-0.20014403760433197,-0.39435067772865295,-0.24884730577468872,-0.1263866424560547,0.0065904888324439526,-0.24604038894176483,-0.1559734344482422,0.4571278393268585,0.18365731835365295,-0.23369979858398438,0.46302008628845215,0.037025537341833115,-0.4292008876800537,-0.11637220531702042,-0.4181778132915497,0.3186059296131134,0.05972832441329956,-0.2203240692615509,-0.19841493666172028,0.3256753385066986,0.23452560603618622,0.1948660910129547,-0.2839166522026062,-0.6533963084220886,-1.3536955118179321,-0.5588324666023254,-0.38531211018562317,-1.2293684482574463,-0.12886612117290497,0.5318069458007812,0.879662036895752,0.4223081171512604,1.0223219394683838,-0.41623160243034363,-1.0740567445755005,0.7877470254898071,-0.7199878096580505,-0.7842461466789246,1.2429683208465576,-0.6412895917892456,0.48790988326072693,0.9492450952529907,-0.48289555311203003,-1.152915596961975,0.9617682099342346,0.9253010153770447,0.6017854809761047,-0.2293572723865509,-0.8755605816841125,1.4876246452331543,-0.8169042468070984,0.20910616219043732,0.8616068363189697,1.0144096612930298,0.3552325665950775,-0.34220004081726074,-0.17893952131271362,0.0004989787703379989,-0.44388067722320557,0.10509645193815231,-0.254639595746994,0.17649394273757935,0.13101935386657715,0.05467661842703819,0.3061797618865967,0.7105732560157776,-0.4397147297859192,0.05738726258277893,-0.38203760981559753,-0.4647546112537384,-0.07294833660125732,-0.0785866230726242,0.244032084941864,-0.06067280098795891,-0.44771283864974976,-0.5575366616249084,0.01571737974882126,0.08133865892887115,0.21027743816375732,-0.4716240465641022,-0.6672155261039734,0.16093845665454865,0.0019390633096918464,0.18531689047813416,0.5532884001731873,0.023934198543429375,0.394404798746109,0.27865487337112427,0.17396409809589386,0.2978459298610687,0.5153871774673462,-0.1743166595697403,-0.005218400154262781,-0.019260695204138756,-0.5596446394920349,0.2029990255832672,-0.5874453186988831,-0.06786665320396423,-0.06243979558348656,-0.23808173835277557,0.4979392886161804,0.38790076971054077,-0.7174531817436218,0.10973245650529861,0.07094307988882065,-0.1350754350423813,0.3175918459892273,0.4578460454940796,-0.1998520791530609,-0.5522421002388,-0.3592621982097626,-0.12411818653345108,0.3673451840877533,-0.55389004945755,-0.13318343460559845,0.24686813354492188,-0.3028358817100525,-0.29131096601486206,-0.2541092038154602,0.3443637788295746,0.33995741605758667,0.3859453499317169,0.31008389592170715,0.11750023066997528,-0.0354604572057724,-0.3063880503177643,-0.34390950202941895,0.2841837704181671,-0.24552196264266968,0.04198459908366203,0.2877717614173889,0.03978658840060234,0.6074636578559875,0.2788175046443939,-0.29337814450263977,0.06568939983844757,-0.22684505581855774,0.057936519384384155,0.7260938286781311,0.3835218548774719,0.23447057604789734,-0.11491912603378296,-0.7893378734588623,0.3512539565563202,0.7158410549163818,-0.34192562103271484,0.33172813057899475,0.09893607348203659,-0.3816787004470825,-0.0179226603358984,0.40584346652030945,0.288143128156662,0.8575264811515808,-0.027321087196469307,0.22956733405590057,1.000674843788147,-0.09573347121477127,-0.02017902210354805,-0.6929712295532227,0.017528628930449486,-0.07370679825544357,0.4731760323047638,1.0626558065414429,-0.01779986545443535,-0.03437500074505806,0.5067021250724792,-0.026856431737542152,-0.030683008953928947,0.2879415452480316,-0.2759188711643219,0.2303093820810318,0.8034955263137817,-0.21033981442451477,-0.2116415649652481,-0.24245896935462952,-0.2210855931043625,-0.0068240114487707615,0.05796666070818901,0.5900996327400208,-0.4984560012817383,-0.7585126757621765,-0.7230998277664185,0.328933984041214,-0.20945028960704803,-0.8570535182952881,-0.11991775780916214,-0.5107137560844421,-0.6642124652862549,-0.05509369075298309,0.6840416193008423,0.46963468194007874,0.17527227103710175,-0.03468616306781769,0.3026088774204254,-0.5338450074195862,-0.2132112830877304,-0.2762891352176666,-0.5752382278442383,-0.2063402235507965,0.23550952970981598,0.734490692615509,0.12975893914699554,-0.293016254901886,-0.4930122196674347,-0.41142821311950684,-0.3535844087600708,0.2703143358230591,-0.22109881043434143,-0.547294020652771,-0.12200449407100677,-0.32616302371025085,0.6480715870857239,0.647098183631897,0.7163130044937134,0.16672874987125397,0.0855419710278511,0.8376772999763489,0.31041115522384644,0.4945189356803894,0.8581045269966125,0.28141769766807556,-1.0885651111602783,-1.1177488565444946,-0.3590444028377533,-0.23301580548286438,-0.16284239292144775,0.9179301857948303,-0.26300132274627686,0.1870644986629486,1.0521003007888794,-0.1386975646018982,0.17711298167705536,-0.3593408167362213,-0.37035202980041504,0.3146136403083801,0.9444905519485474,-0.35971978306770325,-0.5936189889907837,-0.5503393411636353,0.16586750745773315,0.5359424948692322,-0.3610694408416748,0.5755863785743713,-0.06084766611456871,-1.073948860168457,-1.0653631687164307,0.04775387793779373,-0.6539106369018555,-1.133691668510437,-0.6073721647262573,-0.6533507704734802,-0.7882328629493713,-0.28765222430229187,0.292375385761261,0.8136492967605591,0.26449108123779297,0.07398196309804916,0.09956521540880203,-1.2613162994384766,0.18865537643432617,-0.5700405240058899,-0.8704350590705872,0.31802240014076233,0.1276175081729889,0.4140457510948181,0.5851498246192932,-0.8154004812240601,-0.5509259700775146,0.2732740044593811,0.20102360844612122,0.36228111386299133,-0.1223989799618721,-0.5266410112380981,0.5709245800971985,-0.6782822608947754,0.7063713669776917,1.3621472120285034,0.9902127981185913,-0.5110110640525818,1.0708800554275513,0.3397563099861145,0.554537296295166,0.8628024458885193,0.03336883336305618,-0.19797758758068085,-0.05074867233633995,0.01959528960287571,-0.7355239987373352,1.073441743850708,-1.406149983406067,0.5575284957885742,0.7865368723869324,0.7678597569465637,0.3092546761035919,0.8899766206741333,-1.0707111358642578,-0.6023889780044556,0.3645736277103424,0.487825870513916,0.216250479221344,1.2571873664855957,1.4119521379470825,-0.9093960523605347,0.8019565939903259,0.5613827705383301,1.3131994009017944,0.15041762590408325,-0.8566830158233643,0.10377007722854614,-0.5232651829719543,0.10681505501270294,-0.06508520990610123,0.3537832796573639,-0.24163350462913513,-0.20202648639678955,0.13745538890361786,0.3777524530887604,-0.637313187122345,0.06411056220531464,-0.08994829654693604,-0.04893568158149719,-0.4078773558139801,0.14010682702064514,-0.003726342925801873,-0.3551073372364044,0.36655229330062866,0.3238549828529358,-0.3214753270149231,-0.057367198169231415,0.04220091179013252,-0.5868780016899109,-0.12698501348495483,0.1584942489862442,0.019078250974416733,0.6332802772521973,0.011724069714546204,-0.5021881461143494,0.34758254885673523,0.1985035389661789,-0.053365327417850494,-0.06063606217503548,-0.2993711829185486,0.349178671836853,0.10848790407180786,0.5901610851287842,0.37078678607940674,0.1910364180803299,1.0259878635406494,0.19173669815063477,-0.21164743602275848,-1.0571463108062744,0.22699478268623352,-0.6653257012367249,0.27838870882987976,0.8109248876571655,-0.7576424479484558,-0.05289557948708534,0.6476414799690247,-0.9914576411247253,0.21395035088062286,0.5094535946846008,-0.6747276186943054,0.2760467231273651,0.7515944838523865,-0.5542449951171875,-0.4972325265407562,-0.3647538125514984,-0.38251039385795593,0.21896538138389587,-0.6067361831665039,0.9108262658119202,0.28556522727012634,-0.6849166750907898,-0.5599246025085449,-0.3728238642215729,-0.1989629864692688,0.4406382441520691,0.3896898031234741,0.007306629326194525,0.025655873119831085,-0.011042699217796326,-0.40721383690834045,-0.4537029564380646,0.004705946892499924,0.36099401116371155,0.2044263333082199,0.21024194359779358,0.504967212677002,0.1048024445772171,0.2098740190267563,-0.07460743933916092,0.3071839511394501,-0.3370799422264099,0.10414741933345795,0.3612477481365204,0.23626753687858582,0.49424245953559875,0.06129652261734009,0.06861139088869095,0.11185441166162491,0.3111826479434967,-0.27512815594673157,0.35182246565818787,-0.09061360359191895,-0.15906022489070892,-0.025290898978710175,-0.006581960711628199,-0.14122049510478973,-0.6650552153587341,-0.28634876012802124,-0.07614808529615402,-0.27115917205810547,-0.4407639503479004,0.5512175559997559,0.5790424346923828,0.7677775025367737,-0.13552351295948029,-0.11245501041412354,-0.5199999809265137,-0.05999058485031128,-0.39507821202278137,-0.5634640455245972,-0.3642382025718689,0.2618614435195923,0.4041352868080139,0.05731990188360214,-0.35189613699913025,-0.35735273361206055,0.04958096146583557,0.2765657901763916,0.4040682911872864,-0.15566205978393555,0.005184059962630272,0.24114055931568146,-0.41926488280296326,0.6075991988182068,0.6727449893951416,0.6022346615791321,0.10452087223529816,0.2162885069847107,-0.24729083478450775,0.2282274067401886,0.2910875380039215,-0.1000923216342926,0.2662041485309601,0.2414063662290573,0.07393822073936462,-0.2699053883552551,-0.4004659950733185,0.0663192942738533,-0.14174850285053253,-0.3245888352394104,0.390325665473938,-0.18077118694782257,-0.5493263006210327,0.7602974772453308,0.6282860636711121,-0.46670520305633545,0.14499209821224213,0.2057880461215973,-0.9138738512992859,-0.4246053993701935,-0.5398601293563843,0.4293157160282135,0.1913827806711197,-0.7037061452865601,-0.0005706084775738418,0.4041852056980133,0.04189348220825195,-0.0941973403096199,-0.4544059932231903,0.6037085652351379,0.8252005577087402,0.4090360403060913,0.5696160197257996,0.7036542892456055,-0.015647493302822113,-0.17049501836299896,-0.7272423505783081,-0.0016218111850321293,-0.005907585844397545,-0.44722244143486023,0.8250250220298767,-0.015814922749996185,0.3888840079307556,0.8056722283363342,-0.12451071292161942,0.12377072125673294,-0.6183146834373474,-0.16918645799160004,0.32396501302719116,0.40037086606025696,0.14347362518310547,0.025403695181012154,-0.43892914056777954,0.07421699911355972,0.255157470703125,0.4317130744457245,0.6721332669258118,-0.6994998455047607,-0.7766883373260498,-0.7066370844841003,0.3754011392593384,-0.6514704823493958,-0.6807132363319397,-0.12067990005016327,-0.3501433730125427,-1.1368392705917358,-0.053637951612472534,0.5164682865142822,0.9805508852005005,0.021590743213891983,0.03644447773694992,-0.2953343987464905,-0.8654231429100037,0.31230154633522034,-0.5421581864356995,-1.19864821434021,-0.030999742448329926,0.30503952503204346,0.5012243986129761,0.6206091046333313,-0.7761892676353455,-0.8631339073181152,0.29467645287513733,0.019205085933208466,0.12718553841114044,-0.15832188725471497,-0.4990095794200897,0.319996178150177,-0.7381312847137451,0.7815610766410828,1.2316933870315552,0.8851038813591003,0.10540971159934998,-0.27703237533569336,-0.4862528145313263,-0.013623127713799477,-0.6121994853019714,-0.5326507091522217,-0.10897829383611679,-0.23200489580631256,0.24708974361419678,-0.1427648663520813,0.27137333154678345,0.38610556721687317,-0.4693775177001953,-0.2773684859275818,-0.1181216835975647,-0.5052650570869446,0.008926993235945702,-0.1503182202577591,-0.17190028727054596,0.3729648292064667,-0.15878216922283173,-0.1033557653427124,0.21648836135864258,0.23492418229579926,0.422097384929657,-0.26175975799560547,-0.011192241683602333,0.25472572445869446,-0.3172494173049927,0.178367480635643,0.6218383312225342,0.2320953756570816]},{"shape":[32],"values":[-0.24416105449199677,0.4067629277706146,-0.10210400074720383,0.26675713062286377,0.35779833793640137,-0.20237478613853455,-0.11746443063020706,0.2474897801876068,0.25886520743370056,-0.0018455712124705315,0.14022710919380188,-0.3138156831264496,-0.13974188268184662,0.2735600471496582,0.3652844727039337,-0.167120099067688,0.14985588192939758,-0.24730688333511353,-0.17004390060901642,0.20726726949214935,0.39085957407951355,-0.242408886551857,0.21943117678165436,0.3029194176197052,-0.37072062492370605,0.3915705680847168,0.2954377233982086,0.2807527482509613,-0.1557735949754715,-0.03514060750603676,0.2244340479373932,0.15948189795017242]},{"shape":[32,9],"values":[0.9365372657775879,0.7408824563026428,-0.12412580102682114,0.2220870703458786,0.1684785932302475,0.05575098469853401,-0.9125363230705261,0.06966818869113922,-0.3603575825691223,-1.1030455827713013,-0.17844393849372864,-0.29508528113365173,-1.1635186672210693,-0.05939526483416557,0.11951663345098495,-0.9407258629798889,0.3411313593387604,0.2877116799354553,-0.037543416023254395,-0.48897606134414673,0.907411515712738,-0.5497209429740906,-0.5168946385383606,0.7417369484901428,-0.6514323949813843,-0.1463823765516281,1.0616956949234009,-0.6529030799865723,-0.041521355509757996,0.06695036590099335,-0.9439311027526855,0.4765336513519287,0.5131426453590393,-0.8321066498756409,0.27967435121536255,0.5529355406761169,-0.9902400374412537,0.04747698828577995,-0.33820638060569763,-0.7858584523200989,0.008528204634785652,0.5758702158927917,-0.9514048099517822,0.4960858225822449,0.13725459575653076,-0.2178356796503067,-0.7078641057014465,0.6415917277336121,-0.31638532876968384,-0.9319307208061218,0.9838762283325195,-0.20184947550296783,-0.5760562419891357,0.8753237724304199,-0.5839117765426636,0.3250143527984619,0.4072510600090027,0.1022210419178009,-0.3856514096260071,0.1918342411518097,0.17373734712600708,-0.2883199453353882,-0.17692174017429352,-0.23334382474422455,-0.18440556526184082,-1.2956676483154297,0.19377927482128143,0.5427948236465454,0.264201283454895,0.09976151585578918,0.21604785323143005,-0.3006311058998108,0.15601320564746857,0.3294188976287842,-0.8431345820426941,-0.2583518624305725,0.3620813488960266,-0.5330756902694702,0.3055133819580078,0.5539800524711609,-0.7790137529373169,0.9599138498306274,0.4220524728298187,-0.4748949706554413,-0.4382460117340088,0.303606778383255,-0.23406484723091125,-0.5653020739555359,0.07697824388742447,0.21458283066749573,-0.09878384321928024,-0.7237530946731567,-0.6170429587364197,0.28077325224876404,-0.06432539224624634,-0.4044071137905121,0.8852314352989197,0.7317485809326172,0.72550368309021,1.5498958826065063,0.7351185083389282,0.5219256281852722,0.23203010857105255,-0.1675463169813156,0.023174691945314407,-1.7050182819366455,-0.5965197086334229,-0.014587294310331345,0.03698914125561714,-0.6283851861953735,0.5147217512130737,-0.13006030023097992,-0.5442968606948853,1.0065970420837402,-0.38228070735931396,-0.3123592138290405,1.2303599119186401,-0.4429296851158142,-1.1424777507781982,-1.1256959438323975,0.27235761284828186,0.26439422369003296,0.1278611719608307,0.21702483296394348,0.21084368228912354,0.3176123797893524,-0.5593456625938416,-0.20393522083759308,-0.138249933719635,-0.4918285608291626,0.3562760353088379,0.34305480122566223,-1.094228982925415,0.5386423468589783,0.4551967978477478,-0.024738820269703865,-0.7635584473609924,0.5215868353843689,-0.4491021931171417,-0.2982410788536072,0.29340097308158875,-0.49948203563690186,-0.4615572988986969,1.1509160995483398,0.18771275877952576,-0.5937767028808594,-0.19293880462646484,0.11695801466703415,-0.6338202357292175,-0.3739261329174042,0.8279045820236206,0.6558563113212585,0.48859113454818726,0.7662027478218079,1.097427248954773,1.1537729501724243,0.25686532258987427,0.657698392868042,-0.06005548685789108,-1.3919062614440918,-0.5539987087249756,-0.5525941848754883,0.8760174512863159,1.1984059810638428,-0.521491289138794,0.5131549835205078,0.3213440477848053,-0.03722134605050087,0.4190879464149475,-0.4189060926437378,-0.9286630749702454,0.46299177408218384,-0.9032803177833557,-0.9694614410400391,0.7293389439582825,0.3809429109096527,-0.8373230695724487,-0.050700172781944275,0.46467217803001404,0.6429226398468018,-0.9613456726074219,0.4670150578022003,-0.09490317106246948,-0.820492148399353,0.31536316871643066,0.2638995349407196,-0.911113977432251,0.34581974148750305,0.3495161235332489,-0.04514143615961075,-0.7606232762336731,0.5486270189285278,-0.3147706091403961,-0.15464189648628235,1.0165350437164307,-0.14504030346870422,-0.5246485471725464,0.8196916580200195,-1.015346646308899,-1.4973841905593872,-1.4490898847579956,-0.33984699845314026,-0.7833383083343506,0.11816612631082535,0.6868644952774048,1.4820836782455444,1.1441396474838257,-0.06051967665553093,-1.7623746395111084,-1.4345877170562744,-0.05487491562962532,-0.15659183263778687,-0.4054277837276459,0.6065940260887146,1.0059102773666382,0.678764820098877,1.365841031074524,-0.3271710276603699,-0.0881950631737709,0.8072776794433594,-0.49492529034614563,-0.04393703490495682,0.6916779279708862,-0.46893444657325745,-0.46997249126434326,-1.9117568731307983,0.2035650759935379,0.30046430230140686,-0.9547749161720276,0.009881140664219856,0.27189353108406067,0.009656652808189392,0.2799697816371918,-0.18711557984352112,-1.0204685926437378,-0.26368239521980286,-0.09714113175868988,-0.4852856993675232,0.4351709485054016,0.1497284471988678,-1.2069324254989624,0.45438000559806824,0.2175752818584442,0.4746845066547394,-0.7765138745307922,-0.8849416971206665,0.6664975881576538,-0.29773837327957153,-0.6248120665550232,0.9298093914985657,1.061646819114685,0.3943411707878113,0.38100460171699524,-0.0694061741232872,0.5194379091262817,-0.051235463470220566,-0.665269136428833,0.433537095785141,-0.3515172302722931,-0.46524736285209656,0.403496116399765,0.3044404685497284,0.3622268736362457,-0.6675723791122437,0.3579648733139038,0.6488921642303467,-0.40011221170425415,0.004706306848675013,-0.4291295111179352,-1.1036537885665894,0.23670774698257446,0.22530536353588104,-0.4887958765029907,0.26716163754463196,0.3508029580116272,-0.9819226264953613,0.1953248828649521,0.6761777997016907,-1.1125115156173706,0.21868745982646942,0.6549010872840881,-1.016467571258545,0.2105463594198227,0.4243132770061493,-0.6772024631500244,0.005859077908098698,0.27489545941352844,-0.7727219462394714]},{"shape":[9],"values":[-0.1336117684841156,-0.19803184270858765,-0.25048550963401794,-0.04175126180052757,0.10430386662483215,0.0773598849773407,0.03341536223888397,0.1351887434720993,0.08531235158443451]}],"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096}} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-29.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-29.json new file mode 100644 index 0000000..0d98815 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-29.json @@ -0,0 +1 @@ +{"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-learning-v1","seed":29,"updates":48,"samples":65536,"createdAt":"2026-09-06T16:09:55.446Z","weights":[{"shape":[20,32],"values":[-0.7812262773513794,-0.5602768659591675,0.7913224697113037,0.3713487982749939,-0.5555347204208374,-0.259115993976593,-0.5675394535064697,0.8782848715782166,-0.8173646926879883,0.7604488134384155,0.2990923821926117,-0.29491594433784485,0.08978579193353653,0.9882049560546875,0.2977052330970764,-0.694548487663269,-0.7045120596885681,0.24104228615760803,-0.8352554440498352,-0.3745681345462799,0.24383309483528137,0.042887091636657715,-0.16252797842025757,-0.5277711153030396,0.7709505558013916,0.4435100853443146,0.32870808243751526,0.09128115326166153,0.4413225054740906,0.5039908289909363,0.5952858924865723,-0.7002553343772888,-0.2451329231262207,-0.21111492812633514,0.08310727030038834,-0.2567444145679474,-0.16389456391334534,0.4580329358577728,0.1884472668170929,0.21574082970619202,0.03352437913417816,0.18680152297019958,0.13375253975391388,-0.029622599482536316,0.1852881759405136,0.016360117122530937,0.18122759461402893,0.2947292625904083,0.2773993909358978,0.29337194561958313,-0.010827205143868923,-0.009077955037355423,-0.08895904570817947,-0.0639805719256401,0.15516936779022217,0.20264661312103271,0.3617059290409088,-0.06032402813434601,-0.030351124703884125,0.2797867953777313,-0.06628123670816422,0.09132246673107147,-0.26702967286109924,0.19050489366054535,-0.222618967294693,0.8100611567497253,-0.07267029583454132,-0.0022105365060269833,0.5488627552986145,-0.6803628206253052,0.0901704654097557,-0.15899984538555145,0.11232052743434906,-0.09793099015951157,0.15308885276317596,-0.22527076303958893,-0.1443660408258438,0.4670597314834595,0.17935629189014435,0.6566370725631714,-0.10461577773094177,-0.9325817823410034,-0.3381543457508087,0.09539281576871872,-0.4359312057495117,0.15623806416988373,-0.1504162698984146,-0.011589037254452705,-0.05136329308152199,0.20203475654125214,-0.4722755253314972,0.02382062003016472,-0.29577213525772095,0.34108150005340576,-0.3362981081008911,0.02524256892502308,-0.07477021217346191,-0.01691330224275589,0.45668601989746094,-0.05173414200544357,-0.5905953049659729,-1.3538761138916016,-0.39420026540756226,0.004922610241919756,-0.3715260922908783,0.16185574233531952,0.20383445918560028,-0.17767177522182465,-0.04324755817651749,-0.008196179755032063,0.18798287212848663,-0.15242062509059906,0.4290187954902649,-0.34575867652893066,0.261588454246521,-0.66036057472229,-0.01060807891190052,0.5404634475708008,-0.15645907819271088,-0.1131460964679718,0.10521556437015533,-0.5742849707603455,0.44171059131622314,0.28013816475868225,-0.06622034311294556,-0.4313105642795563,0.07645142823457718,0.2757766842842102,1.2969913482666016,0.9526742100715637,1.6071064472198486,-1.39457106590271,1.4551705121994019,0.18111619353294373,-0.9228824377059937,0.08710876852273941,0.5832308530807495,0.8983867764472961,1.4435209035873413,-1.3947055339813232,1.931810736656189,0.5684331655502319,-1.936052680015564,-1.6668745279312134,1.7406895160675049,-1.144309639930725,0.45761266350746155,-1.852567434310913,1.6270900964736938,1.4635940790176392,1.7548295259475708,-0.8784270286560059,-0.03390636667609215,-0.7733869552612305,1.9930577278137207,1.5493348836898804,-1.399267315864563,-1.2455384731292725,-0.6793205142021179,1.5332425832748413,-0.10702177882194519,0.3155101239681244,0.12919405102729797,0.26072898507118225,0.12165013700723648,-0.22461971640586853,-0.29246339201927185,-0.2334100902080536,-0.22837024927139282,0.384333997964859,-0.16745693981647491,-0.153361514210701,-0.5538187026977539,-0.24283654987812042,0.17723314464092255,-0.2027517408132553,0.11482609063386917,-0.027676697820425034,0.24020881950855255,-0.06392434984445572,0.08555492758750916,0.4899842143058777,0.05532388389110565,-0.17598390579223633,0.10805448889732361,-0.2391464114189148,-0.002468939870595932,0.2831767499446869,-0.3594035506248474,0.020072780549526215,-0.25229862332344055,0.2651166319847107,-0.11847811192274094,0.16640567779541016,-0.016530774533748627,-0.02173386886715889,0.26050132513046265,-0.23594743013381958,0.2564651668071747,-0.021962888538837433,-0.08896606415510178,0.19596336781978607,-0.014752073213458061,-0.2035893201828003,-0.31917476654052734,0.20010638236999512,-0.31170737743377686,4.354555858299136e-05,-0.014122143387794495,-0.22220467031002045,0.08353092521429062,0.04189712554216385,0.14531037211418152,0.35930922627449036,-0.2904878258705139,0.4459243416786194,-0.026339184492826462,0.2921150028705597,0.020086558535695076,-0.11136262118816376,-0.14830368757247925,-0.01047505997121334,0.05775384604930878,-0.29375237226486206,0.16288317739963531,0.16786335408687592,-0.22513961791992188,0.07846525311470032,-0.05281110107898712,-0.3807392120361328,-0.09849583357572556,-0.11161307990550995,-0.04977061599493027,-0.15544745326042175,0.20353300869464874,0.14936485886573792,0.12085267156362534,0.06888781487941742,0.04684794694185257,0.1394582986831665,0.09132624417543411,-0.2062046229839325,-0.26723185181617737,0.07246167957782745,-0.0016718273982405663,0.000339481484843418,0.2679312825202942,-0.05440336465835571,-0.012117539532482624,0.15272147953510284,-0.01691334694623947,0.27181780338287354,0.14367324113845825,0.19249792397022247,0.24992865324020386,0.14999955892562866,-0.21888864040374756,0.08994044363498688,0.015303967520594597,-0.3214448392391205,-0.14452683925628662,0.3218010365962982,0.09222419559955597,0.25074896216392517,-0.27105221152305603,-0.228887677192688,-0.289486289024353,-0.06157572194933891,0.07906362414360046,-0.2172461599111557,0.04504138231277466,0.10777714848518372,0.08680730313062668,-0.12852738797664642,-0.2985581159591675,-0.3081569969654083,0.054982393980026245,0.1354409158229828,0.17947372794151306,-0.14999975264072418,0.1137518510222435,-0.09327903389930725,-0.1944749355316162,0.34126678109169006,-0.18313084542751312,0.025434639304876328,0.06805305927991867,0.055031243711709976,-0.22965635359287262,-0.16465938091278076,0.031591035425662994,-0.12976957857608795,0.1259087175130844,0.2135431319475174,-0.060114786028862,-0.2713052034378052,0.013381600379943848,0.024797366932034492,-0.21018202602863312,-0.06328069418668747,-0.2520691454410553,-0.22713971138000488,0.2635674476623535,-0.15785612165927887,-0.17276521027088165,-0.12470505386590958,0.058700378984212875,-0.013267315924167633,-0.15169461071491241,-0.10132993757724762,0.1369570642709732,-0.21274462342262268,0.10247775912284851,-0.29426735639572144,-0.13992305099964142,-0.2080194056034088,-0.20145495235919952,0.18705585598945618,-0.32012948393821716,0.3075442314147949,-0.11203921586275101,-0.14103056490421295,0.11743821203708649,0.09678921848535538,-0.40137049555778503,0.23212918639183044,-0.08545303344726562,-0.4009428918361664,-0.1600007265806198,-0.2926003038883209,0.14506149291992188,-0.20846103131771088,-0.00020561600103974342,-0.18627779185771942,0.0377236008644104,-0.2899378538131714,0.1641903668642044,0.011854847893118858,0.29520079493522644,0.3853478729724884,0.24713757634162903,-0.016911910846829414,-0.3628389537334442,-0.04127059131860733,0.12452393025159836,-0.035087671130895615,-0.08223295956850052,0.30049535632133484,0.11587151139974594,-0.23456822335720062,-0.4470214545726776,0.25970765948295593,0.19170522689819336,-0.24674953520298004,-0.10413740575313568,-0.332980215549469,-0.20280495285987854,-0.2495821714401245,0.1438116431236267,-0.30656322836875916,0.3396279215812683,0.039826370775699615,-0.19677734375,-0.21102003753185272,0.2965305745601654,0.15274402499198914,-0.20625223219394684,0.0324527844786644,0.028922848403453827,-0.25981712341308594,0.2629712224006653,-0.020794592797756195,-0.36724528670310974,0.1187116876244545,-0.24488456547260284,-0.20988482236862183,0.11214832961559296,-0.3181012272834778,-0.1926967054605484,-0.19342513382434845,0.14345403015613556,-0.062302324920892715,-0.21597862243652344,0.3077905774116516,0.23893998563289642,-0.08166347444057465,0.03340578079223633,0.018889380618929863,0.1964087188243866,-0.1299189329147339,-0.21822527050971985,-0.13231664896011353,-0.1984526515007019,-0.18854458630084991,0.07716930657625198,-0.02549578621983528,-0.15016931295394897,-0.20323523879051208,0.08342169970273972,0.009309310466051102,-0.09418875724077225,-0.06044953688979149,0.20410281419754028,-0.004086857195943594,0.07724862545728683,-0.2936144769191742,-0.31447163224220276,-0.24582384526729584,0.0432920977473259,-0.218478262424469,0.2292633056640625,-0.3026933968067169,0.31524842977523804,-0.18153980374336243,0.0030812020413577557,0.07731188088655472,0.08331844955682755,-0.056961581110954285,-0.05206203833222389,-0.02418626844882965,0.18519732356071472,-0.1764908730983734,-0.26826897263526917,0.2913739085197449,0.23860996961593628,0.1825995147228241,0.24285948276519775,-0.07494228333234787,0.2427482157945633,-0.27144497632980347,0.13299371302127838,-0.050744589418172836,-0.2464868426322937,-0.06360290944576263,-0.2726570665836334,0.31119099259376526,0.19483722746372223,0.25066494941711426,-0.005016566254198551,0.061664171516895294,0.1758013665676117,-0.3436416685581207,-0.24943381547927856,-0.03228021040558815,0.018300721421837807,-0.2057548612356186,0.06150146573781967,-0.04294198378920555,-0.0264259222894907,-0.3303729295730591,-0.2692030072212219,-0.22814875841140747,0.33140090107917786,-0.112357959151268,0.1993466168642044,0.2470066249370575,0.3142997622489929,-0.016268793493509293,-0.25860732793807983,-0.33694595098495483,0.17081625759601593,0.19072780013084412,0.037448372691869736,-0.06184304505586624,-0.1020459532737732,0.28566741943359375,0.32366570830345154,-0.023366441950201988,-0.3758666515350342,0.1643650382757187,-0.03758605569601059,0.17140865325927734,-0.0513337142765522,-0.16386277973651886,0.0741131454706192,-0.16646669805049896,-0.274320125579834,-0.2655836343765259,-0.26898810267448425,-0.11554992944002151,-0.25926658511161804,-0.25876763463020325,-0.11144942045211792,-0.19529542326927185,0.08846376091241837,0.13244682550430298,0.20487961173057556,-0.23380988836288452,-0.24128468334674835,-0.21668457984924316,0.21033832430839539,-0.2568014860153198,0.11042507737874985,-0.2083297073841095,0.008328879252076149,-0.025215350091457367,-0.023964470252394676,0.06403842568397522,0.18096701800823212,0.0010026597883552313,0.01427439134567976,-0.2189875841140747,0.11669693142175674,0.010730734094977379,-0.15517660975456238,-0.041497230529785156,-0.03624912351369858,0.20074661076068878,0.24683284759521484,-0.17957879602909088,0.133704274892807,-0.2560625672340393,-0.20283368229866028,0.3231142461299896,-0.20686745643615723,-0.02918795496225357,-0.04721374437212944,0.08886683732271194,0.25189077854156494,-0.12986111640930176,0.21523603796958923,0.2424830198287964,0.23665663599967957,0.14677073061466217,-0.1805950403213501,0.31459659337997437,-0.2622368037700653,0.1536836326122284,-0.24385187029838562,-0.21771350502967834,-0.11470148712396622,0.14685028791427612,0.2108452171087265,0.07429499924182892,0.06512873619794846,0.16923631727695465,-0.04705612361431122,0.11930381506681442,-0.028645504266023636,0.22076112031936646,-0.06734645366668701,0.06968695670366287,-0.13017919659614563,-0.1511068195104599,0.009980103000998497,0.1954379379749298,0.15225769579410553,0.2077215611934662,-0.10000360012054443,-0.20234520733356476,0.30792948603630066,0.19312959909439087,-0.190922349691391,-0.10631544142961502,-0.0616106279194355,-0.06250187754631042,0.08949856460094452,0.2859296202659607,0.16627293825149536,0.08259572088718414,0.17760902643203735,0.29162800312042236,-0.07316127419471741,-0.1504751741886139,-0.07925203442573547,0.028151625767350197,0.29825249314308167,-0.0012781367404386401,-0.24412411451339722,-0.11306166648864746,0.15892145037651062,-0.17046505212783813,-0.14414122700691223,0.11669822782278061,-0.24864241480827332,-0.020423617213964462,0.0825691893696785,0.24608153104782104,0.04269499331712723,0.2331354022026062,-0.2835075855255127,-0.19812804460525513,-0.20316682755947113,0.1414734423160553,0.05111328512430191,-0.10481369495391846,0.34801438450813293,-0.13709913194179535,-0.23373207449913025,-0.1866595596075058,0.21698488295078278,-0.2590939998626709,-0.16889454424381256,-0.028769152238965034,0.29148879647254944,0.23669679462909698,0.10726755857467651,-0.04018246382474899,0.31838950514793396,0.0909787118434906,-0.31394147872924805,-0.3015976846218109,-0.27266329526901245,-0.10412454605102539,-0.15496334433555603,-0.06468474119901657,-0.13855214416980743,-0.05809742957353592,-0.09896644949913025,-0.15993693470954895,-0.14081907272338867,0.31115859746932983,-0.2224349081516266,0.038493476808071136,-0.18141910433769226,-0.24779687821865082,-0.20104600489139557,-0.21253305673599243,-0.000540928274858743,-0.14824256300926208,-0.02751029282808304,-0.051558151841163635,0.06069452315568924,-0.2302059531211853,0.1489153951406479,-0.05393669381737709,0.2784190773963928,0.1793469786643982,0.21956190466880798,0.2546943724155426,-0.330780029296875,-0.07097731530666351,-0.2339654564857483,-0.03680894523859024,-0.004618960898369551,0.2625179588794708,-0.216008260846138,0.08033356070518494,-0.14548254013061523,-0.24793145060539246]},{"shape":[32],"values":[0.24634675681591034,-0.12798520922660828,-0.2391349971294403,0.15213005244731903,-0.09833977371454239,-0.2793714106082916,0.3702792823314667,-0.10343068838119507,0.17288613319396973,-0.35298117995262146,-0.15665455162525177,0.37406638264656067,0.06796953827142715,-0.3649328947067261,0.08485689759254456,0.16561244428157806,0.07217051833868027,0.09297734498977661,0.39286425709724426,-0.0389639288187027,-0.1799056977033615,0.33998608589172363,-0.11751320958137512,0.38445693254470825,-0.17479144036769867,-0.3915707767009735,-0.23004625737667084,0.08715096861124039,-0.3014598488807678,-0.38768133521080017,0.07995599508285522,0.28490322828292847]},{"shape":[32,32],"values":[0.28973498940467834,-0.5410449504852295,-0.8264572024345398,0.06520415842533112,-0.4102485179901123,-0.955267071723938,-0.6461390256881714,0.03660126030445099,-1.0422857999801636,0.5916104316711426,0.37464025616645813,-0.7798923254013062,-0.734919548034668,0.3034369945526123,0.7456902265548706,0.24282512068748474,0.5401924252510071,1.1991081237792969,-0.5310462117195129,-0.9633222222328186,1.0046136379241943,-0.327852725982666,0.5434975028038025,0.36027219891548157,-0.6568329930305481,0.7549927830696106,0.6052625179290771,-0.4311177730560303,0.13539160788059235,1.1055424213409424,-0.4979882836341858,0.7167884707450867,-0.4637007415294647,0.2281436175107956,-0.5959152579307556,0.09141281992197037,-0.0037950549740344286,-0.26702138781547546,-0.2895486354827881,-0.42103147506713867,0.05143335834145546,-0.08068933337926865,-0.21329592168331146,-0.31826451420783997,-1.4000397641211748e-05,-0.1976223886013031,0.4028500020503998,0.11202697455883026,0.4586315155029297,0.06915900111198425,-0.2844584584236145,-0.15138258039951324,0.5109984278678894,0.02208125963807106,0.23150674998760223,-0.19980405271053314,-0.34374532103538513,0.12109727412462234,0.06972377747297287,-0.3094088137149811,0.3107718229293823,0.04376469552516937,-0.2790173292160034,0.8485510945320129,0.25107529759407043,-0.21497425436973572,-0.3409743905067444,1.0296472311019897,0.484866738319397,-0.21210521459579468,-0.6776278018951416,0.7063863277435303,1.067529320716858,0.5524924397468567,0.05975227802991867,-0.6340082883834839,0.5840277671813965,0.5538191795349121,1.0519428253173828,-0.6076704263687134,-0.4992177486419678,0.07549851387739182,0.5416562557220459,0.9072591066360474,0.7989566326141357,-0.22803053259849548,0.7790233492851257,0.7321038842201233,-0.5398131012916565,-0.05373099446296692,-0.8879536986351013,-0.5734808444976807,0.6568708419799805,-0.17199304699897766,-0.6259459257125854,0.22132693231105804,0.08034881949424744,0.6069542765617371,0.15073294937610626,-0.5178927183151245,0.1329227089881897,0.4076182544231415,0.46420711278915405,0.04264403507113457,0.11855927109718323,0.17949075996875763,0.07252241671085358,0.5535178184509277,0.045309897512197495,-0.3547971248626709,-0.6016296744346619,0.014379606582224369,0.2044605314731598,-0.6603805422782898,0.304015576839447,0.2683418393135071,-0.4152921736240387,-0.05886036530137062,-0.6052635312080383,0.06176399067044258,0.027743756771087646,-0.06693191826343536,-0.209868922829628,0.537281334400177,-0.057225301861763,-0.02736399881541729,0.5139009952545166,-0.09768586605787277,-0.07926667481660843,-0.44017544388771057,-0.7713490128517151,0.5505515933036804,-0.0464734248816967,-0.17102688550949097,-0.5645861029624939,-0.1364136040210724,-0.3749242424964905,-0.40783026814460754,-0.026731764897704124,-0.5935409069061279,-0.1845640242099762,-0.3598054051399231,0.5172508358955383,0.02749498561024666,0.24018433690071106,0.005121058784425259,-0.3100666403770447,-0.12930038571357727,0.3085586726665497,-0.1404188722372055,0.5950319766998291,-0.1080712303519249,-0.2683872878551483,0.49366387724876404,0.1204049289226532,-0.7551159858703613,0.04955446347594261,0.3193962275981903,-0.3496864140033722,0.7215724587440491,-0.19083531200885773,-0.007301434874534607,-0.3584243357181549,-0.362310528755188,0.113491490483284,-0.017404787242412567,-0.16213802993297577,-0.33270716667175293,0.15051791071891785,-0.15328596532344818,0.01392557192593813,-0.35660654306411743,0.006807831581681967,-0.2931954264640808,0.299259752035141,0.25371602177619934,-0.04384706914424896,-0.037238769233226776,-0.4528809189796448,-0.21791723370552063,0.05318811908364296,-0.11285888403654099,-0.11894652247428894,-0.3618643879890442,-0.24680352210998535,-0.18819570541381836,0.057931169867515564,-0.43841102719306946,0.1210857704281807,0.01750471256673336,-0.13098593056201935,-0.02397930435836315,-0.36471888422966003,0.4857352375984192,1.274552822113037,-0.7642486691474915,-0.47315284609794617,0.022970667108893394,0.5989998579025269,-0.20970171689987183,-0.6781348586082458,-0.3303883969783783,0.28502246737480164,0.05202944949269295,-0.3806994557380676,-0.155201256275177,-0.4973970949649811,0.9739876985549927,0.6849797964096069,0.008873692713677883,-0.7537391185760498,-0.9972413182258606,-0.40301546454429626,0.1894792765378952,-0.7125951051712036,-0.24939553439617157,0.35789528489112854,0.598572850227356,0.6372287273406982,0.7527804970741272,-0.6921091079711914,0.4910908043384552,0.8268334269523621,-0.27644380927085876,-0.34092023968696594,-0.55544513463974,-0.1715870201587677,0.36784377694129944,0.037845052778720856,-0.0831194818019867,0.04221135377883911,0.39126768708229065,0.3475315272808075,-0.03728589415550232,-0.0886756107211113,0.19057674705982208,0.6788679361343384,-0.0911911278963089,0.21603690087795258,-0.47822198271751404,-0.34487977623939514,-0.1985587477684021,0.3321402370929718,0.4096674919128418,-0.010310174897313118,0.23715530335903168,-0.05231330543756485,-0.07793932408094406,0.18921399116516113,-0.10263430327177048,-0.7214526534080505,0.02496834471821785,0.01206211932003498,-0.3961942195892334,-0.5846900939941406,-0.598490834236145,-0.02014652080833912,0.13562573492527008,-0.47527554631233215,0.08919261395931244,-0.15310527384281158,-0.39238253235816956,-0.0705425962805748,-0.28093990683555603,-0.4449191391468048,0.20483560860157013,-0.049476560205221176,-0.13834646344184875,-0.2719151973724365,-0.04921182245016098,0.3243148624897003,0.09498663246631622,0.43811851739883423,0.2243017852306366,-0.4748874604701996,-0.36491212248802185,0.3222978115081787,0.10290370136499405,0.3922441899776459,-0.33894285559654236,-0.15040665864944458,0.42479604482650757,0.4891136586666107,-0.18832367658615112,0.1908181756734848,0.4131510555744171,0.14088967442512512,0.3599676489830017,0.31998056173324585,0.00472420547157526,0.14624467492103577,0.8952357172966003,0.5469678640365601,0.3102000951766968,-0.5365906357765198,0.13686257600784302,1.1500412225723267,-0.2571139633655548,0.28021571040153503,-0.09804340451955795,0.6146405935287476,0.28477147221565247,0.8677011132240295,-0.7059022188186646,-0.7741734981536865,-0.3549143671989441,0.3086856007575989,0.668011486530304,0.4169404208660126,0.19476903975009918,0.7421868443489075,0.1242673471570015,-0.518695592880249,-0.28802287578582764,-0.343879759311676,-0.762458324432373,0.021958865225315094,-0.6340534090995789,-0.4543546438217163,0.4824621379375458,0.5301802158355713,-0.21621285378932953,-0.2056668996810913,0.08177340775728226,-0.31509578227996826,0.018097665160894394,-0.46225422620773315,0.41742897033691406,-0.17154011130332947,0.27352720499038696,0.42139288783073425,-0.38412848114967346,0.3345496952533722,0.6512423753738403,0.3669359087944031,-0.05681375041604042,-0.3801385760307312,0.2539207935333252,-0.10071910172700882,0.3102000951766968,0.2682085335254669,-0.19114944338798523,0.32670652866363525,0.7272768020629883,-0.5671923756599426,0.3471482992172241,-0.36453965306282043,-0.38075289130210876,0.2902016043663025,-0.1738939732313156,-0.5896941423416138,0.48318588733673096,-0.19956816732883453,-0.04756203666329384,0.508127748966217,-0.6252098083496094,-0.10778464376926422,-0.1343374103307724,0.7682515978813171,-0.11852575838565826,-0.4852006733417511,-0.3259974420070648,-0.3558543622493744,0.6180370450019836,-0.30879658460617065,0.09648140519857407,-0.847740113735199,0.4485898017883301,0.17824940383434296,0.026977375149726868,-0.09503543376922607,-0.404437780380249,-0.46912068128585815,0.41753873229026794,-0.6739163994789124,-0.39129623770713806,0.4893474280834198,-0.20777583122253418,0.6071867942810059,0.682578444480896,-0.2954968512058258,0.25457072257995605,0.3368857800960541,-0.8449335694313049,0.7932724952697754,-0.23960421979427338,0.2723166346549988,-0.03552224487066269,-0.23692508041858673,-0.46431082487106323,-0.4225209951400757,0.6333377957344055,-0.14707385003566742,0.3803320527076721,0.15662337839603424,-0.13986383378505707,-0.35769689083099365,0.9011930823326111,0.49599605798721313,-0.38413649797439575,0.1898200362920761,0.2032538503408432,-0.26886987686157227,0.1716214269399643,0.23839092254638672,-0.0326688177883625,0.33033138513565063,1.0100913047790527,-0.4370062053203583,0.6447597146034241,-0.11991941928863525,-0.2428024262189865,0.4591441750526428,-0.0036542031448334455,-0.7008862495422363,0.38367462158203125,0.4975453019142151,-0.06656394898891449,-0.05727805942296982,0.9299880266189575,0.43491852283477783,0.4299081563949585,-0.35945019125938416,0.15910303592681885,1.3281023502349854,0.2323150634765625,-0.019437013193964958,-0.3230731785297394,0.7092258334159851,0.5342548489570618,0.7040529847145081,-0.7698097229003906,-0.823293149471283,-0.8670211434364319,0.7978492379188538,1.3088274002075195,0.15358352661132812,0.4110774099826813,0.35062724351882935,0.2402467131614685,-0.059531498700380325,-0.5319064259529114,-0.832220733165741,-0.10382422804832458,0.5199766159057617,-1.2246495485305786,-0.512577474117279,0.40678858757019043,-0.25757938623428345,0.24627116322517395,1.1378660202026367,-0.8137826919555664,-0.20871226489543915,0.5217025279998779,0.9874327182769775,0.10349493473768234,0.03514113649725914,-0.1917121410369873,0.03492238372564316,0.6506175994873047,0.4766818583011627,-0.36053571105003357,-0.7845381498336792,-0.003745644586160779,-0.09838967770338058,-0.3913559317588806,0.10970311611890793,0.3793821632862091,-0.8676871061325073,0.034958478063344955,-1.1136517524719238,-0.3683367371559143,0.6646263003349304,-0.14149129390716553,0.04686257615685463,1.146405816078186,-0.6964967846870422,-0.3332774043083191,0.6065131425857544,-0.9358606338500977,-0.8184587359428406,0.6808913946151733,0.29108065366744995,-0.772972822189331,-0.09046132862567902,-0.33815667033195496,0.19319365918636322,-0.953075110912323,-0.545831561088562,-0.8375999331474304,-0.2878376543521881,-0.0332970954477787,-0.1003679409623146,-0.7831978797912598,-0.6855728626251221,0.6398205757141113,0.2483072429895401,0.2639893889427185,-0.4067416191101074,-0.16044451296329498,-0.5428904891014099,0.37182411551475525,-0.4130125939846039,-1.0600627660751343,-0.00537259504199028,0.19392308592796326,0.8062600493431091,0.5595628619194031,-0.36700108647346497,-0.03070291317999363,0.8113101124763489,-0.21050870418548584,0.36061161756515503,0.1720695048570633,-0.4087980389595032,0.3896872401237488,-0.3523116111755371,-0.5209660530090332,-0.9139407277107239,-0.20965991914272308,-0.5921805500984192,0.13092952966690063,0.30242252349853516,-0.7540211081504822,-0.27005535364151,0.5128797888755798,0.8080195784568787,0.309684693813324,0.3259839415550232,0.2735708951950073,-0.19698941707611084,0.05561663582921028,0.4202830195426941,-0.035978253930807114,0.5271927714347839,0.3207690119743347,-0.46831104159355164,0.6854113936424255,0.5812349915504456,-0.6624550819396973,0.3661787509918213,0.19396410882472992,-0.3373624086380005,0.48451849818229675,-0.23615604639053345,-0.036797091364860535,0.12211918830871582,-0.4562998414039612,-0.09896357357501984,0.2872767150402069,0.3189954161643982,0.01778334006667137,0.3217528760433197,-0.15546099841594696,-0.54010009765625,0.1359788477420807,-0.3577057123184204,-0.32855474948883057,-0.3858676254749298,0.22843143343925476,-0.002846956253051758,-0.0702151283621788,-0.1691153198480606,-0.09126486629247665,-0.39432618021965027,0.6933901309967041,-0.1745297759771347,-0.31163904070854187,0.12245514988899231,-0.04508258402347565,-0.3481594920158386,0.003542222548276186,0.048530213534832,-0.22558479011058807,0.3729837238788605,-0.3362500071525574,0.42817187309265137,0.3021634519100189,-0.1351853907108307,-0.3822517693042755,-0.8401013016700745,-0.03805891424417496,-0.1279073804616928,0.08176835626363754,-1.5038193464279175,0.4255935251712799,0.558860182762146,-0.05710865184664726,-1.3261759281158447,0.41733917593955994,-0.13939142227172852,0.51421719789505,0.44918784499168396,0.848525881767273,-0.2996837794780731,-0.7853986620903015,0.46525296568870544,-0.10906517505645752,0.14036443829536438,0.27064695954322815,-0.2561000883579254,0.9245616793632507,0.6700090765953064,-0.2609019875526428,-0.3949807584285736,1.3964823484420776,0.03586200252175331,0.28496095538139343,-1.2196961641311646,0.2661580443382263,-0.19105125963687897,-0.5681206583976746,0.07493648678064346,0.15835246443748474,0.4105754792690277,-0.6097162961959839,-0.3517274558544159,-0.4130825698375702,-0.5590596795082092,0.44368740916252136,-0.11628777533769608,-1.0499578714370728,-0.5689568519592285,0.4890921711921692,-0.06294434517621994,-0.5628564953804016,-0.27876245975494385,-0.2217947095632553,-0.3393351137638092,0.35364609956741333,-0.3046586811542511,-1.3043787479400635,0.15685172379016876,-0.24159936606884003,0.37476876378059387,0.463898628950119,-0.09133343398571014,-0.0028233106713742018,0.36240798234939575,-0.48838895559310913,0.3828364312648773,-0.11103462427854538,-0.29667332768440247,0.6313633322715759,-0.11866343766450882,-0.07539507746696472,-0.2547187805175781,0.7329267263412476,0.36063438653945923,0.03869938850402832,0.41189903020858765,-0.5308207869529724,-0.05596153065562248,0.6299906969070435,0.40878742933273315,-0.6703009605407715,-0.15214301645755768,0.4826943278312683,0.2626848816871643,0.03272094577550888,0.5964562892913818,-0.24623534083366394,0.6001583337783813,0.5722787976264954,-0.6904587745666504,0.272805392742157,-0.40913206338882446,-0.12129579484462738,0.3521156907081604,-0.017714915797114372,-0.5910543203353882,0.5259605646133423,0.9402877688407898,0.2583773732185364,0.14434579014778137,0.20042753219604492,-0.02709583379328251,-0.12106799334287643,0.18429982662200928,0.2693314850330353,-0.03550572693347931,0.4746996760368347,0.556167483329773,-0.14708982408046722,-0.23022931814193726,0.7426558136940002,0.2543995678424835,0.08339189738035202,-0.2836083173751831,-0.061586104333400726,-0.2451310008764267,0.10513130575418472,0.17144261300563812,-0.6500352025032043,0.01591130904853344,0.7042129635810852,0.09083348512649536,0.28078070282936096,0.20478373765945435,-0.16502945125102997,-0.22222790122032166,0.3985705077648163,-0.24857060611248016,-0.02523684874176979,0.28045347332954407,-0.25999534130096436,-0.10868982970714569,0.5765261650085449,0.054310161620378494,-0.4814302623271942,-1.0282461643218994,-0.016785889863967896,0.1986611783504486,0.12091987580060959,0.40154045820236206,-0.781632661819458,-0.1756410151720047,0.13816359639167786,0.8195673823356628,-0.25478479266166687,-0.2933003306388855,0.7115838527679443,0.2451380342245102,-0.29230746626853943,1.0539799928665161,0.16781164705753326,0.9412104487419128,0.5608577132225037,-0.890094518661499,0.683028519153595,0.2301977574825287,-0.847094714641571,0.19128789007663727,0.3893412947654724,-0.5099725127220154,0.7173230051994324,-0.20149002969264984,1.100445032119751,0.8730995059013367,-0.7801007032394409,-0.7420291900634766,0.10628417134284973,0.30920326709747314,-0.7133331298828125,-0.7004656791687012,-0.20960089564323425,0.5445324778556824,0.09813888370990753,-0.5192908644676208,-0.21938060224056244,-0.901496946811676,0.891741931438446,0.36098068952560425,-0.09804495424032211,-0.6778091192245483,-0.9942260384559631,-0.2479168176651001,-0.07631266117095947,-0.8508890867233276,-0.32669004797935486,0.016472307965159416,-0.10460688173770905,0.8541299700737,0.511819064617157,-0.30748966336250305,0.34271302819252014,0.48729655146598816,-0.27808600664138794,0.12077837437391281,0.47200167179107666,0.4017218053340912,0.20428645610809326,0.08455117791891098,-0.053935904055833817,0.017427828162908554,0.4820438623428345,0.6325896382331848,-0.3315508961677551,0.28191104531288147,0.14647796750068665,0.4693807363510132,0.10906501114368439,-0.12356812506914139,-0.6130954623222351,-0.4715564548969269,-0.289959192276001,0.16138888895511627,0.6533408164978027,-0.20434734225273132,0.10467150807380676,0.23922905325889587,0.286886602640152,0.08436887711286545,-0.36179056763648987,-0.7841504812240601,-0.19265934824943542,0.28007373213768005,-0.7004937529563904,-0.1202538013458252,-0.4505728781223297,-0.41526395082473755,-0.05275923013687134,-0.011165049858391285,0.5167484879493713,0.5624412298202515,0.2662222981452942,0.13671204447746277,-0.3293517827987671,0.6632835268974304,-0.3678348660469055,-0.11666931211948395,0.34430158138275146,0.6626098155975342,-0.5697770714759827,-0.09223742038011551,-0.3060261011123657,-0.056341953575611115,-0.755912721157074,-0.0696839988231659,0.4521799683570862,-0.11637464910745621,0.2996639013290405,0.007394472602754831,-0.48693332076072693,-0.13806605339050293,-0.5553992390632629,-0.523682713508606,0.4569709897041321,-0.0884450152516365,-0.5642644762992859,-0.006836562417447567,-0.14470525085926056,0.6594476699829102,-1.015129566192627,-1.3485356569290161,0.8064321279525757,0.1812475323677063,-0.6413338780403137,-1.0398906469345093,0.5691708922386169,0.9555869698524475,0.0943351462483406,-0.33986201882362366,-1.0844275951385498,0.0018854651134461164,0.35266798734664917,1.2741096019744873,-0.6492457985877991,-0.15951086580753326,0.5626740455627441,0.35410836338996887,0.4776092767715454,0.5136843919754028,-0.07243897765874863,0.9803959131240845,0.672015368938446,-0.6550537943840027,0.2982715368270874,-0.8241580724716187,-0.7474340796470642,0.6611464023590088,-0.23182567954063416,-1.2052497863769531,0.9307647347450256,0.8623417615890503,0.3652331531047821,0.010253174230456352,0.25888746976852417,-0.5516970157623291,0.014352729544043541,-0.5334020853042603,0.4170890152454376,-0.20025233924388885,-0.037974584847688675,0.6851063370704651,-0.007901554927229881,0.20806027948856354,0.7112900614738464,0.08389827609062195,-0.2506144642829895,-0.007202534470707178,0.37202489376068115,-0.1202557161450386,-0.1616758108139038,0.11860792338848114,-0.2598493695259094,0.24476243555545807,0.7588306069374084,-0.5267176032066345,-0.1318809539079666,-0.0321972519159317,-0.35570821166038513,0.11484435200691223,0.40840256214141846,-0.15339244902133942,0.1776481717824936,-0.5267637968063354,-0.2124343067407608,0.051935333758592606,-0.1581462174654007,0.7220465540885925,0.0093666547909379,0.41131460666656494,-0.24103304743766785,0.7682883739471436,0.23709702491760254,-0.7463274002075195,0.6468712687492371,0.5498613715171814,-0.7195895910263062,-0.4395795166492462,-0.17138926684856415,0.11449487507343292,-0.06701650470495224,0.36364322900772095,0.09572909027338028,-0.26366737484931946,0.6130459308624268,-0.12847848236560822,-0.7385125756263733,0.7184975743293762,-0.4706989526748657,-0.2635701298713684,0.26798999309539795,-0.07902538776397705,-0.9011198878288269,0.16634345054626465,-0.7299131155014038,-1.069161057472229,0.7822937965393066,0.5952023267745972,-0.033664293587207794,1.1153464317321777,0.6379733085632324,0.23621870577335358,-0.3024752736091614,0.6759923696517944,-0.7603055238723755,-0.39207470417022705,0.27635467052459717,0.8238145709037781,-0.883685827255249,-0.6721670031547546,0.12315457314252853,-0.23993834853172302,-0.3843708038330078,0.3588481843471527,0.1998826265335083,-0.5122799873352051,0.4874553680419922,-0.5221794843673706,-1.3320386409759521,0.2954331338405609,-0.8235512375831604,-0.42738887667655945,0.3911912739276886,0.42471328377723694,-0.8874000310897827,0.16962814331054688,-0.4252476394176483,0.2239254266023636,0.3448978066444397,0.13006921112537384,-0.20264776051044464,-0.005330030340701342,0.3708030879497528,0.4243864417076111,0.22747962176799774,0.41639214754104614,0.11848529428243637,-0.03160189837217331,0.02876836434006691,0.44946789741516113,0.0810856819152832,-0.16864930093288422,-0.04597419500350952,0.10901686549186707,-0.13542722165584564,-0.0686318576335907,0.1608073115348816,-0.500139057636261,-0.20351643860340118,-0.3517710566520691,0.11349942535161972,0.34518611431121826,0.039544109255075455,-0.340971976518631,0.02452239952981472,-0.1416822075843811,-0.22655464708805084,0.09155061841011047,-0.07285654544830322,0.8156485557556152,0.11189281940460205,0.0017009591683745384,0.04280130937695503,-0.5711523294448853,-0.6362268328666687,-0.5560252666473389,0.4365249276161194,-0.9930769205093384,0.38956132531166077,0.4349776804447174,-0.8628082275390625,-0.9573285579681396,0.8471400737762451,0.37748366594314575,0.3869539797306061,0.4578506052494049,0.9010730981826782,-0.06049223989248276,-0.42984485626220703,0.5407437086105347,-0.5860691666603088,0.6376529932022095,0.6460440158843994,-0.7591471672058105,0.6456218957901001,0.20135483145713806,-0.2580212354660034,-0.32178521156311035,0.9361374974250793,-0.5668684840202332,0.377401739358902]},{"shape":[32],"values":[0.27484822273254395,0.07017829269170761,0.31222298741340637,-0.26092275977134705,-0.15073168277740479,0.004270494449883699,0.09315135329961777,0.0789744183421135,-0.34845560789108276,0.1151144802570343,0.28451868891716003,0.08370808511972427,-0.2124018520116806,0.2536422312259674,-0.20926815271377563,0.16257302463054657,0.06246935948729515,0.22304721176624298,-0.12075994163751602,-0.23499582707881927,-0.02669578418135643,-0.21122883260250092,-0.19161422550678253,0.3544677495956421,0.01574050821363926,0.2338884323835373,0.23306609690189362,0.1974865049123764,-0.2242376059293747,0.19196905195713043,0.28060412406921387,-0.09735903888940811]},{"shape":[32,9],"values":[-1.1989352703094482,0.4639102816581726,-0.09549835324287415,-1.0614827871322632,0.45392724871635437,0.4187159240245819,-0.7498741745948792,0.3389471471309662,0.4555675983428955,0.8225334882736206,0.2088208943605423,-1.0268864631652832,0.5053839087486267,0.03519011288881302,-0.06163545325398445,0.7745183110237122,0.4196527600288391,-0.0466555655002594,0.12399584800004959,-0.15092188119888306,-1.3188810348510742,0.30616259574890137,0.4311060309410095,-0.10134226083755493,-0.1524725705385208,0.22605833411216736,0.37626197934150696,-0.02695501036942005,0.060248345136642456,0.7692108750343323,-0.4738582670688629,-0.2354086935520172,0.9360381364822388,-0.23487141728401184,-0.7162982821464539,0.3836323320865631,0.9920768737792969,0.41326776146888733,0.18589121103286743,0.7185810208320618,-0.37620195746421814,-0.11501746624708176,-0.3902682960033417,-0.32619425654411316,-0.23866814374923706,0.40168261528015137,0.5629134178161621,-0.8152179718017578,0.4005160927772522,0.6371474862098694,-0.11043927818536758,0.40563884377479553,-0.3035918176174164,-0.5097577571868896,-0.01896040327847004,0.3852965235710144,-0.23279635608196259,0.12074054032564163,0.2607788145542145,-0.6473749279975891,0.21546311676502228,0.3981231451034546,-0.7486724853515625,-0.9036577939987183,-0.07188572734594345,-0.17500925064086914,-0.12828198075294495,0.54082190990448,0.1338871866464615,-1.1942641735076904,-0.1890755146741867,0.04491666704416275,1.3094971179962158,2.1397318840026855,0.8680766224861145,0.3172242045402527,0.08545190840959549,-0.26084816455841064,-0.3471822738647461,-0.5184475183486938,-0.3615112006664276,-1.3405882120132446,-0.3503320813179016,0.10489724576473236,-0.40770116448402405,0.3014720380306244,0.4629644751548767,-0.5096436738967896,-0.02840421162545681,0.3307543098926544,-0.6321372985839844,0.2126784324645996,-0.2461584061384201,-0.8141162395477295,-0.007499991916120052,-0.11425994336605072,-0.06885351985692978,0.42656150460243225,0.2042231559753418,0.27089250087738037,0.4609428644180298,-0.5869835615158081,0.45528584718704224,0.6533735394477844,-0.3081764578819275,-0.029085300862789154,0.35983648896217346,-1.0825302600860596,1.840780258178711,1.3460924625396729,-0.05206548050045967,0.058769989758729935,0.13989844918251038,0.1790313869714737,-1.3154758214950562,-1.0779362916946411,-0.7234088182449341,-0.7587615251541138,0.23976561427116394,-0.28063642978668213,-0.9544067978858948,0.3669275939464569,0.3355006277561188,-1.3683897256851196,0.6036087274551392,0.2854732275009155,-0.040892213582992554,-0.017766311764717102,0.664310097694397,0.034367628395557404,-0.3912004828453064,0.8852044939994812,-0.4016716778278351,-0.8002798557281494,0.8837572932243347,0.5779502391815186,-1.172762155532837,-0.6932163834571838,0.69698566198349,-0.4715871214866638,-0.826049268245697,0.6380746960639954,0.5892857313156128,-0.0283112283796072,-0.3601137697696686,-0.8095453381538391,-0.5677653551101685,0.39043793082237244,-0.5441881418228149,-0.6161037087440491,0.6968299150466919,-0.007436718791723251,1.2082284688949585,-0.9138746857643127,-1.1967097520828247,0.11937402188777924,-0.7782554626464844,-0.20588481426239014,-0.17902769148349762,-0.6517143249511719,0.6096556782722473,0.6457455158233643,-0.09724759310483932,0.6590502262115479,1.107347011566162,0.01780693605542183,0.4613862931728363,-0.4488401710987091,-0.9697385430335999,-0.2091834545135498,-0.6430327296257019,0.5233576893806458,0.542340099811554,1.5748398303985596,-0.07745029032230377,0.6393835544586182,-0.031093118712306023,-0.8442904949188232,-0.5828650593757629,-0.6673150062561035,-0.5463959574699402,-0.6497985124588013,0.8877924680709839,-0.3771786689758301,-0.7189632058143616,0.5951188206672668,-0.4205544888973236,-0.3205733597278595,1.1391934156417847,1.4878228902816772,0.09169577062129974,-0.08462534844875336,0.4517227113246918,-0.0677584707736969,-0.5606839060783386,-0.09860044717788696,-0.38418251276016235,0.1694307029247284,0.04625944048166275,-0.15482406318187714,0.9093537926673889,0.15518783032894135,-0.6497834920883179,0.9425863027572632,-0.18020352721214294,-0.707401692867279,0.8024618029594421,-1.2725878953933716,0.5821700692176819,-0.011521488428115845,-0.8319674730300903,0.3291285037994385,-0.08420336246490479,-1.4965994358062744,0.5199054479598999,0.3584181070327759,0.3111768662929535,0.34140244126319885,-0.14930962026119232,0.6970545649528503,0.3993353545665741,-0.572228193283081,0.5523932576179504,0.1807057410478592,-0.7877286076545715,-0.9324752688407898,-1.063322901725769,-0.21959830820560455,-1.0427623987197876,-0.33658987283706665,0.20687271654605865,-0.5611068606376648,0.47485998272895813,0.2047981172800064,-0.07872994989156723,-1.4974465370178223,-1.4006084203720093,0.002572618890553713,-0.4718643128871918,-0.5213684439659119,0.8278821110725403,1.0325000286102295,1.0976159572601318,-0.20906506478786469,0.37453925609588623,-0.9520119428634644,0.4233752489089966,0.5539579391479492,-0.10041161626577377,0.1491871178150177,0.6548774838447571,-0.7788050174713135,0.09723006188869476,0.026184607297182083,1.0046941041946411,0.0972708985209465,-0.5049022436141968,0.5964870452880859,-0.30477651953697205,-0.24866484105587006,-0.31968948245048523,-1.2099682092666626,-0.6794850826263428,-0.38200652599334717,-1.0299255847930908,0.14934559166431427,0.3854273855686188,0.28860604763031006,0.39897727966308594,0.5748359560966492,0.3556179702281952,-0.024709319695830345,-0.8182770609855652,0.42708539962768555,0.23391655087471008,-0.7204897403717041,0.5330204963684082,0.7760778069496155,-0.7849507331848145,-0.005234014242887497,-0.7128791213035583,0.7473661303520203,-0.14271381497383118,-0.7289249897003174,0.7691843509674072,0.1335296928882599,-0.2273411899805069,0.6997437477111816]},{"shape":[9],"values":[-0.11376062035560608,-0.14930874109268188,-0.1807243525981903,-0.042470742017030716,-0.004386167041957378,0.011529074050486088,-0.004605733789503574,0.19349737465381622,0.17707209289073944]}],"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096}} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-47.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-47.json new file mode 100644 index 0000000..f657465 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/driver-47.json @@ -0,0 +1 @@ +{"format":"ignition-driver-v1","algorithm":"imitation-mlp","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-learning-v1","seed":47,"updates":48,"samples":65536,"createdAt":"2026-09-06T16:10:27.396Z","weights":[{"shape":[20,32],"values":[0.7642660737037659,-0.8859182000160217,-0.5176710486412048,0.3376449942588806,-0.10664648562669754,0.676186740398407,-0.5060363411903381,-0.2038159966468811,-0.6507564783096313,-0.5048707723617554,0.17842808365821838,-0.7504705190658569,0.29925915598869324,-0.02318069525063038,-0.2735099196434021,-0.16358107328414917,-0.3111725151538849,0.26450178027153015,0.7350045442581177,0.638462483882904,-0.8949164152145386,-1.0099148750305176,-0.2804567217826843,-0.26642102003097534,0.5651455521583557,0.8924463391304016,-0.5133675336837769,0.8997725248336792,0.46127063035964966,-0.19602170586585999,-0.2782912850379944,0.041944995522499084,-0.007601778022944927,0.08722333610057831,0.28328436613082886,-0.05754195153713226,0.04414936527609825,0.4414471685886383,0.1857951283454895,0.12396416813135147,0.18964123725891113,0.05862794443964958,0.009896034374833107,0.05080259218811989,0.14835768938064575,0.2706579566001892,0.19805659353733063,-0.3148568868637085,-0.2682976722717285,0.17287760972976685,-0.07331636548042297,0.485231876373291,0.23381772637367249,-0.07099061459302902,-0.14993859827518463,0.20926466584205627,0.1016392856836319,-0.011439988389611244,0.2197723388671875,0.1347050964832306,0.1216159388422966,0.07544031739234924,0.17560110986232758,-0.19242390990257263,0.050755783915519714,0.16603292524814606,0.11934289336204529,0.09101244062185287,0.5020192861557007,-0.6208327412605286,-0.23257885873317719,0.29104092717170715,-0.25879883766174316,-0.231947124004364,0.5565145611763,0.0509224459528923,-0.09063924849033356,-0.20653361082077026,-0.16676031053066254,-0.15417639911174774,0.2701468765735626,-0.30092477798461914,0.3325224220752716,0.5347676873207092,0.34248700737953186,-0.181660458445549,0.2524857223033905,-0.026931332424283028,0.7868600487709045,0.3922673463821411,-0.0938287228345871,-0.16177129745483398,-0.2094954252243042,-0.18202842772006989,0.24043726921081543,-0.8132220506668091,0.34130656719207764,0.4515869915485382,0.24021638929843903,-0.2176899015903473,-0.3150295317173004,0.12239711731672287,0.2307722121477127,-0.250873327255249,0.26066842675209045,0.21399566531181335,-0.035759784281253815,0.25998783111572266,0.3238540589809418,0.5754225850105286,-0.33731770515441895,0.49159693717956543,-0.0002798694185912609,-0.06319838017225266,0.1655692607164383,-0.23880605399608612,-0.3183359205722809,0.13245493173599243,0.013336270116269588,0.14063389599323273,0.2902415990829468,0.34963735938072205,-0.20436882972717285,0.4861222505569458,0.32077619433403015,0.5440286993980408,-0.16748107969760895,-0.23785129189491272,1.5046969652175903,0.335479736328125,1.5494805574417114,-1.9615793228149414,1.7880560159683228,-1.2943705320358276,1.6060060262680054,-2.075364112854004,0.9817459583282471,1.4549915790557861,-0.8598465323448181,1.16006600856781,1.4648237228393555,1.1368632316589355,1.294223666191101,1.9530129432678223,-1.176387071609497,1.9064488410949707,1.5138956308364868,-1.509608268737793,-0.9118660688400269,-0.14679782092571259,1.6928884983062744,1.0497459173202515,0.3287605047225952,0.028737647458910942,0.9630666971206665,0.9817900657653809,-0.6381598711013794,-1.0904531478881836,1.4460508823394775,1.8514190912246704,0.11378590762615204,-0.07049398869276047,-0.3348352909088135,-0.29896968603134155,0.11280446499586105,-0.045449770987033844,-0.04011223092675209,-0.02909564971923828,-0.3916924297809601,0.45235776901245117,0.0069480882957577705,-0.0901031345129013,0.3677041530609131,0.07143451273441315,0.09963955730199814,0.2476356029510498,-0.07341286540031433,0.44463011622428894,-0.2541571259498596,0.04663533717393875,-0.023980464786291122,0.25771263241767883,0.2194179892539978,0.5643407106399536,0.1161392405629158,0.07342984527349472,0.5094682574272156,-0.06146106868982315,-0.08237854391336441,-0.20370036363601685,-0.07098361104726791,-0.3143114149570465,-0.26052147150039673,0.24801546335220337,-0.0698634535074234,0.2699098587036133,-0.058588702231645584,-0.26963409781455994,0.28028079867362976,-0.04456978291273117,-0.08073339611291885,0.07685921341180801,-0.11570974439382553,-0.053830835968256,-0.10251431167125702,-0.16669681668281555,-0.1658896505832672,-0.030430104583501816,-0.1761142760515213,0.1656298041343689,-0.12203798443078995,0.23590826988220215,-0.07380900532007217,-0.14254625141620636,-0.2616182267665863,0.17938487231731415,0.17535898089408875,0.21154406666755676,0.39099428057670593,-0.030447717756032944,-0.3109065592288971,-0.27872130274772644,-0.20980431139469147,-0.057675257325172424,-0.07336287945508957,-0.3389981985092163,0.11691872030496597,0.06648015975952148,-0.13689830899238586,-0.15082231163978577,-0.03477846458554268,0.1013636365532875,0.02423730678856373,0.11385323852300644,-0.11205247789621353,-0.13102620840072632,0.03968213126063347,0.3577044606208801,-0.25642287731170654,-0.01844724640250206,-0.013985131867229939,0.0031106690876185894,-0.05905749648809433,-0.11810483038425446,0.06435225903987885,0.11573116481304169,0.2841416597366333,0.11435645818710327,-0.033357877284288406,0.1476903259754181,0.09530334174633026,-0.1387508511543274,0.010502287186682224,-0.1259043663740158,0.11711632460355759,-0.031210849061608315,0.17438045144081116,-0.013342701829969883,-0.15988875925540924,-0.1500706523656845,-0.20836955308914185,-0.025575943291187286,-0.1570126861333847,0.006576478015631437,-0.026678111404180527,0.11604397743940353,-0.1700764149427414,-0.12961134314537048,-0.09378653764724731,-0.23667646944522858,0.05039387196302414,0.11883346736431122,0.27126315236091614,0.17583882808685303,-0.054657287895679474,-0.1626112312078476,-0.13307243585586548,0.1021299958229065,0.298612117767334,-0.2038886547088623,-0.026257874444127083,-0.12271218001842499,0.0733465701341629,0.15375113487243652,0.318191260099411,0.2063329666852951,-0.006503554526716471,-0.28827646374702454,0.254949688911438,0.06256510317325592,-0.3328310549259186,-0.10593170672655106,-0.034074731171131134,-0.2087385654449463,0.015152321197092533,0.006368872243911028,-0.16991011798381805,0.17696721851825714,0.2351577877998352,0.007912367582321167,-0.15932199358940125,-0.2178586721420288,0.31003206968307495,-0.16231010854244232,0.1609722077846527,-0.018508747220039368,-0.1928318589925766,-0.20247367024421692,0.2849484384059906,-0.22304046154022217,0.17472542822360992,0.14631463587284088,0.15407320857048035,-0.09109719097614288,-0.07944086939096451,-0.219941645860672,0.048623379319906235,-0.12151635438203812,0.1067269816994667,-0.3039284646511078,0.12594744563102722,0.08970152586698532,0.23435737192630768,-0.11489341408014297,-0.2664717137813568,0.13801389932632446,-0.2904728651046753,0.1276857554912567,0.21013732254505157,0.21016329526901245,0.17830511927604675,-0.2731276750564575,-0.14870750904083252,-0.3262917101383209,-0.0662626326084137,0.24945279955863953,-0.28383907675743103,-0.25563788414001465,0.005725543014705181,-0.35231828689575195,-0.24541613459587097,-0.033316511660814285,0.11343008279800415,0.16577684879302979,-0.19352446496486664,-0.33450859785079956,-0.21633964776992798,-0.2929517328739166,0.2898786664009094,0.18850834667682648,0.007254873402416706,0.23238874971866608,-0.026006966829299927,0.20660139620304108,0.20457759499549866,-0.12258663773536682,-0.3056347668170929,0.167873352766037,0.051163170486688614,0.020939549431204796,0.1495826095342636,-0.32112184166908264,0.22353890538215637,-0.025601180270314217,-0.056460749357938766,0.24552035331726074,0.12329220771789551,-0.1887638121843338,-0.2659187912940979,0.18563351035118103,-0.07183552533388138,0.20028096437454224,0.12981432676315308,-0.21941077709197998,0.03404701128602028,-0.06913003325462341,-0.017423469573259354,0.01021801121532917,-0.07243424654006958,-0.19425690174102783,-0.22082865238189697,-0.13092629611492157,0.017697691917419434,0.16851924359798431,0.05910622328519821,0.053972404450178146,-0.2185429036617279,-0.2129264920949936,0.3544588088989258,-0.15352721512317657,-0.24385294318199158,0.17931203544139862,0.05836230888962746,-0.07639817893505096,-0.054537333548069,0.2996859848499298,-0.22676654160022736,-0.22585780918598175,0.31393030285835266,0.011610772460699081,-0.22795680165290833,0.1422731578350067,0.09344843775033951,0.151397243142128,-0.23306655883789062,-0.014511614106595516,0.02212386392056942,0.22960156202316284,0.007362072821706533,0.21678517758846283,-0.08941438049077988,-0.1757681965827942,0.11327728629112244,0.16780947148799896,-0.025875888764858246,-0.14572514593601227,-0.020711075514554977,-0.042427562177181244,-0.09940113127231598,-0.19062285125255585,-0.002447987673804164,0.02070520631968975,-0.2041614055633545,0.2862214148044586,-0.24729302525520325,0.18407073616981506,-0.06438480317592621,0.12988786399364471,0.20229648053646088,-0.05718747526407242,0.05636388808488846,0.21812017261981964,0.129803866147995,0.2407943159341812,-0.13947613537311554,-0.13336150348186493,-0.08550170809030533,0.05614316835999489,0.17776605486869812,0.1913401335477829,-0.07810501009225845,-0.06949042528867722,0.2647789716720581,0.020604345947504044,0.170859694480896,-0.21073678135871887,-0.13365507125854492,-0.019383737817406654,-0.24484066665172577,-0.1601480096578598,-0.06930209696292877,-0.17235884070396423,0.13314290344715118,-0.09454570710659027,-0.22560900449752808,-0.304936021566391,0.29843011498451233,-0.16374634206295013,0.2727777361869812,0.26254284381866455,0.09906600415706635,0.2242613434791565,-0.16797806322574615,-0.21822504699230194,0.12679344415664673,0.30927416682243347,-0.2862755358219147,0.15936893224716187,0.29118213057518005,-0.2655089795589447,-0.10460435599088669,0.12188900262117386,-0.20252688229084015,-0.3567519187927246,0.150675967335701,-0.12128141522407532,-0.2213735729455948,0.05866129696369171,0.10331568121910095,0.31844910979270935,-0.21906982362270355,0.21363689005374908,0.2509174346923828,-0.1660897433757782,0.3423292934894562,0.057207196950912476,-0.08805181086063385,-0.07468537241220474,0.19142086803913116,0.22528508305549622,0.12106640636920929,-0.1409514844417572,0.23556998372077942,0.3482441008090973,0.26556047797203064,-0.06275418400764465,-0.24470721185207367,-0.04660329595208168,0.25953108072280884,-0.2495579719543457,0.12101231515407562,-0.07839611917734146,0.037839967757463455,0.2205539494752884,0.27633464336395264,-0.1245683878660202,-0.2940889596939087,0.30288150906562805,0.061939891427755356,0.1909908503293991,0.30122390389442444,0.25386014580726624,-0.23543785512447357,-0.07083836197853088,-0.11942766606807709,0.27911606431007385,-0.03807346522808075,0.16373880207538605,0.22639286518096924,-0.20086582005023956,0.18645894527435303,-0.14422741532325745,-0.11010591685771942,-0.28200867772102356,-0.22135889530181885,-0.09748317301273346,-0.36989331245422363,-0.09570945054292679,-0.21300330758094788,-0.10670150816440582,0.19341398775577545,0.12171462923288345,-0.1570129543542862,0.1459074318408966,0.15779036283493042,-0.015396379865705967,0.046085234731435776,0.15077126026153564,0.23663978278636932,-0.16853074729442596,-0.018919210880994797,-0.3116133511066437,0.24642087519168854,0.08398187905550003,-0.1344626396894455,-0.06713007390499115,0.207911416888237,0.15616737306118011,-0.15581893920898438,0.006961256731301546,0.2106332927942276,-0.35548198223114014,-0.29628559947013855,0.10168889164924622,0.17510391771793365,0.21861691772937775,0.18708935379981995,0.23405523598194122,-0.17571894824504852,-0.009943168610334396,0.17038242518901825,-0.12683601677417755,-0.022037336602807045,0.029753945767879486,0.07607690244913101,-0.10470326989889145,-0.22139191627502441,0.29887646436691284,0.23647919297218323,-0.16792555153369904,0.18634232878684998,-0.16881179809570312,0.2631217837333679,0.05765256658196449,-0.2689540982246399,0.23627659678459167,0.07537844777107239,0.016077497974038124,0.031114649027585983,-0.2908685803413391,-0.16700828075408936,-0.2546476721763611,-0.2338189035654068,0.11538553237915039,-0.10041389614343643,0.0031951682176440954,0.2193378359079361,0.11665081977844238,0.03850824758410454,0.06648789346218109,0.19711504876613617,0.12385012209415436,0.15862929821014404,0.25559455156326294,-0.26926514506340027,-0.08998427540063858,-0.12931008636951447,-0.12222584336996078,-0.08710826933383942,0.3258736729621887,-0.15425914525985718,-0.27380824089050293,0.06384579092264175,-0.3129734396934509,0.05170625448226929,-0.04557335004210472,-0.08281521499156952,0.2061460316181183,0.14843516051769257,-0.0630892738699913,-0.3033891022205353,0.3346603512763977,-0.32323363423347473,-0.022978385910391808,0.07232430577278137,0.3219410479068756,0.1396610587835312,-0.14545029401779175,0.18062016367912292,0.20252522826194763,-0.1268305629491806,-0.008755484595894814,-0.2608242928981781,0.21385930478572845,0.23271970450878143,-0.20864370465278625,-0.2259093075990677,-0.021647095680236816,-0.06459854543209076,0.1072925552725792,-0.0940999835729599,0.10991126298904419,0.3176804780960083,-0.023783670738339424,-0.02707580476999283,-0.2791936993598938,-0.04681647941470146,0.35295477509498596,-0.30843982100486755,0.1938197761774063]},{"shape":[32],"values":[-0.32820335030555725,0.37408509850502014,-0.0685834065079689,-0.010780831798911095,-0.029296591877937317,0.1541990488767624,-0.08756042271852493,0.13906830549240112,0.4383932650089264,0.30744469165802,-0.19423717260360718,0.18297681212425232,-0.35753899812698364,0.26570671796798706,-0.08680853992700577,0.17385108768939972,0.2667115032672882,0.025370929390192032,-0.08941490948200226,-0.18718621134757996,0.15865930914878845,0.46011486649513245,-0.23619486391544342,0.3392120897769928,0.009128840640187263,-0.24833561480045319,-0.016718227416276932,-0.2802165746688843,-0.3557579517364502,0.39297017455101013,-0.010324415750801563,-0.1772882342338562]},{"shape":[32,32],"values":[0.33825764060020447,0.6276324987411499,1.1047974824905396,-0.4963424503803253,0.12023838609457016,-0.8267486095428467,0.12767043709754944,-1.212653398513794,0.9126662611961365,0.8415391445159912,1.0834338665008545,0.7058338522911072,-0.9893162846565247,0.4829046428203583,-1.0141960382461548,0.16788364946842194,0.6356146931648254,1.0408365726470947,0.23865114152431488,1.229690432548523,-0.9279496669769287,1.3250972032546997,0.747772753238678,-0.01093249674886465,1.1563490629196167,-1.0140433311462402,0.5579809546470642,1.1642168760299683,1.020638108253479,-0.6619285345077515,0.954376220703125,0.510357677936554,-0.6234790086746216,-0.3752020001411438,-1.0065795183181763,-0.10189000517129898,0.8261911869049072,0.8924025893211365,-1.0843595266342163,-0.034850191324949265,-0.8804568648338318,0.3590560555458069,-0.7364476323127747,0.06381892412900925,-0.5195269584655762,-0.3496303856372833,-0.09408829361200333,0.400779664516449,-0.460235059261322,0.35214924812316895,-0.6301119923591614,-0.19843657314777374,0.19970501959323883,-0.7670794725418091,-1.2616451978683472,-0.6576301455497742,0.07330313324928284,1.3239303827285767,0.6846973299980164,-0.13018988072872162,-0.2574775218963623,0.04697764292359352,-0.21727563440799713,-0.6874598264694214,-0.15809500217437744,0.16386961936950684,0.03394830599427223,-0.33973586559295654,0.6859847903251648,0.43992725014686584,-0.3769703805446625,-1.0226577520370483,0.009286032989621162,0.1339671015739441,0.1581556648015976,0.5853574275970459,-0.23428885638713837,0.6920596361160278,-0.26551422476768494,0.8015831708908081,-0.13587671518325806,-0.09059738367795944,-0.39273133873939514,1.0676015615463257,-0.32115888595581055,-0.3244577944278717,-0.27112463116645813,-0.23570901155471802,0.14691920578479767,0.2885919511318207,0.6671486496925354,0.7298027276992798,0.759126603603363,-0.5776955485343933,0.2550279200077057,-0.4045826494693756,0.27708420157432556,-0.36287030577659607,-0.005963652860373259,0.1363198459148407,-0.6022935509681702,-0.12029567360877991,0.6614147424697876,1.020593285560608,0.1709303855895996,-0.4829106330871582,-0.1767757087945938,-0.6185674667358398,0.2525758743286133,-0.876868486404419,0.47808191180229187,-0.599977433681488,0.049985237419605255,-0.14970919489860535,0.26285892724990845,-0.6659398078918457,0.8829501867294312,0.2136974185705185,0.4870053827762604,0.1922159492969513,-0.5188245177268982,0.2500329613685608,-0.9173609614372253,-0.6246325373649597,-0.07119028270244598,0.28811097145080566,-0.12345172464847565,0.07838699221611023,-0.10404328256845474,-0.052637629210948944,-0.1843923181295395,-0.40840935707092285,0.6198450326919556,-0.2018042504787445,-0.15547943115234375,-0.400675505399704,-0.01852801814675331,0.17123721539974213,0.3116300404071808,0.5656038522720337,-0.09123308211565018,0.32633692026138306,-0.4370247423648834,0.23043449223041534,0.018544664606451988,0.21173979341983795,0.12383551150560379,0.6645053625106812,-0.19556161761283875,-0.24775972962379456,-0.20069094002246857,-0.24524956941604614,0.25817179679870605,0.034904684871435165,0.648913562297821,0.21831481158733368,0.5107675790786743,-0.453000009059906,-0.19275452196598053,0.1811143159866333,-0.16354918479919434,0.16113369166851044,-0.029767299070954323,0.6322026252746582,-0.6394085884094238,-0.23110488057136536,0.28027287125587463,0.7242629528045654,0.0883384644985199,0.4498940408229828,0.13651920855045319,-0.9127207398414612,-0.2795158922672272,-0.6181976199150085,-0.2164575159549713,-0.49857646226882935,0.478290319442749,0.12740087509155273,0.08766115456819534,-0.3656131625175476,0.42030343413352966,0.11403094977140427,0.40881600975990295,-0.19045758247375488,-0.06137601658701897,-0.6242613792419434,-1.003369927406311,-0.22872944176197052,-0.16814731061458588,0.44524630904197693,0.13208527863025665,0.05758564919233322,-0.4369611144065857,0.4186098277568817,0.18881931900978088,-0.31141984462738037,0.8838779330253601,0.2986043691635132,-0.335144966840744,-0.9905152916908264,-0.40008431673049927,0.24080277979373932,-0.12643174827098846,0.9164106249809265,-0.5867212414741516,0.02643107995390892,-0.24918705224990845,0.7183854579925537,0.18601848185062408,0.24919074773788452,-0.5623005032539368,0.7791758179664612,-0.5403348803520203,0.012448693625628948,-0.4314817786216736,-0.3183552324771881,0.30043983459472656,-0.1627698391675949,0.701115608215332,0.7810440063476562,0.4977714419364929,-0.5729568004608154,0.15783563256263733,-0.2584192454814911,-0.21445617079734802,-0.30104002356529236,-0.7085037231445312,0.7111759185791016,-1.0034717321395874,0.31597548723220825,0.5114057660102844,1.1410144567489624,0.12403113394975662,-0.5817460417747498,-0.8991144895553589,-0.49533262848854065,0.388945609331131,-1.0793458223342896,0.4202127456665039,-0.5005974173545837,-0.1264878809452057,-0.6079897284507751,-0.0824420154094696,-1.2579764127731323,1.0097360610961914,-0.4971940219402313,-0.12561927735805511,0.1341545432806015,-0.5999370813369751,0.5185337662696838,-1.119789481163025,-0.9776846170425415,-0.5710399746894836,0.832218587398529,-0.24724765121936798,-0.1595885008573532,-0.6501790881156921,-0.2230602204799652,-0.09924494475126266,0.1528560072183609,0.6265171766281128,0.6341236233711243,-0.5220934748649597,-0.5390405058860779,-0.8822404146194458,0.6688037514686584,-0.21384422481060028,0.44509437680244446,-0.19326449930667877,0.3889389932155609,-0.5797405242919922,0.8635247945785522,-0.3775186836719513,0.5138518810272217,-0.9437658190727234,0.2880333662033081,-0.34641897678375244,-0.9567691087722778,-0.9206619262695312,-0.26943665742874146,0.13664983212947845,0.7979230880737305,0.5603443384170532,0.1653452068567276,0.25914865732192993,0.24193549156188965,0.5438007712364197,-1.043945074081421,-0.5859411954879761,0.002980564720928669,-0.1870919167995453,-0.3896917998790741,0.4374654293060303,0.3064301311969757,-0.41041722893714905,-0.3631606698036194,-0.20676611363887787,0.5734339952468872,0.2778361141681671,0.35257333517074585,-0.795945942401886,-0.2473505735397339,-0.7253900170326233,0.23857396841049194,-0.1606086939573288,0.7341535687446594,-0.5950437188148499,0.07291289418935776,-0.5251189470291138,-0.30530303716659546,-0.3569265305995941,-0.40277761220932007,0.823820948600769,0.04662686213850975,0.6841146349906921,0.2876800000667572,0.08789864182472229,0.08430398255586624,1.056201457977295,-0.74627286195755,0.20132915675640106,-0.08136242628097534,0.11847992241382599,0.058519236743450165,-0.3013833463191986,0.0591001957654953,0.12922462821006775,-0.004464633297175169,0.18494468927383423,-0.008110548369586468,-0.04207400232553482,-0.23395173251628876,0.2656692862510681,-0.15475231409072876,-0.057731274515390396,-0.25641223788261414,0.1605406105518341,-0.26275548338890076,-0.26623812317848206,-0.21638622879981995,0.20488499104976654,0.1213638037443161,0.1828187257051468,0.2505998909473419,-0.43010178208351135,0.23061439394950867,0.09198546409606934,0.04218219220638275,-0.09554935991764069,-0.041362181305885315,0.10718680173158646,-0.23909883201122284,-0.37363526225090027,-0.06280509382486343,-0.2547750174999237,0.13276778161525726,0.8393257856369019,0.5479201078414917,-0.7586346864700317,-0.45484811067581177,-0.6600043177604675,0.1550302356481552,0.09629262238740921,0.2669832110404968,-0.5217658281326294,0.1800466626882553,-0.29261964559555054,0.7310566306114197,-0.2399996966123581,0.18230776488780975,-0.7850818037986755,0.5839490294456482,-0.15854965150356293,-0.30203166604042053,-0.5864615440368652,-0.13610948622226715,-0.09369014948606491,0.4155825972557068,0.5867131948471069,0.4133780300617218,0.006394561380147934,-0.14707595109939575,0.24546360969543457,-0.7631385922431946,0.4829764664173126,0.372673362493515,0.40137583017349243,-0.19532284140586853,0.389812707901001,-0.4626968801021576,0.27915602922439575,-0.7576374411582947,0.3588373363018036,0.6480669379234314,0.7058066725730896,0.4582706391811371,-0.14614884555339813,0.5819727778434753,-0.5205362439155579,-0.057949502021074295,0.49602097272872925,0.09429042786359787,0.1471158117055893,0.48893651366233826,-0.6579940915107727,0.3227992355823517,0.16869696974754333,-0.0876842737197876,0.41084766387939453,-0.5988799929618835,0.53316330909729,0.5659322738647461,0.6113670468330383,-0.27904415130615234,0.22440937161445618,0.030134987086057663,0.043963875621557236,-0.2108389288187027,0.3723528981208801,0.14907261729240417,0.20868362486362457,0.16767917573451996,-0.2630040645599365,-0.3009225130081177,-0.17588500678539276,0.33409398794174194,-0.11437255144119263,0.25674358010292053,-0.3925824463367462,-0.2536507546901703,-0.7254823446273804,0.3229128420352936,-0.05993589013814926,0.7002349495887756,-0.2846335172653198,0.07677455246448517,-0.2532038986682892,-0.05330630764365196,0.14227814972400665,-0.21288245916366577,0.8603328466415405,-0.08836151659488678,0.057149823755025864,-0.0954490602016449,0.054395586252212524,-0.3004574179649353,0.7375797629356384,-0.2164338231086731,-0.5012778639793396,0.17679160833358765,0.17376987636089325,-0.3136827349662781,0.5212562680244446,-0.28228217363357544,0.022485489025712013,-0.5632725358009338,-0.24173621833324432,-0.013745573349297047,0.16508661210536957,0.223260298371315,-0.29836827516555786,0.2710486054420471,0.04809752479195595,0.4728100299835205,-0.2492092400789261,0.1339922994375229,-0.36211854219436646,0.23767726123332977,-0.009575363248586655,-0.11998867988586426,-0.20419995486736298,-0.2215450555086136,0.34409773349761963,-0.033626530319452286,0.40767866373062134,0.363372802734375,-0.29340416193008423,0.26187485456466675,0.3522171378135681,-0.46678128838539124,-0.16559922695159912,-0.08320165425539017,0.016409294679760933,-0.1513391137123108,0.5193842649459839,-0.16525088250637054,-0.2822954058647156,-0.3406064212322235,0.16335606575012207,0.7022055387496948,-0.046649087220430374,0.23689426481723785,-0.5904327630996704,0.3700309097766876,-0.5719208717346191,-0.06908966600894928,-0.3153610825538635,0.6287548542022705,-0.5792304873466492,0.6836286783218384,-0.39153701066970825,0.15794534981250763,-0.13000304996967316,-0.24040794372558594,1.1369701623916626,0.08919180184602737,0.5380519032478333,0.10275682806968689,0.2755782902240753,-0.1039588674902916,0.5257837176322937,-0.4593542218208313,0.14208735525608063,-0.3568814694881439,-0.1888452172279358,0.2982889711856842,-0.42512834072113037,0.2710545063018799,-0.19504275918006897,0.48027607798576355,-0.3337494730949402,-0.3538834750652313,-0.16215012967586517,-0.6364311575889587,0.49200716614723206,0.09429292380809784,0.3203446567058563,-0.3716316819190979,-0.47734534740448,-0.17566965520381927,0.20519861578941345,-0.7818877696990967,0.47651731967926025,-0.5275103449821472,0.36346206068992615,0.4574122726917267,-0.31876838207244873,0.38223716616630554,-0.6075435876846313,-0.6528142690658569,-0.1549251824617386,0.2539849281311035,-0.495713472366333,-0.07120169699192047,-0.03002138063311577,0.08753877878189087,0.06592868268489838,-0.39456912875175476,0.2380574494600296,0.024495067074894905,0.09801916033029556,-0.3835303783416748,0.08583065867424011,0.830520510673523,0.34467339515686035,0.10065275430679321,-0.9347924590110779,-0.026775971055030823,-0.45372310280799866,0.22117562592029572,0.20320217311382294,0.8726258277893066,0.08346109092235565,0.4666069746017456,-0.4415946304798126,0.16126057505607605,-0.2484593689441681,-0.07188572734594345,1.0850597620010376,0.04017192870378494,0.5159265398979187,0.49970293045043945,-0.24656444787979126,-0.4516504406929016,0.8444395065307617,-0.32612669467926025,0.3473828136920929,0.5741242170333862,0.3395111560821533,-0.7962902188301086,0.16605040431022644,-0.30930039286613464,-0.1453077346086502,-0.869706928730011,0.2808423638343811,0.740100622177124,0.5932435393333435,0.5064225792884827,-0.6810962557792664,0.2126004844903946,-0.5844125151634216,0.015037458389997482,0.6950482130050659,0.8145187497138977,-0.4138832092285156,0.6922405958175659,-0.5133193731307983,0.792561411857605,0.2889710068702698,-0.24590188264846802,0.9590895771980286,-0.8730087876319885,0.3829779326915741,0.8030955791473389,1.0455735921859741,-0.40956026315689087,0.9170582890510559,-0.12169060111045837,0.7522369027137756,0.12012815475463867,-0.4166835844516754,-0.1639910191297531,-0.6032678484916687,-0.3042012155056,0.7316679358482361,0.786579430103302,0.7311678528785706,-0.4426046311855316,0.08804482221603394,-0.6619581580162048,0.6227598190307617,-0.6867494583129883,0.7161803245544434,-0.4481147527694702,0.9319836497306824,-0.8229205012321472,1.1867730617523193,-0.3963584899902344,0.7411688566207886,0.37076014280319214,0.35972946882247925,-0.17005296051502228,-0.7737396955490112,-0.5257849097251892,-0.919917643070221,-0.4741712212562561,-0.07167403399944305,0.20167316496372223,-0.697475016117096,0.5748578906059265,-0.5001387596130371,-0.24858777225017548,-0.8936753273010254,-0.047175366431474686,0.31561464071273804,0.44596773386001587,-0.16100068390369415,0.6772894263267517,-0.3799710273742676,-0.2548303008079529,-0.5028011798858643,0.08257848769426346,0.4081827998161316,-0.36637648940086365,0.874403715133667,0.3864026367664337,-0.1638525277376175,-0.6015990376472473,0.2446262538433075,-0.3852441906929016,0.5086137652397156,-0.6129273176193237,-0.44634056091308594,-0.042533691972494125,-0.7132610082626343,1.002056360244751,-0.051477156579494476,-0.4587869942188263,-0.5429319143295288,0.33138221502304077,-0.18013888597488403,-0.20788231492042542,-1.2879669666290283,-1.389482855796814,-1.0701191425323486,0.3087430000305176,0.8656697869300842,1.5659911632537842,-1.2451313734054565,0.060956504195928574,-1.0850237607955933,0.028863675892353058,-1.2861874103546143,0.5076937675476074,-0.16357825696468353,-0.5559298396110535,0.6249522566795349,1.1712510585784912,-1.1715664863586426,-0.4969739317893982,-0.7534463405609131,-0.6485655903816223,0.35536816716194153,-1.6295472383499146,-1.21213960647583,-0.6422994136810303,-0.391597181558609,1.5899932384490967,1.1069698333740234,-0.6773769855499268,-0.7231543660163879,0.2769222855567932,0.12888169288635254,-1.602088212966919,0.04322454705834389,0.2879562973976135,0.044845689088106155,-0.41547444462776184,0.8631069660186768,0.27898985147476196,-0.40277233719825745,-1.0750471353530884,-0.07822275906801224,0.08153615891933441,0.4324880838394165,0.7015857100486755,-0.05852667614817619,0.5781586766242981,-0.5726019740104675,0.5729089379310608,0.048105474561452866,0.12317517399787903,0.027866993099451065,1.1692571640014648,-0.38726916909217834,-0.035453107208013535,-0.09122102707624435,-0.13405105471611023,0.049990877509117126,-0.29507890343666077,0.5697159171104431,0.8430906534194946,0.011281520128250122,-0.6813789010047913,0.5016515254974365,0.022522035986185074,-0.35551717877388,-0.14483028650283813,0.05131727457046509,0.13908977806568146,-0.05530989170074463,-0.06212807819247246,0.02899078279733658,-0.278805136680603,-0.3561747968196869,0.856881856918335,0.22725090384483337,0.19397705793380737,-0.8785957098007202,-0.3835388720035553,-0.9330050945281982,-0.11590990424156189,-0.3700248599052429,0.5467833876609802,-0.3805137574672699,0.29532358050346375,-0.2560008466243744,-0.23414522409439087,-0.5804659724235535,-0.4093030095100403,0.8812131285667419,0.4197862148284912,0.3785930573940277,0.007368258200585842,-0.2672499716281891,0.074113629758358,0.48567792773246765,-0.20182588696479797,0.07762086391448975,-0.1307828724384308,0.33135467767715454,-0.21008333563804626,-0.38042089343070984,0.18489329516887665,0.1658702939748764,0.3210618197917938,0.37549638748168945,0.5763756632804871,-0.12210021167993546,0.07149890065193176,-0.1979520320892334,-0.641939640045166,-0.5218228101730347,-0.20126865804195404,0.6308029294013977,0.34568676352500916,-0.0034792283549904823,0.0853939950466156,-0.043721944093704224,-0.0563993901014328,-0.09683097153902054,-0.3237922489643097,0.533332109451294,-0.010476367548108101,-0.13114091753959656,0.17186425626277924,-0.15013383328914642,-0.1661204993724823,0.034039679914712906,0.2575013041496277,0.3581390380859375,0.5830625891685486,0.3601848781108856,-0.3133842945098877,-0.24188126623630524,-0.308633953332901,0.5450484156608582,-0.0013878114987164736,0.722481369972229,0.2806627154350281,0.47368156909942627,0.09253699332475662,-0.26289209723472595,-0.6783854365348816,-0.35498297214508057,-0.4777277112007141,1.1469426155090332,0.045976657420396805,0.4761640429496765,-0.22453434765338898,0.13614314794540405,0.657192051410675,0.3708422780036926,-0.18595688045024872,0.12107579410076141,-0.269692063331604,-0.009576334618031979,0.13385449349880219,-0.14437957108020782,-0.37572234869003296,0.3572099208831787,0.4544193148612976,-0.3063005805015564,0.3305903971195221,-0.2657325267791748,-0.14381293952465057,0.43162801861763,0.16661415994167328,0.1444234549999237,-0.4236661493778229,-0.3547663688659668,0.23732545971870422,-0.029660381376743317,0.15032856166362762,-0.04179779440164566,-0.015664061531424522,0.148323655128479,0.34606096148490906,-0.07346180826425552,0.15479348599910736,0.3103862702846527,0.41201895475387573,-0.1622091382741928,0.11119461059570312,-0.3370784819126129,-0.027345139533281326,0.24403449892997742,0.20681877434253693,0.4296570122241974,0.1810920089483261,-0.333166241645813,-0.5543591976165771,0.16116908192634583,-0.18093934655189514,0.5815582871437073,0.2827908396720886,0.5919273495674133,-0.2292412966489792,-0.06133616343140602,-0.8284524083137512,0.3258502185344696,-0.7121326923370361,0.7027473449707031,0.29023948311805725,0.6143958568572998,-0.053488388657569885,-0.22234763205051422,0.15358370542526245,-0.27903470396995544,-0.07252313196659088,0.6946385502815247,0.67659592628479,0.2221524715423584,0.8220652341842651,-0.5335172414779663,0.46238982677459717,0.8947893381118774,-0.03435034304857254,0.2201271653175354,-0.8202390670776367,-0.005443465895950794,0.7128568291664124,0.5922785401344299,-0.4550448954105377,0.36550018191337585,0.5879114866256714,0.3729562759399414,-0.19490380585193634,0.39975523948669434,0.31437477469444275,-0.17073725163936615,-0.26100897789001465,0.4814019501209259,0.19654543697834015,0.46218523383140564,-0.6046864986419678,-0.06330151110887527,-0.08419102430343628,0.6847127676010132,0.17257679998874664,0.08549623191356659,0.01751169003546238,0.3529232144355774,-0.1353750079870224,0.12876303493976593,-0.08722886443138123,-0.24222412705421448,0.35132166743278503,0.47475287318229675,-0.004706291947513819,-0.7093441486358643,-0.2530042827129364,-0.48396220803260803,-0.24668769538402557,0.11958841979503632,0.005888515152037144,-0.36597099900245667,0.2588071823120117,-0.14185726642608643,-0.6360609531402588,-0.31174835562705994,0.5226247310638428,0.020858677104115486,0.4791502356529236,-0.2533731460571289,0.7321353554725647,-0.4797267019748688,0.2384154498577118,-0.5346530079841614,-0.8999509811401367,-0.13328027725219727,-0.06578175723552704,0.104076087474823,-0.2475643754005432,-0.16654494404792786,0.012932782992720604,-0.42696496844291687,-0.8409150242805481,0.21422936022281647,-0.474193811416626,-0.17697305977344513,-0.0622556135058403,0.00563416862860322,0.09912273287773132,-0.7829045653343201,-0.5115686655044556,-0.46987390518188477,0.8369836807250977,0.20894721150398254,0.04365206137299538,-0.18617106974124908,-0.10326758772134781,0.1846165657043457,-0.07515078783035278,0.6260952353477478,0.17584653198719025,-0.18352670967578888,-0.45656174421310425,0.04265017807483673,0.5624117851257324,0.17661277949810028,0.6920033097267151,-0.032603684812784195,0.734475314617157,-0.5061591863632202,0.3784354031085968,-0.023022610694169998,0.09222922474145889,-0.10339667648077011,0.42933592200279236,-0.5672450661659241,-0.20936641097068787,-0.09657318145036697,-0.04891379177570343,-0.19502845406532288,0.21691328287124634,0.6044613122940063,0.5276668667793274,0.07297028601169586,0.056126918643713,0.2990958094596863,0.055436912924051285,-0.1245431900024414,0.005779851693660021,0.545741617679596,0.07843685150146484,0.3098468780517578,-0.46176210045814514,-0.28847023844718933,-0.5063391923904419,-0.14508429169654846,0.2656822204589844,0.037307046353816986,0.34037819504737854,-0.272005558013916,0.4687859117984772,-0.48918336629867554,0.012578180991113186,-0.41996312141418457,0.7709992527961731,-0.10779586434364319,0.6194127202033997,-0.7162685990333557,0.019052740186452866,-0.0013828977243974805,0.11553534120321274,0.33677926659584045,-0.27919718623161316,0.5280117988586426,0.22070913016796112,0.405864417552948,-0.11999263614416122,0.6013123393058777,-0.19856879115104675]},{"shape":[32],"values":[-0.3646189868450165,-0.23275355994701385,-0.19696438312530518,0.1381278783082962,0.11306975781917572,0.2664530277252197,-0.3307056725025177,0.23141387104988098,-0.3435715138912201,0.2889757454395294,-0.20832623541355133,-0.07333629578351974,-0.28237977623939514,-0.3846283555030823,-0.1951676458120346,0.011720940470695496,-0.11631827056407928,0.33236420154571533,-0.32432904839515686,-0.2739996612071991,0.22463595867156982,-0.23593688011169434,-0.2206803411245346,-0.2755385637283325,0.3112800121307373,0.368943452835083,0.029730889946222305,-0.31140416860580444,-0.3048286437988281,0.1533682644367218,0.28025662899017334,-0.361973375082016]},{"shape":[32,9],"values":[1.1321980953216553,1.5305442810058594,0.00705848028883338,0.4253564178943634,0.020772697404026985,-0.35703951120376587,-0.7297413349151611,-0.7700013518333435,-0.1780872941017151,0.38466838002204895,0.13952381908893585,0.9773430824279785,-0.12211254239082336,-0.03728374466300011,0.25532981753349304,0.08446710556745529,-0.376437246799469,-0.0977451428771019,-0.891140878200531,0.8879643082618713,0.4963837265968323,-0.14070963859558105,0.609622597694397,0.6351622343063354,-1.0422608852386475,-0.803249180316925,-0.1704234778881073,-0.07351627945899963,-0.24364469945430756,-0.5208213925361633,0.23616774380207062,0.6558461785316467,-0.736663281917572,0.35698461532592773,0.21979248523712158,-0.2565717101097107,-0.12382343411445618,-0.09651263058185577,0.1639566272497177,0.03833044692873955,-0.7643622756004333,0.16024374961853027,-0.33901992440223694,0.21005314588546753,1.4303724765777588,-0.08131178468465805,-1.249726414680481,-1.7699711322784424,-0.02271158993244171,-0.4258996248245239,0.2943311035633087,0.7181857228279114,0.798596203327179,1.2968815565109253,1.024699091911316,1.3750404119491577,-0.7895866632461548,0.9352514743804932,0.8271182179450989,0.31160053610801697,0.3265221416950226,-0.8586380481719971,-0.6434104442596436,0.10103225708007812,0.23095133900642395,-1.2133708000183105,0.14105835556983948,0.4722810387611389,-0.7665614485740662,0.34552496671676636,0.8018099665641785,-1.2628132104873657,1.2796521186828613,1.0038063526153564,0.22910085320472717,-0.2925153374671936,0.5596305727958679,0.20327581465244293,-1.2966746091842651,-0.7524474263191223,0.008497117087244987,-0.6800575852394104,0.14770027995109558,-0.3414963185787201,-0.8700482249259949,0.3479202389717102,0.17688344419002533,-0.8624973297119141,0.5627171993255615,0.4593718647956848,0.03815052658319473,0.5427672863006592,0.6593136191368103,-0.4736649990081787,-0.43022677302360535,1.1167088747024536,-0.5724502801895142,-0.88407301902771,-0.027413664385676384,-0.1461361050605774,-0.6562718152999878,0.7623012661933899,-0.017721854150295258,-0.8105885982513428,0.4297638237476349,-0.35656967759132385,-0.11267925798892975,0.6732327342033386,0.8922899961471558,-0.27407026290893555,-0.3384648561477661,0.9034131169319153,-0.5692970752716064,0.02526499517261982,0.6740309596061707,-0.583782434463501,-0.41061222553253174,0.12377256900072098,0.012479471042752266,1.5394620895385742,0.10903111845254898,-0.5586641430854797,0.34090912342071533,-0.3567485809326172,-0.36228108406066895,-0.26217806339263916,1.0747296810150146,-0.3618828356266022,0.1935056895017624,0.5376772284507751,-0.4242281913757324,-0.3851305842399597,1.3899078369140625,-0.06825977563858032,-0.34381169080734253,-0.06659262627363205,-0.10713746398687363,0.08022813498973846,-0.15790779888629913,-0.4049127995967865,-0.27644357085227966,-0.062378279864788055,-0.01638997159898281,1.152293086051941,0.8117357492446899,0.5523461103439331,1.1653854846954346,-0.49264106154441833,0.40586724877357483,-0.2250441610813141,-1.1351288557052612,-0.06912107765674591,-0.43972715735435486,-1.3740078210830688,0.32936525344848633,0.32026517391204834,-0.36503341794013977,0.2654803693294525,0.05300482362508774,-1.2205146551132202,0.28339892625808716,-0.14030559360980988,1.5211979150772095,1.0401501655578613,-0.1723300665616989,0.4978732764720917,-0.2150605469942093,-0.2495751976966858,0.062148381024599075,-0.5460108518600464,-0.5737151503562927,0.18084339797496796,-0.36945849657058716,1.2182010412216187,-0.35269296169281006,-0.43995603919029236,1.1427584886550903,-0.3340095281600952,-0.9317317605018616,1.1025032997131348,0.17358610033988953,0.39835265278816223,-0.5852848887443542,0.4166902005672455,-0.26224565505981445,-0.8352535963058472,0.6453092694282532,0.5090124607086182,-0.8868688941001892,0.5484223365783691,1.0087708234786987,1.9078339338302612,0.13730724155902863,0.6712769865989685,0.26014211773872375,-0.4965526759624481,-1.0495949983596802,-0.8400959968566895,0.36880552768707275,1.3530148267745972,0.45836687088012695,0.9652653336524963,0.1349659115076065,-0.41571637988090515,-0.7699537873268127,-0.5899187326431274,-0.6099827289581299,0.5967766642570496,0.361551433801651,0.2941984534263611,0.3787182867527008,0.005894796922802925,-0.36690905690193176,0.03057854063808918,-0.4406006932258606,-0.11492414772510529,-1.0535742044448853,0.6520701050758362,-0.16148199141025543,-1.273667812347412,0.42141544818878174,0.2890690863132477,-1.1317218542099,0.1125190332531929,0.2683117389678955,-0.21217608451843262,-1.3907581567764282,-1.6789933443069458,0.00883233267813921,0.053182490170001984,-0.8670696020126343,0.45743173360824585,0.7583332061767578,0.9545930027961731,-0.10150273144245148,-1.0637463331222534,0.4945316016674042,-0.6756633520126343,-0.4747207462787628,0.7210953831672668,-0.2173253893852234,0.08810830116271973,1.1488317251205444,-0.42284008860588074,-0.08533155173063278,0.5460558533668518,-0.7236572504043579,-0.39750248193740845,0.8549607992172241,-0.31735140085220337,-0.8152173757553101,0.5119004249572754,0.18095360696315765,0.30370083451271057,1.4374854564666748,-0.06927333027124405,-0.2912597358226776,0.35470137000083923,-0.4833981394767761,-0.6155627965927124,0.061202045530080795,0.4443051815032959,0.27163439989089966,-0.6250055432319641,0.38953566551208496,0.24568066000938416,-0.8102352023124695,0.08893966674804688,0.5322820544242859,-0.20770573616027832,-0.7596089243888855,0.15527260303497314,-0.019775329157710075,-0.5258130431175232,0.5054163336753845,0.43537265062332153,-0.7761201858520508,0.2768068015575409,0.44661059975624084,1.049540638923645,1.4143073558807373,0.02595270238816738,0.8108112812042236,0.11295762658119202,-0.39667823910713196,-0.3543289601802826,-0.6461988091468811,-0.4098600149154663]},{"shape":[9],"values":[-0.17186439037322998,-0.21999117732048035,-0.14696526527404785,-0.02076788805425167,0.054328180849552155,-0.09745687246322632,0.049714505672454834,0.16717027127742767,0.1457354575395584]}],"configuration":{"hiddenLayers":[32,32],"learningRate":0.003,"batchSize":128,"epochsPerRound":3,"samplesPerRound":4096}} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/report-11.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-11.json new file mode 100644 index 0000000..c2c36f5 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-11.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v1", + "driving": "circuit-racing-v1", + "observation": "racing-observation-v1", + "race": "circuit-race-v1", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.26666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 180.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7039 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 143.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5016 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 210.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8493 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 209.4, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7883 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 216.85, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8379 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 172, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5980 + } + ], + "seconds": 32.18 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/report-29.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-29.json new file mode 100644 index 0000000..100992b --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-29.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v1", + "driving": "circuit-racing-v1", + "observation": "racing-observation-v1", + "race": "circuit-race-v1", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.31666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 280.1, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 12380 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 205.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7884 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 191.88333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7466 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 95.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 181.03333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5814 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 185.18333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6554 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 196.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7100 + } + ], + "seconds": 32.045 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/imitation-v1/report-47.json b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-47.json new file mode 100644 index 0000000..a90ce7a --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/imitation-v1/report-47.json @@ -0,0 +1,186 @@ +{ + "protocol": { + "id": "racing-learning-v1", + "driving": "circuit-racing-v1", + "observation": "racing-observation-v1", + "race": "circuit-race-v1", + "trainingSeeds": [ + 11, + 29, + 47 + ], + "checkpointSelection": "last scheduled update on training circuit only", + "evaluationSeeds": [ + 101, + 307, + 509 + ], + "success": { + "completedLaps": 3, + "maxRescues": 0, + "maxPenalties": 10, + "minimumCompletionRate": 0.8 + }, + "evaluation": "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures." + }, + "rounds": 16, + "untrained": { + "seed": 101, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + "reports": [ + { + "seed": 101, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.86666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.91666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.93333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 13805 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 201.51666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7306 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 142.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4281 + }, + { + "seed": 101, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.46666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 81.48333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 101, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 200.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7507 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 186.48333333333332, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6796 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16304 + } + ], + "seconds": 29.652 +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-101.json new file mode 100644 index 0000000..7b23d28 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:12:39.237Z","weights":[{"shape":[20,32],"values":[1.0920110940933228,0.3751866817474365,0.16776500642299652,0.9174150228500366,0.34375450015068054,0.9828780889511108,0.8399173021316528,0.1940205842256546,0.2336191087961197,0.8902214169502258,-0.22740186750888824,0.006011186633259058,0.26551246643066406,0.7028117775917053,0.48116621375083923,-0.27640190720558167,-0.5052273273468018,-0.6927895545959473,-0.13340836763381958,0.446919322013855,0.4592682719230652,-0.30596375465393066,0.555055558681488,0.14056220650672913,0.5819546580314636,-0.32531285285949707,0.2670505940914154,-0.3542684018611908,0.7894983887672424,0.20407558977603912,0.3247826397418976,0.24993059039115906,-0.32427382469177246,-0.30118507146835327,0.08947846293449402,0.00986850168555975,0.001989173935726285,0.1900172233581543,-0.41734299063682556,-0.2641284167766571,-0.38887399435043335,0.352413535118103,-0.1533823162317276,-0.14872580766677856,-0.4247559905052185,-0.11859895288944244,0.21982628107070923,-0.32868722081184387,0.3507454991340637,0.5880863070487976,-0.12571808695793152,-0.18844743072986603,-0.5536122918128967,0.2939196527004242,-0.3454071879386902,-0.126283660531044,0.09805157780647278,0.4575084149837494,0.02679366245865822,0.11104246973991394,0.3920787274837494,0.10861817002296448,-0.38475075364112854,0.07477542757987976,-0.05150469392538071,-0.6475974917411804,-0.08216584473848343,-0.08704658597707748,-0.12955263257026672,-0.007470099255442619,-0.011046206578612328,-0.7737916111946106,-0.728097140789032,0.01906557008624077,-0.510741651058197,0.4384324252605438,0.04640292003750801,-0.03787923604249954,-0.2285134494304657,-0.9279180765151978,0.9425461292266846,0.6458684206008911,0.2654956877231598,0.18811815977096558,-0.23193824291229248,1.0829495191574097,-0.8135817050933838,0.34407898783683777,-0.21139299869537354,1.1026865243911743,-0.3089188039302826,-0.24478553235530853,-0.17334699630737305,-0.017946552485227585,-0.6144876480102539,0.008635320700705051,-0.6918493509292603,2.2476437091827393,0.020938994362950325,-0.5951191186904907,-0.38888677954673767,-0.25301021337509155,-0.900576114654541,2.2673251628875732,2.0034918785095215,-1.0072803497314453,2.2409744262695312,-0.5734531283378601,-0.7574338316917419,-0.9584872722625732,-0.5404578447341919,2.128889560699463,-1.2043310403823853,-1.293850302696228,-0.6345180869102478,-0.5414899587631226,-0.48607301712036133,-1.1616261005401611,2.409198760986328,-1.0221967697143555,-0.37614306807518005,-1.449751853942871,0.042100388556718826,-0.5640352368354797,-0.0911412388086319,-0.7573339343070984,2.149729013442993,-0.9741795659065247,0.2854826748371124,-0.20120078325271606,-0.6171446442604065,0.17289391160011292,0.3871600031852722,0.11507683247327805,0.21010008454322815,-0.22292841970920563,0.08734144270420074,-0.2685537338256836,0.07596205174922943,-0.06687536835670471,-0.23957882821559906,0.4042009711265564,-0.1657266467809677,0.012263596057891846,-0.20908625423908234,-0.09352617710828781,0.2958300709724426,0.2921724021434784,0.11314961314201355,-0.08757864683866501,-0.3439948558807373,0.4315977990627289,0.031106790527701378,-0.006581815890967846,-0.00785855483263731,0.4869688153266907,-0.24388213455677032,0.008009351789951324,0.11782379448413849,0.1731024831533432,-0.006519579328596592,0.5621229410171509,0.013575068674981594,0.31532394886016846,-0.13126079738140106,0.033510804176330566,0.31254327297210693,0.5063626766204834,0.02091629058122635,-0.5834170579910278,0.31307080388069153,0.39097583293914795,-0.25244295597076416,-0.05287255346775055,-0.28905558586120605,-0.007324013859033585,-0.6557990908622742,-0.7530274987220764,-0.03646999970078468,0.4082036018371582,-0.017957836389541626,-0.269709050655365,0.42429912090301514,0.10784416645765305,-0.49609461426734924,-0.611118495464325,0.10848179459571838,-0.2922593057155609,-0.2868313193321228,0.09908489882946014,0.5616730451583862,0.26161807775497437,0.28556764125823975,0.11433085799217224,-0.4461362957954407,0.18969595432281494,-0.6546549201011658,-0.17796407639980316,-0.01247432455420494,0.17406776547431946,0.4223818778991699,-0.05357735976576805,-0.08470197767019272,0.16690202057361603,0.2590392231941223,-0.025880321860313416,-0.26428428292274475,0.4074786603450775,-0.6778310537338257,-0.7207673192024231,0.2757295072078705,-0.17866533994674683,0.19989809393882751,-0.21993473172187805,0.4578043222427368,0.2739332318305969,-0.4801030457019806,0.004309108946472406,-0.474181205034256,-0.2368742674589157,-0.46184298396110535,0.31995677947998047,0.1381494700908661,0.4144599437713623,0.0695442333817482,0.3026776611804962,0.4265584349632263,0.11213189363479614,-0.5121867656707764,-0.258352667093277,0.2861008644104004,-0.11624060571193695,-0.009890837594866753,0.09099145233631134,0.24614450335502625,0.34198105335235596,0.38149842619895935,0.5936494469642639,-0.2969633936882019,-0.06634606420993805,-0.4308854639530182,-0.2699393033981323,0.31996703147888184,0.30861517786979675,0.6109615564346313,-0.4787556231021881,-0.230251282453537,0.5450318455696106,-0.0865558311343193,0.09872071444988251,-0.10335598886013031,0.2259901762008667,-0.32211172580718994,0.17790769040584564,0.4239659011363983,0.23628780245780945,-0.32487964630126953,-0.049284521490335464,-0.07573352009057999,-0.3228868246078491,0.2460208684206009,-0.04570356383919716,0.020639926195144653,0.2220713347196579,0.30031949281692505,0.2704501152038574,0.1830001026391983,0.3049871325492859,0.22197245061397552,0.2837406098842621,0.15067289769649506,-0.10238948464393616,0.15612348914146423,0.08738132566213608,0.20410670340061188,0.305722713470459,0.2925909459590912,-0.2759101092815399,-0.06450913846492767,-0.21721211075782776,0.2601757347583771,-0.2229403853416443,0.2196987271308899,0.31676656007766724,0.06394810974597931,0.3252258598804474,-0.15617728233337402,0.02620731294155121,0.24309159815311432,-0.04091302305459976,0.21522283554077148,-0.23566226661205292,-0.2691386938095093,0.023630665615200996,-0.09718015789985657,0.1758587509393692,0.21356971561908722,-0.11429543048143387,-0.2977505028247833,0.2711174190044403,0.11723262071609497,0.010491487570106983,-0.12532971799373627,-0.08190225809812546,0.19637374579906464,-0.20704862475395203,-0.28579768538475037,0.21217256784439087,-0.15091383457183838,0.2881490886211395,-0.0779193565249443,0.06878988444805145,0.06933440268039703,0.11704053729772568,-0.04964270815253258,0.27631133794784546,0.32878378033638,-0.29418277740478516,-0.038885824382305145,-0.33078402280807495,0.22297897934913635,-0.02152399532496929,0.07507220655679703,-0.17129677534103394,-0.18722136318683624,-0.0015478669665753841,-0.05627515912055969,0.08306680619716644,0.2805584967136383,-0.3250965476036072,-0.1060677245259285,0.09154116362333298,-0.19111134111881256,-0.18992969393730164,-0.1496574729681015,-0.2581759989261627,-0.189115971326828,0.1286817044019699,0.2584155797958374,0.010043400339782238,0.29127994179725647,0.1977132111787796,-0.19369107484817505,0.24439182877540588,0.16958649456501007,0.07211323082447052,-0.1190161406993866,0.32069993019104004,-0.08066309988498688,0.0060746315866708755,-0.05296134203672409,-0.20660366117954254,-0.2497999519109726,0.09237844496965408,-0.1686469316482544,-0.279073566198349,-0.271477073431015,0.19196486473083496,-0.17348843812942505,-0.08022259920835495,0.1433200240135193,0.13156025111675262,-0.04957817494869232,0.024162348359823227,-0.044466760009527206,0.17635884881019592,0.17943629622459412,0.2242797315120697,0.16364842653274536,0.09829609841108322,-0.31824567914009094,0.19458918273448944,-0.0372936986386776,0.16804346442222595,-0.013086375780403614,-0.12116767466068268,-0.1686311662197113,-0.3082418441772461,-0.10969320684671402,-0.11831109970808029,0.11042432487010956,-0.3125857412815094,-0.2103939652442932,0.29654639959335327,0.08527503162622452,0.08810444176197052,-0.14586485922336578,-0.3003896176815033,-0.16246119141578674,-0.04395400732755661,-0.24143894016742706,-0.018486570566892624,0.0010607020230963826,-0.30009686946868896,0.2557242810726166,-0.20424267649650574,-0.04139496013522148,0.18845775723457336,-0.15953435003757477,-0.12523798644542694,-0.3376292884349823,0.10244834423065186,0.08757955580949783,-0.13657689094543457,-0.05929688736796379,-0.17034871876239777,-0.12554700672626495,0.13564498722553253,-0.137300044298172,-0.20440779626369476,0.0387805700302124,0.246781587600708,0.25964996218681335,-0.01843888871371746,0.28839507699012756,-0.22694748640060425,0.1211460530757904,0.3068596124649048,-0.014492390677332878,-0.2741211950778961,0.1366311013698578,-0.2073139250278473,0.09854837507009506,0.05681723356246948,-0.006643109489232302,-0.2383762151002884,0.29198357462882996,0.09014134109020233,0.059043243527412415,-0.1866348534822464,-0.0001541943638585508,-0.07882039994001389,-0.08745697885751724,0.18007008731365204,0.020290199667215347,-0.24202288687229156,0.30876752734184265,-0.23556537926197052,-0.19069766998291016,0.20933039486408234,0.09059026837348938,0.17983298003673553,0.24825111031532288,0.10600588470697403,0.31200554966926575,-0.1369614601135254,-0.06862842291593552,-0.31782615184783936,-0.1409190148115158,0.12603195011615753,-0.0699814185500145,0.16559691727161407,0.22040727734565735,-0.29779621958732605,0.22803449630737305,-0.02309902384877205,0.13641546666622162,-0.20190006494522095,-0.3302116394042969,0.13940651714801788,0.1490153819322586,0.21353963017463684,0.0413283109664917,-0.03811797499656677,-0.15615037083625793,-0.006241891998797655,0.014098869636654854,-0.12844498455524445,0.27514660358428955,-0.1826271265745163,0.2622361481189728,-0.062363673001527786,-0.04555431008338928,0.07533565163612366,0.10233089327812195,-0.01713891513645649,0.07395318150520325,0.20759178698062897,-0.30708688497543335,-0.17886841297149658,-0.3153929114341736,0.016244448721408844,0.18528838455677032,0.271645724773407,-0.3002462685108185,-0.27623459696769714,0.2616310715675354,0.0024322981480509043,0.26967400312423706,0.0830436646938324,-0.28373071551322937,-0.1411900520324707,-0.261985182762146,0.15669812262058258,-0.17552077770233154,-0.30233651399612427,-0.24469822645187378,-0.009347167797386646,-0.3087853193283081,-0.09452608972787857,-0.09919280558824539,-0.08145073056221008,0.13107000291347504,0.186812162399292,-0.17633695900440216,-0.3087429702281952,0.01466445717960596,0.10187336057424545,0.21102604269981384,0.04555095359683037,-0.23598988354206085,-0.04667472094297409,-0.20545725524425507,0.12525388598442078,0.2937847375869751,0.20142187178134918,-0.1150527372956276,0.12427791953086853,-0.32123634219169617,-0.29379135370254517,0.012344544753432274,-0.2606605589389801,0.329009085893631,0.33861371874809265,-0.08851941674947739,0.17588259279727936,0.031043995171785355,-0.26372507214546204,-0.03374553844332695,-0.3142091631889343,-0.12459457665681839,-0.055064015090465546,-0.05272628366947174,0.05097942054271698,0.2731301188468933,-0.11183095723390579,-0.06114591285586357,-0.30622658133506775,-0.13149333000183105,0.2728591561317444,-0.12590274214744568,0.07681608200073242,0.17087337374687195,0.3351544439792633,0.0434793159365654,-0.3196394443511963,-0.2547285854816437,-0.32539206743240356,0.07462751120328903,0.1755700260400772,-0.0914020836353302,-0.08545587956905365,-0.26762449741363525,0.27927353978157043,-0.23307965695858002,0.18176166713237762,-0.018668245524168015,0.14525362849235535,0.3322940766811371,0.022836938500404358,0.1432417631149292,0.0804109200835228,-0.2866259217262268,0.04072624444961548,-0.07378660142421722,0.3011416792869568,0.23200877010822296,0.08122517168521881,-0.16452805697917938,-0.18065717816352844,-0.13155409693717957,-0.3318330645561218,0.0069212536327540874,0.011177793145179749,0.18039382994174957,0.1493690460920334,0.19932076334953308,0.11533946543931961,-0.15005739033222198,-0.2801066040992737,0.15125273168087006,-0.053496792912483215,0.14842820167541504,0.19582626223564148,-0.2827775478363037,0.08206737041473389,-0.1858614683151245,-0.05997643619775772,-0.15528199076652527,-0.012537638656795025,-0.006454936228692532,0.23918506503105164,0.0025375934783369303,0.3281771242618561,0.1341770738363266,-0.158331498503685,-0.1617124080657959,-0.24603599309921265,-0.31845712661743164,0.23920133709907532,0.08594705164432526,0.18643131852149963,0.1919572651386261,-0.2902998924255371,0.31532856822013855,-0.12042427808046341,0.0218078400939703,-0.3311625123023987,-0.26469340920448303,0.12380311638116837,-0.16256552934646606,-0.32778823375701904,0.11544574797153473,-0.16625209152698517,-0.2998278737068176,0.300824910402298,-0.33232125639915466,0.09896039962768555,0.32913124561309814,0.1479041427373886,0.12661004066467285,0.1956968903541565,-0.22777217626571655,0.10163949429988861,0.2841971516609192,-0.041842758655548096,-0.25875622034072876,-0.09920517355203629,0.08635114878416061,-0.05888596922159195,0.12523490190505981,-0.18561384081840515,0.22361275553703308,0.24150289595127106,0.2557164430618286,0.026801535859704018,0.23421229422092438,0.10222134739160538,-0.12379752844572067,-0.0017651625676080585]},{"shape":[32],"values":[0.8403154611587524,-0.41412538290023804,0.4450794458389282,0.7895843386650085,0.6613197922706604,0.7543362379074097,0.7541903853416443,-0.6075464487075806,-0.6946303248405457,0.5415465831756592,-0.4142666459083557,0.743012547492981,0.7792203426361084,0.6687650680541992,0.7504274845123291,-0.3401183784008026,-0.41801539063453674,-0.047222986817359924,0.6504088044166565,0.83243727684021,0.7929112315177917,-0.2847307026386261,-0.6753138303756714,0.7210004925727844,0.7429133057594299,0.5197421908378601,0.6217326521873474,0.5952503085136414,0.656538188457489,0.8411602973937988,-0.24032896757125854,0.6604796648025513]},{"shape":[32,32],"values":[0.046137187629938126,0.637798547744751,0.31203725934028625,-0.19534613192081451,0.4867061376571655,0.24802108108997345,0.6088772416114807,-0.13544830679893494,0.10254593938589096,-0.017435850575566292,0.25079262256622314,0.8654386401176453,0.7785986065864563,0.8707730770111084,0.4557637870311737,0.5371174216270447,0.6036399602890015,0.7467789649963379,0.7986502647399902,-0.3132818639278412,0.34482046961784363,0.4184434711933136,0.7816846370697021,0.5227660536766052,0.44989529252052307,0.07750172168016434,-0.2557927668094635,0.47830986976623535,1.05939519405365,0.3317888081073761,-0.29223912954330444,0.11015892773866653,0.7023540735244751,-0.23643630743026733,-0.6222411394119263,0.22934895753860474,-0.5708984732627869,-0.20925480127334595,-1.1878763437271118,-0.07529158145189285,0.7149766683578491,0.1547672301530838,-0.3005974590778351,1.2058491706848145,-0.7308433651924133,-1.005405306816101,-1.1491700410842896,-0.40521082282066345,-0.6634700894355774,-0.9738600850105286,-0.6504186391830444,0.028060870245099068,-0.2380712479352951,1.0218132734298706,-0.2298983931541443,-0.4346645176410675,-0.35790058970451355,-0.2921965420246124,-0.32145893573760986,-0.6761552691459656,0.7481904625892639,0.9870197176933289,0.022520923987030983,0.02526199072599411,0.07213819026947021,-0.11678600311279297,0.49375972151756287,0.26264455914497375,0.02358855865895748,0.7266221642494202,0.7732680439949036,0.10652767866849899,-0.5281695127487183,-0.3269899785518646,0.16471801698207855,-0.6015030145645142,0.2619515657424927,0.2357243299484253,0.31634780764579773,0.2336287796497345,0.35284262895584106,0.4726161062717438,0.5691505670547485,0.15717291831970215,0.12432368099689484,-0.9567621350288391,0.5258912444114685,0.7574834227561951,0.21440763771533966,0.27634501457214355,0.015280614607036114,0.891716480255127,-1.200792908668518,-0.7422417998313904,-0.2568524479866028,-0.20532608032226562,-0.19186416268348694,0.8105478286743164,0.150305837392807,-0.25205981731414795,0.3660118877887726,0.22626008093357086,0.30352386832237244,-0.026145176962018013,0.2010854333639145,0.005351651925593615,-0.20213069021701813,0.6169081330299377,0.6514992713928223,0.41741088032722473,0.5882737636566162,0.4840990900993347,0.24442963302135468,0.7341505885124207,0.4488678276538849,-0.2475501149892807,0.34114888310432434,0.5781933069229126,0.8771479725837708,0.34042805433273315,0.10820204764604568,0.22728508710861206,-0.14436668157577515,0.4105673134326935,0.9375967383384705,0.1704978495836258,0.13918456435203552,-0.1925944834947586,-0.31623780727386475,0.7752618193626404,0.6435553431510925,0.13453444838523865,0.5665830969810486,-0.19995000958442688,0.8372884392738342,0.20198404788970947,-0.36775916814804077,-0.255409836769104,0.10075608640909195,-0.210532084107399,0.20072013139724731,0.2539609372615814,0.3492617607116699,0.5837948322296143,0.6202749609947205,0.6953235268592834,0.4195617735385895,-0.09283227473497391,0.6699092984199524,-0.8320139646530151,0.6711188554763794,0.6571495532989502,0.34864720702171326,-0.22723016142845154,0.08344969898462296,0.32909780740737915,0.2521474361419678,-0.6775040626525879,0.012280757538974285,-0.22658376395702362,0.06014180928468704,0.3837374150753021,0.07227145880460739,0.015592297539114952,0.19193121790885925,-0.19010117650032043,0.8403340578079224,-0.15697471797466278,0.22506491839885712,0.17014379799365997,0.024680495262145996,0.7155582308769226,0.08073689043521881,0.8146008849143982,0.21606121957302094,0.2816866934299469,0.41795387864112854,0.2052939087152481,0.659676730632782,-0.25305843353271484,0.5748699307441711,0.19229646027088165,0.5557570457458496,0.4203241765499115,0.2562287449836731,0.11041128635406494,-0.015169632621109486,0.4298256039619446,0.6227668523788452,0.0017060767859220505,-0.12613414227962494,-0.140379399061203,-0.2807042896747589,0.365318238735199,0.49269720911979675,-0.0018534429837018251,0.4154157042503357,0.024305924773216248,0.25689566135406494,-0.1713123768568039,0.03625224158167839,0.1940847784280777,0.1358453929424286,0.6187397241592407,0.3840985596179962,0.40726470947265625,0.6017183661460876,0.10853853076696396,0.5082847476005554,0.6175501942634583,0.3696114718914032,0.21254007518291473,0.44719398021698,0.11569247394800186,0.5275552868843079,0.19569800794124603,0.46221452951431274,0.0007153809419833124,-0.46197694540023804,0.3229973316192627,0.7960541248321533,0.23824866116046906,-0.2380501627922058,0.10810273885726929,0.8824669122695923,-1.048754096031189,-1.1680859327316284,0.06485927850008011,-0.8743417263031006,-0.3959372043609619,-1.6894060373306274,-0.214834526181221,1.1986315250396729,-0.3140275180339813,-0.002502088202163577,1.3643378019332886,-0.9909100532531738,-1.3302897214889526,-0.9549278020858765,-0.7906649112701416,-1.1445884704589844,-0.94736248254776,-0.8623602986335754,-0.04115797206759453,-1.1074285507202148,0.8725208044052124,-1.0654816627502441,-0.7588707804679871,-0.7298301458358765,0.10140501707792282,0.03749239444732666,-1.2327955961227417,0.2358308881521225,1.2258265018463135,-0.23122216761112213,-0.2069109082221985,0.6048091650009155,-0.7464191913604736,-1.1796283721923828,-0.2527722716331482,-0.6498948931694031,-0.16510866582393646,-1.0468900203704834,0.27383169531822205,0.7942422032356262,0.11079753935337067,-0.30959153175354004,0.8722680807113647,-0.7131401300430298,-0.7274537086486816,-0.6180418729782104,-0.4147023558616638,-0.8525944352149963,-0.9031818509101868,-0.8316388726234436,0.16633878648281097,-0.35639747977256775,0.4977836310863495,-0.8321889638900757,-0.6789022088050842,-0.8002356290817261,-0.19007278978824615,-0.13720865547657013,-1.1001887321472168,0.6257010102272034,1.0440142154693604,0.030787087976932526,-0.10234935581684113,-0.1775262951850891,-0.09445273876190186,0.23844122886657715,0.22768454253673553,0.23209887742996216,0.03649843484163284,0.9890733361244202,0.05127440765500069,-0.587023913860321,-0.06259125471115112,-0.16686423122882843,0.22853170335292816,0.6107843518257141,0.6111879944801331,0.5766227841377258,0.2811979651451111,0.3662762939929962,0.5146480202674866,0.2566780745983124,-0.2367541790008545,0.33882904052734375,-0.4975426495075226,0.6380175948143005,0.28994953632354736,0.027077239006757736,-0.0955774113535881,0.05441093072295189,0.41163724660873413,-0.4628783166408539,-0.8337575197219849,-0.2634437680244446,0.22042346000671387,0.7736788988113403,-0.43606454133987427,-0.6195592284202576,-0.3431204855442047,-0.6649454236030579,0.0738392099738121,-0.9501746892929077,-0.13468873500823975,0.2273038923740387,-0.21272604167461395,-0.22380775213241577,0.7223318219184875,-0.4108284115791321,-0.7396185994148254,-0.4849694073200226,-0.16920499503612518,-0.805314302444458,-0.7857918739318848,-0.2897404432296753,-0.20893293619155884,-0.24900181591510773,0.7866296172142029,-0.7214341163635254,-0.22051621973514557,-0.6449849009513855,-0.2040938138961792,0.18892180919647217,-0.9426237940788269,-0.2752516269683838,0.48180320858955383,0.10880912095308304,0.1895361691713333,0.05260739475488663,0.5486093759536743,0.48107340931892395,-0.20951810479164124,0.39200055599212646,0.21464474499225616,0.6063792705535889,-0.11578571796417236,-0.5289947986602783,0.054460085928440094,-0.002369169145822525,-0.31177061796188354,0.6323875188827515,0.17552976310253143,0.21152782440185547,0.525896430015564,0.2932192087173462,0.7095165848731995,0.7421372532844543,-0.28551626205444336,0.7469183802604675,-0.44529491662979126,0.6724968552589417,0.23246097564697266,0.035556551069021225,-0.14915406703948975,-0.26506030559539795,0.4263785481452942,-0.14322715997695923,-0.5587247014045715,0.06015799939632416,-0.23200128972530365,0.1775776892900467,0.15361912548542023,0.2856532335281372,0.03620927035808563,0.5075406432151794,0.42650631070137024,0.656628429889679,-0.24686746299266815,0.10709325969219208,-0.16821333765983582,-0.3089087903499603,-0.03718551993370056,0.30647915601730347,0.48620960116386414,0.6872796416282654,0.1402682662010193,0.5598780512809753,0.5037015080451965,0.027771560475230217,0.028710005804896355,0.6072370409965515,-0.24202053248882294,0.3651847541332245,0.47851523756980896,0.32714760303497314,-0.004384553991258144,-0.1561061441898346,0.26523491740226746,0.05774887278676033,-0.07395808398723602,0.1649121642112732,-0.31313347816467285,-0.15018288791179657,0.6694592833518982,0.45174938440322876,-0.18503816425800323,0.49463173747062683,0.0192588921636343,0.2702978253364563,0.20639970898628235,-0.06863768398761749,-0.019060499966144562,-0.09762007743120193,0.3510148227214813,0.5591651201248169,0.3880178928375244,0.5905604958534241,0.1796882301568985,-0.011474106460809708,0.5353153347969055,0.7722203731536865,-0.13504576683044434,0.25008246302604675,0.21191687881946564,0.37816134095191956,0.6087653636932373,0.7511873841285706,-0.337372362613678,-0.32439789175987244,0.5907079577445984,0.8569319248199463,0.005283277481794357,0.10422032326459885,0.1556456983089447,-0.07545163482427597,0.1437082588672638,0.26555800437927246,-0.21350190043449402,-0.026672285050153732,0.3377566635608673,0.8363542556762695,-0.0663992166519165,-0.7582869529724121,-0.14440001547336578,-0.24622435867786407,-0.6758814454078674,0.6581133008003235,0.35591426491737366,0.5358941555023193,0.2842687964439392,0.4880015552043915,0.7206236720085144,0.7502412796020508,-0.21927489340305328,0.3187464773654938,-0.5109944343566895,0.6947020292282104,0.5431732535362244,0.013245665468275547,0.18910235166549683,0.24921120703220367,0.2710566818714142,-0.49803847074508667,-0.4404902160167694,-0.31294330954551697,-0.19215641915798187,0.9199681282043457,-0.7275522351264954,-0.9050102233886719,-0.07758288830518723,-0.9333782196044922,-0.2639656662940979,-1.2720105648040771,-0.1632695496082306,0.43490761518478394,-0.20699542760849,0.1651420146226883,0.15340390801429749,-1.090922236442566,-0.6516480445861816,-0.8213366866111755,-0.9032891392707825,-0.4638030529022217,-0.6798722743988037,-0.5638886094093323,0.2422720342874527,-0.4719119668006897,0.9229862093925476,-0.460633784532547,-0.8724859952926636,-0.9235755205154419,-0.13518598675727844,-0.06070053577423096,-1.0934288501739502,0.0699474886059761,0.8730570673942566,0.054489266127347946,-0.1714010387659073,0.7656972408294678,-0.4915632903575897,-0.7879087328910828,0.07538893073797226,-0.848656415939331,-0.06787700206041336,-0.6119513511657715,-0.0284754429012537,-0.0022688384633511305,-0.11726075410842896,0.17414359748363495,-1.2742516994476318,-1.0643552541732788,-1.0631093978881836,-0.7174592614173889,-0.3677850663661957,-0.7490606307983398,-0.8914240598678589,-0.6059349775314331,-0.00012007665645796806,-0.5853639245033264,-0.17958851158618927,-0.7544355392456055,-0.2758389115333557,-0.8950847387313843,-0.26053422689437866,-0.12451282888650894,-0.7137674689292908,-1.3845000267028809,0.0719984620809555,0.18595969676971436,0.2290557473897934,0.7367246150970459,-0.5530712008476257,-0.6953883171081543,-0.16350336372852325,-0.6284322142601013,-0.016567882150411606,-0.424370676279068,0.07338576018810272,-0.0726465955376625,-0.06871063262224197,-0.15986678004264832,-0.21080969274044037,-1.0578333139419556,-1.049548625946045,-0.4337631165981293,-0.6591418385505676,-0.5109454989433289,-0.7579033970832825,-0.33090317249298096,0.022358695045113564,-0.5230793952941895,0.11813666671514511,-0.552767276763916,-0.450082004070282,-0.4460221827030182,-0.059133730828762054,0.3852648138999939,-0.6870636940002441,-2.0299744606018066,-0.24727673828601837,0.033985987305641174,-0.05063482001423836,-0.17168933153152466,0.35202091932296753,0.5713189840316772,0.007733413949608803,0.28076910972595215,0.20521000027656555,0.5385986566543579,0.025274407118558884,-0.64153653383255,0.22347590327262878,0.09057016670703888,-0.13476364314556122,0.6617854237556458,0.6330353617668152,0.24863295257091522,0.43975895643234253,0.13602815568447113,0.7048510909080505,0.7648956775665283,0.1449209451675415,0.4855343699455261,-0.6027473211288452,0.46661874651908875,0.322022944688797,0.43429988622665405,-0.04238315671682358,-0.0626298040151596,0.3458820581436157,0.314560204744339,-0.5998676419258118,-0.1018451675772667,-0.24429473280906677,-0.05551963299512863,0.6461096405982971,0.4930829405784607,-0.0973052904009819,0.6505592465400696,0.19685275852680206,0.516989529132843,-0.3036959171295166,0.0005460060201585293,0.15866510570049286,-0.121353879570961,0.3911278545856476,0.6859074234962463,0.6664156913757324,0.68576979637146,0.6073000431060791,0.36701104044914246,0.5136421322822571,0.38022109866142273,-0.1989942044019699,0.5094110369682312,-0.37093180418014526,0.801808774471283,0.2638326585292816,0.6460742950439453,0.1945829838514328,-0.47442808747291565,0.6035982370376587,0.815970778465271,-0.20275864005088806,-0.018082203343510628,-0.2444881796836853,-0.2806556224822998,0.6775059700012207,0.21946890652179718,-0.10092182457447052,0.2803066372871399,0.27057355642318726,0.5290472507476807,-0.23665443062782288,0.011196455918252468,-0.126387357711792,-0.04145415499806404,0.11747556924819946,0.218654602766037,0.6732038259506226,0.5760859251022339,0.3878343403339386,0.1907396912574768,0.6365199089050293,0.35141658782958984,-0.08342861384153366,0.5654652118682861,0.3156203031539917,0.3350204527378082,0.5314500331878662,0.5033949613571167,-0.3554198443889618,-0.07429905980825424,0.2522076666355133,0.5352519154548645,0.1380157172679901,-0.20646819472312927,0.09778568148612976,0.8235015273094177,-0.6488050222396851,-0.5348321199417114,-0.05886511132121086,-0.99703049659729,0.1228298619389534,-0.7481603026390076,0.23270468413829803,-0.0025101553183048964,-0.23790232837200165,-0.09417561441659927,-1.1403453350067139,-0.6977716684341431,-0.7927149534225464,-0.5197861790657043,-0.8315315246582031,-0.5505950450897217,-0.813222348690033,-0.3905298113822937,0.19855093955993652,-0.4468899667263031,-0.21642480790615082,-0.922968864440918,-0.8810170888900757,-0.750928521156311,0.10952011495828629,0.28932756185531616,-0.6910457015037537,-1.7786710262298584,0.30566927790641785,-0.21727974712848663,0.03065895289182663,1.3455849885940552,-1.2667642831802368,-1.6098567247390747,0.22519813477993011,-1.468663215637207,-0.5660351514816284,-1.8540552854537964,-0.3087105453014374,1.2598260641098022,-0.11161691695451736,-0.23684662580490112,1.7154380083084106,-1.674976110458374,-1.7619946002960205,-1.6755163669586182,-1.4004677534103394,-1.2366433143615723,-1.3285329341888428,-1.5284628868103027,0.12171443551778793,-0.9553880095481873,1.403397798538208,-1.3454781770706177,-1.3268266916275024,-1.0302526950836182,-0.07844418287277222,-0.21558712422847748,-1.4981606006622314,0.7449977993965149,1.674039363861084,0.23936882615089417,0.21175198256969452,0.016554269939661026,0.7634773850440979,0.3372536599636078,-0.10861290246248245,0.6502633094787598,0.05449441447854042,0.31680533289909363,0.23052465915679932,-0.3442089259624481,-0.13632167875766754,-0.28158992528915405,0.011065233498811722,0.22583767771720886,0.49511632323265076,0.5898555517196655,0.4384022057056427,0.23502662777900696,0.363793283700943,0.5414969325065613,0.005112796556204557,0.623168408870697,-0.23059992492198944,0.8472187519073486,0.2610536217689514,0.5745970010757446,0.04654894396662712,-0.38502201437950134,0.28259214758872986,0.35664698481559753,-0.4472985565662384,-0.31358763575553894,-0.30711629986763,0.2979227602481842,0.022418895736336708,0.568932831287384,-0.024464163929224014,0.3748043477535248,0.3773939609527588,0.9090377688407898,-0.23744431138038635,-0.5466179251670837,-0.3199562132358551,-0.31225940585136414,-0.15874938666820526,0.4109410047531128,0.2707975506782532,0.6573989987373352,0.3044997453689575,0.4849799573421478,0.7313635945320129,0.27185195684432983,-0.019431600347161293,0.5395381450653076,-0.48988744616508484,0.14041921496391296,0.6222113370895386,0.43465861678123474,-0.02594311162829399,-0.16435889899730682,0.634137749671936,0.14956554770469666,-0.15428879857063293,-0.3443242907524109,-0.3527732491493225,0.8045081496238708,-1.0133733749389648,-0.5566063523292542,-0.23791298270225525,-0.6117822527885437,0.23799622058868408,-0.20180298388004303,-0.14142844080924988,-0.3011738955974579,-0.06322857737541199,0.25038617849349976,-1.1053073406219482,-0.5430025458335876,-1.0709534883499146,-0.579511821269989,-0.7836533188819885,0.005245457403361797,-0.6753349900245667,-0.6248283982276917,0.03493356704711914,-0.3772677183151245,0.33056578040122986,-0.7918328046798706,-0.07883946597576141,-0.6495246887207031,0.07252132892608643,0.1425926387310028,-0.23227210342884064,-1.9594789743423462,0.054622143507003784,-0.02665622904896736,0.13557575643062592,0.002170116640627384,0.3182472288608551,0.3991905450820923,0.1055278405547142,0.10576912760734558,0.28483888506889343,0.8507716655731201,0.25432947278022766,0.11689700931310654,0.1560109406709671,0.011123361997306347,0.25946134328842163,0.17801637947559357,0.21214357018470764,0.2542322874069214,0.7238917350769043,0.7152923941612244,0.2583768963813782,0.2655915915966034,0.2735966742038727,0.655191957950592,-0.4333071708679199,0.40133658051490784,0.22356227040290833,0.39292111992836,-0.14667610824108124,0.07430801540613174,0.21743711829185486,0.4021727442741394,-0.26129820942878723,0.25197044014930725,-0.0655420795083046,-0.9567847847938538,1.3013389110565186,1.3921085596084595,0.2937154471874237,1.268707513809204,0.059273526072502136,1.3225939273834229,-0.16084526479244232,-0.7761460542678833,0.3210557997226715,-0.14311519265174866,-1.0246535539627075,0.9976379871368408,1.2572704553604126,0.8563931584358215,1.5553839206695557,1.3327525854110718,1.3304357528686523,1.4868137836456299,0.30742892622947693,1.2273510694503784,-0.7162202596664429,1.0192971229553223,0.9256529808044434,1.2513623237609863,-0.18367309868335724,0.6094644069671631,1.0457991361618042,0.4730791449546814,-0.6247469186782837,0.07004634290933609,-0.09430094808340073,0.117824025452137,0.15683139860630035,0.303458571434021,0.059719428420066833,0.402026504278183,0.07320703566074371,0.5671082139015198,-0.19321316480636597,-0.5892298221588135,-0.2229621261358261,-0.10820136964321136,-0.20982420444488525,0.4564463198184967,0.12267730385065079,0.6203196048736572,0.25966769456863403,0.17954295873641968,0.5094770193099976,0.20365718007087708,0.16713055968284607,0.4109843373298645,-0.6647481322288513,0.43031957745552063,0.44277992844581604,0.1858818531036377,-0.015573687851428986,-0.009481105953454971,0.5405697226524353,-0.7994217872619629,-0.17568501830101013,0.08615022152662277,0.08134034276008606,-0.03451388329267502,0.24761004745960236,0.3516632914543152,-0.25125715136528015,0.5546118021011353,-0.14805984497070312,0.4581257998943329,0.020035263150930405,0.0014193508541211486,-0.30762988328933716,-0.20236562192440033,-0.07119838148355484,0.3306273818016052,0.517973005771637,0.5930334329605103,0.2168409675359726,0.23424997925758362,0.585728108882904,0.6793146133422852,-0.2775687575340271,0.4697292745113373,-0.28210464119911194,0.22360479831695557,0.4252874553203583,0.2753433287143707,-0.3143596053123474,-0.22270764410495758,0.27169135212898254,0.34926044940948486,-0.03888612985610962,-0.1373109668493271,0.05437713861465454,0.6781346797943115,0.042384494096040726,-0.28960368037223816,-0.18174104392528534,-0.6290378570556641,-0.23517441749572754,-1.1895723342895508,-0.11674797534942627,0.7086479663848877,-0.15542759001255035,0.02619621530175209,0.8773794174194336,-0.4291495084762573,-0.7933487296104431,-0.9402068853378296,-0.09756583720445633,-0.7354744672775269,-0.8134924173355103,-0.178567573428154,-0.16006122529506683,-0.1250513345003128,0.43728500604629517,-0.24485190212726593,-0.8299451470375061,-0.4269751310348511,-0.0648166686296463,-0.17748063802719116,-0.42109912633895874,0.8435571193695068,0.5704590678215027,0.00937153771519661,0.19062471389770508,-0.06994500011205673,0.3316476345062256,0.13614338636398315,-0.14822359383106232,0.6347554922103882,-0.2985993027687073,0.19347816705703735,-0.3026893138885498,0.174994096159935,-0.08690407127141953,-0.2922012209892273,0.23558309674263,0.21259209513664246,0.48715078830718994,0.3962484300136566,0.12755686044692993,0.45825737714767456,0.31743669509887695,0.4772016704082489,0.007473684847354889,0.544511079788208,-0.3133225739002228,0.6753021478652954,0.18903662264347076,0.4625265896320343,0.06429214030504227,-0.030150871723890305,0.3986288905143738,0.8399263024330139,-0.08295764029026031,-0.042707640677690506,0.0751200020313263]},{"shape":[32],"values":[-0.19289134442806244,0.5520238876342773,0.5920280814170837,-0.024416791275143623,0.47633886337280273,0.27646759152412415,0.8667629361152649,-0.016857018694281578,-0.23592638969421387,-0.048570677638053894,-0.031654391437768936,-0.22481076419353485,0.6360779404640198,0.5786178112030029,0.7274031639099121,0.48550286889076233,0.6440051794052124,0.7599784135818481,0.7812166810035706,-0.06798072159290314,0.733330488204956,-0.25852328538894653,0.7236971259117126,0.6554762125015259,0.4611656665802002,-0.03909749165177345,0.03095884434878826,0.6088290810585022,-0.16550590097904205,-0.18114712834358215,-0.057049959897994995,-0.050691165030002594]},{"shape":[32,9],"values":[-0.07294449955224991,-0.7101569771766663,-1.0564700365066528,-0.12670397758483887,-0.02579367160797119,-0.7306110262870789,-0.5046269297599792,-0.4016202390193939,-1.0789129734039307,0.4043385982513428,0.21016396582126617,0.8011797666549683,0.5465162396430969,0.47047650814056396,0.6731991767883301,0.15955032408237457,0.6954807043075562,0.8250145316123962,0.5978392362594604,0.6982210874557495,0.48800647258758545,0.8474814295768738,0.7147015929222107,0.3430224061012268,0.3876814544200897,0.6671123504638672,0.45470136404037476,-0.3595269024372101,-0.016214609146118164,0.11628170311450958,0.10849912464618683,-0.3231404721736908,-0.11086414009332657,0.3261779546737671,-0.12338133156299591,0.3866320848464966,0.28713828325271606,0.6992967128753662,0.8571444749832153,0.3912695348262787,0.6418943405151367,0.7245953679084778,0.5537093281745911,0.1993148922920227,0.30765482783317566,0.6510781049728394,0.1985275149345398,0.034815456718206406,0.06489551067352295,0.39194637537002563,0.2251587063074112,0.1271532028913498,0.06124800071120262,-0.16837888956069946,1.0517706871032715,0.6232800483703613,0.5411510467529297,1.0443613529205322,0.7954865097999573,0.2252836972475052,1.0051095485687256,0.4780315160751343,0.32684481143951416,-0.26548126339912415,-0.24634400010108948,0.06693582236766815,-0.1241002157330513,-0.22125142812728882,-0.14973360300064087,-0.2612665891647339,0.06947329640388489,0.2676134705543518,-0.7682701349258423,-0.8569563031196594,-0.43827787041664124,-0.8419610857963562,-0.7062404751777649,-0.5049645304679871,-0.6198286414146423,-0.6004204154014587,-1.1638258695602417,-0.12618662416934967,-0.2899249792098999,-0.1295849233865738,0.09400233626365662,-0.005134993698447943,-0.1426795870065689,0.15659192204475403,0.05438617616891861,-0.274093896150589,-0.0739070475101471,-0.21335183084011078,0.28881457448005676,-0.07172583043575287,-0.19140668213367462,-0.1326122134923935,0.2035929560661316,-0.05762321501970291,0.017512459307909012,-1.3430910110473633,-0.6634530425071716,-0.5356146097183228,-1.0267634391784668,-0.7728244662284851,-0.3738170564174652,-1.2074034214019775,-0.6393671035766602,-0.004996439442038536,0.6476154327392578,0.7392075061798096,0.9883432388305664,0.45485153794288635,0.7363227009773254,0.43555185198783875,0.8870622515678406,0.921326756477356,0.79250168800354,0.9951552748680115,0.8659332394599915,0.7709075808525085,0.4606165289878845,0.8845327496528625,1.190724492073059,0.6039837598800659,0.7491241097450256,0.6483133435249329,0.24592278897762299,0.19543656706809998,0.5503109097480774,0.8686623573303223,0.6588493585586548,0.642114520072937,0.8097595572471619,0.4397280216217041,0.19282402098178864,0.9071536064147949,0.3921755850315094,0.5882783532142639,0.6798408627510071,0.39159882068634033,0.4240770936012268,0.34484434127807617,0.40143275260925293,0.875095009803772,0.42855310440063477,0.17745448648929596,0.5781040191650391,0.8819110989570618,0.580357551574707,0.13493601977825165,0.9656592607498169,0.5401900410652161,0.5929440259933472,0.9361089468002319,0.6272975206375122,0.3123185336589813,0.5130525231361389,0.3612011671066284,0.7031156420707703,0.6010262370109558,0.9113955497741699,0.584989607334137,0.6019062399864197,0.4965285360813141,0.5157516598701477,0.7168089151382446,0.2547184228897095,0.8249096870422363,0.8551156520843506,0.5189170837402344,0.7708610892295837,-0.229313924908638,-0.3173919916152954,-0.20774778723716736,-0.21417482197284698,-0.1935185045003891,0.02037953957915306,0.3255211114883423,0.31628525257110596,-0.16922003030776978,0.6634665727615356,0.44183000922203064,0.1973373293876648,-0.048191580921411514,0.4710850715637207,0.3111024498939514,0.6790637373924255,0.33708110451698303,0.39774492383003235,-0.9896124601364136,-0.6326262950897217,-0.8534256815910339,-0.6847942471504211,-0.7934765815734863,-0.6317694783210754,-0.3477596938610077,-1.0419871807098389,-0.9065073728561401,0.5412403345108032,0.79536372423172,0.46740493178367615,0.6261378526687622,0.651707649230957,0.40959373116493225,0.34294870495796204,0.7623180747032166,0.7309436202049255,0.347251296043396,0.1981455534696579,0.31724852323532104,0.8351060152053833,0.363889217376709,0.11342528462409973,0.6252355575561523,0.4138157069683075,0.4267961382865906,0.2456800639629364,0.8866648077964783,0.4339343011379242,0.8180228471755981,0.3106747269630432,0.7131444215774536,0.4002668857574463,0.6789698004722595,0.8591116070747375,-0.23397603631019592,0.242252916097641,-0.23526804149150848,-0.11770598590373993,0.5386929512023926,-0.10891277343034744,-0.1728287935256958,-0.019622061401605606,0.41519951820373535,0.3110775351524353,0.1770472228527069,0.46034693717956543,-0.3225281536579132,-0.40584197640419006,-0.10489126294851303,0.13560059666633606,-0.09568031132221222,0.593696653842926,0.5164557695388794,0.5639111399650574,0.29781416058540344,0.38524824380874634,1.0009586811065674,0.8552950024604797,0.7906998991966248,0.798217236995697,0.22054098546504974,-0.8732587099075317,0.15624724328517914,0.35185399651527405,-0.9891534447669983,-0.07430952787399292,0.4863356053829193,-1.2745100259780884,-0.24252723157405853,0.5256677865982056,-0.40568163990974426,-0.7258393168449402,-0.8875227570533752,-0.6325629949569702,-0.547374963760376,-0.9668992161750793,-0.7401493191719055,-0.6753203868865967,-1.0325504541397095,-0.18231841921806335,-0.08292237669229507,0.13968029618263245,0.19326765835285187,-0.029498694464564323,-0.11149146407842636,0.02653961442410946,-0.21472664177417755,0.28583824634552,0.34059083461761475,-0.21489404141902924,-0.06375852227210999,-0.262673944234848,-0.07380464673042297,-0.07733398675918579,-0.16535145044326782,0.09575832635164261,-0.2838197350502014]},{"shape":[9],"values":[0.5860995054244995,0.1891506016254425,0.05244056135416031,0.4745776951313019,0.3027290105819702,0.10796598345041275,0.7001661062240601,0.5033590793609619,0.2587900757789612]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-11.json new file mode 100644 index 0000000..a6a1820 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:10:43.486Z","weights":[{"shape":[20,32],"values":[0.6738793253898621,-0.4503014385700226,0.18401286005973816,0.3653114438056946,0.2115315943956375,0.5729044675827026,0.5421445369720459,-0.22630609571933746,0.4939570426940918,0.8622109293937683,-0.20863288640975952,-0.24572932720184326,0.16536681354045868,-0.032040007412433624,0.5400491952896118,0.11053093522787094,0.31997445225715637,0.37096068263053894,0.4354083836078644,0.2350735366344452,0.7667832374572754,0.6267160177230835,0.6164348721504211,-0.48089873790740967,-0.02088812366127968,-0.04285872355103493,0.3094365894794464,0.7454519271850586,0.760591983795166,-0.009738486260175705,0.7016127705574036,0.6537780165672302,0.29158756136894226,-0.15155744552612305,0.13882051408290863,0.4548121392726898,0.6264740824699402,-0.058349501341581345,0.2641562223434448,-0.0784635916352272,-0.3245607316493988,-0.3575952649116516,0.19970060884952545,-0.1874619424343109,-0.2917039096355438,0.28495126962661743,0.5222457051277161,0.23786616325378418,0.20875702798366547,0.14326627552509308,-0.098680779337883,-0.10008492320775986,-0.12136741727590561,0.21517683565616608,0.37449491024017334,-0.16076765954494476,0.03840114176273346,0.022857557982206345,-0.15777216851711273,0.42118826508522034,-0.6778364181518555,-0.3303242325782776,0.39305585622787476,0.3798941969871521,0.1860705316066742,-0.6773423552513123,0.7844563126564026,0.3447258174419403,0.6714802384376526,0.2687455713748932,-0.36758700013160706,-0.6469547152519226,-0.6252439618110657,0.11759060621261597,0.7241564393043518,-1.036690354347229,-0.788154661655426,0.7934377193450928,0.007701663766056299,-0.1784273386001587,0.6418864130973816,-0.408671498298645,0.26033511757850647,0.14824773371219635,-0.27114659547805786,0.09985364228487015,-0.05398387461900711,0.03808179125189781,-0.611845076084137,0.4380352199077606,-0.21333077549934387,0.3337206542491913,-0.20369504392147064,-0.6163703799247742,0.10228072106838226,-0.1388901323080063,-0.42257794737815857,2.3793704509735107,-1.9002306461334229,-1.7425802946090698,-1.4932516813278198,-0.36047157645225525,-0.33055850863456726,2.1416826248168945,2.3407769203186035,-0.07705042511224747,-1.5603824853897095,2.1033904552459717,2.1420092582702637,-1.3988428115844727,-1.3758821487426758,0.7505232095718384,-1.915858507156372,-0.6560036540031433,-0.7537834048271179,-0.7597029209136963,-0.7317464351654053,-0.21850953996181488,0.15450429916381836,-0.7362608909606934,0.8543099761009216,-1.21653413772583,-0.3659067749977112,-1.8856271505355835,-0.20833876729011536,1.8033655881881714,0.17762155830860138,-0.21064256131649017,-0.20540384948253632,-0.17656786739826202,0.0029223053716123104,-0.11813315004110336,-0.04212137311697006,-0.2813084125518799,0.2875864505767822,0.10242515802383423,0.1498117297887802,0.3776334822177887,-0.043830256909132004,-0.26877152919769287,-0.23384259641170502,0.4092153012752533,-0.030502529814839363,-0.46474045515060425,-0.0075043123215436935,0.10069365054368973,0.5482957363128662,0.2829309403896332,-0.043002888560295105,0.19930151104927063,-0.6502113342285156,0.11261425167322159,-0.42670390009880066,0.48132720589637756,0.3658159077167511,-0.020066048949956894,0.3461575508117676,0.35680028796195984,-0.6296870112419128,-0.2716379761695862,0.05974815413355827,0.004855517763644457,-0.14918386936187744,-0.4951697289943695,-0.24378429353237152,0.21291784942150116,-0.22203661501407623,0.41750389337539673,0.5006454586982727,0.37527573108673096,-0.22970208525657654,0.18342046439647675,0.11304499208927155,-0.6321066617965698,-0.06543700397014618,0.012038487009704113,-0.40611255168914795,0.39025822281837463,0.6195455193519592,-0.011389725841581821,0.0020380334462970495,-0.13911011815071106,-0.327218621969223,0.3437829911708832,-0.06628697365522385,0.5323356986045837,-0.1894008219242096,-0.4965810775756836,0.44982028007507324,0.04558119177818298,-0.36023998260498047,-0.044397711753845215,0.11826162785291672,0.6168302893638611,-0.2734639644622803,0.01784251071512699,-0.11463279277086258,-0.1788579523563385,-0.28962016105651855,0.4881491959095001,0.30736854672431946,0.037346553057432175,-0.23568059504032135,0.09434442967176437,0.5213901996612549,-0.2515507936477661,-0.4839255213737488,-0.17387755215168,-0.5371110439300537,-0.10258721560239792,0.25774356722831726,0.3641664683818817,0.04925680160522461,0.10194998979568481,-0.2343681901693344,-0.28518539667129517,-0.07344596832990646,-0.04784908890724182,-0.17702768743038177,0.059129249304533005,0.2135993093252182,0.7194174528121948,-0.3586766719818115,-0.6061233282089233,0.14184851944446564,-0.04904764145612717,-0.1523810178041458,-0.3083917796611786,0.21834982931613922,0.2410590946674347,0.2145908772945404,-0.08820333331823349,-0.08471421897411346,0.5156217813491821,-0.09817884117364883,0.26851531863212585,-0.09351175278425217,0.07680267840623856,-0.28650137782096863,-0.100908562541008,-0.32581835985183716,-0.004871494136750698,-0.050681233406066895,0.4712691307067871,0.12408515065908432,-0.11424477398395538,0.1728326678276062,0.08514672517776489,-0.6885827779769897,0.20180313289165497,0.07313916087150574,-0.26010069251060486,0.14816023409366608,0.08727230876684189,0.196437269449234,-0.23284870386123657,0.027368003502488136,-0.1490175724029541,-0.04903062805533409,-0.09164031594991684,0.2114936113357544,0.02965805120766163,-0.040198877453804016,-0.3356306254863739,0.3281779885292053,0.21850979328155518,0.20332445204257965,0.29774072766304016,-0.006148163229227066,0.15284639596939087,-0.0683668926358223,-0.01446203701198101,-0.07496801018714905,0.253426730632782,0.10052047669887543,-0.13105814158916473,-0.3120388686656952,0.24980778992176056,-0.019359800964593887,-0.13393032550811768,-0.3143759071826935,-0.09216707944869995,0.05248567461967468,-0.32534122467041016,0.1037643775343895,0.2566392421722412,0.3054083287715912,-0.18058441579341888,0.18928052484989166,0.009376652538776398,0.018350249156355858,-0.2520339787006378,-0.05111147463321686,-0.0566156841814518,0.32506823539733887,-0.3255741000175476,0.07635895907878876,0.05677106976509094,0.2791892886161804,-0.2246205061674118,0.2028130739927292,-0.31062525510787964,0.22499744594097137,-0.14863477647304535,0.08392947167158127,0.15657083690166473,-0.09021709859371185,-0.11737250536680222,-0.19126033782958984,-0.16613438725471497,0.3015187978744507,-0.07277937233448029,-0.06649009138345718,-0.11992616206407547,0.13523642718791962,-0.2065386176109314,0.15857452154159546,0.11145707964897156,0.010568153113126755,-0.2146056890487671,0.06655070185661316,0.22319521009922028,0.01037893071770668,-0.04948786646127701,0.31172025203704834,-0.1719094067811966,0.20222580432891846,0.1508539319038391,-0.18135711550712585,-0.23345667123794556,0.31573566794395447,0.01655215583741665,0.3038550317287445,-0.0835493952035904,-0.046470411121845245,-0.2107100486755371,0.2330351620912552,0.31856387853622437,-0.024177512153983116,-0.11361642181873322,0.2689647376537323,0.03498774394392967,-0.19757907092571259,0.0669197142124176,-0.2795121371746063,-0.19237715005874634,0.02194940857589245,0.3337097764015198,0.3167671263217926,0.02731909230351448,-0.15746119618415833,-0.27747610211372375,0.18657556176185608,0.021211832761764526,-0.013769286684691906,-0.30323994159698486,0.12537263333797455,-0.004940520040690899,0.014592673629522324,0.2728995680809021,0.0553668774664402,0.04005904868245125,-0.17437905073165894,0.036645032465457916,0.11553405225276947,0.10047215968370438,0.04566590487957001,0.21489860117435455,-0.2601315975189209,-0.26535674929618835,-0.12084785848855972,0.263963907957077,0.13579058647155762,0.3366287648677826,-0.3349705934524536,0.20826782286167145,-0.18970987200737,0.2704409062862396,-0.062225621193647385,0.32950884103775024,-0.05348573252558708,0.12280085682868958,-0.07298194617033005,-0.2524283230304718,0.28830647468566895,-0.33004486560821533,0.22846421599388123,-0.26057884097099304,-0.09740614145994186,-0.18124645948410034,0.3089718520641327,0.05032721534371376,-0.18429891765117645,0.2846848964691162,-0.06886304169893265,-0.130560040473938,-0.33780932426452637,-0.1184786930680275,-0.31571832299232483,-0.30316877365112305,-0.20774003863334656,-0.33332425355911255,0.11761865019798279,0.03520986810326576,0.15789960324764252,0.2675779461860657,0.31501078605651855,-0.16618357598781586,0.3073717951774597,0.07857600599527359,0.3157201409339905,0.08302143216133118,-0.31549665331840515,0.060556285083293915,0.10907218605279922,0.021636096760630608,0.1701822280883789,0.3048345446586609,0.2802516520023346,-0.27437302470207214,0.2582094669342041,0.26868370175361633,-0.11820195615291595,-0.21759402751922607,-0.0936087891459465,-0.18100261688232422,-0.33859479427337646,0.2710990905761719,0.3134715259075165,0.12185327708721161,0.27156582474708557,0.041199587285518646,-0.0017012994503602386,0.23708516359329224,-0.22172923386096954,0.016269918531179428,-0.011746488511562347,-0.004901309963315725,-0.016014739871025085,-0.1341778039932251,-0.13432826101779938,-0.22389940917491913,0.08863601833581924,-0.04896754398941994,0.2911268174648285,0.26845434308052063,0.18454265594482422,-0.0664873793721199,-0.2170085310935974,-0.23251885175704956,0.032399408519268036,0.10173890739679337,-0.12804174423217773,-0.2766142785549164,-0.2158776819705963,-0.0822317972779274,0.26553547382354736,-0.1252482384443283,-0.005298076197504997,0.07086063921451569,-0.2955566942691803,0.1588587611913681,0.26069068908691406,0.2296200394630432,-0.11712507903575897,-0.04142516106367111,0.20646288990974426,0.1484050154685974,-0.11195757240056992,-0.11383719742298126,-0.18140842020511627,-0.013039746321737766,-0.0038676324766129255,0.06435700505971909,0.0744105726480484,0.20202286541461945,-0.038152191787958145,-0.023115888237953186,-0.07792432606220245,-0.2148410975933075,-0.2798222005367279,-0.08427772670984268,0.15707927942276,-0.13204148411750793,-0.035479046404361725,0.08629442006349564,0.32279327511787415,-0.14895610511302948,0.04390992224216461,-0.03796534612774849,-0.2858335077762604,0.18807511031627655,-0.03587481752038002,0.08137679845094681,0.2750574052333832,0.19301283359527588,-0.23883235454559326,0.1734505295753479,-0.19827397167682648,-0.16161474585533142,0.0753844752907753,0.1883910596370697,0.010302746668457985,0.28574079275131226,0.07730778306722641,0.1299823671579361,0.25436335802078247,-0.049137018620967865,-0.06852409988641739,0.18652768433094025,0.337722510099411,0.25419583916664124,0.09252533316612244,0.11535954475402832,0.3379454016685486,-0.09518205374479294,0.02492372877895832,0.289016455411911,-0.25719138979911804,0.27739080786705017,-0.3352101147174835,-0.1743449866771698,0.2394280731678009,0.02998707816004753,0.019301412627100945,0.25396597385406494,0.3354196548461914,0.2509908676147461,-0.11435842514038086,0.11296830326318741,0.027230581268668175,0.157683327794075,-0.09927098453044891,-0.16050225496292114,-0.07882519066333771,-0.289649099111557,0.12479881942272186,0.17934080958366394,-0.24384766817092896,-0.16486380994319916,0.10720589011907578,-0.30117443203926086,-0.13926789164543152,0.33079206943511963,0.24831412732601166,-0.19976118206977844,-0.21045979857444763,-0.10552603006362915,0.2778718173503876,0.28362205624580383,0.33537280559539795,0.18676206469535828,0.11587387323379517,-0.08377062529325485,-0.16115257143974304,-0.30535051226615906,0.16016457974910736,-0.004637099336832762,0.02513105608522892,0.13303335011005402,0.17392310500144958,-0.1848643720149994,0.20168213546276093,0.03617464751005173,-0.09149864315986633,-0.11660110950469971,-0.11154478043317795,0.09598101675510406,0.2845783829689026,-0.07299692183732986,0.16035306453704834,-0.29514631628990173,0.2793616056442261,-0.33772745728492737,-0.1428883671760559,0.033972300589084625,-0.29280900955200195,-0.005810007452964783,0.1581607460975647,-0.05125786364078522,0.06521793454885483,-0.15296140313148499,-0.12207092344760895,-0.2922821342945099,0.0025025196373462677,-0.06550011038780212,0.03285999596118927,-0.14900170266628265,-0.24059300124645233,-0.23264063894748688,0.11042136698961258,0.04183875769376755,-0.1024976596236229,0.21926437318325043,-0.3052557110786438,0.17279736697673798,0.11026468873023987,-0.05945068225264549,0.0800953060388565,-0.03501921147108078,-0.20989198982715607,0.11232879757881165,-0.31677183508872986,-0.2850502133369446,-0.04749941825866699,-0.04006413370370865,-0.1701803207397461,0.23998764157295227,0.11982559412717819,0.1696871817111969,0.1233755573630333,0.10399743169546127,0.3297794759273529,-0.12892645597457886,0.17451971769332886,0.04504140093922615,0.031723201274871826,-0.054965708404779434,-0.07630153000354767,-0.216399148106575,0.04505632072687149,0.09757337719202042,0.1978098750114441,-0.1268826574087143,-0.13114605844020844,-0.09836307913064957,-0.33607515692710876,0.20016485452651978,-0.11356334388256073,-0.22368675470352173,0.2738468050956726,0.08346442878246307,0.08876392245292664,0.06818068027496338,0.031353794038295746,0.12011737376451492,0.21333470940589905,0.24015183746814728,0.33370891213417053,-0.09094570577144623]},{"shape":[32],"values":[0.7447078824043274,-0.2705634534358978,-0.6531980037689209,-0.47016745805740356,0.013710645027458668,0.7642860412597656,0.7517433166503906,-0.4916149079799652,-0.6315878033638,0.559844434261322,-0.36810392141342163,-0.4599889814853668,-0.6466617584228516,-0.4286297857761383,-0.5063928365707397,0.6690239906311035,-0.5022603869438171,0.6407384872436523,0.6073432564735413,0.5762097835540771,0.8161419630050659,0.7715922594070435,0.6138572692871094,0.7994920611381531,0.5436790585517883,0.451864093542099,0.8280235528945923,-0.17613108456134796,0.6430265307426453,-0.36305975914001465,0.7011425495147705,0.7046658992767334]},{"shape":[32,32],"values":[0.5309829711914062,0.29414817690849304,0.44921043515205383,0.24242696166038513,0.18996720016002655,0.19769306480884552,0.4908411502838135,0.07872158288955688,0.40303826332092285,0.41970059275627136,0.38836902379989624,0.21578221023082733,0.10276638716459274,0.4988430440425873,0.3446195125579834,-0.118965744972229,0.13213777542114258,0.32482481002807617,0.3058130443096161,0.08400357514619827,0.29606205224990845,0.051251377910375595,0.07161636650562286,-0.17860960960388184,0.6101559400558472,-0.09197433292865753,-0.1295359879732132,0.15041321516036987,0.652107298374176,0.8493384122848511,0.30492570996284485,0.05605107918381691,-1.2521812915802002,1.0183457136154175,-0.9821141958236694,-1.10542631149292,-0.2150060087442398,-0.15305890142917633,-0.7455461025238037,-0.26235461235046387,-1.010896921157837,-0.5703993439674377,-0.9893674254417419,-0.24104569852352142,-1.1481724977493286,-0.7898567914962769,-0.6619684100151062,-1.031267523765564,-1.34621000289917,-0.7712680697441101,-0.5839521884918213,-0.8936657309532166,-1.1052496433258057,-0.6370986700057983,-0.9757344126701355,-0.5543401837348938,-1.2081071138381958,1.0096030235290527,0.19244712591171265,-1.3049132823944092,0.5461326837539673,-1.101408839225769,0.6676678657531738,0.0420769602060318,-0.8152628540992737,1.058059811592102,-1.0867884159088135,-1.2554223537445068,-0.11434675008058548,1.0679510831832886,-0.8688504695892334,0.09048040956258774,-0.6537742614746094,-0.8134320378303528,-0.9248073697090149,0.24080927670001984,-1.068586826324463,-1.2033194303512573,-0.6350337862968445,-0.547654926776886,-0.5880679488182068,-1.0389399528503418,-0.9474454522132874,-0.7523998618125916,-0.7841464877128601,-1.0353858470916748,-0.9869035482406616,-0.34410911798477173,-1.109201431274414,-0.1674850583076477,-0.22191761434078217,-0.9325279593467712,-0.7498306632041931,0.49400991201400757,-0.06635595113039017,0.031076092272996902,-1.0040382146835327,0.6474719643592834,-0.3603110909461975,-0.5023345351219177,-0.05004961043596268,0.39873671531677246,-0.2919889986515045,-0.10730235278606415,-0.8846532702445984,-0.6870056390762329,-0.6892784833908081,-0.2274838089942932,-0.4140707552433014,-0.8372687101364136,-0.5334639549255371,-0.8397745490074158,-0.407530277967453,-0.6390184164047241,-0.8222149610519409,-0.45303311944007874,-0.8943604230880737,-0.6283947229385376,-0.8135791420936584,-0.4344745874404907,-0.6240370273590088,0.2202364057302475,-0.23546160757541656,-0.2249142825603485,-0.604427695274353,0.07683692127466202,0.14898940920829773,0.036264047026634216,-0.1915687471628189,0.42382216453552246,-0.602715253829956,-0.5530958771705627,-0.07756606489419937,0.4248555302619934,0.013225889764726162,-0.0852188915014267,0.05760883912444115,-0.5050522089004517,-0.15358597040176392,0.216885507106781,-0.7841955423355103,-0.2547571063041687,-0.8565171957015991,-0.24400317668914795,-0.09947967529296875,-0.31936702132225037,-0.09996096044778824,-0.28379514813423157,-0.8205258846282959,-0.5300807952880859,-0.28203174471855164,-0.3564152419567108,-0.3301509618759155,0.39264848828315735,0.20850224792957306,-0.2752942442893982,-1.0200090408325195,0.30990418791770935,0.716192901134491,-0.07005412131547928,0.06537675857543945,-0.06273423880338669,0.5369598865509033,0.2222880721092224,-0.2603375315666199,-0.06768783926963806,0.37788981199264526,-0.23884356021881104,0.7199585437774658,0.5743739008903503,0.20869043469429016,0.1598716378211975,0.6058496832847595,0.1611434668302536,0.16993264853954315,0.5151313543319702,0.8102397322654724,0.3388330936431885,0.4206576347351074,0.23040084540843964,0.15877316892147064,0.6139655113220215,0.4729174077510834,0.18339693546295166,0.5263091325759888,-0.37191933393478394,0.1531451940536499,0.5059536099433899,0.48149582743644714,0.7990370988845825,0.34589648246765137,-0.14441677927970886,0.3958699703216553,0.4387943148612976,0.5225034952163696,0.6455850005149841,-0.029781382530927658,0.08731266111135483,0.3515259027481079,0.0369316041469574,0.28869277238845825,0.11802158504724503,0.616317093372345,0.1939191371202469,0.500774621963501,0.07714097201824188,0.23569056391716003,0.45793265104293823,0.7122124433517456,0.37948963046073914,0.3990181088447571,0.259042888879776,0.3817196488380432,0.3531520366668701,0.019334139302372932,0.4528122842311859,0.582886278629303,0.2718279957771301,-0.01722439005970955,0.42513710260391235,0.4767380356788635,0.05267326161265373,0.016751239076256752,0.21014158427715302,-0.7772072553634644,1.0370999574661255,-0.609758734703064,-0.3204321563243866,0.004441604483872652,0.22465026378631592,-0.4367406964302063,-0.1393793672323227,-0.5402445197105408,-0.19565249979496002,-0.49745815992355347,0.1647779941558838,-0.7786114811897278,-0.581210196018219,-0.21192701160907745,-0.5770063996315002,-0.6948065161705017,-0.8403165936470032,-0.7035425305366516,-0.5375322699546814,-0.7195660471916199,-0.3798346519470215,-0.2731666564941406,-0.00975114293396473,-0.7789984345436096,0.6927841305732727,-0.021078119054436684,-0.8777564764022827,0.23542416095733643,-1.9072012901306152,0.16573625802993774,0.15349598228931427,-0.9739507436752319,1.401533603668213,-1.1819136142730713,-0.6375063061714172,0.06760092824697495,-0.1497848480939865,-1.1797568798065186,-0.2694648802280426,-1.4186537265777588,-0.7826172709465027,-0.5428905487060547,-0.31394362449645996,-1.155258059501648,-1.2376548051834106,-0.7246267199516296,-0.5465318560600281,-1.1304317712783813,-1.0610454082489014,-0.9774032831192017,-0.7430981993675232,-1.2651082277297974,-1.012839674949646,-0.9683241844177246,-0.4132680892944336,-0.9324281811714172,0.7568156719207764,0.10066986829042435,-1.3676482439041138,0.9653183817863464,-2.430232048034668,0.4853515028953552,-0.07485038042068481,0.43036749958992004,0.5249282717704773,0.6995528340339661,0.6336474418640137,0.08266914635896683,-0.07936184853315353,0.35481300950050354,-0.11049831658601761,0.5567999482154846,0.41174831986427307,0.4137733578681946,0.010931442491710186,0.758784830570221,0.3506465256214142,0.7500638961791992,0.2755853235721588,0.24135351181030273,0.7377675771713257,0.028338858857750893,0.18481290340423584,0.6016110777854919,0.2780475616455078,-0.027776570990681648,-0.18272286653518677,0.34165582060813904,0.2149919867515564,-0.1252041459083557,0.6810829639434814,0.46816402673721313,0.3046833574771881,-0.13935264945030212,-0.1357288807630539,-1.0303689241409302,0.5581569075584412,-0.3142413794994354,-0.7447941899299622,-0.11931812763214111,0.8093383312225342,-0.6930610537528992,0.040522586554288864,-0.4943214952945709,-0.5015556216239929,-0.8030352592468262,-0.2808903455734253,-0.5838478207588196,-0.7530065178871155,-0.836605966091156,-0.5935779809951782,-0.3983863592147827,-0.9939454793930054,-0.8325998783111572,-0.8064555525779724,-0.9404956698417664,-0.4021816551685333,-0.5018215775489807,-0.1540432721376419,-0.7587485909461975,-0.32301756739616394,-0.2245965152978897,-0.7925590872764587,0.16989055275917053,-0.09413282573223114,-0.3677939772605896,0.208049014210701,-1.0543402433395386,1.0695449113845825,-1.092927098274231,-1.2308543920516968,-0.30936968326568604,0.17036524415016174,-0.7230445742607117,-0.2941683530807495,-1.3585460186004639,-1.105350136756897,-1.1458371877670288,0.0887676253914833,-1.1990251541137695,-1.3660112619400024,-0.9173638820648193,-1.0986366271972656,-1.1030813455581665,-1.457238793373108,-0.9875114560127258,-0.7058606743812561,-1.4281995296478271,-1.0753401517868042,-1.1123676300048828,-0.35425490140914917,-1.219011902809143,0.8053762316703796,-0.12405800074338913,-1.4007511138916016,0.28011539578437805,-1.3947594165802002,0.9924674034118652,0.15723827481269836,-1.6349694728851318,1.4357095956802368,-1.4032747745513916,-1.4519920349121094,0.009443477727472782,0.21202386915683746,-1.1753160953521729,-0.22522519528865814,-1.5399786233901978,-1.361653208732605,-1.117418646812439,0.08254186809062958,-1.2346673011779785,-1.4228512048721313,-1.1457937955856323,-1.1703636646270752,-1.2059487104415894,-1.392765760421753,-1.2842899560928345,-0.7299642562866211,-1.5404763221740723,-1.3195258378982544,-0.9320458173751831,-0.6680343151092529,-1.599708080291748,1.0171947479248047,-0.186050683259964,-1.666770339012146,0.9802144765853882,-2.03729510307312,1.1150431632995605,0.18942314386367798,-1.194240927696228,1.0356661081314087,-0.7260890603065491,-0.6402536630630493,-0.19867153465747833,1.2001471519470215,-0.6019538640975952,0.37723714113235474,-0.6006338000297546,-0.9084714651107788,-0.6170358061790466,0.03556970879435539,-0.8761172890663147,-1.030289888381958,-0.6765828132629395,-0.8362487554550171,-0.885109007358551,-0.8449642658233643,-0.8529052734375,-0.5533612370491028,-1.1267423629760742,-1.1010665893554688,-1.0382720232009888,-0.7782267332077026,-1.2176004648208618,-0.19237516820430756,-0.01609472744166851,-0.9274052381515503,-0.1453935205936432,-0.21475179493427277,0.15579214692115784,-0.0251047071069479,-0.7596538066864014,0.6774235367774963,-0.5009600520133972,-0.5726203322410583,0.09525598585605621,0.6714039444923401,-0.45554086565971375,0.12455736845731735,-1.0152301788330078,-0.5188835859298706,-0.43335971236228943,-0.31087952852249146,-0.7164753079414368,-0.5377066135406494,-0.8154342174530029,-0.5638635158538818,-0.6121981739997864,-0.4856751263141632,-0.39742788672447205,-0.6453046202659607,-0.3864266276359558,-0.2249470353126526,-0.8602495193481445,-0.4433547258377075,-0.8476958274841309,-0.04572527855634689,-0.09936191141605377,-0.7031177878379822,-0.807011067867279,0.3176034390926361,0.2521399259567261,0.062182411551475525,0.32835501432418823,-0.9200262427330017,0.03393837809562683,0.3216792345046997,0.16577523946762085,-0.5314996242523193,1.1507000923156738,-0.017967646941542625,0.5112232565879822,0.6119667291641235,0.654293954372406,0.013125305064022541,0.2716054916381836,0.8313464522361755,-0.021690621972084045,0.3527058959007263,0.8868032097816467,0.6897765398025513,1.116959810256958,0.5669797658920288,0.5174577236175537,0.31566405296325684,0.3329865634441376,0.43530288338661194,0.7168822288513184,-0.09990666806697845,-0.09471472352743149,1.003682255744934,-0.5894509553909302,0.48807311058044434,0.6625086069107056,0.07401968538761139,-0.6548138856887817,0.48612236976623535,-0.5342960357666016,-0.47762399911880493,-0.10433890670537949,0.887542724609375,-0.5543514490127563,-0.005055947694927454,-0.9804352521896362,-0.678714394569397,-0.13089346885681152,0.17838755249977112,-0.8247417211532593,-0.430787056684494,-0.4621097147464752,-0.6640575528144836,-0.6832391619682312,-0.7667616009712219,-0.45770564675331116,-0.32137829065322876,-0.6543529629707336,-0.7963123917579651,-0.39971017837524414,0.030780620872974396,-0.7373667359352112,-0.14656735956668854,-0.2945067882537842,-0.3703171908855438,-0.7816689610481262,0.2816805839538574,0.355807900428772,-0.1917908936738968,0.5549793243408203,0.2369496077299118,0.3695078492164612,0.487408846616745,0.10189918428659439,-0.5291017889976501,0.05643190070986748,-0.11126899719238281,-0.05174048990011215,0.3557121455669403,0.050228994339704514,-0.11691554635763168,-0.014119883999228477,0.02478410303592682,0.4360530376434326,0.4612600803375244,0.05656016618013382,0.1423126757144928,-0.098572738468647,0.11829594522714615,0.4269261658191681,0.4421163499355316,0.34280073642730713,-0.11235977709293365,0.4980041980743408,-0.051800165325403214,-0.06254244595766068,0.12106748670339584,0.16259893774986267,-0.034797269850969315,-0.17314933240413666,-0.31308749318122864,-0.019792398437857628,0.16849543154239655,0.594826340675354,0.5224713683128357,-0.22462311387062073,-0.8726732730865479,0.02865315042436123,-0.16413047909736633,0.24657955765724182,0.35740959644317627,0.20973819494247437,0.06960151344537735,0.30140528082847595,0.17615583539009094,0.5831679701805115,0.27386826276779175,0.10196077823638916,0.43542152643203735,-0.14374952018260956,0.1635255515575409,0.7063880562782288,0.39653435349464417,0.5127459764480591,-0.0966789647936821,0.04243022948503494,0.10481560975313187,0.06806614249944687,0.06439346075057983,0.24833935499191284,-0.1572529822587967,-0.4284781813621521,0.21791085600852966,0.45427024364471436,0.25461238622665405,0.5277595520019531,0.2108486443758011,-0.09003390371799469,0.12409073114395142,0.008184613659977913,0.025216924026608467,0.29041579365730286,-0.03641777113080025,0.3705187439918518,0.19125737249851227,0.6129708290100098,0.36957359313964844,0.13590967655181885,0.10449208319187164,0.3402354121208191,0.4175196886062622,0.43588873744010925,-0.006879456341266632,0.30609750747680664,0.5678739547729492,0.024685155600309372,-0.037837691605091095,0.19018913805484772,-0.23914062976837158,-0.17782247066497803,0.5074054002761841,0.3306373953819275,-0.19097135961055756,-0.17321260273456573,-0.1585855484008789,0.38706299662590027,0.3000832200050354,0.2684646546840668,0.650482714176178,-0.2212841659784317,-0.11839526891708374,0.11472245305776596,0.06541717052459717,0.13111072778701782,0.2677147686481476,0.5943114757537842,-0.07303562760353088,0.6094710230827332,0.4314688444137573,0.5284867286682129,0.41663771867752075,0.5033076405525208,0.39052242040634155,0.3393125832080841,0.35572418570518494,0.6512706875801086,0.5822007656097412,0.28599750995635986,0.25506487488746643,0.4341048300266266,0.2186954766511917,-0.2645217180252075,0.5771827697753906,0.40679123997688293,0.4817062020301819,0.05803944543004036,-0.06747429072856903,0.44578999280929565,-0.08953685313463211,0.2762971818447113,0.3142682909965515,0.07565363496541977,0.17637601494789124,0.2931267023086548,-0.017316125333309174,0.28573569655418396,0.01620241440832615,0.4634743630886078,-0.3087154030799866,0.3303927481174469,0.30188077688217163,0.08341788500547409,0.4378238916397095,0.6448372006416321,0.1673687994480133,0.271310955286026,0.14130541682243347,0.2721366882324219,0.5259068608283997,0.24803438782691956,-0.20651984214782715,0.25017249584198,0.006962866522371769,-0.014859969727694988,0.563791811466217,0.1799050122499466,0.6928771138191223,-0.1099645271897316,-0.27535757422447205,0.13135837018489838,-0.2843528687953949,-0.04703883081674576,0.01588590256869793,-0.0821138322353363,0.33087027072906494,0.43499913811683655,-0.27763012051582336,0.3035826086997986,0.3040596544742584,0.20287825167179108,0.010883376002311707,0.037031982094049454,0.3050674796104431,0.160349503159523,0.29072022438049316,0.6735666394233704,0.615877091884613,0.39717912673950195,0.3489086329936981,0.21856331825256348,0.5709604620933533,0.3692236542701721,0.15001411736011505,0.24535030126571655,-0.1828303039073944,-0.02197757177054882,0.6583733558654785,0.10661434382200241,0.9643856287002563,0.8063552379608154,0.020171068608760834,0.9037843346595764,-0.15387371182441711,0.7651371359825134,0.781696081161499,-0.03316965326666832,-0.8843415379524231,0.36375942826271057,0.09772132337093353,0.8008791208267212,0.41807234287261963,0.9216043949127197,-0.214189350605011,0.9589695334434509,0.49984270334243774,0.7552841901779175,0.6165869832038879,0.4197169840335846,0.5020585060119629,0.8436627388000488,0.59395831823349,0.5039302706718445,0.9616115689277649,0.9651656150817871,0.912105917930603,0.2845688760280609,-0.50714111328125,0.03324572741985321,0.8465721011161804,-0.06298527121543884,-0.4377457797527313,-0.27093061804771423,-0.2830870449542999,0.8610147833824158,-0.4771769642829895,1.0458645820617676,1.0434753894805908,-0.13761763274669647,-0.8841947317123413,1.3223662376403809,-0.31814679503440857,0.7209156155586243,0.8963703513145447,0.6953915357589722,-0.2515013813972473,0.9919678568840027,0.7285065650939941,0.3172859251499176,0.86651611328125,1.1733849048614502,0.6831265687942505,0.9680909514427185,0.93602055311203,0.5093151330947876,0.920957088470459,0.6940757036209106,0.27572330832481384,1.271966814994812,-0.9941261410713196,-0.2698606848716736,1.1623400449752808,0.14774632453918457,-0.04973309487104416,-0.4992586076259613,-0.30346471071243286,0.3374692499637604,0.07281508296728134,0.603834331035614,0.8972991704940796,-0.04599495977163315,0.030032312497496605,0.4192359149456024,-0.012822546064853668,0.1618797481060028,0.23765107989311218,0.42323043942451477,-0.2764325439929962,0.7092952728271484,0.21962718665599823,0.34411630034446716,0.5183295011520386,0.15530313551425934,0.38865628838539124,0.47311919927597046,-0.14774838089942932,0.5366103649139404,0.5739372372627258,0.42097708582878113,0.015799518674612045,0.07824736833572388,-0.699874222278595,-0.020730625838041306,0.6147953271865845,0.18506072461605072,0.0658850371837616,-0.3616507947444916,0.07151197642087936,0.10310760140419006,-0.08380154520273209,0.4241558313369751,0.66926109790802,-0.2248353362083435,-0.24590162932872772,0.14866065979003906,-0.01947692409157753,0.06459958851337433,0.5071762204170227,0.6105772256851196,0.033100444823503494,0.40065431594848633,0.6871403455734253,0.25969091057777405,0.277393102645874,0.21720442175865173,0.4645636975765228,0.3230467736721039,0.4813239276409149,0.7304208874702454,0.4474746286869049,0.5511113405227661,0.22791102528572083,0.5660752654075623,-0.35945838689804077,0.10887208580970764,0.13224856555461884,0.5118306875228882,0.3916712701320648,0.05347611382603645,0.240690216422081,-0.8437792658805847,0.4392886757850647,-0.832841157913208,-0.7431597709655762,0.19680845737457275,0.6474528908729553,-0.32090646028518677,0.06298757344484329,-0.5416902303695679,-0.35392311215400696,-0.38194578886032104,-0.3062916100025177,-0.6855118274688721,-0.4085876941680908,-0.7995027899742126,-0.6162686347961426,-0.6784578561782837,-0.41780778765678406,-0.29569801688194275,-0.49570509791374207,-0.9421275854110718,-0.2548815608024597,-0.3294714093208313,0.0065810722298920155,-0.04666988551616669,-0.1339617818593979,0.2122911810874939,-0.22500555217266083,-0.9391512870788574,0.7869585156440735,0.8292322754859924,-0.1121910884976387,0.2405199408531189,0.5105175971984863,0.355326384305954,0.21656596660614014,0.11174112558364868,-0.3755773901939392,0.011263402178883553,-0.10289143770933151,0.21760743856430054,0.1636376976966858,0.404716432094574,-0.0998581051826477,0.27042216062545776,0.24291515350341797,0.5437197089195251,0.17937292158603668,0.18032345175743103,0.30515754222869873,0.13888563215732574,-0.05338301882147789,0.3475569784641266,0.31876474618911743,-0.03942381963133812,0.390756756067276,-0.10280808061361313,0.3262580633163452,-0.1546880155801773,0.03548926115036011,0.6691522002220154,-0.22507581114768982,-0.04914393648505211,-0.19455349445343018,-0.7897112369537354,0.9095563292503357,-0.12887446582317352,-0.16144782304763794,0.004702917765825987,-0.04646117985248566,-0.5193347334861755,0.36352500319480896,-0.4442954659461975,-0.05665694922208786,-0.2813493013381958,-0.17019765079021454,-0.2556038498878479,-0.4715869426727295,-0.3572764992713928,-0.21619217097759247,-0.9221786260604858,-0.4707961678504944,-0.7377944588661194,-0.3863966464996338,-0.5133422017097473,-0.47056645154953003,-0.29608333110809326,-0.1222103163599968,-0.6942725777626038,0.16465826332569122,-0.06769369542598724,-0.12925030291080475,0.6974049806594849,-2.770529270172119,0.2138170301914215,-0.032866884022951126,0.5586875081062317,-0.39636334776878357,0.2201717644929886,0.41216033697128296,0.13508467376232147,-0.07737735658884048,0.6377460360527039,-0.04532690346240997,0.6733541488647461,0.15821082890033722,0.3993857204914093,-0.38944128155708313,0.43306833505630493,0.5373425483703613,0.15750738978385925,0.02454504184424877,0.501442551612854,0.7888980507850647,0.6269669532775879,0.4894217550754547,0.08044438809156418,0.3792199194431305,0.41467154026031494,0.10082338005304337,0.11704811453819275,-0.43454357981681824,-0.11934002488851547,0.6802740693092346,-0.156086727976799,0.964119553565979,0.7248632311820984,-0.00008967644680524245,0.6448469161987305,-0.19766104221343994,0.12940436601638794,0.5899432301521301,-0.22729308903217316,-0.04947619512677193,0.41756245493888855,-0.07175131887197495,0.25040358304977417,0.26989346742630005,0.7121210098266602,0.11605937778949738,0.3717963695526123,0.27059096097946167,0.561201810836792,0.29153284430503845,0.5362204313278198,0.256715327501297,0.5392211079597473,0.66899174451828,0.8477929830551147,0.7404293417930603,0.4284522235393524,0.5422069430351257,0.7991192936897278,-0.869662344455719,0.2409467250108719,0.8133991360664368,-0.6161035299301147,0.8224673271179199,0.4542602598667145,-0.0822584480047226]},{"shape":[32],"values":[0.5162704586982727,-0.3555672764778137,0.6220450401306152,0.6373180747032166,-0.10310964286327362,-0.36387816071510315,0.5909932851791382,-0.01630791462957859,0.6767539381980896,0.6040672659873962,0.7013168334960938,-0.0538993775844574,0.659066915512085,0.6561378240585327,0.5761765837669373,0.47233960032463074,0.7613060474395752,0.711012065410614,0.6717165112495422,0.5835896730422974,0.6049862504005432,0.6648291349411011,0.6323620080947876,0.47764697670936584,0.5952003002166748,-0.3161455988883972,-0.0467476062476635,0.8409544825553894,-0.06296800076961517,0.22182036936283112,-0.1471947282552719,-0.12062699347734451]},{"shape":[32,9],"values":[1.0085289478302002,0.9933237433433533,0.6845532655715942,0.727867841720581,0.876400887966156,0.9858779907226562,0.4801609218120575,0.902501106262207,0.6084177494049072,-1.0784268379211426,-0.5267596244812012,-0.4289489984512329,-0.9550955891609192,-0.603222131729126,-0.2444595992565155,-1.0958054065704346,-0.37691518664360046,-0.05673127621412277,0.36100849509239197,0.605607271194458,0.9418063759803772,0.2460481971502304,0.46322014927864075,0.6974879503250122,0.130517840385437,0.7421520352363586,0.7197917699813843,0.24838489294052124,0.3504965901374817,0.6141808032989502,0.1359829157590866,0.6933823227882385,0.7076666355133057,0.4965261220932007,0.5722532868385315,0.8252173066139221,-0.17244812846183777,0.04834558442234993,-0.10812259465456009,0.09687434881925583,-0.21169772744178772,0.3087189197540283,-0.18660786747932434,0.1382351815700531,-0.06353896856307983,-0.619651198387146,-0.5141729712486267,-0.42681315541267395,-0.4494105875492096,-0.8147408366203308,-0.02047669142484665,-0.70172518491745,-0.7409857511520386,-0.119804248213768,0.11121057718992233,0.9223400354385376,0.438181072473526,0.922784686088562,0.2849889099597931,0.4684162735939026,0.9194091558456421,0.20579704642295837,0.25129008293151855,-0.167345330119133,-0.30805864930152893,-0.33760395646095276,0.09344684332609177,0.07359395176172256,0.04132208973169327,0.07480960339307785,0.07309269160032272,-0.16293950378894806,0.7819109559059143,0.8234729170799255,0.5871337056159973,0.40975213050842285,0.722888708114624,0.5598708391189575,0.9371198415756226,0.8507357835769653,0.4003927409648895,0.5831451416015625,0.6065346002578735,0.39291390776634216,0.16968612372875214,0.8331955671310425,0.31263819336891174,0.5659500956535339,0.5033829808235168,0.7160789370536804,0.27632009983062744,0.5923301577568054,0.7299684286117554,0.21408267319202423,0.42640894651412964,0.06905296444892883,0.7914793491363525,0.679551362991333,0.7516475915908813,0.1494217813014984,0.01490533072501421,-0.10336173325777054,0.18253716826438904,-0.10433735698461533,0.08755280822515488,-0.2999996840953827,-0.0637734904885292,0.012692726217210293,0.5207853317260742,0.5588064193725586,0.6884455680847168,0.7374915480613708,0.5611532330513,0.972788393497467,0.4065244197845459,0.5694239139556885,0.8559973239898682,0.48623305559158325,0.6595421433448792,0.6951397061347961,0.9805916547775269,0.7836244106292725,0.608742356300354,0.8352311849594116,0.5946947336196899,0.7619778513908386,0.4042756259441376,0.10123366862535477,0.780694305896759,0.4376140832901001,0.5809190273284912,0.6245849132537842,0.11919088661670685,0.6749459505081177,0.8221428990364075,0.5754919052124023,0.6038438677787781,1.0515717267990112,0.531873345375061,0.824022650718689,0.523330569267273,0.4869336187839508,0.5989606976509094,1.117913842201233,0.6673105359077454,0.876724362373352,0.6815982460975647,0.5120081901550293,0.37010475993156433,0.4653870761394501,0.9288710355758667,0.773277223110199,0.6117724776268005,0.5195630192756653,0.7555809617042542,0.6702771186828613,0.4933414161205292,0.5476981401443481,0.6724518537521362,0.438062846660614,0.5450062155723572,0.19449573755264282,0.6710233092308044,0.5783671140670776,0.17446674406528473,0.4119361340999603,0.6083410978317261,0.5608062148094177,0.655335009098053,0.4348459839820862,0.13441915810108185,0.9222498536109924,0.29500073194503784,0.2705768048763275,1.1265660524368286,0.8469989895820618,-0.0017870888113975525,0.46297961473464966,0.6296303868293762,0.6651948690414429,0.6302182674407959,1.1551015377044678,1.1367850303649902,0.5961505174636841,1.0377272367477417,1.0337061882019043,0.6050451397895813,0.8683862090110779,1.2658942937850952,0.5450983643531799,0.17049121856689453,0.6022229194641113,0.6132980585098267,0.6477810144424438,0.7446876764297485,0.6695528626441956,0.1432083696126938,0.7528190612792969,0.6049595475196838,0.8031684756278992,0.668249249458313,1.048822283744812,0.545414388179779,0.4218147397041321,0.7034499049186707,1.013103723526001,1.0506699085235596,0.5266973972320557,0.16036196053028107,0.11492649465799332,0.5816365480422974,0.4013725519180298,0.07635628432035446,0.792426347732544,0.5619395971298218,0.8489158749580383,1.1355178356170654,0.7067986130714417,0.6248851418495178,0.9153850674629211,0.649493932723999,1.1009410619735718,1.1507024765014648,0.8559419512748718,0.5776312947273254,-0.7630311846733093,-0.3121446371078491,-0.37712129950523376,-0.600434422492981,-0.5121821761131287,-0.6352363228797913,-0.4187375605106354,-0.5984938144683838,-1.3196638822555542,-0.0641334131360054,-0.37326139211654663,-0.021736260503530502,0.2833625078201294,0.11443030089139938,-0.1399066001176834,-0.34226125478744507,0.15002809464931488,-0.01679837331175804,0.5504693984985352,0.7622097134590149,0.30881696939468384,0.8520103693008423,0.4692956805229187,0.7755954265594482,0.90553879737854,0.8303331136703491,0.6639383435249329,-0.4565635323524475,-0.26847779750823975,0.010718277655541897,-0.7006632685661316,-0.3465895354747772,0.33730530738830566,-1.2916251420974731,-0.45208901166915894,0.018830524757504463,0.7898865938186646,-0.3293471932411194,-0.6785867214202881,0.6636238098144531,0.1557898223400116,-0.7145004868507385,0.07516516000032425,-0.33936524391174316,-1.199454665184021,0.20945313572883606,-0.2918868958950043,-0.37746208906173706,0.18722429871559143,-0.19089201092720032,-0.8183621764183044,0.20825669169425964,0.00667488481849432,-1.0984081029891968,-0.1648617386817932,0.1503736972808838,-0.1699870526790619,-0.1701621115207672,0.07817472517490387,-0.15908478200435638,-0.014125742949545383,0.10872309654951096,-0.11432617902755737]},{"shape":[9],"values":[0.16593605279922485,0.2578568756580353,0.20339177548885345,0.3101009726524353,0.3623760938644409,0.2729795277118683,0.4792817533016205,0.47259145975112915,0.3766784071922302]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-29.json new file mode 100644 index 0000000..22abba2 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:11:15.905Z","weights":[{"shape":[20,32],"values":[-0.4703896641731262,0.1966930776834488,0.8344763517379761,0.6069592237472534,-0.15945735573768616,0.4461577236652374,-0.30787235498428345,0.11746227741241455,0.18661603331565857,0.8397573828697205,0.6100752949714661,0.25556865334510803,-0.038507021963596344,0.8166106343269348,0.4661312997341156,-0.40534892678260803,-0.06573069095611572,0.7116883993148804,-0.12803786993026733,-0.16340118646621704,0.6747151017189026,0.6270105242729187,0.43146300315856934,0.6309533715248108,0.6486669778823853,0.3361874520778656,0.300385057926178,0.07472888380289078,0.6797615885734558,0.3219722509384155,0.32459452748298645,-0.3087892234325409,-0.0561741441488266,-0.06797292083501816,0.12379495054483414,-0.18403206765651703,-0.32637929916381836,0.1875409334897995,0.3039668798446655,0.5544931292533875,-0.17212946712970734,0.17557039856910706,-0.647823691368103,-0.4104175269603729,0.32169413566589355,-0.10572576522827148,0.7176773548126221,0.7065927982330322,-0.020678682252764702,0.3544579744338989,-0.168330118060112,0.10357189923524857,-0.10944614559412003,-0.3553992211818695,0.0964231938123703,0.046290259808301926,0.4202995300292969,-0.45990777015686035,-0.44541260600090027,0.15622466802597046,0.2635435461997986,-0.024081701412796974,-0.37298479676246643,0.10637661069631577,0.07960009574890137,0.319121778011322,-0.04944995790719986,0.04431714490056038,-0.6066898107528687,-0.2755521237850189,1.0350157022476196,1.0263128280639648,-0.16973450779914856,-0.29817327857017517,-0.3635595738887787,-1.2239351272583008,-0.16076044738292694,0.19226549565792084,0.8041573166847229,1.1655373573303223,-1.235190749168396,0.03460027277469635,-0.5284441113471985,0.7000008821487427,-0.044110797345638275,0.22744904458522797,-0.22739626467227936,0.00009905031765811145,0.20358611643314362,0.05738266929984093,-0.7085632085800171,0.08385619521141052,-0.28799280524253845,0.25871410965919495,-0.28990796208381653,0.39857473969459534,-1.1384412050247192,-0.38332656025886536,-0.04015861824154854,-0.43170052766799927,1.7893383502960205,-0.16983017325401306,-1.4172438383102417,-1.1300393342971802,0.10143022239208221,-0.3106781840324402,1.6671878099441528,1.7773690223693848,-0.2707858681678772,-0.03904114291071892,-1.155311107635498,-0.955009937286377,2.339000940322876,-0.09759673476219177,0.21603448688983917,-1.649944543838501,-0.4305253326892853,-0.47098833322525024,-0.4912533760070801,-0.3097199499607086,-0.030004052445292473,-0.19205054640769958,2.3334178924560547,-0.37979841232299805,0.21928507089614868,-0.18259063363075256,-0.02475513517856598,-1.4076889753341675,0.7733582258224487,0.11289767920970917,0.02371569536626339,-0.12611618638038635,0.26843345165252686,0.10125508904457092,0.16322965919971466,-0.001726102433167398,0.13517652451992035,-0.20487208664417267,0.32820338010787964,-0.16988910734653473,0.17419886589050293,0.16609108448028564,-0.1142319068312645,-0.1869785189628601,0.32950088381767273,-0.27325814962387085,0.02444232814013958,-0.2741110920906067,-0.13270169496536255,0.339629590511322,0.23728707432746887,-0.13499869406223297,-0.48856693506240845,-0.20664767920970917,0.17623268067836761,0.037840090692043304,-0.5072243809700012,-0.4365200400352478,-0.2095092386007309,0.6557948589324951,0.05229322612285614,0.49414539337158203,-0.08158405125141144,0.14708399772644043,0.6075235605239868,-0.08827539533376694,-0.6694438457489014,-0.7182700634002686,-0.03598834574222565,0.30396056175231934,0.2604961395263672,0.18443730473518372,-0.27521634101867676,-0.23665808141231537,-0.051134996116161346,-0.5490565896034241,0.4714456796646118,-0.1426815241575241,0.11237964034080505,-0.4731426537036896,0.08499173820018768,0.3821640610694885,0.23012329638004303,-0.4427286386489868,-0.08903101831674576,-0.16865497827529907,0.25831326842308044,0.3779217600822449,-0.4843677580356598,-0.0677451640367508,-0.4160609841346741,0.3322666585445404,-0.2758716642856598,0.17682412266731262,-0.38719847798347473,-0.05445313826203346,0.6461701393127441,-0.4921974241733551,-0.015659669414162636,-0.5121221542358398,-0.1705334484577179,0.16209456324577332,0.6302879452705383,0.14682549238204956,-0.13971209526062012,0.11550774425268173,-0.3085964322090149,-0.4582782983779907,0.28896358609199524,-0.3636005222797394,-0.1018332839012146,-0.38688603043556213,0.14693279564380646,0.42378926277160645,-0.2276638299226761,0.12667420506477356,-0.11792536079883575,0.33006489276885986,0.3872857093811035,0.005631957668811083,-0.419925332069397,-0.10740861296653748,-0.05979173630475998,-0.26350927352905273,-0.09548091143369675,0.36683639883995056,-0.47760432958602905,0.2160872519016266,0.1810222864151001,-0.4541098177433014,-0.40525802969932556,-0.5489394068717957,0.06663250923156738,0.004707361105829477,0.7542640566825867,0.25890839099884033,0.368598610162735,0.20496699213981628,-0.045288845896720886,-0.2635177969932556,0.23978522419929504,-0.24917972087860107,-0.7107087969779968,-0.2575189173221588,0.17643871903419495,0.16871389746665955,0.4331863820552826,-0.12601177394390106,0.10304424911737442,0.5900302529335022,0.23291237652301788,0.49356865882873535,0.16441604495048523,0.4029097855091095,0.31955158710479736,0.2576947510242462,-0.26129889488220215,0.11610325425863266,-0.040309254080057144,-0.31374591588974,-0.1580009162425995,0.3370996415615082,0.1370067447423935,0.22499528527259827,-0.3208926022052765,-0.24411123991012573,-0.3082576096057892,-0.07502533495426178,0.030807772651314735,-0.24259504675865173,0.20641186833381653,0.17391319572925568,0.09524088352918625,-0.14454446732997894,-0.29664453864097595,-0.3256596028804779,0.09408468753099442,0.054440245032310486,0.14345930516719818,-0.1387060284614563,0.08897610008716583,-0.12291191518306732,-0.26952075958251953,0.30201607942581177,-0.226384237408638,0.006526411511003971,-0.04497494921088219,0.06554809212684631,-0.2877827286720276,-0.19642429053783417,0.05334412679076195,-0.0802677646279335,0.04110634699463844,0.26225948333740234,-0.0877406969666481,-0.26847758889198303,-0.05645013600587845,0.08761462569236755,-0.1811506599187851,-0.1341572254896164,-0.1876242458820343,-0.22371356189250946,0.32475826144218445,-0.1933419555425644,-0.24455884099006653,-0.15417003631591797,-0.010480343364179134,-0.018620118498802185,-0.09561926126480103,0.014183778315782547,0.1392352133989334,-0.319339781999588,0.1009097471833229,-0.2424607127904892,-0.18449200689792633,-0.09593690186738968,-0.1775977462530136,0.20008018612861633,-0.29287856817245483,0.2704543471336365,-0.18149909377098083,-0.13714246451854706,0.23916113376617432,-0.06513696908950806,-0.3318365216255188,0.3344265818595886,-0.19877110421657562,-0.2149459719657898,-0.24872975051403046,-0.2085805982351303,0.2323043942451477,-0.3096288740634918,0.09180188924074173,-0.05325072258710861,-0.15261389315128326,-0.3286064863204956,0.12371842563152313,-0.046798136085271835,0.1898041069507599,0.2973398268222809,0.31521111726760864,-0.2574419379234314,-0.24269609153270721,-0.09330355376005173,0.2608146071434021,0.035471972078084946,0.10198938101530075,0.2765210270881653,0.2984820306301117,-0.09539460390806198,-0.33363041281700134,0.14765119552612305,0.14267969131469727,-0.2784707546234131,-0.08251248300075531,-0.3157021999359131,-0.23872913420200348,-0.13242313265800476,0.09398540109395981,-0.3089441955089569,0.2913767993450165,0.08927132189273834,-0.18508478999137878,-0.28346750140190125,0.25664663314819336,0.155680313706398,-0.2234998196363449,0.008397183381021023,-0.004160357639193535,-0.2019999921321869,0.22173963487148285,0.03580755740404129,-0.3141832947731018,0.02981969155371189,-0.2436378300189972,-0.30375388264656067,0.09626308083534241,-0.2771265208721161,-0.19441673159599304,-0.2317458838224411,0.2006702423095703,-0.033630724996328354,-0.25944119691848755,0.26686516404151917,0.28312957286834717,0.03419874235987663,-0.06498231738805771,-0.033233363181352615,0.27502864599227905,-0.11266408860683441,-0.12630285322666168,-0.20442835986614227,-0.1662922203540802,-0.2546364963054657,0.04330361634492874,-0.01507651712745428,-0.16447748243808746,-0.2895151674747467,0.1895657777786255,0.1271122694015503,-0.0030199908651411533,-0.10268381237983704,0.28287413716316223,0.016575084999203682,0.08941531926393509,-0.32065320014953613,-0.32382339239120483,-0.19963069260120392,-0.052365537732839584,-0.28836917877197266,0.13566270470619202,-0.3372613191604614,0.18989655375480652,-0.27656176686286926,-0.19498063623905182,0.16953499615192413,0.03923271223902702,-0.12663494050502777,-0.04679672792553902,0.025088783353567123,0.10412254184484482,-0.13850249350070953,-0.28621184825897217,0.2964819669723511,0.17276152968406677,0.2320781648159027,0.2601163387298584,-0.1254737377166748,0.27195900678634644,-0.2764161229133606,0.19826556742191315,-0.08129717409610748,-0.32191359996795654,-0.09866595268249512,-0.3370658755302429,0.32060348987579346,0.23483265936374664,0.32758647203445435,-0.008005843497812748,-0.03475352004170418,0.17253394424915314,-0.31550636887550354,-0.3153414726257324,0.05765024945139885,0.04448826611042023,-0.1933569312095642,0.08208385109901428,-0.08040846884250641,-0.06940650194883347,-0.324400931596756,-0.2259143590927124,-0.26362845301628113,0.3079461455345154,-0.15539273619651794,0.1819118857383728,0.27532097697257996,0.26639828085899353,0.010658481158316135,-0.17493796348571777,-0.3300977349281311,0.29220709204673767,0.2599017322063446,0.04756850004196167,-0.059570275247097015,-0.08976628631353378,0.22802956402301788,0.32732927799224854,-0.1882065087556839,-0.31694450974464417,0.29831957817077637,0.05190245807170868,0.2409208118915558,0.031892191618680954,-0.1602487862110138,0.14651267230510712,-0.016122858971357346,-0.2965809404850006,-0.2826194763183594,-0.14126968383789062,-0.1046372503042221,-0.3082926571369171,-0.2904888987541199,-0.08982454240322113,-0.17801745235919952,0.052539680153131485,0.24960577487945557,0.15505337715148926,-0.23619088530540466,-0.289535790681839,-0.16723962128162384,0.2220308780670166,-0.32924872636795044,0.0705408826470375,-0.20539338886737823,-0.008918649516999722,-0.049270931631326675,-0.05704767629504204,0.12185558676719666,0.1397353708744049,0.05760479345917702,0.06733670830726624,-0.3078795075416565,0.1179436519742012,-0.08313833177089691,-0.17106182873249054,-0.0005227841320447624,-0.03796897083520889,0.16242583096027374,0.30404922366142273,-0.15090718865394592,0.09024182707071304,-0.29698801040649414,-0.29455670714378357,0.24843721091747284,-0.30750617384910583,0.06157493591308594,-0.15407976508140564,0.0942758247256279,0.3283114433288574,-0.13505245745182037,0.18329043686389923,0.19486740231513977,0.1625032126903534,0.19196608662605286,-0.3030199408531189,0.25918152928352356,-0.039293523877859116,0.2663266062736511,-0.3314705789089203,-0.177592933177948,-0.11422146111726761,0.20270659029483795,0.17440325021743774,-0.06285388022661209,-0.05576534941792488,0.21810534596443176,-0.07453428208827972,0.08697028458118439,-0.17093811929225922,0.10518180578947067,-0.05939870327711105,0.09414514899253845,-0.18771566450595856,-0.18695886433124542,-0.0350283719599247,0.18798428773880005,0.20462383329868317,0.21693788468837738,-0.15789081156253815,-0.15860235691070557,0.2525888681411743,0.21634890139102936,-0.2670150101184845,-0.012069499120116234,0.01027685310691595,-0.18566779792308807,0.2130729705095291,0.3190773129463196,0.18918101489543915,0.018010135740041733,0.12695255875587463,0.18267452716827393,-0.15423324704170227,-0.2034236192703247,0.014284671284258366,0.18468818068504333,0.33643946051597595,-0.15051299333572388,-0.2314167469739914,-0.0523761585354805,0.14755742251873016,-0.00008423161489190534,-0.13706859946250916,0.11415454000234604,-0.2260385900735855,-0.039389897137880325,0.0375506766140461,0.19665509462356567,0.016114849597215652,0.2549721896648407,-0.3350106477737427,-0.30734384059906006,-0.1705845296382904,0.09172619879245758,-0.04297668859362602,-0.14836105704307556,0.3130209743976593,-0.0191692803055048,-0.27545690536499023,-0.11251987516880035,0.3021652102470398,-0.1646479219198227,-0.16116838157176971,0.0058298781514167786,0.3214554190635681,0.20260120928287506,0.056222133338451385,-0.039236389100551605,0.3286769688129425,0.15509489178657532,-0.2392444908618927,-0.2254180610179901,-0.2852950692176819,-0.1136481836438179,-0.13983850181102753,-0.07416412979364395,-0.05411679297685623,-0.05202828720211983,-0.1479921191930771,-0.19165799021720886,-0.1191943809390068,0.32843661308288574,-0.2583591043949127,0.15565258264541626,-0.23124532401561737,-0.25017789006233215,-0.24929681420326233,-0.16308808326721191,0.011151690967381,-0.22068984806537628,-0.06739436089992523,-0.04862198978662491,0.043446995317935944,-0.25426149368286133,0.1158319041132927,0.003880526637658477,0.23718756437301636,0.2359488606452942,0.2726241648197174,0.16580229997634888,-0.32953324913978577,-0.1648465245962143,-0.24985037744045258,0.0041654957458376884,-0.006338762119412422,0.22419729828834534,-0.15879204869270325,0.10900504142045975,-0.1889452040195465,-0.28885695338249207]},{"shape":[32],"values":[0.4842167794704437,0.7401869893074036,0.7064329981803894,0.8967690467834473,-0.6492992639541626,0.698847234249115,-0.3644452393054962,-0.49310287833213806,0.9218326210975647,0.8777480125427246,-0.19288058578968048,-0.7905993461608887,0.7626896500587463,0.8255051374435425,-0.2610587179660797,-0.0894293487071991,-0.6044300198554993,0.6742574572563171,0.24463781714439392,-0.4414888620376587,0.7983651161193848,0.633033037185669,0.794432520866394,0.6540791392326355,0.7414637207984924,0.5732630491256714,-0.7668429017066956,0.6850921511650085,0.7819485068321228,0.5299307703971863,0.7162913680076599,0.49216124415397644]},{"shape":[32,32],"values":[1.7491647005081177,1.942794919013977,1.8957524299621582,1.6587750911712646,1.8748140335083008,1.6630655527114868,-0.22924832999706268,-0.29675769805908203,1.7796814441680908,1.9824302196502686,1.8311257362365723,0.6225003600120544,-1.4011962413787842,1.6012696027755737,1.6538087129592896,-0.9030733108520508,0.04059059917926788,-0.02889440953731537,-0.16832517087459564,1.606250286102295,2.048485040664673,1.7834497690200806,1.6021276712417603,0.09689059108495712,0.061760589480400085,-1.7232823371887207,0.1053934395313263,1.7899950742721558,-0.18688184022903442,1.9948219060897827,0.24451977014541626,1.8881970643997192,0.10940053313970566,0.5693370699882507,0.38633522391319275,0.3521312475204468,0.23085954785346985,0.26701679825782776,-0.17125539481639862,-0.300944447517395,0.6870560050010681,0.6106107831001282,0.09723152965307236,0.45791390538215637,-0.08813546597957611,0.5212163925170898,0.5305852890014648,-0.09105006605386734,-0.08994930982589722,-0.0551789291203022,-0.26871299743652344,0.42979902029037476,0.5944443941116333,0.13506264984607697,0.26851698756217957,0.5243294835090637,0.05395370349287987,-0.18196941912174225,-0.1753821074962616,0.4005639851093292,0.12774847447872162,0.1588859111070633,0.09644762426614761,0.6750215291976929,0.20767872035503387,0.8672192692756653,0.6024429202079773,0.6505972146987915,0.5437890887260437,0.20335878431797028,0.013723929412662983,0.18463106453418732,0.8564625382423401,0.48178279399871826,0.606022834777832,-0.10555272549390793,0.16019578278064728,0.22364751994609833,0.3467319905757904,0.27969890832901,0.09511417895555496,0.021409334614872932,0.08139453083276749,0.6993308067321777,0.6327934861183167,0.30466747283935547,0.08783238381147385,0.21064944565296173,-0.2940272390842438,-0.021218575537204742,-0.07178854942321777,0.32692408561706543,0.047737862914800644,0.38584303855895996,0.6811874508857727,0.3718487620353699,0.6350202560424805,0.8525018692016602,0.22559209167957306,0.23873035609722137,0.4992949366569519,0.43656837940216064,-0.024633513763546944,0.07799660414457321,0.6753138899803162,0.5629880428314209,0.6138313412666321,0.3581274747848511,-0.1939486563205719,0.15429386496543884,0.018914466723799706,-0.02902946062386036,0.32714617252349854,-0.31486162543296814,0.16658852994441986,0.6988174319267273,0.37076935172080994,0.18643276393413544,0.19095970690250397,0.4885150194168091,-0.28543007373809814,0.09249835461378098,-0.23454128205776215,0.3288489282131195,0.07270275801420212,0.5504055023193359,0.5654124021530151,0.7607946991920471,-0.47000572085380554,-0.9233654141426086,-0.8698627352714539,-0.29971835017204285,-0.8562237620353699,-0.42878514528274536,0.0015649738488718867,0.0010647792369127274,-0.9097879528999329,-0.7719808220863342,-0.6474068760871887,-1.0313435792922974,0.6751531362533569,-0.7338645458221436,-0.1366758644580841,0.5191487669944763,0.2124512493610382,-0.271684467792511,-0.24217158555984497,-0.5963668823242188,-0.6841652393341064,-0.8063606023788452,-0.2297939658164978,0.2660479247570038,0.20639212429523468,0.8318476676940918,0.10485149174928665,-0.8559945225715637,-0.3015066087245941,-0.32809093594551086,-1.6771645545959473,-0.43624770641326904,0.5824133157730103,0.6733178496360779,0.4506216049194336,0.3077740967273712,0.4514389634132385,0.603220522403717,-0.03328253701329231,-0.27938371896743774,0.8399360775947571,0.33855554461479187,0.5017584562301636,-0.135873481631279,0.13704705238342285,0.17718389630317688,0.5716837644577026,0.17165124416351318,-0.07798448204994202,-0.18856222927570343,-0.2468946874141693,0.38980522751808167,0.626551628112793,0.2980082929134369,0.08271759003400803,-0.24562707543373108,-0.2543785274028778,-0.392153263092041,0.09124011546373367,-0.10667360574007034,-0.06921468675136566,0.394024521112442,0.35901519656181335,0.4662078619003296,-0.9240241646766663,-1.132306456565857,-0.7746546864509583,-0.8342713117599487,-1.014169692993164,-0.6249174475669861,0.6699920892715454,0.7197386622428894,-0.7644323110580444,-0.8395518064498901,-0.9151618480682373,-0.6830103993415833,1.0245636701583862,-0.5033565759658813,-0.43847033381462097,0.7014108300209045,0.39140984416007996,0.12974663078784943,0.03695795312523842,-1.0873204469680786,-0.9524038434028625,-0.6398941278457642,-0.6460530161857605,-0.03963194042444229,0.21600750088691711,1.1225582361221313,0.38658401370048523,-0.7674933671951294,-0.2234688401222229,-0.6847930550575256,-0.21442759037017822,-0.7749215364456177,-0.8401772975921631,-0.6494867205619812,-0.6546251773834229,-0.49503958225250244,-1.1273571252822876,-0.8560293316841125,0.512490451335907,0.5734331011772156,-0.9245167374610901,-0.7927711606025696,-0.3862311840057373,-0.47685953974723816,0.9063746929168701,-0.9350462555885315,-0.5669791102409363,0.4310453236103058,0.5029783248901367,0.09735774248838425,0.010529821738600731,-0.7768039107322693,-0.5056692361831665,-0.4022846221923828,-0.6122817993164062,-1.2232409715652466,-0.2613038122653961,0.76123046875,0.346532940864563,-0.4781390428543091,-0.34139585494995117,-0.7141410708427429,-0.4509637653827667,-0.8502887487411499,0.5876071453094482,0.6299213767051697,0.22975964844226837,0.5870518088340759,0.348601371049881,0.1513221263885498,0.006296913139522076,-0.2329472005367279,0.27428334951400757,0.5421242713928223,0.32542598247528076,0.3534013330936432,0.00812316033989191,0.5154961347579956,0.4839901328086853,-0.09956084936857224,0.17582404613494873,0.04238438233733177,-0.23601984977722168,0.4247317314147949,0.5074705481529236,0.36617445945739746,0.5470608472824097,0.1310746669769287,-0.07082757353782654,0.1481134295463562,0.012568727135658264,0.3109495937824249,0.06424622982740402,0.7006797194480896,0.5856276750564575,0.5672599077224731,0.5215775370597839,0.27349698543548584,0.553091824054718,0.5530377626419067,0.7670196294784546,0.5338665246963501,-0.3124244809150696,-0.3350796699523926,0.744943380355835,0.23692043125629425,0.6190621256828308,0.5132433772087097,0.20590120553970337,0.29631802439689636,0.6011495590209961,-0.07791801542043686,-0.21484792232513428,-0.1363684982061386,0.018142620101571083,0.4087662696838379,0.4091644883155823,0.46719181537628174,0.4925873875617981,0.36556798219680786,-0.2535300850868225,0.0662558451294899,0.23979762196540833,0.027498990297317505,-0.35627642273902893,0.10475332289934158,0.6852759718894958,0.5106022953987122,-0.10041812807321548,-0.6918104290962219,-0.638381838798523,-0.3388460576534271,-0.4118766188621521,-0.36114293336868286,-0.1275676190853119,0.18777090311050415,-0.518194317817688,0.04349296912550926,-0.08652263134717941,-1.0415046215057373,0.6023218631744385,-0.039168406277894974,0.08723753690719604,0.3831152617931366,-0.37118080258369446,0.21092407405376434,-0.11119299381971359,-0.08602406829595566,-0.05679077282547951,-0.5182709097862244,-0.023556385189294815,0.8127815127372742,-0.2654750645160675,0.5419773459434509,0.051222361624240875,-0.5495204329490662,0.23544242978096008,-0.4540230333805084,-2.008786678314209,0.012243486940860748,-1.1908249855041504,-1.3983287811279297,-1.170776605606079,-1.3446732759475708,-1.4708086252212524,-1.4983640909194946,-0.09072497487068176,-0.01896255649626255,-1.641764521598816,-1.5995094776153564,-1.5531154870986938,-1.6413160562515259,1.3517225980758667,-0.725642740726471,-1.1779839992523193,1.1923191547393799,0.20269417762756348,-0.031588684767484665,-0.05779329314827919,-1.4112269878387451,-1.3504021167755127,-0.9818161725997925,-1.2448537349700928,0.05162005499005318,0.015004018321633339,1.210803508758545,0.5149499773979187,-1.039294958114624,-0.029129164293408394,-0.938578724861145,-2.0509698390960693,-1.5854929685592651,0.4294905960559845,0.4381466507911682,0.6766829490661621,0.08798717707395554,0.419094443321228,0.1322929412126541,-0.00972316600382328,0.21130715310573578,0.31228959560394287,0.5239484906196594,0.1273839771747589,0.6858649849891663,-0.34152308106422424,0.4546056091785431,0.2695915102958679,-0.5941353440284729,0.3056362569332123,-0.03669091314077377,-0.1524335741996765,0.6959428787231445,0.055253416299819946,0.5009246468544006,0.12697285413742065,0.29444459080696106,-0.07298459857702255,0.15951208770275116,-0.09019102156162262,0.6150835156440735,0.1841021627187729,0.32310715317726135,0.2808750569820404,0.6166890859603882,0.7110488414764404,0.5891593098640442,0.5329166054725647,0.7293054461479187,0.24757766723632812,0.5593519806861877,0.04413115233182907,-0.17108315229415894,0.9369646310806274,0.37600401043891907,0.5746589303016663,-0.1163981705904007,-0.27930691838264465,0.47880545258522034,0.4750617742538452,0.01927799917757511,-0.13772620260715485,-0.32010096311569214,-0.16527381539344788,0.6898844242095947,0.5006871223449707,0.6136603951454163,0.4175824820995331,0.11997418850660324,-0.08263150602579117,-0.06234035640954971,0.1119142472743988,0.5006535053253174,0.13420751690864563,-0.039932213723659515,0.37079617381095886,0.8350522518157959,-0.4065675735473633,-0.4903257489204407,-0.2004302442073822,-0.686565101146698,-0.8316594958305359,-0.2968910038471222,0.29293450713157654,0.43044930696487427,-0.3430975675582886,-0.5600289106369019,-0.143520325422287,-0.03728771582245827,0.618430495262146,-0.7814128398895264,-0.7197104692459106,0.17253468930721283,0.4229128658771515,0.1377357393503189,0.04183525964617729,-0.2295857071876526,-0.7139735817909241,-0.38970544934272766,-0.6308873891830444,-1.1521586179733276,0.04233578220009804,0.5250000953674316,0.4349031150341034,0.011522104032337666,-0.3071959614753723,-0.576106607913971,0.13936568796634674,-0.5911277532577515,-0.56376713514328,-0.3360839784145355,-0.3407270610332489,-0.5782685279846191,-0.9020629525184631,-0.7425118088722229,0.1772317737340927,-0.013959068804979324,-0.6338551640510559,-0.7206798791885376,-0.6812319159507751,-0.32194945216178894,0.6069960594177246,-0.4476974904537201,-0.6484641432762146,0.304505318403244,0.15643103420734406,0.502680242061615,-0.1299702525138855,-0.4346790015697479,-0.6360406279563904,-0.3313096761703491,-0.21197596192359924,-0.7144744396209717,-0.3027019798755646,0.8362247943878174,0.5938279032707214,-0.13674968481063843,-0.05708926171064377,-0.5744119882583618,0.23196856677532196,-0.5231966376304626,-0.25820213556289673,-0.595420777797699,-0.8200006484985352,-0.3787330090999603,-0.728623628616333,-0.7719792127609253,-0.1546749621629715,-0.2833397686481476,-0.9264497756958008,-0.42638012766838074,-0.5120952725410461,-1.4815260171890259,1.017736554145813,-0.0300893671810627,0.12332994490861893,0.7447673678398132,0.3755940794944763,-0.2912173569202423,-0.15531352162361145,-0.3588644862174988,-0.47795215249061584,-0.5904760956764221,-0.43590325117111206,0.5305454730987549,-0.03807176277041435,0.9688287377357483,0.5770071744918823,-0.7991304993629456,0.23097695410251617,-0.5571691393852234,-1.8393909931182861,-0.5997516512870789,0.6976833343505859,0.5192997455596924,0.597141683101654,0.25586193799972534,0.2838466167449951,0.617060661315918,0.230721116065979,0.09553679823875427,0.8783151507377625,0.21658416092395782,0.21088774502277374,0.06251697987318039,-0.31072068214416504,0.02635331079363823,-0.07345426827669144,0.2642385959625244,0.3835847079753876,0.01564711704850197,-0.26982080936431885,0.16774849593639374,0.13159777224063873,0.8109189867973328,0.3589913547039032,-0.27943354845046997,-0.2887360751628876,-0.00960555486381054,-0.2339998036623001,0.1822550743818283,0.00022153632016852498,0.11107657104730606,0.7931338548660278,0.4960631728172302,0.8368805050849915,0.9206352829933167,0.7422031164169312,0.8005631566047668,0.6687136888504028,0.8077382445335388,-0.35664036870002747,-0.22602103650569916,0.6040694713592529,0.552075207233429,0.6757555603981018,0.44132906198501587,-0.6807960867881775,0.591869592666626,0.20800112187862396,-0.4532160460948944,0.12355904281139374,0.2324172407388687,0.13751022517681122,0.5196133255958557,0.7922836542129517,0.8122124075889587,0.4992557764053345,0.14359286427497864,0.07451173663139343,-0.5393159985542297,0.03299660235643387,0.16347944736480713,-0.10011418163776398,0.48272645473480225,0.19127224385738373,0.7853317260742188,-0.7568048238754272,-0.37975987792015076,-0.8282644748687744,-0.6625357270240784,-0.46463119983673096,-0.5918146967887878,0.23908329010009766,0.22999072074890137,-0.6876986622810364,-0.9403320550918579,-0.6230211853981018,-0.3427046239376068,0.5206263661384583,-0.4646388590335846,-0.5453319549560547,0.6025323271751404,0.03110879845917225,-0.05902941897511482,-0.19226834177970886,-0.6498669385910034,-0.498678594827652,-0.32226115465164185,-0.06601326912641525,-0.924793541431427,-0.21182343363761902,0.5299129486083984,0.6750487685203552,-0.5217078328132629,0.09111705422401428,-0.566156804561615,-0.4173084795475006,-0.49001064896583557,0.14127656817436218,0.5599236488342285,0.3332941234111786,0.5412341952323914,0.39211201667785645,0.42476552724838257,0.12729594111442566,0.23427674174308777,0.44970831274986267,0.19847668707370758,0.41523510217666626,0.025537267327308655,-0.21009671688079834,0.3360510468482971,0.20477508008480072,-0.24669566750526428,-0.002238789340481162,0.17385047674179077,0.16474278271198273,0.2115980088710785,0.4698915481567383,0.3183664381504059,0.4608442485332489,0.2808424234390259,-0.24832957983016968,0.2029993236064911,-0.0658014714717865,0.6037349104881287,0.0789313092827797,0.2463739514350891,0.4863048195838928,0.5125868916511536,0.7150557041168213,0.5213199853897095,0.39754360914230347,0.5951744318008423,0.6314136981964111,0.13952769339084625,-0.1658160239458084,-0.13498234748840332,0.5476453900337219,0.7082523703575134,0.6148399710655212,-0.09399488568305969,-0.39138922095298767,0.6727210283279419,0.6733372807502747,0.1224716529250145,-0.4628678560256958,-0.2538878619670868,-0.19860310852527618,0.6136077642440796,0.46470168232917786,-0.235878586769104,0.3314535617828369,0.7108786702156067,0.2419346123933792,0.004654396325349808,0.5285018086433411,0.0664154589176178,-0.2746315002441406,0.5504381060600281,-0.30339816212654114,0.1361275613307953,0.38787010312080383,0.315106064081192,0.6416240334510803,0.6709571480751038,0.6498162746429443,0.3894639015197754,-0.3271251320838928,-0.23786957561969757,0.6724307537078857,0.6554521322250366,0.600843071937561,0.31111419200897217,0.2149868607521057,0.2314596027135849,0.5983706712722778,-0.34807920455932617,-0.32520928978919983,-0.14163567125797272,0.18350546061992645,0.14170238375663757,0.7065991163253784,0.5438275933265686,0.67135089635849,0.6833240389823914,-0.26619845628738403,0.0956079363822937,0.3367252051830292,0.27167806029319763,-0.22114375233650208,0.5212610960006714,0.3274278938770294,0.3366503119468689,0.589336097240448,0.8796296715736389,0.5750415325164795,0.38170307874679565,0.12400464713573456,0.5948020219802856,0.020124219357967377,-0.1562959998846054,0.6885935664176941,0.2854353189468384,0.6411133408546448,0.0351395420730114,-0.11541492491960526,0.15956521034240723,-0.12429364770650864,0.30970051884651184,0.20270214974880219,-0.11686456948518753,0.018839549273252487,0.1234767809510231,0.5363215208053589,0.2197830229997635,0.14375542104244232,0.10208050906658173,-0.28230857849121094,-0.4000864624977112,0.24469134211540222,0.2573834955692291,0.12408860772848129,-0.008853498846292496,0.24440321326255798,0.7099120020866394,0.530841052532196,0.6600286960601807,0.6894786357879639,0.6648208498954773,0.03835052251815796,0.2823345363140106,0.08773747831583023,0.3427116274833679,0.45367422699928284,0.18791812658309937,0.532340943813324,0.30985227227211,-0.18728533387184143,-0.08633319288492203,-0.035551462322473526,-0.29001182317733765,0.3781946003437042,0.08380601555109024,-0.055829960852861404,0.4817776381969452,0.13987956941127777,0.4132577180862427,0.5862802863121033,-0.12168627232313156,-0.2830454707145691,-0.05513359233736992,-0.20748065412044525,0.3714560866355896,0.13595373928546906,0.31916725635528564,0.5631906390190125,0.2381175309419632,0.2191290557384491,0.02873411774635315,0.5895806550979614,0.6124553084373474,0.5490682125091553,0.37153175473213196,-0.1833604872226715,-0.2745048701763153,0.6250662207603455,0.18142926692962646,0.38556408882141113,0.29384300112724304,-0.11248283088207245,0.08617210388183594,0.15646813809871674,-0.0007975446642376482,0.04632854461669922,-0.27547791600227356,-0.28773775696754456,0.4615800976753235,0.5223298072814941,0.3854292631149292,0.37315836548805237,0.2911668121814728,-0.3001033365726471,-0.23282639682292938,-0.23852086067199707,0.5630799531936646,-0.26581472158432007,-0.06232329085469246,0.12175855785608292,0.23630551993846893,-0.5719679594039917,-1.3598326444625854,-1.3953866958618164,-1.175734281539917,-1.194771647453308,-1.2083996534347534,-0.0878513753414154,0.05214528739452362,-0.9191654324531555,-1.1672762632369995,-1.2441550493240356,-2.138270616531372,0.7421103119850159,-0.9117521643638611,-0.47104719281196594,0.6366970539093018,0.25999802350997925,0.27822166681289673,0.028828665614128113,-0.9452940225601196,-1.0605546236038208,-0.9808170199394226,-0.866122305393219,0.49816110730171204,-0.10209576040506363,1.1969491243362427,-0.017349552363157272,-0.723896324634552,-0.009809615090489388,-0.9865984320640564,-2.6200978755950928,-0.7544858455657959,0.6461668014526367,0.48794230818748474,0.14704357087612152,0.5938990712165833,0.15457573533058167,0.44979771971702576,-0.37115058302879333,0.04604844003915787,0.3504401445388794,0.3838869631290436,0.524034321308136,0.6157674789428711,0.09172704070806503,0.42194482684135437,0.16570013761520386,-0.3516603410243988,-0.03932340815663338,0.1911936104297638,-0.015966933220624924,0.38416728377342224,0.28035950660705566,0.20365318655967712,0.37273862957954407,0.4957633912563324,-0.2778762876987457,-0.48876261711120605,-0.17164257168769836,0.26974430680274963,0.0771980732679367,0.6045858860015869,0.5315090417861938,0.3858223855495453,0.5842280983924866,0.5220475196838379,0.6521578431129456,0.4517408311367035,0.6755459308624268,0.25960561633110046,-0.013192567974328995,-0.2914755344390869,0.8360291719436646,0.5284635424613953,0.14194492995738983,0.5366078019142151,0.09297294169664383,0.25514471530914307,-0.1510467529296875,0.024718139320611954,0.30364978313446045,0.361164927482605,0.12834760546684265,0.28245455026626587,0.32000404596328735,0.693231999874115,0.4693714380264282,-0.17748555541038513,0.24614067375659943,-0.08370431512594223,-0.2093043476343155,0.4110094904899597,-0.10804708302021027,0.11994612216949463,0.5761192440986633,0.28766143321990967,0.13858118653297424,0.7475072145462036,0.6024971604347229,0.40736913681030273,0.6400074362754822,0.7085509300231934,-0.15403129160404205,0.1901548057794571,0.49556082487106323,0.18821822106838226,0.3108532726764679,0.1906079649925232,0.09598027914762497,0.16306531429290771,-0.18754161894321442,0.11917021870613098,0.06536835432052612,0.16657647490501404,0.2712528705596924,0.0948583334684372,0.25648725032806396,0.3376867175102234,0.3375588059425354,-0.38792696595191956,-0.2441612333059311,-0.3144321143627167,-0.18222934007644653,0.3985334038734436,0.2642202079296112,0.26484277844429016,0.2395690679550171,0.2615705132484436,0.5383601188659668,0.7405156493186951,0.535845935344696,0.18781258165836334,0.21549338102340698,0.6253135800361633,0.0007622715784236789,0.10840801149606705,0.5601573586463928,0.39479583501815796,0.44936975836753845,-0.04133419692516327,0.1434171199798584,0.27784261107444763,0.15505769848823547,0.06763112545013428,0.158858522772789,0.027549775317311287,-0.27810415625572205,0.45358219742774963,0.08847738057374954,0.2119513899087906,0.09603611379861832,0.29074782133102417,0.14283935725688934,0.1791355311870575,-0.1880444884300232,0.09788405150175095,-0.20833370089530945,0.4649084210395813,0.3204306662082672,0.5047652721405029,0.9909927248954773,0.7042362093925476,0.6706828474998474,0.8482792377471924,0.6698434352874756,0.4417557418346405,0.359587162733078,0.1778404861688614,0.6472516655921936,1.1192080974578857,0.6131883859634399,0.03509191423654556,-0.9943612217903137,0.9942271709442139,0.7336174845695496,-0.4497458338737488,0.14865054190158844,-0.04040263965725899,0.07794521003961563,0.7843138575553894,0.8755228519439697,0.06214949116110802,1.0303750038146973,0.31206223368644714,-0.2479703724384308,-0.9760838150978088,0.03064928576350212,0.8230215907096863,-0.3323747217655182,1.0285286903381348,-0.43156421184539795,0.6079406142234802]},{"shape":[32],"values":[0.6974894404411316,0.7873440384864807,0.7906620502471924,0.7225638031959534,0.6523112654685974,0.6918567419052124,-0.28178170323371887,-0.3328631818294525,0.7946071028709412,0.6460490822792053,0.6687805652618408,0.449087917804718,-0.41082167625427246,0.506693959236145,0.36982446908950806,-0.1383116990327835,0.08915521204471588,0.024807879701256752,-0.022814879193902016,0.707902729511261,0.6147778630256653,0.5891390442848206,0.6058482527732849,-0.0026554414071142673,0,-0.4574843943119049,-0.1543433666229248,0.6377075910568237,-0.08486831188201904,0.6153731346130371,0.6913691759109497,0.771534264087677]},{"shape":[32,9],"values":[0.10344114899635315,0.6589457988739014,0.29930219054222107,0.10346196591854095,0.6911923289299011,0.6015551686286926,0.7398176193237305,0.5277702808380127,0.5968272686004639,0.8446696400642395,0.6151158213615417,0.15216495096683502,0.6728289127349854,0.4347442090511322,0.5583363175392151,0.7576236128807068,0.5615293979644775,0.5086288452148438,0.632949948310852,0.47127291560173035,0.2349475920200348,0.6681455373764038,0.5966560244560242,0.6875068545341492,0.5619286894798279,0.6677200198173523,0.6487907767295837,0.5417931079864502,0.4662480056285858,0.5729478001594543,0.21770039200782776,0.5179679989814758,0.6162186861038208,0.43856823444366455,0.24723395705223083,0.45878344774246216,0.77607262134552,0.8529431223869324,0.939143180847168,0.9894063472747803,0.6451197862625122,0.7302152514457703,0.4892894923686981,0.8740432262420654,0.8852505683898926,0.6942412853240967,0.46171835064888,0.313427209854126,0.7287492752075195,0.8882876038551331,0.33842015266418457,0.7403726577758789,0.42774686217308044,0.6802758574485779,0.1741657555103302,0.00734289176762104,0.0939399003982544,-0.3489934802055359,-0.4544104337692261,-0.06795471161603928,-0.40728759765625,-0.11345997452735901,-0.06627635657787323,0.0637342631816864,-0.4231802523136139,-0.27710527181625366,-0.2221045047044754,-0.08403743803501129,-0.1233854666352272,-0.8349582552909851,-0.4440497159957886,0.004856179002672434,0.571222186088562,0.7247169017791748,0.752437174320221,0.5664517879486084,0.4874434173107147,0.5098351240158081,0.5308835506439209,0.5701028108596802,0.5838523507118225,0.2646055817604065,0.4333629012107849,0.7332536578178406,0.49022936820983887,0.9975422620773315,0.9151052236557007,0.7462813854217529,0.7856747508049011,0.9546386003494263,0.5488409996032715,0.7326734662055969,0.4172861576080322,0.11566381901502609,0.40320274233818054,0.284237802028656,0.5264785885810852,0.7543514966964722,0.6250108480453491,0.6538022756576538,0.20250460505485535,-0.008738911710679531,1.174676537513733,0.864258348941803,-0.22247549891471863,0.2625887989997864,0.6569926142692566,-1.0429092645645142,-0.1531587541103363,-0.5154420733451843,-0.7689298391342163,-0.8533543944358826,-0.6180574893951416,-0.39720702171325684,-0.8090197443962097,-0.750575602054596,-1.1354773044586182,0.49504518508911133,0.5260438919067383,0.6097972393035889,0.3438427150249481,1.0519297122955322,0.7166340351104736,0.014558259397745132,0.8928097486495972,0.6773141622543335,0.09780789911746979,0.6430072784423828,0.6515247821807861,0.37816449999809265,0.42186999320983887,0.6230348944664001,-0.02954484149813652,0.13145935535430908,0.7225754261016846,-0.0019601117819547653,-0.47144240140914917,-0.7069528102874756,-0.2634674310684204,-0.9960482716560364,-0.6584237813949585,-0.22786110639572144,-0.2466452568769455,-1.0834035873413086,0.09987219423055649,-0.15652509033679962,-0.3485836684703827,0.2586403489112854,-0.5974293351173401,-0.7551791667938232,0.3358322083950043,-0.46151530742645264,-0.1085250973701477,-0.28558582067489624,-0.2978231906890869,0.061304714530706406,-0.19776220619678497,0.014274696819484234,-0.1259835660457611,-0.20451267063617706,0.38915929198265076,0.3999369144439697,-0.10281548649072647,0.14639674127101898,0.3766133487224579,-0.04843418672680855,0.15429474413394928,-0.3767642676830292,-0.2072487771511078,0.053284261375665665,-0.07431764155626297,0.6615648865699768,0.09535770118236542,0.8763262629508972,0.38848185539245605,0.6272445917129517,0.33424827456474304,0.38173601031303406,0.4040800631046295,0.3876614570617676,0.3170696496963501,0.52813720703125,0.9809629917144775,0.42511481046676636,0.21337644755840302,0.9487526416778564,0.5126940011978149,0.5895602703094482,0.9873624444007874,0.8802852630615234,0.49500781297683716,0.3244158625602722,0.5324533581733704,0.39645126461982727,0.08695129305124283,0.7679864764213562,0.16520124673843384,0.6082743406295776,0.3160158097743988,0.4880730211734772,0.674467146396637,0.6365165114402771,-0.015005150809884071,0.6654133200645447,0.40173476934432983,0.06787757575511932,0.5387150645256042,-0.8777936100959778,0.27914801239967346,0.32884132862091064,-0.37606731057167053,0.14210949838161469,0.09902889281511307,-1.2478976249694824,0.14633426070213318,0.2526015341281891,0.05535309389233589,-0.2606797218322754,0.1718757450580597,0.37336328625679016,0.3142111003398895,-0.20520707964897156,0.24975085258483887,-0.16596050560474396,-0.1980413794517517,-0.7022059559822083,-0.7115181684494019,-0.7858564257621765,-0.9887480139732361,-0.9831885099411011,-0.483413964509964,-1.0842190980911255,-0.3800722658634186,-0.9693778157234192,-0.16458335518836975,-0.319964200258255,-0.15830093622207642,-0.5416986346244812,-0.7601178884506226,-0.44570356607437134,-0.5814383029937744,-0.09508688002824783,0.16846106946468353,0.13584119081497192,0.4924371540546417,0.24697411060333252,0.7565045952796936,0.474808007478714,0.5326166152954102,0.45155400037765503,0.6616168022155762,0.1878499835729599,0.10762102156877518,-0.20579782128334045,-0.03039923869073391,0.2881264090538025,-0.18838174641132355,0.31327685713768005,-0.2444579154253006,0.1546056717634201,-0.07412915676832199,0.5690783262252808,0.6149020791053772,0.6264792680740356,0.31456372141838074,0.833321213722229,0.8257853984832764,0.791141152381897,0.6056000590324402,0.8260006904602051,0.9113178849220276,0.13759908080101013,-0.3918163776397705,0.7623327970504761,0.15123800933361053,-0.3894641697406769,0.7525134086608887,0.4484284222126007,-0.9323734045028687,0.5296751856803894,0.16776393353939056,0.7432808876037598,0.4905114471912384,0.10580798983573914,0.5989677906036377,0.6474089026451111,0.5147265195846558,0.4268648326396942]},{"shape":[9],"values":[0.3392312824726105,0.22926002740859985,0.2501922845840454,0.28118032217025757,0.231882706284523,0.291096568107605,0.5329228043556213,0.48815327882766724,0.3851812481880188]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-47.json new file mode 100644 index 0000000..ebf0cd5 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:11:45.854Z","weights":[{"shape":[20,32],"values":[0.7536647915840149,-0.05566558614373207,-0.04841369763016701,0.5154157280921936,0.4257276654243469,0.6773569583892822,-0.005857523996382952,0.40698498487472534,0.3983752429485321,-0.21733921766281128,0.04436807706952095,-0.16443069279193878,0.22908644378185272,0.030519604682922363,0.2697145342826843,0.49089357256889343,-0.12286653369665146,0.8489606380462646,0.7817601561546326,0.6500704288482666,0.29923948645591736,0.15093974769115448,-0.21071402728557587,0.13112770020961761,0.3320442736148834,0.502910852432251,0.28267815709114075,0.8217491507530212,-0.07345078140497208,-0.18187445402145386,0.377900630235672,0.2607620358467102,0.16690129041671753,0.5989640951156616,0.4317285418510437,-0.34674718976020813,0.6551719903945923,0.3143289089202881,0.1531979739665985,0.15359891951084137,0.32355356216430664,-0.2770034074783325,0.0327148512005806,-0.06130468472838402,0.07861634343862534,-0.04042159765958786,0.024791836738586426,-0.3885560631752014,0.31151944398880005,-0.37201637029647827,0.024940548464655876,0.26931503415107727,0.756881594657898,-0.287285715341568,-0.27872633934020996,-0.08513021469116211,0.31850212812423706,-0.08682984113693237,0.07331106811761856,-0.15577630698680878,0.13474123179912567,-0.027938716113567352,0.1725514978170395,-0.01934511587023735,0.18879134953022003,0.8135789632797241,-0.4236409068107605,0.4642329812049866,0.7943015098571777,-0.2967544198036194,0.1201123595237732,0.2747821509838104,0.10899433493614197,-1.111485481262207,0.0050516389310359955,-0.22402212023735046,0.37242379784584045,0.20111073553562164,-0.2517945468425751,0.27612897753715515,1.0953199863433838,-0.8438594341278076,0.2292662411928177,-0.11829106509685516,1.0810765027999878,-1.0106538534164429,-0.019523121416568756,0.533002495765686,1.0321106910705566,0.2776064872741699,0.18002018332481384,-0.17731325328350067,-0.43923822045326233,-0.0615195594727993,-0.12606596946716309,-0.3531842827796936,-0.3802187442779541,-1.612181544303894,-0.5484582781791687,-0.7618900537490845,-1.8308385610580444,0.13197782635688782,-0.6645601987838745,-0.8745260238647461,-0.5313591361045837,1.990806221961975,-0.3276229500770569,0.3769491910934448,-0.6174941658973694,-0.7597514390945435,-0.10558216273784637,-0.5636373162269592,-1.4754523038864136,1.460247278213501,-0.3867333233356476,-0.12007751315832138,-1.44132661819458,2.319803476333618,-0.0877847746014595,-1.2991044521331787,-1.9739986658096313,-0.6500142812728882,-0.9367977380752563,0.01936168596148491,0.6215697526931763,0.34451356530189514,-0.45858287811279297,0.18511079251766205,0.12885935604572296,0.10812801867723465,0.4705717861652374,-0.31105539202690125,0.24220867455005646,-0.37351977825164795,0.1490313708782196,-0.3029170632362366,0.233193501830101,0.14651504158973694,0.2829122841358185,0.6692675948143005,0.37362149357795715,0.0988067239522934,0.044168222695589066,0.5254576206207275,0.08151407539844513,0.07485001534223557,0.16898296773433685,-0.21508587896823883,-0.05990564078092575,-0.20121058821678162,0.05111069977283478,0.21537332236766815,-0.07863359898328781,-0.04673100262880325,-0.042954664677381516,0.47656896710395813,-0.016287436708807945,0.544112503528595,-0.04432874917984009,0.27782124280929565,-0.1810472309589386,-0.5966326594352722,-0.18647705018520355,-0.18100687861442566,-0.3732275664806366,-0.16854077577590942,-0.13249413669109344,0.12534834444522858,-0.3685794770717621,0.5410363078117371,-0.024808606132864952,0.1447821408510208,0.5116410851478577,0.05177841708064079,0.054526593536138535,0.49173787236213684,-0.29689842462539673,0.478060781955719,-0.3943055272102356,-0.17736414074897766,-0.33650198578834534,0.5041115880012512,0.17585889995098114,0.44994038343429565,-0.4457082152366638,-0.06802264600992203,0.49567413330078125,0.3946770429611206,0.010943282395601273,0.11800983548164368,-0.023718809708952904,-0.4405179023742676,-0.4251880347728729,-0.32262125611305237,-0.20159675180912018,0.31483206152915955,-0.5453376173973083,-0.3685912489891052,0.13897152245044708,-0.08354197442531586,-0.3386691212654114,0.5109143853187561,-0.4575516879558563,-0.37243473529815674,0.06848818063735962,-0.046609971672296524,-0.41416239738464355,0.1768202781677246,-0.6584632992744446,0.6711490154266357,-0.1382548213005066,-0.3274769186973572,-0.41014721989631653,0.1081884354352951,-0.4084959924221039,0.15493860840797424,-0.08504578471183777,0.14265567064285278,0.3269440829753876,0.345778226852417,-0.4689139425754547,-0.38922926783561707,-0.5456821322441101,-0.38504764437675476,-0.3193570673465729,-0.6773805618286133,0.181841641664505,0.4558144211769104,-0.6019404530525208,-0.09490150958299637,0.04882052168250084,0.5494596362113953,-0.11852937191724777,0.2660249173641205,-0.3536660075187683,-0.672680675983429,0.18713271617889404,0.6393064856529236,-0.4685634970664978,0.1761554628610611,-0.33717095851898193,0.24718165397644043,-0.17548991739749908,-0.3737642467021942,0.028369151055812836,0.25341758131980896,0.3301393985748291,0.3244405686855316,-0.27350685000419617,0.1886410117149353,0.3737071752548218,0.04923974722623825,-0.2797921597957611,-0.375188410282135,-0.17095017433166504,-0.5760220885276794,0.17371317744255066,0.017455676570534706,-0.22012744843959808,-0.16447307169437408,-0.20408307015895844,-0.27558839321136475,-0.15903092920780182,0.09388784319162369,-0.07303249835968018,0.06190239265561104,-0.16701990365982056,-0.09314246475696564,-0.23288120329380035,-0.30229857563972473,0.08601386100053787,0.13840056955814362,0.26945731043815613,0.1866588145494461,-0.04728829860687256,-0.20350484549999237,-0.09317604452371597,0.237674281001091,0.2810724973678589,-0.18364915251731873,-0.16065172851085663,-0.27298036217689514,0.20802533626556396,-0.02641729637980461,0.3367871940135956,0.222100630402565,0.126071497797966,-0.3155825436115265,0.3191934823989868,0.05927712097764015,-0.3058621883392334,-0.09347766637802124,-0.03654042258858681,-0.21931998431682587,0.06930933892726898,0.004443406593054533,-0.27011480927467346,0.16621127724647522,0.2727013826370239,0.004240762442350388,-0.12904219329357147,-0.32690390944480896,0.3387517035007477,-0.19021034240722656,0.12126105278730392,-0.06526857614517212,-0.2352251559495926,-0.23601742088794708,0.3389940857887268,-0.26859110593795776,0.2620321214199066,0.09758931398391724,0.16522285342216492,-0.05144449695944786,-0.08058613538742065,-0.22644692659378052,0.139581099152565,-0.22409531474113464,0.0669531524181366,-0.27991360425949097,0.194645956158638,-0.002874546218663454,0.27313199639320374,-0.16249480843544006,-0.12178473174571991,0.2303888499736786,-0.33648741245269775,0.0256047323346138,0.22512944042682648,0.27983930706977844,0.057402919977903366,-0.2746860980987549,-0.1052035242319107,-0.24521313607692719,-0.04530780762434006,0.2863117754459381,-0.31351974606513977,-0.06786990165710449,0.20085521042346954,-0.30795666575431824,-0.3318440914154053,-0.07080241292715073,0.12899097800254822,0.21588461101055145,-0.08690675348043442,-0.27616050839424133,-0.29988470673561096,-0.21877840161323547,0.30493423342704773,0.11996425688266754,0.009182226844131947,0.21329589188098907,0.04945964366197586,0.2202804684638977,0.2391081005334854,-0.13044680655002594,-0.3162183463573456,0.15854576230049133,0.11437197774648666,0.011709201149642467,0.11533711105585098,-0.3380335867404938,0.2691512405872345,-0.024921560660004616,0.016553061082959175,0.23242053389549255,0.18112336099147797,-0.19227436184883118,-0.3351827561855316,0.18298639357089996,-0.06750869750976562,0.16294845938682556,0.13413818180561066,-0.2768642008304596,0.1374235898256302,-0.079779252409935,-0.023815128952264786,0.02503134123980999,-0.0683651715517044,-0.16045553982257843,-0.18679937720298767,-0.22054070234298706,0.0003121233021374792,0.24288076162338257,0.17083610594272614,-0.021598773077130318,-0.3292098939418793,-0.15288718044757843,0.33845141530036926,-0.29084107279777527,-0.319320946931839,0.21475835144519806,-0.10317094624042511,-0.17811185121536255,-0.003928927704691887,0.23541583120822906,-0.28881654143333435,-0.2841353416442871,0.3126881718635559,-0.0038354764692485332,-0.3210698068141937,0.17026697099208832,0.20370343327522278,0.19493478536605835,-0.3118837773799896,-0.005800312850624323,0.013817773200571537,0.2236003875732422,-0.03832727670669556,0.1947568953037262,-0.03790712729096413,-0.250724196434021,0.21224041283130646,0.12458194047212601,-0.0031788188498467207,-0.17655427753925323,0.01630585826933384,0.01578374020755291,0.02775259129703045,-0.25360098481178284,0.08592846244573593,-0.04493503272533417,-0.0604160912334919,0.23785457015037537,-0.2655171751976013,0.2595718801021576,-0.08946288377046585,0.20273299515247345,0.2240533083677292,-0.10524357855319977,0.1559123694896698,0.2745788097381592,0.07314049452543259,0.2927144765853882,-0.18177185952663422,-0.25821492075920105,0.011545846238732338,0.07492344081401825,0.33408430218696594,0.3113793134689331,-0.01930682547390461,-0.08758312463760376,0.3240348696708679,-0.023277537897229195,0.18507158756256104,-0.3078496754169464,-0.0675070509314537,0.06414099037647247,-0.27178600430488586,-0.21820862591266632,-0.08461588621139526,-0.16492559015750885,0.17360982298851013,-0.11640915274620056,-0.2994486689567566,-0.3257043659687042,0.2829851806163788,-0.20567496120929718,0.26121434569358826,0.2407858520746231,0.03173941373825073,0.12099587172269821,-0.20601782202720642,-0.27416911721229553,0.1380002200603485,0.2762465476989746,-0.25340262055397034,0.23134617507457733,0.27703335881233215,-0.25455859303474426,-0.15946245193481445,-0.07769262790679932,-0.22199983894824982,-0.3220330476760864,0.14203676581382751,-0.1190268024802208,-0.22733290493488312,0.06355340033769608,0.11500236392021179,0.23424102365970612,-0.14360332489013672,0.2273159623146057,0.2854480445384979,-0.173949733376503,0.3317457437515259,0.047879625111818314,-0.024842945858836174,-0.08391580730676651,0.15717530250549316,0.20837323367595673,0.16667889058589935,-0.14027193188667297,0.3085838854312897,0.33514404296875,0.3233918845653534,-0.06626477837562561,-0.3139711916446686,-0.04925047606229782,0.2638581097126007,-0.2868907153606415,0.12533621490001678,-0.13584978878498077,0.14121656119823456,0.20990504324436188,0.2699434757232666,-0.10975504666566849,-0.2900198698043823,0.33668288588523865,0.09596908092498779,0.10137645900249481,0.2838382422924042,0.32822126150131226,-0.14532779157161713,-0.1224418357014656,-0.21289853751659393,0.32212916016578674,-0.043497420847415924,0.0017851333832368255,0.15671566128730774,-0.17357687652111053,0.057945623993873596,-0.24407047033309937,-0.06919987499713898,-0.32418394088745117,-0.28931841254234314,-0.1519189327955246,-0.3190961480140686,-0.11167453229427338,-0.28336337208747864,-0.12193263322114944,0.27899202704429626,0.151933491230011,-0.21594779193401337,0.17595826089382172,0.16990695893764496,-0.04465511441230774,-0.06084767356514931,0.08913610875606537,0.28781697154045105,-0.26068374514579773,0.05252586677670479,-0.3316263258457184,0.2933010458946228,0.08803904056549072,-0.135316863656044,-0.00279529788531363,0.28309351205825806,0.13689592480659485,-0.12826694548130035,-0.04124695062637329,0.29584529995918274,-0.32611721754074097,-0.33511805534362793,0.14941400289535522,0.1754276305437088,0.28060030937194824,0.15211433172225952,0.15712803602218628,-0.10273493081331253,-0.007981717586517334,0.17815521359443665,-0.1727108359336853,-0.1269497573375702,-0.06337066739797592,0.2034265398979187,-0.07211121171712875,-0.12722493708133698,0.33369535207748413,0.22198927402496338,-0.2004026621580124,0.22423669695854187,-0.24851016700267792,0.2934119403362274,0.00776444748044014,-0.2647615075111389,0.24580898880958557,0.17212028801441193,-0.14546535909175873,-0.021576998755335808,-0.316527396440506,-0.05731730908155441,-0.3128356635570526,-0.3060261607170105,-0.044320281594991684,-0.22049659490585327,-0.09246166795492172,0.20708392560482025,0.04315606877207756,0.11438644677400589,-0.06189759448170662,0.20436418056488037,0.029315190389752388,0.07708113640546799,0.2093077450990677,-0.0831153467297554,0.07341373711824417,-0.266599178314209,-0.20674271881580353,-0.07963119447231293,-0.007877036929130554,-0.28311410546302795,-0.17323963344097137,0.07119108736515045,-0.21812041103839874,0.14626605808734894,-0.15465481579303741,-0.07940604537725449,0.19095194339752197,0.2239016592502594,-0.049410171806812286,-0.26885849237442017,0.32679978013038635,-0.3338172137737274,-0.032305944710969925,0.1355331689119339,0.31271061301231384,0.10541553050279617,-0.16236214339733124,0.2262325882911682,0.20320476591587067,-0.05381681025028229,-0.021855449303984642,-0.20299318432807922,0.21034875512123108,0.1634560227394104,-0.21129080653190613,-0.22158239781856537,-0.058979615569114685,-0.060274552553892136,0.049838896840810776,0.009276634082198143,0.0992620661854744,0.31128907203674316,-0.008970357477664948,-0.023006821051239967,-0.24539242684841156,-0.012787283398211002,0.26334041357040405,-0.3258255124092102,0.26818129420280457]},{"shape":[32],"values":[0.7413350939750671,-0.28361180424690247,0.6905596256256104,0.732973575592041,-0.23703999817371368,0.5468392372131348,0.7281816601753235,0.6351187825202942,0.7544752955436707,-0.7192134857177734,0.6099706888198853,0.14352138340473175,0.5042905211448669,0.4919677674770355,0.6543674468994141,0.6664050221443176,-0.5104385614395142,-0.4851363003253937,0.744809091091156,0.6912703514099121,0.22594183683395386,-0.6367031335830688,0.5640470385551453,0.478074848651886,-0.43812498450279236,0.6185294985771179,0.6883707046508789,0.6513381004333496,0.20953287184238434,0.16554097831249237,0.8042289614677429,0.5632264018058777]},{"shape":[32,32],"values":[-0.15002290904521942,0.4686584770679474,0.5380944013595581,0.4740139842033386,0.32509568333625793,0.2967163622379303,0.17938072979450226,0.3932678699493408,-0.18026778101921082,0.448040246963501,0.0421450212597847,0.42566144466400146,-0.8293437361717224,0.1274910569190979,0.30519935488700867,0.5709002614021301,0.1505986452102661,0.07327837496995926,0.6796926856040955,0.5163673162460327,0.22575443983078003,0.6777967810630798,0.15012921392917633,0.30054929852485657,0.18518392741680145,0.5206450819969177,0.5485068559646606,0.18632087111473083,0.39486145973205566,0.34575727581977844,0.6475822329521179,0.1360846310853958,0.20825815200805664,-0.3945935368537903,-1.0206302404403687,-0.6328452825546265,-0.3069077730178833,-0.7695484757423401,-0.7372673749923706,-0.3308875262737274,-0.03032585233449936,-0.30350133776664734,-0.27973389625549316,0.2389008104801178,-0.07733283936977386,-0.5651131272315979,-0.7123160362243652,-0.8563163876533508,-0.637373685836792,-0.02992171049118042,0.15121762454509735,-0.633416473865509,-0.475296288728714,-0.39397984743118286,-0.3716440200805664,-0.5809102058410645,-1.7754931449890137,-0.8916375637054443,-0.5072271227836609,-1.3525676727294922,-0.3345440924167633,-0.9706766605377197,-0.8196606040000916,0.13404963910579681,-0.07211947441101074,0.623554527759552,0.431542307138443,0.36275970935821533,0.5533753037452698,0.943257212638855,0.13772892951965332,0.04304295778274536,0.20246337354183197,0.420717716217041,-0.04723462089896202,0.02518993616104126,-0.017629478126764297,0.4492451250553131,0.2503407299518585,0.7863098978996277,-0.04544411599636078,-0.25135862827301025,-0.11720418930053711,0.8266470432281494,0.4734423756599426,0.15420658886432648,0.35728025436401367,0.4865250289440155,0.7858131527900696,0.4823499917984009,0.5781643986701965,0.5912559628486633,0.5083970427513123,0.1588558554649353,0.6722424626350403,-0.3138126730918884,-0.02027950808405876,0.2214643508195877,0.7101887464523315,0.4002968370914459,0.3793201744556427,0.01612827368080616,0.9107985496520996,0.5906817317008972,-0.15497159957885742,0.2508392333984375,-0.004549047444015741,0.1672888547182083,-0.01391944382339716,0.08476447314023972,0.4045569598674774,0.26803454756736755,0.516693115234375,0.33487269282341003,0.16698701679706573,0.499236136674881,0.4018896222114563,0.7132990956306458,0.15695969760417938,0.04405898228287697,0.4194486439228058,0.6547037959098816,0.3427841067314148,0.4955083429813385,0.6542004942893982,0.47493457794189453,0.6729864478111267,-0.22872743010520935,-0.117619588971138,-0.8379130959510803,-0.8888248205184937,-0.6465575098991394,-0.27557700872421265,-0.6685675978660583,-0.4410412907600403,0.04460267350077629,-0.04733574762940407,-0.4148142635822296,0.05505939573049545,0.7651908993721008,0.525384247303009,-0.8091915845870972,-0.7173950672149658,-0.7976677417755127,-0.5821344256401062,-0.15924187004566193,0.5544828176498413,-0.42827484011650085,-0.21509289741516113,-0.8816187977790833,-0.41836050152778625,-0.5507404208183289,-2.025946855545044,-0.8387995958328247,-0.4868799149990082,-2.15761137008667,-0.40852653980255127,-0.8344436883926392,-0.7934659123420715,0.21756435930728912,-0.2023414820432663,0.5247198939323425,0.21332459151744843,0.7217885851860046,0.31119659543037415,0.49359583854675293,0.3844454884529114,0.6703489422798157,0.05638648569583893,0.5761626958847046,0.2463410198688507,-0.20394651591777802,-0.38861268758773804,0.361774742603302,0.28432315587997437,0.3825816810131073,0.552695631980896,0.19901730120182037,0.47911596298217773,0.3444260358810425,0.7280015349388123,0.012391835451126099,0.23115360736846924,-0.04444773122668266,-0.12814250588417053,-0.10221900790929794,0.023944107815623283,0.16236045956611633,0.454914391040802,0.4280625283718109,0.3309582769870758,-0.12791311740875244,-0.29512667655944824,0.503284752368927,0.6897563934326172,0.29862168431282043,0.6095222234725952,0.4181305766105652,0.43068429827690125,0.19164542853832245,-0.42847269773483276,0.1345691680908203,-0.2679441273212433,0.5672051310539246,-0.2861619293689728,0.31678643822669983,0.34295761585235596,0.6354305148124695,0.5222108960151672,-0.008806289173662663,0.04013649374246597,0.43918633460998535,0.20356665551662445,0.4719860255718231,0.1185569167137146,0.1550034135580063,0.4628562331199646,0.13289813697338104,0.1798139065504074,0.5992475748062134,0.5555996894836426,0.18325196206569672,0.2263163924217224,-0.09003596752882004,-0.26463210582733154,0.740780234336853,0.5081338286399841,0.6340238451957703,0.18380239605903625,0.1154601201415062,0.804675281047821,0.41288283467292786,-0.10112331062555313,0.21887244284152985,-0.2049131542444229,0.427923321723938,0.040773965418338776,0.3973282277584076,0.22544655203819275,0.3749959170818329,0.430597186088562,0.09327951073646545,0.1323225051164627,0.4352511465549469,0.4715731739997864,0.44038257002830505,0.08277042210102081,0.326287180185318,0.3210352659225464,0.6279504299163818,0.33500853180885315,0.3234170079231262,0.6892781853675842,0.7950005531311035,0.6909865140914917,-0.21874557435512543,-0.09855280816555023,0.4172399342060089,0.6784355044364929,0.5539776682853699,0.31749212741851807,0.2248401939868927,0.5899360775947571,0.3726227283477783,-0.6941487193107605,0.6364114880561829,-0.1713809072971344,0.3993958532810211,-0.22205810248851776,0.4182942807674408,-0.02153036557137966,0.5206841230392456,0.3463486433029175,0.18724212050437927,0.26219362020492554,0.22476093471050262,0.27389901876449585,0.019348330795764923,-0.010206172242760658,0.49806320667266846,0.1797664761543274,0.49009737372398376,0.31003350019454956,0.13982073962688446,0.3892745077610016,0.5841237902641296,0.6688327193260193,-0.2933472692966461,-0.2004919946193695,-0.7907693386077881,-1.172334909439087,-0.8558713793754578,-0.6862446069717407,-0.8450145721435547,-0.9888975620269775,-1.7354673147201538,0.878248929977417,-0.7398237586021423,0.19103287160396576,-1.0901157855987549,0.7581678628921509,-0.8949993848800659,-0.5886211395263672,-0.8621325492858887,-0.33519741892814636,0.22339797019958496,-1.7564189434051514,-0.9868230819702148,-1.788905143737793,-0.9236063361167908,-0.6725419163703918,-1.032021164894104,0.17123684287071228,-0.9316603541374207,-0.5005677938461304,0.3535768687725067,-0.5605844259262085,-0.6388377547264099,-0.5214338898658752,-0.3060967028141022,0.18740811944007874,0.4688691794872284,0.5908418297767639,0.23896528780460358,0.17071855068206787,0.41901257634162903,0.46022582054138184,0.12052912265062332,-0.678071141242981,0.51478511095047,-0.0377623587846756,0.18877416849136353,-0.9289687275886536,0.3589579463005066,-0.02633238397538662,0.4020296037197113,0.028730086982250214,-0.5700087547302246,-0.053752604871988297,0.5116831064224243,0.21146367490291595,0.5175051093101501,0.4959389269351959,0.7775919437408447,0.1307682991027832,0.45954594016075134,0.6632527709007263,0.19068388640880585,0.27071821689605713,0.22477109730243683,0.6901147961616516,-0.315041720867157,0.13421699404716492,1.2543509006500244,0.9602505564689636,0.9446737170219421,1.122186303138733,1.20247483253479,0.6694127321243286,0.6885552406311035,-0.9303414821624756,0.7414065599441528,0.21694207191467285,0.05881047621369362,-1.1662712097167969,0.9035641551017761,0.6160337328910828,1.2281179428100586,0.25345948338508606,-0.6228237748146057,0.12588296830654144,1.2778044939041138,0.6458032131195068,0.7485439777374268,0.9303655624389648,1.1693702936172485,0.1435011625289917,0.2328415811061859,0.9994524121284485,0.3356468081474304,0.818795919418335,1.0295976400375366,0.9856402277946472,-0.3153631389141083,0.23053841292858124,0.37565991282463074,0.5325984954833984,0.4141635000705719,0.4165654182434082,-0.06919674575328827,0.4283510446548462,-0.1632809042930603,-0.0999964028596878,0.5203452706336975,0.2536795437335968,0.12945453822612762,0.37368616461753845,0.5671954154968262,0.11668504774570465,0.1060882955789566,0.5017865300178528,-0.0621870718896389,0.145283043384552,0.33038750290870667,-0.17700406908988953,0.19964618980884552,0.18650682270526886,0.2336961030960083,0.30874404311180115,0.2917017340660095,0.5392102003097534,0.1342686116695404,0.345121294260025,0.5691927075386047,0.29644396901130676,-0.18304790556430817,0.18571101129055023,0.48956498503685,1.0492390394210815,0.5756794810295105,0.5593675374984741,0.43956291675567627,0.4408130645751953,0.06550169736146927,-0.3132475018501282,0.23484888672828674,-0.1972280591726303,0.2116485834121704,0.13433176279067993,0.5894342064857483,0.15987920761108398,0.8229872584342957,0.42372989654541016,0.23697400093078613,0.1953188180923462,0.5172582268714905,-0.056151024997234344,0.4207436442375183,0.20156018435955048,0.4049435257911682,0.7506428956985474,0.5447281002998352,0.5827150940895081,0.24203798174858093,0.6597931385040283,0.541813850402832,0.8183586597442627,-0.05420513078570366,-0.24228358268737793,0.6390342712402344,0.6187200546264648,-0.01032603345811367,0.5924747586250305,0.13425925374031067,0.5638160705566406,0.05305678769946098,-0.39641451835632324,0.06725574284791946,0.210247203707695,0.24780890345573425,-0.5675637125968933,0.5323261618614197,0.4942663908004761,0.716113805770874,-0.2719111442565918,-0.4647485613822937,0.12235052138566971,0.4034436345100403,0.34932103753089905,0.17472505569458008,0.42663007974624634,0.2793162167072296,0.5787914395332336,-0.009625730104744434,0.5287967324256897,0.19251522421836853,0.07630275934934616,0.6360712051391602,0.6664720177650452,-0.29775306582450867,0.030300220474600792,0.012502032332122326,0.11033230274915695,0.3251027762889862,0.38903990387916565,0.07674862444400787,-0.005968133453279734,-0.26084116101264954,0.2985485792160034,0.2945694625377655,-0.2982388138771057,-0.6193748712539673,0.36317190527915955,0.5622475147247314,0.443490207195282,0.1584167182445526,-0.0634470209479332,0.06740051507949829,-0.6924306154251099,0.5122964382171631,-0.1455511599779129,0.33589664101600647,0.20541039109230042,0.3244338929653168,0.7449356913566589,0.34138116240501404,0.32052385807037354,0.1998869776725769,0.3794787526130676,0.4926469624042511,0.02894025854766369,-0.06908424943685532,0.2056029587984085,-1.0623207092285156,-1.2592281103134155,-0.7766422629356384,-0.8920873403549194,-0.6558276414871216,-0.9649491906166077,-0.5296786427497864,-0.24903741478919983,-0.6105141639709473,0.06685573607683182,0.47294217348098755,0.11581017076969147,-0.6553679704666138,-0.8047493696212769,-1.0948156118392944,-0.971524715423584,-0.20060023665428162,0.2540009617805481,-1.0463584661483765,-0.5558040142059326,-1.0690101385116577,-0.14894309639930725,-0.29629695415496826,-1.3423770666122437,-0.528274416923523,-1.1373544931411743,-1.5705270767211914,-0.8810203075408936,-0.9359524846076965,-1.037278175354004,0.009124686941504478,0.06929045915603638,-0.47295278310775757,-0.6671508550643921,-0.5168096423149109,-0.3600125312805176,-0.35682135820388794,-0.43309348821640015,-1.0275076627731323,0.7078125476837158,-0.13325290381908417,0.0189107246696949,-0.7004594802856445,0.46946656703948975,-0.40227749943733215,-0.06025692820549011,-0.3139529228210449,-0.3392760157585144,0.3245387077331543,-1.002442717552185,-0.24203668534755707,-1.060458779335022,-0.2748187184333801,-0.399079293012619,-0.09371314942836761,0.7526095509529114,-0.30082446336746216,-0.06577914208173752,0.7160080671310425,-0.8499715924263,-0.7740983963012695,-0.11162801831960678,-0.12016849219799042,0.045974913984537125,0.5705902576446533,0.2951456904411316,0.1361672282218933,0.35037174820899963,0.4614138901233673,0.31688037514686584,0.4264976382255554,-0.2742273807525635,0.37802696228027344,-0.26004940271377563,0.259930819272995,-0.4451864957809448,0.0981270968914032,0.6224221587181091,0.2585429549217224,0.4753117263317108,0.16987398266792297,0.2051476389169693,0.28427231311798096,0.3676779866218567,0.6549865007400513,-0.11470822989940643,0.032867319881916046,0.5026648640632629,0.39863458275794983,0.5357341170310974,0.4305740296840668,0.5928231477737427,0.6541220545768738,0.7466334700584412,-0.08995787054300308,-0.033688999712467194,0.1533532291650772,-0.0336165614426136,0.05674292892217636,0.3456396758556366,0.3051721751689911,0.3283500075340271,0.5273373126983643,-0.03971000015735626,0.4042649567127228,0.08711979538202286,0.07886345684528351,-0.44894304871559143,0.3867773115634918,0.3157185912132263,0.2777118980884552,0.22693391144275665,-0.0387146957218647,0.6170328855514526,0.35161590576171875,0.5438798069953918,0.30333998799324036,0.1422015130519867,-0.16731347143650055,-0.01053686998784542,0.123023122549057,0.17307007312774658,-0.3557213544845581,0.430085152387619,0.09232679754495621,0.45075666904449463,-0.20313166081905365,-0.29424208402633667,-0.3196684420108795,-0.9097725749015808,-0.4855561852455139,-0.19488970935344696,-0.5481594204902649,-0.21465148031711578,0.4375850260257721,-0.23572489619255066,-0.3317594826221466,0.010248411446809769,0.698910653591156,1.0946406126022339,-0.5083460807800293,0.08580687642097473,-0.3297715485095978,-0.1933172345161438,-0.255717396736145,0.6478609442710876,-0.45413947105407715,0.001064932905137539,-0.46469932794570923,-0.10980997234582901,-0.3081091344356537,-1.9419928789138794,-0.32879507541656494,-0.5924250483512878,-1.4302629232406616,-0.4955053925514221,-0.605860710144043,-0.2570876479148865,-0.0827302485704422,-0.044661473482847214,-1.2650355100631714,-1.2441251277923584,-0.9125533699989319,-1.0883166790008545,-0.9128133058547974,-1.2572734355926514,-2.2510952949523926,1.3216578960418701,-1.0605896711349487,-0.2566039562225342,-1.0214170217514038,1.4083811044692993,-1.4194697141647339,-0.5715259313583374,-0.9693651795387268,-0.7058204412460327,-0.08039509505033493,-1.2653026580810547,-1.344016432762146,-1.5331332683563232,-1.2173855304718018,-0.7854567766189575,-1.2381960153579712,0.1614556908607483,-1.2882380485534668,-0.734778106212616,0.5734554529190063,-1.0696638822555542,-1.5193058252334595,-0.9548277258872986,-0.1935226172208786,0.07030684500932693,0.5886211395263672,0.4588737189769745,0.5700459480285645,0.4970572292804718,1.4635716676712036,0.5358846187591553,-0.27600133419036865,-0.0533733032643795,0.24767453968524933,0.08796559274196625,-0.05924735218286514,-0.20190882682800293,0.7282376885414124,0.13893873989582062,0.42723187804222107,0.23123624920845032,-0.21894709765911102,0.22855477035045624,0.7550259232521057,0.18979498744010925,0.547087550163269,0.4379522502422333,0.44689756631851196,0.6214858293533325,0.23269182443618774,0.1491546630859375,0.6752743124961853,0.3355880379676819,0.08285343647003174,0.7339552044868469,0.2593601644039154,-0.12390697747468948,0.5471993684768677,0.9415048956871033,0.664337694644928,0.24574880301952362,-0.13779470324516296,0.7487470507621765,-0.12405339628458023,-0.6733124256134033,0.6757810115814209,0.17249120771884918,0.17306765913963318,-0.25137555599212646,0.4724515676498413,0.03224285691976547,0.4342342019081116,0.15371254086494446,0.16479356586933136,-0.05007566511631012,0.6887216567993164,-0.4091542661190033,0.42268607020378113,-0.08159148693084717,0.2319849133491516,0.3396207094192505,0.8800165057182312,0.7792729139328003,0.021907201036810875,0.4173920750617981,0.8856877088546753,0.4833427965641022,0.07157349586486816,-0.0048777861520648,-1.0895463228225708,-0.7362366318702698,-0.7660378217697144,-0.8781331181526184,-0.6148272156715393,-0.7032648324966431,0.15872465074062347,0.15140751004219055,-0.40400949120521545,-0.19181279838085175,0.8366712927818298,0.5098453164100647,-0.9106602072715759,-0.6575415134429932,-1.0018805265426636,-0.18803320825099945,-0.25654372572898865,0.22971577942371368,-0.7126771807670593,-0.5209781527519226,-0.9727919697761536,-0.7214177846908569,-0.7647429704666138,-1.2831392288208008,-0.43781501054763794,-0.7311452627182007,-1.028723955154419,-0.6584457159042358,-1.0018372535705566,-1.0241615772247314,0.27510350942611694,-0.043833453208208084,0.4472343623638153,0.4864632189273834,-0.011674673296511173,0.15896154940128326,0.19395297765731812,0.5460423231124878,0.37321096658706665,0.17845451831817627,0.30981823801994324,0.2471049726009369,0.2569645643234253,-0.05267104133963585,-0.10976765304803848,0.0032461797818541527,0.02837601862847805,0.5606040358543396,0.0001748909126035869,0.5877054929733276,-0.13997814059257507,0.41786807775497437,0.4783288538455963,-0.26103153824806213,-0.11692959815263748,0.4308456778526306,0.490980863571167,0.2875330448150635,0.6050012707710266,-0.008744917809963226,0.046745430678129196,0.4080406129360199,0.18516746163368225,-0.21693113446235657,0.5576266646385193,0.2750508487224579,0.2962174713611603,0.41731470823287964,0.24073302745819092,0.4696926176548004,0.1083143949508667,-0.25437602400779724,0.34839168190956116,0.05393418297171593,-0.17288738489151,0.39582735300064087,0.5788785219192505,0.5670511722564697,0.522264301776886,0.16098660230636597,0.2751319408416748,0.35907289385795593,0.40374577045440674,0.1697668582201004,0.5524780750274658,0.2766900360584259,0.3450824022293091,0.6193634271621704,0.2825344204902649,0.30184048414230347,0.37735289335250854,0.25504735112190247,0.14530602097511292,0.4047420918941498,-0.09777925163507462,0.12041974067687988,-0.05422542989253998,0.41259247064590454,0.2908613681793213,0.04930060729384422,0.016865387558937073,0.04768857732415199,0.023584164679050446,0.5329285860061646,0.13035419583320618,-0.10243582725524902,-0.20336078107357025,0.4273468554019928,-0.025299737229943275,0.1962825059890747,0.08931282162666321,0.2687581777572632,0.3853321969509125,0.06399408727884293,0.39650142192840576,0.06345212459564209,-0.13960996270179749,0.36947494745254517,0.23529908061027527,0.3260142505168915,0.1458272486925125,0.16406495869159698,0.7119330167770386,-0.140696182847023,0.09748178720474243,0.28652292490005493,0.1377393901348114,0.06383676826953888,0.3481256365776062,0.5421420335769653,0.4355705976486206,0.29666441679000854,0.5259658694267273,0.6592092514038086,0.18619504570960999,-0.1690189689397812,-0.061561841517686844,-0.07308506220579147,0.3017144799232483,0.005780343897640705,0.6129838228225708,0.15100404620170593,0.5891065001487732,-0.3738662898540497,-0.20767949521541595,0.05591600015759468,0.5210913419723511,-0.11989886313676834,0.26055577397346497,0.4344331920146942,0.1589251309633255,0.11413048207759857,-0.34395459294319153,0.1632835417985916,0.1394483745098114,0.46556568145751953,0.2561183571815491,0.22443661093711853,-0.1179073378443718,0.032385651022195816,0.6525924205780029,0.8297098875045776,0.6840144395828247,1.0114482641220093,1.0899299383163452,0.5148696899414062,0.5769364833831787,-0.8956009745597839,1.0170845985412598,-0.27262118458747864,-0.1413545161485672,-1.0107167959213257,1.1365773677825928,0.4680730700492859,0.6516628265380859,-0.12758442759513855,-0.4588008522987366,0.12311837822198868,0.8056614995002747,0.4158999025821686,0.4235551357269287,0.5399839282035828,1.0096385478973389,0.8275831341743469,0.19023020565509796,0.8751976490020752,0.30924171209335327,0.46966421604156494,1.1943525075912476,1.0946663618087769,0.22739847004413605,-0.21131445467472076,0.24728457629680634,0.5606197714805603,0.5881407260894775,0.44222956895828247,0.5766626000404358,0.4199000298976898,0.5413282513618469,-0.20415286719799042,0.6370161771774292,-0.006026855204254389,0.5250140428543091,-0.6056656837463379,0.7355061769485474,0.0524471215903759,0.24765163660049438,-0.06457069516181946,-0.048499539494514465,0.42658981680870056,0.15645253658294678,0.07272344082593918,0.17894494533538818,0.45451244711875916,0.5576054453849792,0.1796448826789856,0.21463528275489807,0.3829055428504944,0.22209572792053223,0.12903745472431183,0.5303431749343872,0.616931676864624,0.10854396224021912,-0.012932016514241695,0.47467803955078125,0.8036209940910339,0.4720105230808258,0.6598116755485535,0.1969575434923172,0.36665743589401245,0.2986471354961395,-0.6928532123565674,0.20190495252609253,-0.20103126764297485,0.4995473027229309,-0.4896695017814636,0.19491511583328247,0.5496412515640259,0.4938432574272156,-0.10011406242847443,-0.2531220316886902,0.5578770041465759,0.7127561569213867,-0.037595588713884354,0.14021191000938416,0.100800521671772,0.5015358924865723,0.05992140248417854,-0.13343484699726105,0.71767258644104,-0.0644429475069046,0.35776031017303467,0.6975788474082947,0.6757996082305908,-0.2543336749076843]},{"shape":[32],"values":[-0.057435598224401474,0.704533576965332,0.7159607410430908,0.6336081624031067,0.5421186685562134,0.6670480370521545,0.6115738749504089,0.324069082736969,-0.160521999001503,0.5152987837791443,-0.032119765877723694,-0.012714839540421963,-0.047922391444444656,0.6437354683876038,0.5749961137771606,0.620776355266571,0.39088383316993713,-0.028460035100579262,0.07168922573328018,0.5820704102516174,0.3395144045352936,0.6012893915176392,0.3564397692680359,0.5264467000961304,0.3314710557460785,0.5399694442749023,0.599280059337616,0.19543465971946716,0.5722819566726685,0.6436002850532532,0.5991402268409729,-0.009379596449434757]},{"shape":[32,9],"values":[0.35337287187576294,0.32807809114456177,-0.1438421756029129,-0.007503381464630365,0.11169308423995972,-0.2437543272972107,-0.04041183367371559,-0.2341485172510147,0.2481905221939087,0.7505120635032654,0.394427627325058,0.8732349872589111,0.43743324279785156,0.6285496354103088,0.6294918060302734,0.7561302185058594,0.436271607875824,0.5565415620803833,0.5705716609954834,0.9582181572914124,0.7714126706123352,0.9362591505050659,0.9720523953437805,1.0992341041564941,0.7833607196807861,0.8147071003913879,0.8229947090148926,0.4222656190395355,0.33374151587486267,0.8324816226959229,0.5495819449424744,0.7110263705253601,0.23046697676181793,1.024940848350525,0.6961387991905212,0.4718615412712097,0.27355605363845825,0.6950826644897461,0.14712604880332947,0.7206822037696838,0.1679769605398178,0.2985607981681824,0.34222865104675293,0.6512448191642761,0.7088308334350586,0.9483693242073059,0.48779818415641785,0.5613949298858643,0.7933502793312073,0.6345313787460327,1.0579209327697754,0.9641156792640686,0.8953445553779602,0.9246675968170166,0.8560653328895569,0.8010897040367126,-0.002456920687109232,0.6746972799301147,0.718019425868988,0.6990388631820679,0.7585313320159912,0.33057233691215515,0.48228105902671814,0.5237409472465515,0.10216647386550903,-0.6086227893829346,0.2638707458972931,0.24394026398658752,-0.316165566444397,0.4103100001811981,0.2884916365146637,-0.749039351940155,-0.17744526267051697,-0.5008309483528137,-0.861809492111206,-0.687457799911499,-0.2076738178730011,-0.7329634428024292,-0.6297744512557983,-0.7379531860351562,-1.1690367460250854,0.3125600516796112,0.14673635363578796,-0.056507524102926254,0.34596148133277893,0.5667654871940613,0.37952059507369995,0.3227269947528839,0.6828359365463257,0.6484562158584595,0.16056770086288452,0.34984350204467773,-0.30984994769096375,-0.08506445586681366,-0.13486334681510925,0.3236727714538574,-0.22445036470890045,-0.3362809717655182,-0.046497445553541183,-0.2913259267807007,-0.6387448310852051,-0.41835302114486694,0.15778999030590057,-0.5811915397644043,-0.5002314448356628,-0.1691252440214157,-0.2959900200366974,-0.6853291988372803,-0.25254881381988525,-0.7990171909332275,-0.7043737173080444,-0.21483831107616425,-0.8355769515037537,-0.366519570350647,-0.07955050468444824,-0.4715396761894226,-1.0388782024383545,0.7716839909553528,0.726225733757019,1.030495285987854,1.0434882640838623,0.34676510095596313,0.7991769909858704,0.4339970052242279,0.5765359997749329,0.6888626217842102,0.5257307291030884,0.3013095259666443,0.762175977230072,0.2526535093784332,0.07560496032238007,0.05271418020129204,0.7821592092514038,0.5060785412788391,0.23063534498214722,0.529635488986969,0.8283939361572266,0.7654417157173157,0.7048050761222839,0.5888750553131104,0.532803475856781,0.7271391749382019,0.7348797917366028,1.0423468351364136,0.5303301811218262,0.5182144641876221,0.5036168694496155,0.3457471430301666,0.4620145857334137,0.2744329571723938,0.3059096932411194,0.5332152843475342,-0.0315411277115345,-0.4427453875541687,0.07410076260566711,0.5235958099365234,0.01561796199530363,-0.02736191265285015,0.07084602862596512,-0.5487249493598938,0.14128848910331726,-0.20768842101097107,0.33666402101516724,0.07171127200126648,-0.479353666305542,0.03656690940260887,0.04847517982125282,-0.5634323954582214,0.2260015308856964,-0.3297841250896454,-0.7028308510780334,0.5538966655731201,0.3958776891231537,0.7714889645576477,0.3547115921974182,0.5201990604400635,0.7198261618614197,0.44389668107032776,0.31499382853507996,0.7586025595664978,0.6140718460083008,0.5095936059951782,-0.18464601039886475,0.5069458484649658,0.21444092690944672,-0.3001284897327423,0.9110975861549377,0.5216621160507202,-0.7417612075805664,0.31810709834098816,0.642204761505127,0.7768862247467041,0.6018152832984924,0.8560674786567688,0.7091972231864929,0.9195757508277893,0.38239315152168274,0.6676904559135437,0.18261238932609558,0.7344934344291687,0.9431421756744385,0.7419372200965881,0.4630228281021118,0.4002728760242462,0.30210116505622864,0.4563993811607361,0.39967405796051025,0.08778543770313263,0.8022134304046631,0.8988307118415833,0.2757119834423065,0.6790077090263367,0.35537827014923096,0.3658140003681183,0.20333610475063324,0.6572192311286926,-0.6551868915557861,-0.12722188234329224,0.20237137377262115,-0.8245075345039368,-0.028339913114905357,0.2874038517475128,-0.9839796423912048,-0.14320328831672668,0.26060184836387634,0.5918681621551514,0.48970353603363037,0.3248531222343445,0.6505118608474731,0.5441255569458008,0.8514748811721802,0.7695792317390442,0.9420413374900818,0.9005998969078064,0.4340600073337555,0.09968288242816925,0.5738356113433838,0.22306479513645172,0.36032000184059143,0.5407529473304749,0.48134538531303406,0.524976909160614,0.5463281869888306,-0.6808003783226013,-0.2845565676689148,0.07900054007768631,-0.8460209369659424,-0.212600439786911,0.16540493071079254,-0.911510705947876,-0.32471325993537903,0.1705000400543213,0.7547410726547241,0.631854236125946,0.5342587828636169,0.783119797706604,0.4556572139263153,0.2102619856595993,0.341080904006958,0.16032566130161285,0.43536242842674255,1.0790921449661255,1.0244381427764893,0.7631677985191345,0.7286280393600464,0.5488623976707458,0.6359671950340271,0.5582193732261658,0.9816296696662903,0.5987145900726318,0.378303200006485,0.21470434963703156,0.1565435230731964,0.6327354311943054,0.6865389347076416,0.5151902437210083,0.36718621850013733,0.5336776375770569,0.5555897355079651,0.38986825942993164,0.10861131548881531,0.268084317445755,0.1391303688287735,0.0031193720642477274,-0.13864214718341827,-0.1162555143237114,-0.04225045070052147,0.054737139493227005]},{"shape":[9],"values":[0.27039647102355957,0.19790232181549072,0.26903462409973145,0.3610837459564209,0.22720663249492645,0.22853748500347137,0.4428239166736603,0.3818700611591339,0.37058815360069275]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-73.json new file mode 100644 index 0000000..4686c19 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/double-dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:12:07.672Z","weights":[{"shape":[20,32],"values":[0.6803414821624756,0.18514284491539001,0.787378191947937,-0.05253254994750023,0.27848559617996216,0.4895598292350769,0.27458611130714417,0.2380952537059784,0.06339618563652039,0.09817806631326675,-0.4185830354690552,-0.2940885126590729,0.354460209608078,0.1256929486989975,0.05460247024893761,0.7214770317077637,0.0010299345012754202,0.04118664935231209,0.35579824447631836,-0.12273979187011719,0.3004060685634613,0.5331460237503052,0.4286024272441864,-0.06779526174068451,0.09690196067094803,0.5162193775177002,0.19761456549167633,0.12634608149528503,0.5163931846618652,0.6566793918609619,-0.03910538926720619,0.41189855337142944,-0.024727270007133484,-0.3561873137950897,0.007094011642038822,0.1071331799030304,-0.27605605125427246,0.10104943811893463,-0.02028043568134308,0.002049769042059779,-0.08261552453041077,-0.6393905282020569,-0.23055493831634521,0.47717151045799255,-0.2803460955619812,0.08212730288505554,-0.2361658215522766,0.050648272037506104,-0.5649316906929016,0.18083618581295013,-0.047456078231334686,-0.2113237977027893,-0.09583871811628342,-0.34762510657310486,-0.08263113349676132,-0.0886833667755127,-0.35156065225601196,-0.32575446367263794,-0.0573839396238327,-0.09552442282438278,-0.506032407283783,-0.47590625286102295,0.08349099010229111,0.13804157078266144,-0.4931291341781616,0.04577084630727768,-0.41506633162498474,-0.2615194320678711,0.44057437777519226,-0.40872108936309814,-0.7179017663002014,0.0787595883011818,-0.1834544837474823,-0.6207466125488281,-0.8490282297134399,1.2268105745315552,0.002617534017190337,-0.3284120559692383,-0.9618459343910217,0.03384125605225563,-0.6787639856338501,-0.3949808180332184,-0.1317814290523529,-0.2220546454191208,-0.3043018579483032,-0.819860577583313,0.16797463595867157,-0.4139050543308258,-0.6074021458625793,0.3095847964286804,-0.4487723410129547,0.5456103682518005,-0.06811155378818512,0.3352115750312805,0.4133056402206421,-0.13038517534732819,-0.31532683968544006,-1.040908694267273,-0.3595508337020874,-0.09783236682415009,-0.5891257524490356,0.0317239873111248,1.7908520698547363,-0.8849073052406311,1.9445604085922241,2.028433322906494,2.4191856384277344,-1.233296275138855,-0.5881742835044861,0.6526383757591248,1.9138519763946533,0.081941619515419,2.036778688430786,0.17019735276699066,-0.4482415020465851,-0.4667494297027588,-0.06718460470438004,2.220022678375244,-0.14759163558483124,-0.1312490701675415,1.7458734512329102,-1.2199103832244873,-0.4247286915779114,-1.298987627029419,-0.32513660192489624,-0.7740362882614136,-0.2324463129043579,-0.5632131695747375,0.09191857278347015,0.4309904873371124,0.012138532474637032,-0.32485532760620117,0.4203937351703644,0.07244159281253815,0.13703575730323792,0.19389565289020538,0.20981109142303467,0.24789312481880188,-0.1689450442790985,-0.14592093229293823,0.2931824326515198,-0.5120242238044739,-0.07992426306009293,-0.042817775160074234,-0.23076601326465607,0.19684377312660217,0.35007262229919434,0.1465279757976532,0.055600378662347794,-0.17278622090816498,-0.36949029564857483,0.2618529498577118,0.1121799647808075,0.5867316126823425,0.15598532557487488,0.3097322881221771,0.34647658467292786,0.5075820684432983,-0.3792251944541931,-0.02775529958307743,-0.16091369092464447,0.27278104424476624,-0.031213419511914253,0.1257556974887848,0.0683172345161438,0.01303828228265047,0.08591031283140182,0.5066661834716797,0.49973922967910767,0.30561935901641846,0.37643954157829285,-0.4873509705066681,0.12072041630744934,-0.03222574666142464,0.004312604200094938,0.2693871557712555,0.4702514708042145,-0.0870591402053833,-0.02791079506278038,-0.077534981071949,0.47146737575531006,0.2645491063594818,0.36344873905181885,-0.13618209958076477,0.4350283741950989,0.4292167127132416,0.19376392662525177,0.18052631616592407,0.30206382274627686,0.20728467404842377,-0.08155994117259979,0.2595735490322113,0.07432594150304794,-0.1579776257276535,-0.046668339520692825,-0.12339790165424347,0.29427260160446167,-0.08320624381303787,0.5306174159049988,0.23879623413085938,0.42280665040016174,0.528249204158783,0.36364758014678955,-0.2298840433359146,-0.035907384008169174,-0.2483251690864563,0.28572309017181396,0.2117701917886734,0.2643011212348938,-0.1658521145582199,-0.3487551808357239,-0.06998422741889954,-0.2027689516544342,0.4209274351596832,0.4181976616382599,0.12659494578838348,0.608202338218689,0.27939411997795105,-0.3289811909198761,0.2540226876735687,0.12579245865345,0.283641517162323,0.10109356045722961,0.06983601301908493,0.31803804636001587,0.18591105937957764,-0.14037956297397614,0.3268307149410248,0.19446176290512085,0.01852988451719284,0.17483633756637573,0.027816148474812508,-0.1924540251493454,0.010177713818848133,0.09901799261569977,-0.5385718941688538,0.3719494342803955,-0.20728254318237305,0.09739896655082703,0.23782746493816376,0.5237630605697632,-0.27452465891838074,0.3223609924316406,0.24160204827785492,0.04184753820300102,-0.17131967842578888,0.3431207537651062,-0.05927016958594322,0.24006983637809753,0.007502081338316202,0.3036839962005615,0.3084747791290283,-0.20993217825889587,0.3824578523635864,0.587695300579071,-0.16134387254714966,-0.069085493683815,-0.23050479590892792,0.07543753832578659,-0.033202625811100006,-0.19541990756988525,-0.14977991580963135,0.30439624190330505,0.2610628008842468,0.15681390464305878,-0.0017050844617187977,-0.2964673340320587,0.05375779792666435,0.2518170475959778,-0.22945743799209595,0.00546287652105093,-0.21656396985054016,0.20602892339229584,0.104730024933815,-0.10495211184024811,-0.1543852984905243,-0.15061283111572266,0.31295260787010193,0.0698273703455925,-0.11002328246831894,0.2758879065513611,0.10996897518634796,0.20926405489444733,0.17976488173007965,0.3344443142414093,0.06946993619203568,-0.1576845347881317,0.1616106927394867,-0.21531957387924194,0.2583886981010437,0.325063019990921,0.06297769397497177,0.3318813741207123,0.050098273903131485,0.2009536623954773,0.2718771696090698,0.023314716294407845,-0.011055606417357922,-0.032076239585876465,-0.29672229290008545,-0.07081729173660278,0.2599566876888275,-0.22933535277843475,0.0481986366212368,0.028415607288479805,0.1439521759748459,0.27540725469589233,0.16110892593860626,0.19510984420776367,0.29403480887413025,-0.23271077871322632,-0.007877214811742306,0.08578645437955856,-0.058246348053216934,-0.30009689927101135,0.09204202145338058,-0.2683674395084381,-0.05399613454937935,-0.11391565948724747,-0.1294224113225937,0.14086712896823883,0.27450811862945557,0.04729340970516205,0.02497860975563526,0.1135900691151619,0.26379773020744324,0.25388431549072266,0.1040271744132042,-0.09969987720251083,0.27791380882263184,-0.12404637783765793,0.06225978210568428,-0.2617804706096649,-0.09225121140480042,-0.005869404878467321,-0.06426612287759781,0.07271546870470047,0.15094950795173645,-0.08838081359863281,0.04631775617599487,-0.16320063173770905,0.22698618471622467,-0.31763842701911926,0.26098525524139404,0.1212988793849945,-0.07613419741392136,-0.12468965351581573,0.07415374368429184,0.22471897304058075,0.23061706125736237,0.15968632698059082,-0.09532671421766281,-0.035338450223207474,-0.17875468730926514,0.15049371123313904,-0.2367209494113922,0.2816011607646942,0.27695947885513306,0.2529638409614563,0.1491142362356186,0.2970983684062958,0.2563730776309967,0.2011464238166809,0.11331039667129517,-0.1507570594549179,0.3294886648654938,0.06065921112895012,-0.14770811796188354,-0.14161857962608337,0.09931088238954544,-0.06926663964986801,0.2785813808441162,0.1761915236711502,0.1585799753665924,-0.04037667438387871,0.07479371130466461,-0.3304700255393982,-0.054479483515024185,-0.2936747968196869,-0.12697067856788635,0.04429267719388008,0.20643524825572968,-0.330077201128006,-0.20371226966381073,-0.163810595870018,0.15790314972400665,-0.16011746227741241,0.30003780126571655,-0.2295977920293808,-0.08536584675312042,0.0838092714548111,0.13820408284664154,-0.11015033721923828,-0.16324631869792938,-0.004352528136223555,0.09006237983703613,-0.199396550655365,0.269503653049469,-0.08310723304748535,0.03497392684221268,0.208399698138237,-0.22290833294391632,0.03598450869321823,-0.04602557793259621,-0.16515745222568512,0.2962576150894165,0.014825375750660896,-0.20773246884346008,-0.2246500551700592,-0.33575576543807983,0.23680143058300018,0.23674240708351135,0.02365667186677456,0.3089601397514343,-0.1823924332857132,0.2578725814819336,0.21971555054187775,0.3288712501525879,0.3181304335594177,0.1971912384033203,-0.11015345901250839,-0.04962855204939842,0.1350432187318802,-0.33585089445114136,0.10599735379219055,0.2004229575395584,0.11964855343103409,-0.24348658323287964,0.0496157668530941,0.05233209207653999,0.15994977951049805,0.32622429728507996,-0.32100626826286316,-0.10068196058273315,0.28734374046325684,-0.024259168654680252,0.29844141006469727,-0.30397507548332214,-0.23801398277282715,0.14642859995365143,-0.2130032777786255,0.2518675923347473,-0.18073026835918427,-0.3110183775424957,0.17414329946041107,-0.011884823441505432,-0.20093534886837006,0.011531771160662174,-0.06973768025636673,0.25514644384384155,0.08348913490772247,-0.015466589480638504,0.13894419372081757,0.08916186541318893,0.21836037933826447,-0.23533228039741516,0.25462666153907776,-0.03237837925553322,-0.14261983335018158,-0.029946964234113693,0.10164898633956909,-0.18502451479434967,0.005418790504336357,-0.11525022238492966,-0.11197909712791443,0.28742215037345886,-0.30448344349861145,-0.1930622011423111,-0.02107526734471321,-0.3179417550563812,0.21893538534641266,0.18358783423900604,-0.0005854762275703251,0.18762923777103424,-0.06511343270540237,0.29257932305336,-0.24786803126335144,0.10536903142929077,-0.024399034678936005,-0.2527531385421753,0.10463995486497879,0.01848100684583187,0.1858014017343521,0.30561673641204834,0.33747684955596924,0.051172345876693726,-0.2756858170032501,-0.10960252583026886,-0.07696890830993652,-0.0019760597497224808,-0.18718981742858887,0.27383920550346375,0.06077468395233154,0.18286605179309845,-0.20801030099391937,-0.234437957406044,-0.19544270634651184,-0.017450101673603058,0.1659754514694214,0.1282472461462021,0.3156464099884033,-0.1719517856836319,-0.12604700028896332,0.030916916206479073,0.16707435250282288,0.2203654944896698,0.19350078701972961,0.02646121382713318,0.20331519842147827,-0.0059991078451275826,0.020119043067097664,-0.2002163678407669,-0.07362177222967148,-0.20629800856113434,-0.013198865577578545,-0.26733434200286865,-0.15624962747097015,0.14354930818080902,-0.3309519290924072,0.13307330012321472,-0.03475712612271309,0.06548544764518738,0.21839812397956848,0.3020186722278595,0.1326901763677597,0.11312919855117798,-0.08483097702264786,-0.1633531004190445,0.14600907266139984,-0.26663148403167725,-0.026371242478489876,0.07114536315202713,-0.3276410698890686,-0.01857990026473999,0.00889456458389759,-0.25051161646842957,0.022175177931785583,-0.2263641506433487,-0.32794344425201416,0.09591047465801239,-0.014215358532965183,-0.18993937969207764,0.03795287385582924,-0.2565400004386902,-0.08251625299453735,-0.2294970452785492,0.16897183656692505,0.13318569958209991,0.2679181396961212,0.03394559025764465,0.2624127268791199,-0.12376470118761063,0.00009363572462461889,-0.16955336928367615,0.06587152183055878,0.1947711855173111,-0.3115135729312897,-0.0957270935177803,0.21311460435390472,0.10691079497337341,-0.31778544187545776,0.16033872961997986,-0.03780050575733185,0.14722508192062378,0.26129215955734253,0.305693119764328,-0.04757995158433914,-0.2121683657169342,-0.15704771876335144,0.2765691876411438,0.04130604863166809,0.022872649133205414,-0.17458505928516388,0.30063891410827637,-0.32540351152420044,-0.062208790332078934,-0.10500038415193558,-0.24665440618991852,-0.0014570382190868258,-0.10436300188302994,0.08622365444898605,0.0388655886054039,0.1541147083044052,0.12551669776439667,-0.179510697722435,-0.13122664391994476,-0.03281538933515549,-0.14276839792728424,0.12824518978595734,-0.21837729215621948,0.23656868934631348,0.33692145347595215,-0.020221790298819542,-0.08537110686302185,-0.08728904277086258,-0.024883730337023735,-0.23300284147262573,-0.2171313762664795,-0.17622357606887817,-0.19147492945194244,-0.06163765862584114,0.15828676521778107,0.14358898997306824,0.27399176359176636,-0.16239000856876373,0.06546041369438171,0.28258517384529114,0.09158317744731903,0.08652225881814957,-0.11107674241065979,0.08366861194372177,-0.3151263892650604,-0.07140525430440903,-0.20715433359146118,-0.027559753507375717,-0.1085197925567627,0.233648419380188,-0.15016090869903564,0.17836616933345795,-0.05910378694534302,0.13446873426437378,0.2779015600681305,-0.19763123989105225,-0.2973029613494873,-0.04491906240582466,0.06252016872167587,-0.07901598513126373,-0.1547040343284607,-0.22292765974998474,-0.0992538258433342,-0.13514865934848785,0.17473915219306946,0.26774829626083374,0.048747967928647995,-0.3362022936344147,-0.026427268981933594,-0.2081790417432785,0.21112406253814697,0.32707473635673523,0.3060022294521332]},{"shape":[32],"values":[0.6181506514549255,0.1802205592393875,0.7639245986938477,0.6722694635391235,0.4604887068271637,0.7128740549087524,-0.43151193857192993,0.5576017498970032,-0.6339130401611328,-0.4560433030128479,-0.415326863527298,-0.40778133273124695,0.598843514919281,0.6023625731468201,-0.6633748412132263,0.5230937600135803,-0.20643046498298645,0.4013626277446747,0.7209556698799133,0.6608642339706421,0.6372184753417969,-0.8105969429016113,0.5501466989517212,0.6658099293708801,0.02983909845352173,0.36716949939727783,0.6339457631111145,0.23236127197742462,0.5826743245124817,0.4987911283969879,0.2113971710205078,0.7336015701293945]},{"shape":[32,32],"values":[0.27482229471206665,0.15882240235805511,0.3624681234359741,-0.2626820206642151,0.16665281355381012,0.30321720242500305,0.5870431661605835,0.016952721402049065,0.25436627864837646,0.4026627242565155,0.38529637455940247,0.4753434360027313,0.01870773546397686,0.1790008544921875,-0.22282297909259796,0.4096759557723999,0.616574764251709,0.14706739783287048,0.7154107093811035,0.0763901099562645,0.19274309277534485,0.4245350956916809,0.4873616099357605,0.5890091061592102,0.4973198473453522,0.686660647392273,0.4307936429977417,0.4152373969554901,0.28198862075805664,0.44591572880744934,0.215162992477417,0.27967575192451477,0.09057905524969101,0.06789932399988174,0.6256313920021057,-0.23416303098201752,-0.06410501152276993,0.5803514122962952,0.7836412191390991,0.037142038345336914,-0.09969525039196014,0.44798585772514343,-0.2521899938583374,0.40423545241355896,-0.2997204661369324,-0.33885347843170166,-0.30070000886917114,-0.5244109034538269,0.261428564786911,-0.3062583804130554,-0.3715153932571411,0.19103743135929108,-0.5044352412223816,0.5106887817382812,0.10545336455106735,0.755374014377594,0.20644108951091766,0.5690394043922424,0.53256756067276,0.6158316135406494,0.07887659221887589,1.0280671119689941,0.05552631616592407,0.1800829917192459,0.13420328497886658,0.2751796245574951,0.2739267647266388,0.08900364488363266,0.6023929715156555,0.32222282886505127,0.2090940922498703,-0.2573133111000061,-0.001311378669925034,-0.036125265061855316,0.4401387870311737,0.2747108042240143,0.6539631485939026,0.5163578987121582,-0.17831915616989136,0.47316962480545044,0.687322735786438,-0.015160027891397476,0.9310884475708008,0.4444538652896881,0.33846959471702576,0.09124039858579636,0.4210026264190674,0.29514583945274353,0.10576923191547394,0.4567425847053528,0.658816397190094,0.28038299083709717,0.47152000665664673,-0.0011881495593115687,0.30252107977867126,0.24342159926891327,0.09186922013759613,0.3344615697860718,-0.0256633497774601,0.019526122137904167,0.3440152108669281,-0.17796960473060608,0.5422348380088806,-0.029722845181822777,0.20972508192062378,0.4234318137168884,0.30850476026535034,0.22796079516410828,0.06323530524969101,0.36989834904670715,-0.0396125353872776,0.7217879891395569,0.5900652408599854,0.04196108877658844,0.25809937715530396,0.5285643935203552,-0.12983396649360657,-0.08109330385923386,0.6430743932723999,0.18115486204624176,0.03639387711882591,0.2234751284122467,0.32563987374305725,0.3494696617126465,0.624415934085846,-0.4239490032196045,0.6110684275627136,0.42245614528656006,0.33726534247398376,-0.029474811628460884,0.0005582027952186763,0.15280036628246307,0.23659421503543854,0.3527204990386963,0.07431000471115112,-0.19979706406593323,-0.31640323996543884,0.29855749011039734,-0.05917627736926079,0.09641306847333908,-0.020807137712836266,0.06218446046113968,0.1269567459821701,-0.3184487223625183,0.13887915015220642,-0.2840432822704315,-0.3065180778503418,0.17356367409229279,0.011919742450118065,0.16138823330402374,0.35378047823905945,0.5042819380760193,0.43076348304748535,0.3488714098930359,0.39284688234329224,0.07794330269098282,0.5465810298919678,-0.03068116120994091,0.2048032283782959,0.42847806215286255,0.4179452657699585,0.5738511681556702,0.1441543698310852,0.16393160820007324,0.21372611820697784,-0.2140694558620453,0.21124137938022614,-0.13383643329143524,0.31470251083374023,0.2355150431394577,0.2552177309989929,0.43712759017944336,0.006956418976187706,0.4568864405155182,-0.23872347176074982,0.38827624917030334,0.5755226612091064,-0.0733184739947319,0.4557408094406128,0.3561841547489166,0.11888263374567032,0.4426255524158478,0.24729636311531067,0.23826882243156433,0.06961361318826675,0.13595008850097656,0.3666441738605499,0.39146628975868225,0.17782878875732422,0.08479362726211548,0.18822963535785675,0.544610321521759,-0.3324088156223297,-0.7230042815208435,-0.2618120014667511,-0.1961401253938675,-0.6393905282020569,-0.21772941946983337,-0.1522163301706314,-0.12759239971637726,0.41169050335884094,-0.4511076807975769,-0.29103410243988037,-0.2695203125476837,-0.7927707433700562,-0.6113801002502441,0.4054439067840576,-0.13081979751586914,-0.716547966003418,0.48654404282569885,-0.28532227873802185,-0.6923079490661621,0.08117298036813736,0.7128413319587708,-0.6516830325126648,-0.09606063365936279,-0.36052268743515015,-0.5365611910820007,-0.24201631546020508,-0.2744678854942322,-0.10625212639570236,0.13619063794612885,-0.5830446481704712,-0.10760258883237839,0.38693782687187195,0.42492765188217163,0.2334931194782257,0.08448666334152222,0.46332046389579773,0.22125765681266785,0.4337392747402191,-0.22372065484523773,-0.092523954808712,-0.08536457270383835,-0.09162161499261856,0.6278011798858643,0.018945200368762016,0.1939552277326584,-0.291795015335083,-0.3196943402290344,0.17624542117118835,-0.27908527851104736,0.4856349527835846,0.08031042665243149,-0.2484036386013031,-0.12362556904554367,0.3988867700099945,0.03135299310088158,0.46682795882225037,0.23036475479602814,0.3853926658630371,0.07693342864513397,0.3062477707862854,0.5996205806732178,0.37756258249282837,0.41190195083618164,-0.634648859500885,-0.6604829430580139,-0.6439435482025146,-0.07656925916671753,-0.8532506227493286,-0.2828477919101715,-0.8271884322166443,0.05468738079071045,0.3966226875782013,-0.7138877511024475,-0.8983250856399536,-0.340620219707489,-0.29674580693244934,-1.2419664859771729,0.4739142954349518,-0.4636167883872986,-0.8328930139541626,0.5435202717781067,-1.1246037483215332,-0.5717720985412598,0.6698177456855774,0.8331275582313538,-1.0447800159454346,-0.3898029029369354,-0.9408292770385742,-0.627194344997406,-0.970802903175354,-0.8760523796081543,-0.8745393753051758,-0.6504155397415161,-0.34988704323768616,-0.6021557450294495,-0.5176183581352234,-0.47195616364479065,-0.38722100853919983,-0.09337595105171204,-0.4803686738014221,0.09110240638256073,-0.15701285004615784,-0.08077050000429153,0.33156612515449524,-0.18994323909282684,-0.7745489478111267,-0.10654103010892868,-1.4315615892410278,-0.794489860534668,0.46394604444503784,-0.6451506018638611,-0.8203348517417908,0.6434521675109863,-0.6672064065933228,-0.5538420677185059,0.634985625743866,0.6664490699768066,-0.6002857089042664,-0.6083261966705322,-0.4990522563457489,-0.5895442962646484,-0.7317344546318054,-0.27423352003097534,-0.181322380900383,-0.08346612006425858,-0.3341127634048462,-0.6577682495117188,-0.4063703715801239,-0.5577890872955322,-0.5864492058753967,-0.07833973318338394,-0.8999761939048767,-0.42736393213272095,-0.6798954010009766,-0.08010269701480865,0.5038231015205383,-0.14732035994529724,-0.8696260452270508,-0.6277552247047424,-0.8315867185592651,-0.49156293272972107,0.7966500520706177,-0.4257170557975769,-1.0181328058242798,0.7841500639915466,-0.9229721426963806,-0.5719732046127319,0.7277840375900269,0.48762911558151245,-1.134283185005188,-0.8164899945259094,-0.4470691382884979,-0.7809203863143921,-0.6526039242744446,-0.7670965194702148,-0.8487662672996521,-0.23971867561340332,-0.47026291489601135,-0.773557186126709,-0.6023579835891724,-1.1527390480041504,-0.6879183053970337,0.06761323660612106,-0.9643605351448059,-0.51356041431427,-0.9718352556228638,-0.15843576192855835,-0.10776052623987198,-0.47830086946487427,-0.9587424397468567,-1.030073642730713,0.6201646327972412,-0.8951947093009949,0.07430273294448853,-0.5658878087997437,-0.6119822263717651,-0.21536017954349518,-1.334802269935608,-0.7547017931938171,0.8934122323989868,-0.5427994728088379,-1.1345897912979126,-1.1158256530761719,-0.8263198733329773,-0.9002257585525513,-1.3280563354492188,-0.7933613061904907,-0.9004146456718445,-1.6965855360031128,-0.849206268787384,-0.7007140517234802,0.19003766775131226,0.5905256867408752,-0.058304112404584885,0.18716377019882202,0.46906596422195435,0.13802576065063477,0.5237370729446411,-0.25049012899398804,-0.15591765940189362,0.1858350783586502,0.21583589911460876,0.3715915083885193,0.23951436579227448,0.45986613631248474,-0.1335969865322113,0.3499864637851715,0.39690691232681274,-0.061232343316078186,-0.0826527401804924,0.4633454382419586,-0.36639881134033203,0.30797386169433594,0.4970066249370575,0.4240562319755554,0.40276190638542175,0.315464586019516,0.036984607577323914,0.39409345388412476,0.30588993430137634,0.2484290599822998,0.08847155421972275,0.47902607917785645,0.7139390707015991,0.54510897397995,0.02448701299726963,-0.17093485593795776,0.9970909357070923,-1.0203312635421753,-0.37960177659988403,-0.059333208948373795,0.434705525636673,0.062482643872499466,0.5370555520057678,0.3074701726436615,0.30781829357147217,0.6232179999351501,0.12847281992435455,0.8577784895896912,0.6337664723396301,-0.506672203540802,1.016650915145874,0.8852723240852356,0.042675167322158813,-1.0148121118545532,0.5884180665016174,0.5688616633415222,0.3046543598175049,0.9153078198432922,1.0017588138580322,-0.09732554852962494,0.36811861395835876,-1.671302080154419,0.9715942144393921,0.4969799518585205,-1.2663017511367798,-1.2151157855987549,-0.4531756639480591,0.010666555725038052,-0.6250079274177551,-0.48006775975227356,-0.9731613397598267,-0.006511173211038113,1.1160061359405518,-0.8685585856437683,-0.8834196925163269,-0.8895427584648132,-0.9459648132324219,-1.2974412441253662,1.0795481204986572,-0.9469779133796692,-1.1641876697540283,0.747050940990448,-0.7663585543632507,-0.9649299383163452,0.901564359664917,0.8206369876861572,-1.1786401271820068,-1.1365785598754883,-1.0433869361877441,-1.130797266960144,-1.0597623586654663,-0.7894760966300964,-1.197047472000122,-0.3235732913017273,-0.7813090085983276,-0.9162206649780273,0.4091440439224243,0.11522939801216125,0.06676150858402252,-0.0034559026826173067,0.5055055618286133,0.20725393295288086,0.1922316551208496,-0.09753675013780594,0.1447332799434662,0.00972764566540718,0.4236159324645996,0.02990236133337021,0.43804317712783813,-0.003265001578256488,0.19225166738033295,-0.00325222872197628,0.3618773818016052,0.16103844344615936,0.253079891204834,0.125621035695076,0.1926700323820114,0.32691189646720886,0.6675777435302734,0.4309331774711609,0.18282712996006012,0.10812991112470627,0.0601305291056633,0.14447292685508728,0.33618178963661194,-0.09755011647939682,0.2566315531730652,0.40689951181411743,-0.620337188243866,-0.6198251247406006,-0.10423489660024643,0.2752542793750763,-0.7914828062057495,-0.1703764796257019,-0.21357186138629913,0.07544112205505371,0.08791917562484741,-0.49270012974739075,-0.5007482767105103,-0.4528164565563202,-0.8575977683067322,-0.38554900884628296,0.7327994108200073,-0.23592224717140198,-0.8008322715759277,0.5907725095748901,-0.9065501689910889,-0.6818825006484985,0.29885390400886536,0.30720990896224976,-0.6872541904449463,-0.6334549188613892,-0.6254842877388,-0.837253212928772,-0.9053294658660889,-0.10984989255666733,-0.592100203037262,0.27500098943710327,-0.7014236450195312,-0.6153595447540283,0.1830911636352539,0.33829036355018616,0.2946724593639374,-0.11522074043750763,0.36774498224258423,-0.2284083366394043,0.5920217037200928,-0.06865598261356354,0.4603944718837738,0.4693804681301117,0.6648187041282654,0.32361477613449097,-0.12038201838731766,0.4272766411304474,0.19493992626667023,0.45814675092697144,0.16548016667366028,-0.2553987503051758,0.470801442861557,0.7557098865509033,-0.12829643487930298,0.06738126277923584,0.036135122179985046,0.5710278749465942,0.27321097254753113,0.3159544765949249,0.5929341316223145,0.3820439875125885,0.15320171415805817,-0.21763908863067627,0.21420058608055115,0.36388421058654785,0.09512808918952942,0.21274515986442566,0.49034950137138367,-0.05352885276079178,0.4362192451953888,0.3704032897949219,0.632119357585907,-0.0036977205891162157,-0.4298020601272583,0.07036805897951126,0.2127193808555603,0.5408176183700562,0.3300313353538513,0.6415281891822815,-0.5008668303489685,0.21844962239265442,0.36315420269966125,-0.156538188457489,0.5982910394668579,0.1518649160861969,-0.05378570035099983,0.1849021464586258,0.6798039078712463,0.7252721190452576,0.31789177656173706,0.5708315372467041,0.23088635504245758,0.35986581444740295,0.5958972573280334,0.23851995170116425,0.23360797762870789,0.30581557750701904,0.6557013392448425,0.47330597043037415,0.2978571951389313,0.06729128211736679,0.5804091691970825,0.12165016680955887,0.26626354455947876,-0.1741623431444168,-0.395673930644989,0.519957959651947,0.14597389101982117,0.8297364711761475,0.10883156955242157,0.4109746515750885,-0.3277033269405365,0.6337895393371582,0.5227398872375488,-0.07245128601789474,0.4868747591972351,0.7326710224151611,-0.4381338357925415,-0.3250783085823059,0.5443018078804016,0.7185752391815186,0.5309827327728271,0.36257386207580566,0.3504921793937683,0.47657427191734314,0.3478102684020996,0.42910581827163696,0.6503360271453857,0.40326619148254395,0.09593889862298965,0.15220513939857483,0.38782164454460144,0.020199978724122047,0.5442414879798889,0.13803522288799286,0.7322593331336975,0.04245242103934288,-0.21703752875328064,-0.060609303414821625,0.2006833553314209,0.5714127421379089,0.31111598014831543,0.5683243274688721,0.19952210783958435,0.21549221873283386,0.12613044679164886,0.3097483515739441,0.7488601207733154,0.5906192064285278,-0.16442441940307617,0.17723996937274933,0.27337196469306946,0.747742772102356,0.40053874254226685,0.3972972333431244,0.7586702704429626,0.22085170447826385,0.21818022429943085,0.3897096514701843,0.11760252714157104,0.22726161777973175,-1.3450586795806885,-1.2377570867538452,-0.7796609401702881,0.11944492161273956,-1.2211811542510986,-0.4824542999267578,-0.587146520614624,-0.013725410215556622,1.1285910606384277,-0.7123228907585144,-1.0890815258026123,-0.9572256803512573,-1.7378790378570557,-1.0561344623565674,1.0759114027023315,-0.9633477330207825,-1.1562861204147339,1.029313325881958,-0.9598416090011597,-0.9924010038375854,0.9685521721839905,1.2777924537658691,-1.5245842933654785,-1.3504633903503418,-1.02756929397583,-1.1070257425308228,-1.1868122816085815,-1.0456987619400024,-1.2774688005447388,-0.045741353183984756,-0.9632511734962463,-1.2461484670639038,0.5227292776107788,0.5853267312049866,-0.3672225773334503,-0.15247684717178345,0.07503243535757065,-0.2540215849876404,0.05118352547287941,-0.03823733702301979,0.02812180481851101,0.40972161293029785,0.4988117516040802,0.03457465022802353,0.3660046458244324,0.35838425159454346,0.2045748382806778,0.07044291496276855,0.5019708871841431,-0.06675174832344055,0.21010342240333557,0.1719653457403183,0.08107162266969681,0.11833147704601288,0.2545197010040283,0.25859197974205017,0.18913325667381287,0.5599703192710876,0.6165956854820251,-0.010408369824290276,0.17603781819343567,0.20799130201339722,0.34480953216552734,0.3651493489742279,0.32454177737236023,0.5459167957305908,0.5567383766174316,-0.22179441154003143,0.4751870632171631,0.3072790205478668,0.4384888708591461,0.09614767879247665,-0.04501064494252205,0.5987077951431274,0.4710140824317932,0.6135185360908508,-0.3776243031024933,0.6416710019111633,-0.10307663679122925,0.625019907951355,0.2617756426334381,0.1496926099061966,0.2964659035205841,0.4661431610584259,-0.5099591016769409,0.09419608116149902,0.034235261380672455,0.4035090208053589,0.35295307636260986,0.4983465075492859,0.4727209508419037,0.3270502984523773,0.6023586392402649,0.6766787171363831,0.02973482385277748,0.5353479981422424,-0.23981836438179016,-0.7346846461296082,-0.060414183884859085,0.0389280840754509,-0.456464022397995,-0.052936915308237076,-0.16821600496768951,0.12017405778169632,0.4160136282444,-0.019265078008174896,-0.20782475173473358,0.23067618906497955,-0.7576013803482056,-0.7027119398117065,0.5533567070960999,-0.27544721961021423,-0.6540371179580688,0.047490812838077545,-0.8038085103034973,-0.33476880192756653,0.23928877711296082,0.10250585526227951,-0.716704249382019,-0.45161134004592896,-0.5021787881851196,-0.48104235529899597,-0.7141156792640686,-0.11503303796052933,-0.29266592860221863,-0.05327044799923897,-0.25397247076034546,-0.42485761642456055,-0.040576446801424026,0.11294050514698029,0.4149162769317627,-0.015700485557317734,-0.09281044453382492,0.5859810709953308,0.63127201795578,0.1738538295030594,-0.3638128340244293,0.2570565938949585,-0.07609213143587112,0.6330307126045227,0.0017060223035514355,0.22747913002967834,-0.11682504415512085,-0.28763896226882935,0.13180455565452576,-0.07649342715740204,-0.06846936792135239,0.06698194146156311,0.0449012853205204,-0.02448718622326851,0.11689939349889755,0.15904435515403748,0.5411649346351624,0.1835867017507553,0.10584445297718048,0.29124483466148376,0.31490710377693176,0.2679559886455536,0.1434168517589569,0.3841462731361389,0.10501183569431305,0.42566102743148804,0.20582668483257294,0.08266547322273254,0.6133948564529419,0.1726076453924179,0.281715452671051,0.13950954377651215,0.10018879920244217,0.39467155933380127,0.4440024793148041,0.3419913351535797,-0.15007904171943665,0.024093467742204666,-0.21273092925548553,0.5343934297561646,0.29442864656448364,-0.04581474885344505,0.3598349690437317,0.22004947066307068,-0.4666140675544739,0.10002334415912628,0.6528899073600769,0.42705246806144714,0.48976239562034607,0.73375004529953,0.5674859881401062,0.7974734306335449,0.4280245304107666,0.6302376985549927,0.16833987832069397,0.35854798555374146,-0.15035799145698547,0.3974035978317261,0.1269536018371582,0.07521778345108032,0.09076115489006042,0.410332053899765,0.320570707321167,-0.11234994232654572,-0.3898296356201172,0.32297712564468384,0.17003421485424042,0.38033074140548706,0.41922107338905334,0.3131064772605896,-0.5828267931938171,-0.3246942460536957,0.31004226207733154,-0.26901525259017944,-0.12462946772575378,0.5377296209335327,-0.12257551401853561,-0.3640870153903961,0.5121417045593262,0.1864420473575592,0.3888627290725708,0.3426707983016968,0.570855975151062,0.5659140348434448,0.18088659644126892,0.07435695827007294,0.08634740859270096,0.5396643877029419,0.41480788588523865,0.22162963449954987,0.3589537441730499,-0.18232682347297668,0.06605710089206696,0.6148492693901062,0.5564522743225098,-0.1978079229593277,0.16044998168945312,0.4580555260181427,0.09605772793292999,0.24114292860031128,-0.0012553503038361669,0.1107078418135643,0.03927769511938095,0.39962518215179443,0.3163943588733673,-0.27392885088920593,0.2922816276550293,0.47758886218070984,-0.10549575090408325,0.10353431105613708,0.4029882252216339,0.3765016496181488,0.3452915847301483,0.10971225798130035,0.37172964215278625,0.30500584840774536,0.3971771001815796,0.4311535060405731,0.1322818100452423,0.2799622714519501,0.1547141671180725,0.32933488488197327,0.3137063980102539,-0.33515092730522156,-0.10450330376625061,0.146189346909523,0.2911531329154968,-0.21578191220760345,0.05156327411532402,0.3497527539730072,0.28266429901123047,0.6040332317352295,0.17550623416900635,0.31028738617897034,-0.05497036129236221,-0.18812847137451172,0.09195036441087723,-0.2679946720600128,-0.10017775744199753,-0.06529955565929413,-0.09576360136270523,0.10763783752918243,-0.046476997435092926,0.39684900641441345,0.06681983172893524,0.41777297854423523,-0.05957230553030968,0.1020062267780304,0.4503936171531677,0.5113183856010437,0.4327391982078552,0.4192045032978058,0.21498151123523712,0.2899332642555237,-0.1077929362654686,0.09800637513399124,0.3474920690059662,0.070828378200531,0.12166209518909454,-0.09541801363229752,-0.5221312642097473,0.06234205141663551,0.4336656630039215,-0.24254673719406128,0.6760719418525696,0.10636646300554276,-0.15670235455036163,0.4225326180458069,0.5865597128868103,-0.484506756067276,0.08575714379549026,0.44013622403144836,0.2462373822927475,-0.368376225233078,0.49264830350875854,0.14262551069259644,0.4022970199584961,0.23726937174797058,0.0704527348279953,0.286539226770401,0.14666981995105743,-0.22797083854675293,0.28689268231391907,0.23856866359710693,0.26134756207466125,0.3827374279499054,0.27315133810043335,-0.22497861087322235,0.6047698259353638,-0.13279218971729279,0.49140793085098267,-0.112040214240551,-0.26097434759140015,0.34604957699775696,0.15444378554821014,0.3920265734195709,0.5759354829788208,0.15345355868339539,-0.16553491353988647,0.38146957755088806,0.16553950309753418,-0.07753705233335495,0.4611353576183319,0.09282789379358292,0.17904801666736603,-0.10476955771446228,0.5790723562240601,0.32658106088638306,0.25641930103302,-0.01651407778263092,0.33268776535987854,0.3144739866256714,0.05758341774344444,-0.005684535019099712,0.37218788266181946,0.5065077543258667]},{"shape":[32],"values":[0.6485540866851807,0.6228505969047546,0.19752688705921173,-0.08010347187519073,0.6064220666885376,-0.03977872431278229,0.3492121994495392,0,-0.48532548546791077,0.3448755741119385,0.5781974792480469,0.4237237572669983,0.38198789954185486,0.5690881609916687,-0.20337343215942383,0.6994016766548157,0.6742528080940247,-0.34748706221580505,0.6616843342781067,0.5957258343696594,-0.27230072021484375,-0.5550380945205688,0.7340827584266663,0.5001118779182434,0.4212964177131653,0.6903475522994995,0.5936458706855774,0.37486958503723145,0.6395381689071655,-0.336121141910553,0.6711004972457886,0.44493088126182556]},{"shape":[32,9],"values":[0.4514544904232025,0.32338663935661316,0.3720580041408539,0.3057989478111267,0.5566918849945068,0.16883201897144318,0.6194823384284973,0.42081722617149353,0.2696237862110138,0.4255814254283905,0.7743695974349976,0.6285141110420227,0.40762990713119507,0.8099010586738586,0.751309335231781,0.9282577633857727,0.9347738027572632,0.42929765582084656,0.45540302991867065,0.6693368554115295,0.4723421633243561,-0.08489340543746948,0.5481600165367126,0.317536860704422,-0.0962127149105072,0.6179766058921814,0.72236567735672,-0.2722099721431732,-0.1781371533870697,0.30359581112861633,0.2254093736410141,-0.2073381394147873,-0.13477279245853424,0.2757105827331543,-0.2054518610239029,-0.05980447307229042,0.8368337154388428,0.30509063601493835,0.642147958278656,0.7927892208099365,0.9760112166404724,0.11913023889064789,0.6282852292060852,0.5147348642349243,0.5891889333724976,-0.38767877221107483,0.2978224754333496,0.5677968859672546,-0.44816645979881287,0.24649430811405182,0.8701096773147583,-0.09074569493532181,0.029988395050168037,0.49045056104660034,0.040163781493902206,0.367954283952713,0.43541625142097473,0.16118969023227692,0.5909894108772278,0.5485493540763855,-0.03364979103207588,0.5994209051132202,0.7766348719596863,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11838390678167343,-0.07355088740587234,0.10456845909357071,-0.6148878931999207,-0.7095099687576294,-0.09977871179580688,-0.29943546652793884,-0.6365638971328735,-0.7223953008651733,-0.6027840375900269,-0.5964227318763733,-0.5827158093452454,0.5522515177726746,0.3935043215751648,0.6826831698417664,0.29382023215293884,0.33900195360183716,0.055014438927173615,0.2977847456932068,0.033455740660429,0.5369358062744141,0.6958127617835999,0.9222041964530945,0.43096724152565,0.9689543843269348,0.420007586479187,0.39925751090049744,0.6338059902191162,0.2900545001029968,0.43505245447158813,0.029146438464522362,0.2951567471027374,0.5637862086296082,0.2718035578727722,-0.05212153121829033,0.6992918252944946,0.2602381706237793,0.3807919919490814,0.724901020526886,0.6711736917495728,-0.31845447421073914,-0.868804931640625,0.38175708055496216,0.15181921422481537,-0.7700282335281372,0.049188561737537384,0.0381692610681057,-1.430604338645935,0.8898476958274841,0.7962045073509216,0.5920970439910889,0.6245597004890442,0.664245069026947,0.2583766281604767,0.3840165436267853,0.817523181438446,0.20503482222557068,0.18261687457561493,-0.4546892046928406,-1.116094946861267,-0.1516425460577011,-0.5538938641548157,-1.0047825574874878,0.16719189286231995,-0.27059710025787354,-1.195839285850525,0.9833991527557373,0.16375333070755005,0.1245817244052887,1.2746176719665527,0.5253779292106628,0.17109611630439758,1.297206997871399,0.6108393669128418,0.48732423782348633,0.689195990562439,0.724362850189209,0.636915922164917,1.0520999431610107,0.4229073226451874,0.6984528303146362,0.8359615206718445,0.3956742286682129,0.5036978125572205,0.040370356291532516,-0.27906927466392517,-0.7304121851921082,-0.6889799237251282,-0.3380594849586487,-0.8296048045158386,-0.277530312538147,-0.5973225235939026,-1.20486581325531,1.2963999509811401,0.9004813432693481,0.21729238331317902,0.9780009984970093,0.8838265538215637,0.5071972012519836,1.0100445747375488,0.7630397081375122,0.4291350841522217,0.7289705872535706,0.6200067400932312,0.5608353018760681,0.7887697815895081,0.20215515792369843,0.6963028907775879,0.5030982494354248,0.40462878346443176,0.5413617491722107,-0.5453917980194092,-0.4052000939846039,-0.5314314961433411,-0.33414193987846375,-0.5132197141647339,-0.379163533449173,-0.7149701714515686,-0.9755180478096008,-0.9842908382415771,-0.7831223607063293,-0.655559241771698,-0.03233066946268082,-0.8513002991676331,-0.23163121938705444,-0.38277822732925415,-0.6104173064231873,-0.4569415748119354,0.10799277573823929,0.7568244934082031,0.4552043378353119,0.5492960214614868,0.6459194421768188,0.5905749797821045,0.5603863596916199,0.9087358713150024,0.7178218364715576,0.3565909266471863,0.19848790764808655,0.7377654910087585,0.475364089012146,0.4174824059009552,0.752368688583374,0.785118579864502,0.4357811510562897,0.6038193106651306,0.8412624001502991,0.6912106871604919,0.8717985153198242,0.5054616928100586,0.8019589185714722,0.42942869663238525,0.7709949612617493,0.1234845519065857,0.28365370631217957,0.782484769821167,0.3336227238178253,0.21396993100643158,0.7734581232070923,0.48247256875038147,0.554498016834259,0.702701210975647,0.8458207845687866,0.7424972057342529,0.4111897647380829,0.41816407442092896,0.6963159441947937,0.7284989356994629,0.5169282555580139,0.7693156599998474,0.765982985496521,1.0111392736434937,0.5595473647117615,0.7245383262634277,0.38142722845077515,0.5139235258102417,0.43250375986099243,0.33812209963798523,0.32875874638557434,0.7192543148994446,0.11588403582572937,0.50840163230896,0.7653146386146545,0.11228238791227341,0.7340275049209595,0.5709999799728394,0.43124958872795105,0.40997910499572754,0.29601234197616577,0.7616761922836304,0.7712075114250183,0.5963247418403625,-0.503135085105896,0.10970424860715866,0.4406260550022125,-0.6933708190917969,-0.016156751662492752,0.4728676676750183,-1.2511155605316162,0.2843843400478363,0.5162158012390137,0.5913993716239929,0.01743444614112377,0.38745859265327454,0.49306240677833557,0.24945096671581268,0.6637496948242188,0.5919111371040344,0.2914077341556549,0.19933326542377472,0.5324927568435669,0.42921963334083557,0.5446464419364929,0.28700917959213257,0.591732382774353,0.3495866358280182,0.33321237564086914,0.4433667063713074,0.6439069509506226]},{"shape":[9],"values":[0.5506786704063416,0.15397250652313232,0.09019302576780319,0.49579527974128723,0.15181103348731995,0.14789588749408722,0.5382441282272339,0.4969393312931061,0.25941967964172363]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-101.json new file mode 100644 index 0000000..a489730 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:10:12.184Z","weights":[{"shape":[20,32],"values":[1.0024447441101074,-0.04422147572040558,0.4987555742263794,0.8249419927597046,0.40024232864379883,0.9689944982528687,0.8412532806396484,0.4703305661678314,0.02913501113653183,0.7104012966156006,-0.30875706672668457,0.10333722084760666,0.31824856996536255,0.7540587782859802,0.5116746425628662,-0.3740982711315155,-0.35153713822364807,-0.2401333749294281,0.008472644723951817,0.43214258551597595,0.48887625336647034,-0.005017917137593031,0.1863829791545868,0.31343725323677063,0.654778003692627,-0.1822163313627243,0.9631855487823486,-0.1281731277704239,0.887142539024353,0.18746058642864227,0.006108713336288929,0.31320858001708984,-0.26714202761650085,-0.17444118857383728,-0.3416610062122345,0.03258688375353813,0.03129453584551811,0.36298295855522156,-0.5762306451797485,-0.36662977933883667,-0.4416387975215912,0.04646282270550728,-0.16570356488227844,-0.004608382470905781,-0.26825448870658875,-0.08347989618778229,0.16861183941364288,-0.2651729881763458,0.2751695513725281,-0.0798807144165039,-0.09871401637792587,-0.27019935846328735,-0.420470267534256,0.26145535707473755,-0.2763717472553253,-0.14962929487228394,0.14738082885742188,0.5192142128944397,-0.1475396752357483,-0.05589480325579643,0.33153486251831055,0.1819153130054474,-0.27857959270477295,0.15488982200622559,-0.06780420243740082,-0.726326048374176,-0.4586387872695923,-0.15371964871883392,-0.2024584710597992,-0.05954105779528618,-0.1272793412208557,-0.49291908740997314,-0.5136401653289795,-0.1314448118209839,-0.4418822228908539,0.3439255356788635,0.04554985463619232,-0.08264686912298203,-0.2706437408924103,-0.9044346213340759,1.0092189311981201,-0.51108717918396,0.2796156108379364,0.04774535074830055,-0.25676605105400085,1.0560688972473145,-0.7498650550842285,0.25179368257522583,-0.38350212574005127,1.1853543519973755,-0.3934243321418762,-0.22157515585422516,-0.22545857727527618,-0.05563041940331459,-0.5408322811126709,0.015803137794137,-0.5950281023979187,2.1093132495880127,2.064004421234131,-0.527673065662384,0.03317582979798317,0.01666943170130253,-0.5726487636566162,2.0400002002716064,1.8278369903564453,-0.5471128821372986,2.25434947013855,-0.23235462605953217,-0.41047656536102295,-0.6726140379905701,-0.2942911982536316,2.1184370517730713,-1.46341073513031,0.014037185348570347,-0.36026984453201294,-0.2065201997756958,-0.2652488648891449,-1.2821063995361328,2.2891845703125,-0.8976846933364868,0.3880442976951599,-1.614262580871582,1.9044173955917358,-0.07973421365022659,0.14141710102558136,-0.2618172764778137,2.069077730178833,-0.6288133263587952,0.19247862696647644,-0.346151739358902,-0.2164592146873474,0.09948517382144928,0.3194403350353241,-0.16517414152622223,0.3259648084640503,-0.23865234851837158,0.06715722382068634,-0.012876243330538273,0.11906725913286209,-0.125642791390419,-0.24093756079673767,0.2717682123184204,-0.20047292113304138,0.04491312801837921,-0.11231609433889389,0.3504571318626404,0.14012141525745392,0.32754722237586975,0.043684810400009155,0.09544117003679276,-0.46329712867736816,0.45046186447143555,0.02416718564927578,0.02036951668560505,-0.03742637857794762,0.6137073040008545,-0.32560837268829346,-0.025142036378383636,0.05002729967236519,-0.022703923285007477,-0.04524262994527817,0.4338838756084442,0.38008731603622437,0.2765628397464752,-0.03050435706973076,-0.1195984035730362,0.4788881838321686,0.5711365342140198,0.057615976780653,-0.25647127628326416,0.39499765634536743,0.462455153465271,-0.13718850910663605,-0.0978439599275589,-0.21511505544185638,0.02714412473142147,-0.6748578548431396,-0.22903840243816376,-0.04356628656387329,0.5094403624534607,-0.0073140026070177555,-0.16466502845287323,0.3918890953063965,0.18595078587532043,-0.38275235891342163,-0.8051133155822754,0.3995204269886017,-0.26844263076782227,-0.24262917041778564,0.20416517555713654,0.5217331647872925,0.17379799485206604,0.21665355563163757,0.07805615663528442,-0.03587307780981064,0.1256929337978363,-0.5653882622718811,-0.3954209089279175,0.08377626538276672,0.4566061496734619,0.5907409191131592,0.2847355008125305,0.06909705698490143,0.24838639795780182,0.29911866784095764,-0.12122397869825363,-0.2618403434753418,0.5052503347396851,-0.6341844201087952,-0.4749715030193329,0.3346526622772217,-0.12279666215181351,0.1841476410627365,-0.11626051366329193,0.5351354479789734,0.29804855585098267,-0.567480742931366,-0.3870895504951477,0.12329860776662827,-0.3345548212528229,-0.4513237476348877,0.42055484652519226,0.1543584167957306,0.3150883913040161,0.03358389064669609,0.21343742311000824,0.2612949013710022,0.09788653999567032,-0.5010837316513062,-0.43397969007492065,0.35338547825813293,0.17680494487285614,0.1541101336479187,0.4547543525695801,0.2984282970428467,0.43468570709228516,0.37809309363365173,0.5042065382003784,-0.27870285511016846,-0.032438915222883224,-0.35113173723220825,-0.08792131394147873,0.42653021216392517,0.3568222224712372,0.6116282343864441,-0.42789003252983093,-0.14608991146087646,0.526434600353241,-0.28158631920814514,-0.41747960448265076,0.14459863305091858,0.10891125351190567,-0.295237272977829,0.2658786475658417,0.3987712264060974,0.16394281387329102,-0.32487964630126953,-0.049284521490335464,-0.07573352009057999,-0.3228868246078491,0.2460208684206009,-0.04570356383919716,0.020639926195144653,0.2220713347196579,0.30031949281692505,0.2704501152038574,0.1830001026391983,0.3049871325492859,0.22197245061397552,0.2837406098842621,0.15067289769649506,-0.10238948464393616,0.15612348914146423,0.08738132566213608,0.20410670340061188,0.305722713470459,0.2925909459590912,-0.2759101092815399,-0.06450913846492767,-0.21721211075782776,0.2601757347583771,-0.2229403853416443,0.2196987271308899,0.31676656007766724,0.06394810974597931,0.3252258598804474,-0.15617728233337402,0.02620731294155121,0.24309159815311432,-0.04091302305459976,0.21522283554077148,-0.23566226661205292,-0.2691386938095093,0.023630665615200996,-0.09718015789985657,0.1758587509393692,0.21356971561908722,-0.11429543048143387,-0.2977505028247833,0.2711174190044403,0.11723262071609497,0.010491487570106983,-0.12532971799373627,-0.08190225809812546,0.19637374579906464,-0.20704862475395203,-0.28579768538475037,0.21217256784439087,-0.15091383457183838,0.2881490886211395,-0.0779193565249443,0.06878988444805145,0.06933440268039703,0.11704053729772568,-0.04964270815253258,0.27631133794784546,0.32878378033638,-0.29418277740478516,-0.038885824382305145,-0.33078402280807495,0.22297897934913635,-0.02152399532496929,0.07507220655679703,-0.17129677534103394,-0.18722136318683624,-0.0015478669665753841,-0.05627515912055969,0.08306680619716644,0.2805584967136383,-0.3250965476036072,-0.1060677245259285,0.09154116362333298,-0.19111134111881256,-0.18992969393730164,-0.1496574729681015,-0.2581759989261627,-0.189115971326828,0.1286817044019699,0.2584155797958374,0.010043400339782238,0.29127994179725647,0.1977132111787796,-0.19369107484817505,0.24439182877540588,0.16958649456501007,0.07211323082447052,-0.1190161406993866,0.32069993019104004,-0.08066309988498688,0.0060746315866708755,-0.05296134203672409,-0.20660366117954254,-0.2497999519109726,0.09237844496965408,-0.1686469316482544,-0.279073566198349,-0.271477073431015,0.19196486473083496,-0.17348843812942505,-0.08022259920835495,0.1433200240135193,0.13156025111675262,-0.04957817494869232,0.024162348359823227,-0.044466760009527206,0.17635884881019592,0.17943629622459412,0.2242797315120697,0.16364842653274536,0.09829609841108322,-0.31824567914009094,0.19458918273448944,-0.0372936986386776,0.16804346442222595,-0.013086375780403614,-0.12116767466068268,-0.1686311662197113,-0.3082418441772461,-0.10969320684671402,-0.11831109970808029,0.11042432487010956,-0.3125857412815094,-0.2103939652442932,0.29654639959335327,0.08527503162622452,0.08810444176197052,-0.14586485922336578,-0.3003896176815033,-0.16246119141578674,-0.04395400732755661,-0.24143894016742706,-0.018486570566892624,0.0010607020230963826,-0.30009686946868896,0.2557242810726166,-0.20424267649650574,-0.04139496013522148,0.18845775723457336,-0.15953435003757477,-0.12523798644542694,-0.3376292884349823,0.10244834423065186,0.08757955580949783,-0.13657689094543457,-0.05929688736796379,-0.17034871876239777,-0.12554700672626495,0.13564498722553253,-0.137300044298172,-0.20440779626369476,0.0387805700302124,0.246781587600708,0.25964996218681335,-0.01843888871371746,0.28839507699012756,-0.22694748640060425,0.1211460530757904,0.3068596124649048,-0.014492390677332878,-0.2741211950778961,0.1366311013698578,-0.2073139250278473,0.09854837507009506,0.05681723356246948,-0.006643109489232302,-0.2383762151002884,0.29198357462882996,0.09014134109020233,0.059043243527412415,-0.1866348534822464,-0.0001541943638585508,-0.07882039994001389,-0.08745697885751724,0.18007008731365204,0.020290199667215347,-0.24202288687229156,0.30876752734184265,-0.23556537926197052,-0.19069766998291016,0.20933039486408234,0.09059026837348938,0.17983298003673553,0.24825111031532288,0.10600588470697403,0.31200554966926575,-0.1369614601135254,-0.06862842291593552,-0.31782615184783936,-0.1409190148115158,0.12603195011615753,-0.0699814185500145,0.16559691727161407,0.22040727734565735,-0.29779621958732605,0.22803449630737305,-0.02309902384877205,0.13641546666622162,-0.20190006494522095,-0.3302116394042969,0.13940651714801788,0.1490153819322586,0.21353963017463684,0.0413283109664917,-0.03811797499656677,-0.15615037083625793,-0.006241891998797655,0.014098869636654854,-0.12844498455524445,0.27514660358428955,-0.1826271265745163,0.2622361481189728,-0.062363673001527786,-0.04555431008338928,0.07533565163612366,0.10233089327812195,-0.01713891513645649,0.07395318150520325,0.20759178698062897,-0.30708688497543335,-0.17886841297149658,-0.3153929114341736,0.016244448721408844,0.18528838455677032,0.271645724773407,-0.3002462685108185,-0.27623459696769714,0.2616310715675354,0.0024322981480509043,0.26967400312423706,0.0830436646938324,-0.28373071551322937,-0.1411900520324707,-0.261985182762146,0.15669812262058258,-0.17552077770233154,-0.30233651399612427,-0.24469822645187378,-0.009347167797386646,-0.3087853193283081,-0.09452608972787857,-0.09919280558824539,-0.08145073056221008,0.13107000291347504,0.186812162399292,-0.17633695900440216,-0.3087429702281952,0.01466445717960596,0.10187336057424545,0.21102604269981384,0.04555095359683037,-0.23598988354206085,-0.04667472094297409,-0.20545725524425507,0.12525388598442078,0.2937847375869751,0.20142187178134918,-0.1150527372956276,0.12427791953086853,-0.32123634219169617,-0.29379135370254517,0.012344544753432274,-0.2606605589389801,0.329009085893631,0.33861371874809265,-0.08851941674947739,0.17588259279727936,0.031043995171785355,-0.26372507214546204,-0.03374553844332695,-0.3142091631889343,-0.12459457665681839,-0.055064015090465546,-0.05272628366947174,0.05097942054271698,0.2731301188468933,-0.11183095723390579,-0.06114591285586357,-0.30622658133506775,-0.13149333000183105,0.2728591561317444,-0.12590274214744568,0.07681608200073242,0.17087337374687195,0.3351544439792633,0.0434793159365654,-0.3196394443511963,-0.2547285854816437,-0.32539206743240356,0.07462751120328903,0.1755700260400772,-0.0914020836353302,-0.08545587956905365,-0.26762449741363525,0.27927353978157043,-0.23307965695858002,0.18176166713237762,-0.018668245524168015,0.14525362849235535,0.3322940766811371,0.022836938500404358,0.1432417631149292,0.0804109200835228,-0.2866259217262268,0.04072624444961548,-0.07378660142421722,0.3011416792869568,0.23200877010822296,0.08122517168521881,-0.16452805697917938,-0.18065717816352844,-0.13155409693717957,-0.3318330645561218,0.0069212536327540874,0.011177793145179749,0.18039382994174957,0.1493690460920334,0.19932076334953308,0.11533946543931961,-0.15005739033222198,-0.2801066040992737,0.15125273168087006,-0.053496792912483215,0.14842820167541504,0.19582626223564148,-0.2827775478363037,0.08206737041473389,-0.1858614683151245,-0.05997643619775772,-0.15528199076652527,-0.012537638656795025,-0.006454936228692532,0.23918506503105164,0.0025375934783369303,0.3281771242618561,0.1341770738363266,-0.158331498503685,-0.1617124080657959,-0.24603599309921265,-0.31845712661743164,0.23920133709907532,0.08594705164432526,0.18643131852149963,0.1919572651386261,-0.2902998924255371,0.31532856822013855,-0.12042427808046341,0.0218078400939703,-0.3311625123023987,-0.26469340920448303,0.12380311638116837,-0.16256552934646606,-0.32778823375701904,0.11544574797153473,-0.16625209152698517,-0.2998278737068176,0.300824910402298,-0.33232125639915466,0.09896039962768555,0.32913124561309814,0.1479041427373886,0.12661004066467285,0.1956968903541565,-0.22777217626571655,0.10163949429988861,0.2841971516609192,-0.041842758655548096,-0.25875622034072876,-0.09920517355203629,0.08635114878416061,-0.05888596922159195,0.12523490190505981,-0.18561384081840515,0.22361275553703308,0.24150289595127106,0.2557164430618286,0.026801535859704018,0.23421229422092438,0.10222134739160538,-0.12379752844572067,-0.0017651625676080585]},{"shape":[32],"values":[0.8590580224990845,-0.5472996830940247,-0.6277212500572205,0.7936150431632996,0.695773720741272,0.7422690987586975,0.6454904675483704,-0.19713661074638367,-0.5244166254997253,0.7903776168823242,-0.4614967107772827,0.6797919273376465,0.8373791575431824,0.7523757219314575,0.7654053568840027,-0.36407944560050964,-0.4386245906352997,0.17502443492412567,0.5456096529960632,0.8376166224479675,0.8245411515235901,-0.3886028230190277,-0.6495760679244995,0.7290428280830383,0.7270345091819763,-0.26447930932044983,-0.3912618160247803,0.3825644552707672,0.7186461091041565,0.8320062160491943,-0.3146575093269348,0.7659191489219666]},{"shape":[32,32],"values":[0.3657786548137665,0.5724346041679382,0.3991337716579437,-0.2063160091638565,0.5368421673774719,0.37350866198539734,0.6041368842124939,-0.13546615839004517,0.20515009760856628,-0.006237876135855913,0.25615614652633667,0.7072146534919739,0.6092813014984131,0.8282660245895386,0.5455759167671204,0.4241054952144623,0.6374124884605408,0.7605828642845154,0.7520697116851807,-0.3545452058315277,0.28225186467170715,0.18305999040603638,0.6867573857307434,0.5408475995063782,0.4441104829311371,0.4479519724845886,-0.0746513083577156,0.46302178502082825,0.45927736163139343,0.024153554812073708,-0.28342676162719727,0.11185073852539062,-0.7268972396850586,-0.8326239585876465,-0.8260712027549744,0.2419312596321106,-0.9102593064308167,0.17375028133392334,-0.999052882194519,-0.07529549300670624,-1.0203057527542114,0.1471460610628128,-0.3005974590778351,0.6680141687393188,-1.010469913482666,-1.352643609046936,-1.1836175918579102,-0.9020113348960876,-0.8780505061149597,-1.2882945537567139,-1.1489813327789307,0.06635911017656326,-0.6801753640174866,0.21362663805484772,-0.7281498312950134,-0.6603108644485474,-0.8773410320281982,-1.1332865953445435,-0.21513183414936066,-0.6807379126548767,0.5839330554008484,0.11813018471002579,0.027128979563713074,0.02570543810725212,-1.5418604612350464,-1.148091197013855,-1.1388486623764038,0.2582584619522095,-1.3733372688293457,-0.0008175282273441553,-1.394917607307434,0.10651513934135437,-0.7097987532615662,-0.3326651155948639,0.16423431038856506,0.9902067184448242,-1.2993000745773315,-1.3114230632781982,-1.460481882095337,-0.9107979536056519,-1.2359941005706787,-1.2474620342254639,-1.0539255142211914,0.11092087626457214,-1.4769909381866455,-0.32575517892837524,-0.963491678237915,-0.8827065229415894,-0.9894024133682251,-0.017270104959607124,-0.14797908067703247,-0.6307450532913208,1.3546162843704224,-0.05427051708102226,-0.2615581750869751,-0.2043905407190323,0.03736632689833641,0.700643002986908,0.20860762894153595,-0.24784407019615173,0.31963446736335754,0.2382122129201889,0.2707962691783905,-0.026145176962018013,0.30085739493370056,0.032312288880348206,-0.2085614651441574,0.4249514043331146,0.4532455503940582,0.24538245797157288,0.62751704454422,0.3780348598957062,0.33351871371269226,0.6077548861503601,0.3701402544975281,-0.25608620047569275,0.2993336617946625,0.32745620608329773,0.7557663321495056,0.3987485468387604,0.04959430545568466,0.5436362624168396,0.022166289389133453,0.3600391745567322,0.364854097366333,-0.13438045978546143,0.16209053993225098,-0.20790641009807587,0.20074543356895447,0.7593560814857483,0.5536110401153564,0.12581825256347656,0.6067512035369873,-0.15805990993976593,0.6647307276725769,0.20198404788970947,0.5960089564323425,-0.2336535006761551,0.07982286065816879,0.06857963651418686,0.21717555820941925,0.29030662775039673,0.20797264575958252,0.4369964599609375,0.461029052734375,0.6271252632141113,0.3024752140045166,-0.06625907868146896,0.6298863291740417,-0.17554280161857605,0.6960472464561462,0.4615335464477539,0.38782915472984314,0.07589609920978546,-0.018384534865617752,0.20870496332645416,-0.05959860607981682,-0.34462714195251465,0.0188912246376276,-0.22278662025928497,0.3893916606903076,0.25983765721321106,0.08519801497459412,0.009363816119730473,0.19204722344875336,-0.08092082291841507,0.8832659125328064,-0.15697471797466278,0.25314900279045105,0.2036428600549698,0.015080684795975685,-0.16178634762763977,-0.007096496410667896,0.6784327626228333,0.25074678659439087,0.21135610342025757,0.5179579854011536,0.2084280401468277,0.6426136493682861,-0.25430792570114136,0.6676207780838013,-0.1095118522644043,0.5350837707519531,0.5213372111320496,0.2983771860599518,-0.1049429252743721,0.04253280907869339,0.39962461590766907,-0.09060247242450714,-0.34920966625213623,-0.09390432387590408,-0.17627203464508057,-0.2574059069156647,0.3404301702976227,0.5746793746948242,-0.017609259113669395,0.4739455580711365,0.1331239491701126,0.20171989500522614,-0.1713269054889679,0.32403436303138733,0.19803988933563232,0.14196987450122833,0.6791082620620728,0.24667248129844666,0.3975011110305786,0.6146000027656555,0.03696783259510994,0.47092899680137634,0.5760390162467957,0.2846691310405731,0.18955372273921967,0.3273427188396454,-0.013812613673508167,0.46568548679351807,0.12219874560832977,0.45135870575904846,0.6174155473709106,-0.20935331284999847,0.19575753808021545,0.29080310463905334,0.07114028185606003,-0.21910029649734497,0.10952727496623993,-1.6048803329467773,-0.6861047148704529,-0.5583740472793579,0.06744255125522614,-0.4636675715446472,-0.3400428295135498,-1.1884996891021729,-0.21483518183231354,-0.07553780823945999,-0.3130572736263275,-0.002243961440399289,0.8820968866348267,-0.41301456093788147,-0.7972488403320312,-0.5845016837120056,-0.38427186012268066,-0.7343169450759888,-0.511088490486145,-0.5951307415962219,0.017844675108790398,-0.9110949635505676,-0.18840952217578888,-0.742233157157898,-0.41195330023765564,-0.3021526038646698,0.38751184940338135,0.06786306202411652,-0.5967175364494324,0.7463251948356628,0.08115510642528534,-0.22910857200622559,-0.20702224969863892,-1.2337424755096436,-0.6872584223747253,-0.8459922075271606,-0.2723289430141449,-0.4270346760749817,-0.0363631434738636,-0.5713205337524414,0.27381590008735657,-0.4398084878921509,0.1077725738286972,-0.3051736354827881,0.32184794545173645,-0.40017402172088623,-0.49418312311172485,-0.3369005620479584,-0.31375932693481445,-0.6147050857543945,-0.7143325209617615,-0.7870499491691589,0.18735697865486145,-0.33847302198410034,-0.37199532985687256,-0.7596490979194641,-0.4773067533969879,-0.7249840497970581,-0.3335859477519989,-0.09376468509435654,-0.6925277709960938,0.6952515244483948,0.15222014486789703,0.031067021191120148,-0.10195548832416534,0.05034317448735237,-0.0022439993917942047,0.23073892295360565,0.2425743043422699,0.24494774639606476,-0.0945095643401146,0.829420804977417,0.05125231668353081,0.1306798905134201,-0.07442865520715714,-0.1425662487745285,0.46330270171165466,0.5703051686286926,0.6288997530937195,0.46900928020477295,0.30699124932289124,0.33308714628219604,0.4523260295391083,0.22574247419834137,-0.274518758058548,0.3540794551372528,-0.11888756603002548,0.6250052452087402,0.21485409140586853,0.06358075886964798,0.022807251662015915,0.0296541228890419,0.26835766434669495,-0.1630256026983261,-0.32593774795532227,-0.24171271920204163,0.21709297597408295,-0.3221811056137085,-0.4794809818267822,-0.5560381412506104,-0.33479517698287964,-0.7029308676719666,-0.00654383422806859,-0.8335143327713013,-0.1347264051437378,-0.8352954387664795,-0.2145034372806549,-0.22380775213241577,0.46976229548454285,-0.25466832518577576,-0.6680875420570374,-0.4986201822757721,-0.2692640423774719,-0.8140560388565063,-0.8139708638191223,-0.4529733955860138,-0.14785149693489075,-0.4479176998138428,0.12712235748767853,-0.8024433255195618,-0.25853231549263,-0.6873998641967773,-0.4488139748573303,0.1355804055929184,-0.7479093074798584,0.15769824385643005,-0.05963337421417236,0.11820343136787415,0.18914653360843658,0.483623206615448,0.4710051119327545,0.4411323666572571,-0.20951810479164124,0.39077797532081604,0.17890949547290802,0.6782347559928894,-0.1158042624592781,-0.05071963742375374,0.05096010863780975,-0.004484069999307394,-0.18411579728126526,0.5393435955047607,0.17306436598300934,0.22413437068462372,0.3847023844718933,0.26583021879196167,0.6428042650222778,0.670141875743866,-0.31304100155830383,0.6559446454048157,-0.21313442289829254,0.5839248895645142,0.19526712596416473,-0.031063934788107872,-0.04951762780547142,-0.024495497345924377,0.3000509440898895,-0.37895169854164124,-0.3411620557308197,0.06457565724849701,-0.23213885724544525,0.5118442177772522,0.23409007489681244,0.2597407400608063,0.03575584292411804,0.5919319987297058,0.40045133233070374,0.6925757527351379,-0.24686746299266815,0.385419636964798,-0.1693096160888672,-0.3313620090484619,0.042697664350271225,0.31189867854118347,0.6420089602470398,0.7042843699455261,0.17906947433948517,0.5722018480300903,0.5479154586791992,0.11737348884344101,-0.05351915583014488,0.6032316088676453,-0.0971544161438942,0.4094919264316559,0.5108746290206909,0.44767215847969055,-0.025929555296897888,-0.054958682507276535,0.2546091079711914,-0.16695737838745117,0.05796255171298981,0.1772502213716507,-0.34586915373802185,0.23614074289798737,0.566918671131134,0.4713405668735504,-0.1970122903585434,0.43430107831954956,0.10409162193536758,0.3185229003429413,0.20638291537761688,0.2526947855949402,-0.0311108585447073,-0.08795048296451569,0.2952426075935364,0.5172390341758728,0.3340722918510437,0.613697350025177,0.07623874396085739,0.05253245681524277,0.5135335922241211,0.7008513808250427,-0.1734296679496765,0.25555509328842163,0.16585411131381989,0.2852526009082794,0.6082004308700562,0.6108632683753967,0.03057728335261345,-0.1037268117070198,0.5404016375541687,0.3129418194293976,0.08999982476234436,0.1279315948486328,0.15117274224758148,0.18855534493923187,0.21216800808906555,0.11435866355895996,-0.22632001340389252,-0.011021866463124752,0.18634377419948578,0.7196582555770874,-0.0663992166519165,-0.03173152729868889,-0.1214790865778923,-0.24776604771614075,-0.510134220123291,0.6402683258056641,0.3745528757572174,0.4945618808269501,0.25241705775260925,0.478147953748703,0.7187708020210266,0.7818276286125183,-0.22940339148044586,0.30197665095329285,0.02420363761484623,0.7152933478355408,0.5216652154922485,0.1544538289308548,-0.03761235252022743,0.18410855531692505,0.19663889706134796,-0.24929669499397278,-0.03477009758353233,-0.31024134159088135,-0.21680369973182678,-0.5283575057983398,-0.7867977023124695,-0.8435616493225098,-0.08114448934793472,-0.9751662611961365,-0.4058556854724884,-1.1274949312210083,-0.1632695496082306,-0.807735800743103,-0.2029653638601303,0.1651420146226883,-0.08156614005565643,-0.9029914140701294,-0.6035116910934448,-0.8397574424743652,-0.9388645887374878,-0.41601160168647766,-0.6719886660575867,-0.7096421122550964,0.2948131263256073,-0.6544321179389954,0.24091564118862152,-0.5367357730865479,-0.8765565752983093,-0.9322748780250549,-0.33555105328559875,0.06474322825670242,-0.8003096580505371,0.44906821846961975,0.13196735084056854,0.06426360458135605,-0.17139290273189545,0.3997188210487366,-0.4676177203655243,-0.7904763221740723,0.057747676968574524,-0.9442986845970154,-0.1840590238571167,-0.6626619100570679,-0.0284754429012537,-0.5149685740470886,-0.10221359878778458,0.16274158656597137,-1.209198236465454,-0.8675011396408081,-0.9287596344947815,-0.8088884353637695,-0.2114599049091339,-0.7447528839111328,-0.87177574634552,-0.5543473958969116,0.01086411252617836,-0.6178073287010193,-0.19781628251075745,-0.7157334089279175,-0.21177685260772705,-0.7316389679908752,-1.0055569410324097,-0.30251654982566833,-0.7313970923423767,0.460732638835907,0.1120450347661972,0.1996258646249771,0.19236767292022705,-0.004265657160431147,0.9967703223228455,0.5824095010757446,-0.18273739516735077,0.8889110684394836,0.46580880880355835,0.5670050978660583,0.07338576018810272,0.5830870866775513,-0.06871063262224197,-0.1736891269683838,0.38021278381347656,0.7053788304328918,0.9235876798629761,0.5052551031112671,0.6426458358764648,0.4149496257305145,0.7450538277626038,0.9812498688697815,0.017996735870838165,0.5535119771957397,0.06723850965499878,1.0755000114440918,0.3702782690525055,1.026452660560608,0.45670703053474426,0.15162929892539978,0.55278480052948,-0.08101358264684677,-0.1655503362417221,0.03642698749899864,-0.0577358677983284,0.4969590902328491,0.21761474013328552,0.43800586462020874,0.009640908800065517,0.21053177118301392,0.25270044803619385,0.6915516257286072,0.025256702676415443,0.026305826380848885,0.2184353768825531,0.07601410895586014,0.0066025033593177795,0.683097243309021,0.6687687635421753,0.19342440366744995,0.30075153708457947,0.07740405946969986,0.6717717051506042,0.6898086071014404,0.044828224927186966,0.42551442980766296,-0.16802194714546204,0.3825475871562958,0.24404066801071167,0.21251051127910614,0.1474086195230484,0.07048481702804565,0.14596782624721527,-0.027232501655817032,-0.08237389475107193,-0.06520198285579681,-0.24734126031398773,0.27242040634155273,0.5631433725357056,0.5146576762199402,-0.10460777580738068,0.708003044128418,0.2691149413585663,0.5696718096733093,-0.3036959171295166,0.4765290319919586,0.15851044654846191,-0.11293352395296097,0.42912477254867554,0.6339190006256104,0.6837185025215149,0.7584639191627502,0.46041011810302734,0.36086371541023254,0.49342653155326843,0.32410508394241333,-0.22136883437633514,0.4673216640949249,-0.3458297848701477,0.7160950303077698,0.2065502256155014,0.5871249437332153,0.6484851241111755,-0.28604671359062195,0.6289758682250977,0.31543004512786865,-0.22815130650997162,-0.014507357962429523,-0.23504875600337982,-0.3007364571094513,0.5983570218086243,0.24264860153198242,-0.12002133578062057,0.3236926198005676,0.3284608721733093,0.5823938846588135,-0.23666715621948242,0.20034955441951752,-0.12883596122264862,-0.03551990166306496,0.12473071366548538,0.11056920140981674,0.625586986541748,0.5872554779052734,0.3222375214099884,0.19903521239757538,0.5588013529777527,0.2523089349269867,-0.0854417011141777,0.4630405604839325,0.20751532912254333,0.23971512913703918,0.5037103295326233,0.45601019263267517,0.06735041737556458,0.18124696612358093,0.18070805072784424,-0.02483929693698883,-0.023325027897953987,-0.2102067470550537,0.09831222891807556,0.41337451338768005,-0.7741127610206604,-0.7841033339500427,-0.07060657441616058,-1.0232621431350708,0.039484843611717224,-1.0911661386489868,0.23270466923713684,-0.5556145310401917,-0.20023374259471893,-0.09030140936374664,-0.9933828115463257,-0.7157474756240845,-0.793613076210022,-0.7746264338493347,-0.9236882328987122,-0.9333025217056274,-0.9274402856826782,-0.415060818195343,0.16596969962120056,-0.6308520436286926,-0.2195751667022705,-1.028509497642517,-1.2312556505203247,-0.686189591884613,-0.5431838631629944,0.23657768964767456,-0.8281558752059937,0.6290501356124878,0.1986784189939499,-0.20561501383781433,0.03335798531770706,-1.2675120830535889,-1.3938273191452026,-1.3339855670928955,0.22444701194763184,-1.2410386800765991,-0.1950746476650238,-1.343580722808838,-0.3087252378463745,-0.982313871383667,-0.10119394212961197,-0.23269812762737274,0.8174457550048828,-1.6137309074401855,-1.648512601852417,-1.2903151512145996,-1.4019783735275269,-1.0416197776794434,-1.2097114324569702,-1.5669041872024536,0.1543521136045456,-0.9825935363769531,-0.021823955699801445,-1.4299176931381226,-1.150952696800232,-1.0753034353256226,-0.6993342638015747,-0.13393394649028778,-1.0613244771957397,0.8814562559127808,0.10742106288671494,0.24030669033527374,0.21356330811977386,0.38528212904930115,0.6948714256286621,0.3008013367652893,-0.10688486695289612,0.6272228360176086,0.070486880838871,0.35191190242767334,0.2305026799440384,0.29347172379493713,-0.1485772430896759,-0.2814285159111023,0.21510469913482666,0.19482438266277313,0.5123645067214966,0.5654235482215881,0.3233906924724579,0.18141020834445953,0.2910275459289551,0.4493388533592224,-0.021154455840587616,0.5174926519393921,0.03747045621275902,0.7617459297180176,0.1720055192708969,0.4809366762638092,0.5371251702308655,-0.19135066866874695,0.15715956687927246,0.10728304833173752,-0.14482583105564117,-0.3083047568798065,-0.3096001446247101,0.3567317724227905,0.10509934276342392,0.5585784912109375,-0.042768463492393494,0.46057820320129395,0.17895163595676422,0.890850841999054,-0.23744431138038635,-0.07145439088344574,-0.27499639987945557,-0.31179091334342957,-0.4779566526412964,0.4476403295993805,0.27460846304893494,0.6696817278862,0.391151487827301,0.5826284885406494,0.8924903273582458,0.4161369800567627,-0.02638295106589794,0.6449939012527466,-0.25164997577667236,0.23137034475803375,0.7096080780029297,0.6342440843582153,-0.23859810829162598,-0.18211525678634644,0.596013069152832,-0.0734102800488472,0.05928530916571617,-0.3346545994281769,-0.3673017621040344,0.5774447917938232,-1.148132085800171,-0.8977972865104675,-0.24859952926635742,-0.8298038244247437,-0.07734579592943192,-0.5504299402236938,-0.14142844080924988,-0.7589882612228394,-0.06322857737541199,0.19853563606739044,-1.4726680517196655,-0.4774475693702698,-1.0669265985488892,-1.0011123418807983,-0.8278623819351196,-0.2694963216781616,-0.8855167031288147,-0.8049033284187317,0.028145097196102142,-0.5693057179450989,-0.08900202065706253,-0.9325041770935059,-0.2746312618255615,-0.6781764626502991,-1.0006604194641113,-0.07404395937919617,-0.516033947467804,0.6405115127563477,0.007359204348176718,0.007643329910933971,0.1329481452703476,-1.4006565809249878,-0.40874218940734863,-0.7205778956413269,0.09562155604362488,-0.8210992217063904,-0.03110463172197342,-0.8179739117622375,0.2543123960494995,-0.06801549345254898,0.16287773847579956,0.01569458097219467,1.4055933952331543,-0.8395296931266785,-0.7718276381492615,-1.0166345834732056,-0.23957209289073944,-0.4992135465145111,-0.9005811810493469,-0.8606139421463013,0.2586369216442108,-0.5198286175727844,-0.24271798133850098,-0.624600887298584,-1.0994478464126587,-0.48139846324920654,0.19015797972679138,0.019945498555898666,-0.9401586651802063,1.5209780931472778,-0.3030591905117035,0.25837042927742004,-0.06544462591409683,-0.3309076130390167,1.0932718515396118,0.9760105609893799,0.28318893909454346,1.2670083045959473,-0.013482045382261276,0.8011542558670044,-0.16088426113128662,0.9335549473762512,0.29367050528526306,-0.14311525225639343,0.0054329680278897285,1.1223922967910767,1.2409696578979492,0.4066697061061859,1.1866191625595093,0.9224376678466797,1.0472391843795776,1.139766812324524,0.3136463761329651,0.9713965058326721,-0.025130735710263252,0.8052480816841125,0.3422745168209076,0.9468590617179871,0.7810739874839783,0.027494683861732483,0.8545553088188171,0.250274658203125,0.2297883778810501,0.09908128529787064,-0.10655809193849564,0.45043596625328064,0.1792425513267517,0.14982092380523682,0.054474156349897385,0.3561496436595917,-0.0828746110200882,0.4874422550201416,-0.19321316480636597,-0.04884551465511322,-0.2229621261358261,-0.13437211513519287,-0.17511454224586487,0.5188059210777283,0.157174214720726,0.5464312434196472,0.2153511792421341,0.21593919396400452,0.478287011384964,0.20030830800533295,0.2710524797439575,0.42484888434410095,-0.27326810359954834,0.4479270875453949,0.46123746037483215,0.28222158551216125,-0.39955228567123413,-0.03705470263957977,0.44279220700263977,-0.4831557273864746,0.17302270233631134,0.08920507878065109,0.050461091101169586,0.20777729153633118,0.20124784111976624,0.3437138497829437,-0.2516915202140808,0.5842570662498474,-0.14557631313800812,0.48760268092155457,0.020030945539474487,0.4048537015914917,-0.307797908782959,-0.20207178592681885,-0.06236524134874344,0.27336570620536804,0.511398434638977,0.6538272500038147,0.11621984094381332,0.2589045464992523,0.5520309805870056,0.6452463269233704,-0.2717859745025635,0.45220810174942017,-0.23927058279514313,0.1541305035352707,0.4046904146671295,0.20470011234283447,-0.11940433830022812,-0.06034564971923828,0.27500903606414795,-0.007990251295268536,-0.052299562841653824,-0.13352040946483612,0.05316981300711632,-1.016864538192749,-0.0896570011973381,-0.1295914351940155,-0.17237813770771027,-0.6908561587333679,-0.05060490965843201,-0.8928973078727722,-0.11676468700170517,-0.0436842255294323,-0.16013164818286896,0.02619621530175209,0.5231196284294128,-0.27423569560050964,-0.7573667168617249,-0.8299320936203003,-0.17560221254825592,-0.6435843110084534,-0.7998538017272949,-0.32094958424568176,-0.11011061817407608,-0.2863190472126007,-0.11231657862663269,-0.35996049642562866,-0.7848374843597412,-0.503595769405365,0.08296722173690796,-0.03128116950392723,-0.17431603372097015,0.5897699594497681,-0.017898211255669594,0.015494894236326218,0.19079704582691193,0.4456632733345032,0.16641710698604584,0.14569944143295288,-0.14840592443943024,0.5636585354804993,-0.22385217249393463,0.37312746047973633,-0.30268746614456177,0.5042915940284729,-0.08245136588811874,-0.32933512330055237,0.18178802728652954,0.11963377892971039,0.4093797504901886,0.501776933670044,-0.007250780239701271,0.5665591955184937,0.2603703737258911,0.4336306154727936,0.015070471912622452,0.5362180471420288,-0.21708853542804718,0.5526983737945557,0.2663501799106598,0.2929069995880127,0.19067791104316711,0.16456900537014008,0.36357685923576355,0.28786158561706543,-0.014257779344916344,-0.035490091890096664,0.07155770808458328]},{"shape":[32],"values":[0.19590571522712708,0.5145580172538757,0.51687091588974,-0.03196868672966957,0.64920574426651,0.1487194448709488,0.8861469030380249,-0.016869395971298218,0.4326043426990509,-0.04368056356906891,-0.028295911848545074,-0.1712135374546051,0.684791624546051,0.6525688767433167,0.7813214659690857,0.37466782331466675,0.6552894711494446,0.7523221373558044,0.7749125957489014,-0.04634619504213333,0.7180580496788025,-0.0384354293346405,0.6907309293746948,0.6420673131942749,0.5110968947410583,-0.1596047729253769,-0.03277551755309105,0.6425643563270569,-0.43600237369537354,-0.0445617213845253,-0.03392307087779045,-0.05238690972328186]},{"shape":[32,9],"values":[0.48290637135505676,-0.3508596420288086,-0.6595441102981567,0.4639635980129242,0.002107745734974742,-0.617279589176178,-0.1312539428472519,-0.036245714873075485,-1.2543091773986816,0.40110328793525696,0.24613463878631592,0.7999191284179688,0.636383593082428,0.5450820326805115,0.6010200381278992,0.2063259482383728,0.6930713653564453,0.7756983637809753,0.452770859003067,0.8013437390327454,0.5611145496368408,0.7167761325836182,0.902717649936676,0.49643048644065857,0.34691137075424194,0.7293956875801086,0.5943413972854614,-0.3484727442264557,-0.01676575280725956,0.11128890514373779,0.1371891051530838,-0.32265231013298035,-0.11633472889661789,0.3404359817504883,-0.1275305449962616,0.3891167938709259,0.3235141336917877,0.767058253288269,0.8923565149307251,0.4471028447151184,0.7544662356376648,0.7150992751121521,0.6274827718734741,0.21377286314964294,0.38446861505508423,0.4619392156600952,0.27316930890083313,0.20990239083766937,-0.07994044572114944,0.35376906394958496,0.3945315182209015,0.04399784654378891,0.08292800188064575,-0.08636753261089325,1.0414912700653076,0.6843060255050659,0.5063788294792175,0.8990344405174255,0.6970115900039673,0.2466808408498764,0.9311437606811523,0.4252564311027527,0.39440515637397766,-0.26548126339912415,-0.24631980061531067,0.06693582236766815,-0.12408196181058884,-0.22125142812728882,-0.14973360300064087,-0.2612665891647339,0.06947329640388489,0.2676134705543518,0.2568489909172058,0.5568418502807617,0.9433619976043701,0.0016267424216493964,0.4700964689254761,0.7273208498954773,0.4543137848377228,0.5608993768692017,0.5155592560768127,-0.15497450530529022,-0.28669336438179016,-0.13338379561901093,0.07632437348365784,-0.0013622984988614917,-0.16102969646453857,0.17969195544719696,0.07684452086687088,-0.2723895311355591,-0.06144644692540169,-0.22027841210365295,0.2864904999732971,-0.06915055960416794,-0.19320893287658691,-0.1415601223707199,0.20253105461597443,-0.05762321874499321,0.01660480536520481,-0.8309218287467957,-0.39324048161506653,0.17705880105495453,-0.5872451066970825,-0.5739736557006836,-0.0779855027794838,-0.8546843528747559,-0.15072156488895416,-0.01507519744336605,0.5962778329849243,0.6571502685546875,0.7893790602684021,0.2382601946592331,0.5319504737854004,0.2122088372707367,0.8056995272636414,0.7473471164703369,0.6943586468696594,1.0223132371902466,0.7916003465652466,0.7417625784873962,0.4279055595397949,0.7906708717346191,1.0741913318634033,0.5637907385826111,0.7172250151634216,0.7113479375839233,0.24176843464374542,0.23411686718463898,0.5930730104446411,0.845796525478363,0.7193219661712646,0.7168065905570984,0.8381152153015137,0.4630942940711975,0.2611798048019409,0.8217388987541199,0.40091395378112793,0.537119448184967,0.6240740418434143,0.39409905672073364,0.35183191299438477,0.28495457768440247,0.35943081974983215,0.8422635197639465,0.4763704240322113,0.27687758207321167,0.47572842240333557,0.9107156991958618,0.5663207173347473,0.16989979147911072,0.9500430822372437,0.5550971031188965,0.6348527669906616,0.9144769906997681,0.641694188117981,0.30257484316825867,0.4702261984348297,0.3632400929927826,0.7108514308929443,0.5740660429000854,0.8586764335632324,0.6055499315261841,0.6033718585968018,0.5412023663520813,0.5192901492118835,0.7178411483764648,0.25528421998023987,0.7987077236175537,0.9041579365730286,0.5290189385414124,0.8173573613166809,-0.27355536818504333,-0.3013264238834381,-0.28619664907455444,-0.19756031036376953,-0.1785559058189392,0.05804053694009781,0.31314709782600403,0.3849133253097534,-0.2736777663230896,0.7031115889549255,0.5182020664215088,0.22943425178527832,-0.006327384617179632,0.48170205950737,0.293464720249176,0.7309311628341675,0.3507697284221649,0.3857314884662628,-0.2709985673427582,0.011349530890583992,0.09695572406053543,-0.05462701991200447,-0.13834653794765472,-0.13084803521633148,0.27228713035583496,-0.23020507395267487,0.13484349846839905,0.5131532549858093,0.8283741474151611,0.4725637435913086,0.6518305540084839,0.6464289426803589,0.3782060444355011,0.345770001411438,0.7380213737487793,0.7173029780387878,0.4097903370857239,0.21695955097675323,0.2156708687543869,0.8671637773513794,0.3355792760848999,0.04909093677997589,0.6448642611503601,0.3997129201889038,0.47304901480674744,0.302595317363739,0.8355628848075867,0.3168579638004303,0.8550423383712769,0.3792762756347656,0.6389380097389221,0.3326595425605774,0.7158592343330383,0.8260697722434998,-0.8500641584396362,0.43823182582855225,0.5962145924568176,-0.7560622096061707,0.46233874559402466,0.8528732657432556,-1.0185308456420898,0.24114000797271729,1.0085481405258179,-0.015470533631742,-0.21972768008708954,0.3917503356933594,-0.28299567103385925,-0.15932604670524597,0.03998757153749466,-0.17467759549617767,-0.2639392912387848,0.15559154748916626,0.46340298652648926,0.5739175081253052,0.1752934753894806,0.23848497867584229,0.8279365301132202,0.7240387797355652,0.6944454312324524,0.6829690933227539,0.22078904509544373,-0.8288587927818298,-0.3816148340702057,0.06340458244085312,-0.8273370862007141,-0.4174881875514984,-0.059199776500463486,-1.1557443141937256,-0.5134616494178772,-0.11498695611953735,0.26632824540138245,-0.04664399474859238,0.17411445081233978,-0.17130865156650543,0.014350044541060925,-0.2791476547718048,-0.17519502341747284,-0.007071236614137888,0.046610623598098755,-0.19777636229991913,-0.10847598314285278,0.13671131432056427,0.23324236273765564,-0.06627894192934036,-0.10080337524414062,0.009513931348919868,-0.26355502009391785,0.3140749931335449,0.3415977358818054,-0.21462786197662354,-0.03369792550802231,-0.26238757371902466,-0.07421241700649261,-0.0814211368560791,-0.17108012735843658,0.09630510210990906,-0.28539928793907166]},{"shape":[9],"values":[0.4714601933956146,0.28619521856307983,0.19602085649967194,0.42930808663368225,0.21576538681983948,0.1377561390399933,0.7186117768287659,0.44683003425598145,0.16494148969650269]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-11.json new file mode 100644 index 0000000..17dcf15 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:08:10.178Z","weights":[{"shape":[20,32],"values":[0.6534909009933472,-0.43757763504981995,0.5966585278511047,0.1496742218732834,-0.08464059978723526,0.4649801552295685,0.5934653282165527,-0.27499425411224365,0.376036137342453,0.8736066818237305,-0.22685588896274567,0.13882821798324585,0.21491871774196625,-0.03785186633467674,0.3776736259460449,0.12480507045984268,0.9696477651596069,0.33490681648254395,0.42501920461654663,0.36574551463127136,0.68779057264328,0.7142165303230286,0.4395725727081299,0.05550163611769676,0.03394903242588043,-0.05376554653048515,0.27130889892578125,0.5427221655845642,0.9382369518280029,0.47899332642555237,0.5464464426040649,0.4617193341255188,0.38375410437583923,-0.2567819356918335,0.28588399291038513,0.2135208398103714,0.4179827570915222,0.051068130880594254,0.2323984056711197,-0.029997006058692932,-0.4530968964099884,-0.06665172427892685,0.26350024342536926,0.23784050345420837,-0.41233721375465393,0.31826964020729065,0.3488619029521942,0.003377825254574418,0.2635036110877991,0.602102518081665,-0.14016218483448029,-0.09581710398197174,-0.04603824391961098,-0.15510138869285583,0.0868428573012352,-0.2238781899213791,0.16162605583667755,-0.028763219714164734,-0.33077868819236755,0.5022026896476746,-0.5180178284645081,0.5024294257164001,0.27810564637184143,0.17825694382190704,0.35878801345825195,-0.8944938778877258,0.6872988939285278,-0.1700104922056198,0.6537873148918152,0.2811029851436615,-0.3668135106563568,-0.996959924697876,-0.7819260954856873,0.2645080089569092,0.7590261101722717,0.33685868978500366,-0.9508582353591919,0.8236567974090576,-0.1660613715648651,-0.13888394832611084,0.6128319501876831,-0.04316745325922966,0.379723459482193,0.10396143794059753,-0.29552388191223145,0.0073570930399000645,0.00962658878415823,0.09990954399108887,-0.5926944017410278,0.493941992521286,-0.41916829347610474,0.5799251198768616,-0.20287247002124786,0.5346769094467163,0.03319737687706947,-0.1553465873003006,-0.5027062296867371,2.3531055450439453,-1.7936848402023315,-0.04607342183589935,-1.2836740016937256,-0.323073148727417,-0.3815856873989105,2.1146106719970703,2.3987879753112793,-0.2230350822210312,-1.4446011781692505,-1.48348867893219,2.1689820289611816,-1.2758886814117432,0.020769033581018448,0.445652574300766,-1.7287527322769165,-0.8419649004936218,-0.6314898729324341,-0.647107720375061,-0.7562175989151001,-0.17722101509571075,-0.05608902871608734,-0.828774094581604,0.5113716721534729,-1.2056326866149902,-0.3342013657093048,-1.602582573890686,-0.20142748951911926,-1.930100679397583,-0.07916644960641861,-0.5316485166549683,-0.3623587191104889,-0.09795895963907242,0.010484191589057446,-0.4084663689136505,-0.17693117260932922,-0.4657880365848541,0.28445953130722046,0.20687536895275116,0.17232467234134674,0.057279836386442184,-0.07825387269258499,-0.13353411853313446,-0.15208743512630463,0.3458386957645416,-0.40187525749206543,-0.4835577607154846,0.08770335465669632,-0.1629852056503296,0.44452330470085144,0.3201502859592438,-0.08802737295627594,0.515924870967865,-0.6480423808097839,0.19502124190330505,-0.5131579637527466,0.48413240909576416,0.5380900502204895,-0.08162322640419006,0.3373781740665436,0.3739427924156189,-0.5481396317481995,-0.043895792216062546,-0.0563039630651474,0.034316204488277435,-0.13708284497261047,-0.16344942152500153,-0.35474464297294617,0.029859434813261032,-0.24810969829559326,0.4852108955383301,0.5311334133148193,0.06896089762449265,-0.21701431274414062,-0.3995074927806854,0.2008693814277649,-0.6164298057556152,0.03879640996456146,-0.06486140936613083,-0.15735355019569397,0.16866907477378845,0.5942115783691406,-0.006746355909854174,-0.0507565513253212,0.1121303141117096,-0.4173535108566284,0.4721246361732483,-0.07054127007722855,0.5011700391769409,-0.11230559647083282,-0.5044180750846863,0.42687392234802246,-0.5726554989814758,-0.4007623791694641,0.11927928775548935,0.133325457572937,0.677330493927002,-0.44030338525772095,0.16793811321258545,-0.4148749113082886,-0.2143246829509735,-0.2231890857219696,0.5937448143959045,0.3551976680755615,-0.19232863187789917,-0.3341229259967804,-0.5665788054466248,0.6027103066444397,-0.35440507531166077,-0.42424097657203674,-0.14974252879619598,-0.31476593017578125,-0.21540281176567078,0.33669692277908325,0.4021455943584442,0.0783991813659668,0.35957467555999756,-0.21387194097042084,-0.012882518582046032,-0.0663016065955162,-0.058502744883298874,-0.09083031117916107,-0.2099546641111374,0.25479888916015625,0.10599519312381744,-0.3425053060054779,-0.2732814848423004,0.07662530988454819,0.056459035724401474,-0.3815869987010956,-0.325050950050354,-0.07520481199026108,0.1945851445198059,0.1623118370771408,0.09974312037229538,0.019796740263700485,0.21750138700008392,-0.15208877623081207,-0.10247957706451416,0.012998242862522602,-0.052188608795404434,-0.3240714371204376,-0.19521820545196533,-0.15899886190891266,-0.1803622543811798,-0.02710588276386261,0.37679818272590637,0.06807711720466614,-0.0008342310320585966,0.1609305441379547,0.21006762981414795,-0.6715443134307861,0.07683052122592926,0.034486934542655945,-0.5738644599914551,0.084696464240551,-0.20163558423519135,0.1230219379067421,0.017464695498347282,0.027368003502488136,-0.1490175724029541,-0.04903062805533409,-0.09164031594991684,0.2114936113357544,0.02965805120766163,-0.040198877453804016,-0.3356306254863739,0.3281779885292053,0.21850979328155518,0.20332445204257965,0.29774072766304016,-0.006148163229227066,0.15284639596939087,-0.0683668926358223,-0.01446203701198101,-0.07496801018714905,0.253426730632782,0.10052047669887543,-0.13105814158916473,-0.3120388686656952,0.24980778992176056,-0.019359800964593887,-0.13393032550811768,-0.3143759071826935,-0.09216707944869995,0.05248567461967468,-0.32534122467041016,0.1037643775343895,0.2566392421722412,0.3054083287715912,-0.18058441579341888,0.18928052484989166,0.009376652538776398,0.018350249156355858,-0.2520339787006378,-0.05111147463321686,-0.0566156841814518,0.32506823539733887,-0.3255741000175476,0.07635895907878876,0.05677106976509094,0.2791892886161804,-0.2246205061674118,0.2028130739927292,-0.31062525510787964,0.22499744594097137,-0.14863477647304535,0.08392947167158127,0.15657083690166473,-0.09021709859371185,-0.11737250536680222,-0.19126033782958984,-0.16613438725471497,0.3015187978744507,-0.07277937233448029,-0.06649009138345718,-0.11992616206407547,0.13523642718791962,-0.2065386176109314,0.15857452154159546,0.11145707964897156,0.010568153113126755,-0.2146056890487671,0.06655070185661316,0.22319521009922028,0.01037893071770668,-0.04948786646127701,0.31172025203704834,-0.1719094067811966,0.20222580432891846,0.1508539319038391,-0.18135711550712585,-0.23345667123794556,0.31573566794395447,0.01655215583741665,0.3038550317287445,-0.0835493952035904,-0.046470411121845245,-0.2107100486755371,0.2330351620912552,0.31856387853622437,-0.024177512153983116,-0.11361642181873322,0.2689647376537323,0.03498774394392967,-0.19757907092571259,0.0669197142124176,-0.2795121371746063,-0.19237715005874634,0.02194940857589245,0.3337097764015198,0.3167671263217926,0.02731909230351448,-0.15746119618415833,-0.27747610211372375,0.18657556176185608,0.021211832761764526,-0.013769286684691906,-0.30323994159698486,0.12537263333797455,-0.004940520040690899,0.014592673629522324,0.2728995680809021,0.0553668774664402,0.04005904868245125,-0.17437905073165894,0.036645032465457916,0.11553405225276947,0.10047215968370438,0.04566590487957001,0.21489860117435455,-0.2601315975189209,-0.26535674929618835,-0.12084785848855972,0.263963907957077,0.13579058647155762,0.3366287648677826,-0.3349705934524536,0.20826782286167145,-0.18970987200737,0.2704409062862396,-0.062225621193647385,0.32950884103775024,-0.05348573252558708,0.12280085682868958,-0.07298194617033005,-0.2524283230304718,0.28830647468566895,-0.33004486560821533,0.22846421599388123,-0.26057884097099304,-0.09740614145994186,-0.18124645948410034,0.3089718520641327,0.05032721534371376,-0.18429891765117645,0.2846848964691162,-0.06886304169893265,-0.130560040473938,-0.33780932426452637,-0.1184786930680275,-0.31571832299232483,-0.30316877365112305,-0.20774003863334656,-0.33332425355911255,0.11761865019798279,0.03520986810326576,0.15789960324764252,0.2675779461860657,0.31501078605651855,-0.16618357598781586,0.3073717951774597,0.07857600599527359,0.3157201409339905,0.08302143216133118,-0.31549665331840515,0.060556285083293915,0.10907218605279922,0.021636096760630608,0.1701822280883789,0.3048345446586609,0.2802516520023346,-0.27437302470207214,0.2582094669342041,0.26868370175361633,-0.11820195615291595,-0.21759402751922607,-0.0936087891459465,-0.18100261688232422,-0.33859479427337646,0.2710990905761719,0.3134715259075165,0.12185327708721161,0.27156582474708557,0.041199587285518646,-0.0017012994503602386,0.23708516359329224,-0.22172923386096954,0.016269918531179428,-0.011746488511562347,-0.004901309963315725,-0.016014739871025085,-0.1341778039932251,-0.13432826101779938,-0.22389940917491913,0.08863601833581924,-0.04896754398941994,0.2911268174648285,0.26845434308052063,0.18454265594482422,-0.0664873793721199,-0.2170085310935974,-0.23251885175704956,0.032399408519268036,0.10173890739679337,-0.12804174423217773,-0.2766142785549164,-0.2158776819705963,-0.0822317972779274,0.26553547382354736,-0.1252482384443283,-0.005298076197504997,0.07086063921451569,-0.2955566942691803,0.1588587611913681,0.26069068908691406,0.2296200394630432,-0.11712507903575897,-0.04142516106367111,0.20646288990974426,0.1484050154685974,-0.11195757240056992,-0.11383719742298126,-0.18140842020511627,-0.013039746321737766,-0.0038676324766129255,0.06435700505971909,0.0744105726480484,0.20202286541461945,-0.038152191787958145,-0.023115888237953186,-0.07792432606220245,-0.2148410975933075,-0.2798222005367279,-0.08427772670984268,0.15707927942276,-0.13204148411750793,-0.035479046404361725,0.08629442006349564,0.32279327511787415,-0.14895610511302948,0.04390992224216461,-0.03796534612774849,-0.2858335077762604,0.18807511031627655,-0.03587481752038002,0.08137679845094681,0.2750574052333832,0.19301283359527588,-0.23883235454559326,0.1734505295753479,-0.19827397167682648,-0.16161474585533142,0.0753844752907753,0.1883910596370697,0.010302746668457985,0.28574079275131226,0.07730778306722641,0.1299823671579361,0.25436335802078247,-0.049137018620967865,-0.06852409988641739,0.18652768433094025,0.337722510099411,0.25419583916664124,0.09252533316612244,0.11535954475402832,0.3379454016685486,-0.09518205374479294,0.02492372877895832,0.289016455411911,-0.25719138979911804,0.27739080786705017,-0.3352101147174835,-0.1743449866771698,0.2394280731678009,0.02998707816004753,0.019301412627100945,0.25396597385406494,0.3354196548461914,0.2509908676147461,-0.11435842514038086,0.11296830326318741,0.027230581268668175,0.157683327794075,-0.09927098453044891,-0.16050225496292114,-0.07882519066333771,-0.289649099111557,0.12479881942272186,0.17934080958366394,-0.24384766817092896,-0.16486380994319916,0.10720589011907578,-0.30117443203926086,-0.13926789164543152,0.33079206943511963,0.24831412732601166,-0.19976118206977844,-0.21045979857444763,-0.10552603006362915,0.2778718173503876,0.28362205624580383,0.33537280559539795,0.18676206469535828,0.11587387323379517,-0.08377062529325485,-0.16115257143974304,-0.30535051226615906,0.16016457974910736,-0.004637099336832762,0.02513105608522892,0.13303335011005402,0.17392310500144958,-0.1848643720149994,0.20168213546276093,0.03617464751005173,-0.09149864315986633,-0.11660110950469971,-0.11154478043317795,0.09598101675510406,0.2845783829689026,-0.07299692183732986,0.16035306453704834,-0.29514631628990173,0.2793616056442261,-0.33772745728492737,-0.1428883671760559,0.033972300589084625,-0.29280900955200195,-0.005810007452964783,0.1581607460975647,-0.05125786364078522,0.06521793454885483,-0.15296140313148499,-0.12207092344760895,-0.2922821342945099,0.0025025196373462677,-0.06550011038780212,0.03285999596118927,-0.14900170266628265,-0.24059300124645233,-0.23264063894748688,0.11042136698961258,0.04183875769376755,-0.1024976596236229,0.21926437318325043,-0.3052557110786438,0.17279736697673798,0.11026468873023987,-0.05945068225264549,0.0800953060388565,-0.03501921147108078,-0.20989198982715607,0.11232879757881165,-0.31677183508872986,-0.2850502133369446,-0.04749941825866699,-0.04006413370370865,-0.1701803207397461,0.23998764157295227,0.11982559412717819,0.1696871817111969,0.1233755573630333,0.10399743169546127,0.3297794759273529,-0.12892645597457886,0.17451971769332886,0.04504140093922615,0.031723201274871826,-0.054965708404779434,-0.07630153000354767,-0.216399148106575,0.04505632072687149,0.09757337719202042,0.1978098750114441,-0.1268826574087143,-0.13114605844020844,-0.09836307913064957,-0.33607515692710876,0.20016485452651978,-0.11356334388256073,-0.22368675470352173,0.2738468050956726,0.08346442878246307,0.08876392245292664,0.06818068027496338,0.031353794038295746,0.12011737376451492,0.21333470940589905,0.24015183746814728,0.33370891213417053,-0.09094570577144623]},{"shape":[32],"values":[0.8449544310569763,-0.3543717563152313,-0.5915724635124207,0.7474262118339539,-0.3498789966106415,0.8859496116638184,0.912509024143219,-0.47724565863609314,-0.6676042675971985,0.8650098443031311,-0.35930055379867554,-0.3994724750518799,-0.6246611475944519,-0.5001806616783142,0.8244575262069702,0.5871610045433044,-0.3305378258228302,0.5240417122840881,0.7446570992469788,0.6826045513153076,0.8997332453727722,0.6514850854873657,0.7257128953933716,0.7552236318588257,0.56888747215271,0.3904266059398651,0.7998570203781128,-0.42345210909843445,0.758452296257019,-0.28841400146484375,0.8021423816680908,0.9680137038230896]},{"shape":[32,32],"values":[0.46627572178840637,0.23175950348377228,0.4763757884502411,0.2270074486732483,0.20380550622940063,0.12579894065856934,0.5293428897857666,0.2443748414516449,0.3720206022262573,0.4851023256778717,0.3956834673881531,0.3715808689594269,0.11520148813724518,0.41018107533454895,0.3372012674808502,-0.37402376532554626,0.033024225383996964,0.40218815207481384,0.39785176515579224,0.14581800997257233,0.19973115622997284,0.10022035241127014,0.06829757243394852,-0.020485330373048782,0.9238530993461609,-0.2164863795042038,-0.11366107314825058,0.13767820596694946,0.4442840814590454,0.45716673135757446,0.7439155578613281,-0.022783974185585976,-1.232557773590088,1.3578212261199951,-1.2066006660461426,-1.2438299655914307,-0.07356627285480499,0.8043103814125061,-0.9942571520805359,-0.30716589093208313,-1.0898596048355103,-0.5679709911346436,-1.0296688079833984,-0.24738028645515442,-1.295730710029602,-0.7212386131286621,-0.8249520063400269,-0.2826310396194458,-1.355904221534729,-0.9870312809944153,-0.7389519214630127,-0.945468008518219,-0.922954797744751,-0.788763701915741,-0.9023881554603577,-0.8185092210769653,-1.969170093536377,1.048854947090149,0.19118618965148926,-1.5103483200073242,0.42390894889831543,-1.3300222158432007,-1.762330174446106,1.0630333423614502,-0.7920684814453125,0.9854363799095154,-1.254577398300171,-1.096600890159607,-0.03861401975154877,1.0870006084442139,-0.5741405487060547,0.8887794613838196,-0.21250753104686737,-0.6102260947227478,-0.8987000584602356,0.9367796182632446,-1.0080000162124634,-1.005383849143982,-0.9904734492301941,0.07278992235660553,-0.48899412155151367,-0.7847833037376404,-0.5816618204116821,-1.0301880836486816,-0.7415884137153625,-0.8879275321960449,-0.9615564942359924,-0.4999956786632538,-0.3529762327671051,-0.17754046618938446,-0.2040739357471466,-0.8071306943893433,-1.8909865617752075,0.9745352268218994,-0.1675397753715515,-0.03108726441860199,0.222078338265419,-0.1973753571510315,0.7151639461517334,0.47590261697769165,-0.07114782929420471,-0.45069319009780884,0.616807222366333,-0.20078442990779877,0.3265206813812256,0.4328310489654541,0.31477370858192444,-0.3033908009529114,0.7323070168495178,0.24775385856628418,0.48783400654792786,-0.303855299949646,0.638504683971405,0.5768493413925171,0.28366991877555847,0.6151208281517029,0.23944668471813202,0.3571503758430481,0.1891738921403885,0.2932683825492859,0.53823322057724,0.09387967735528946,-0.18775705993175507,0.8950234055519104,-0.02309153415262699,-0.042876556515693665,0.6219063997268677,-0.15257732570171356,-0.35160744190216064,0.7596051096916199,-0.6056398749351501,-0.5325037837028503,-0.05676940456032753,0.5143622159957886,-0.280066579580307,0.22117072343826294,-0.14162573218345642,-0.47057604789733887,-0.23451684415340424,0.6445921063423157,-0.7059317231178284,-0.2667142152786255,-0.759645402431488,0.13583573698997498,-0.31540775299072266,-0.5940220952033997,-0.48547080159187317,-0.3710044324398041,-0.788574755191803,-0.4522581100463867,-0.28036972880363464,-0.5775855183601379,-0.2837090492248535,0.2020598202943802,0.24984879791736603,-0.4780142605304718,-1.2638094425201416,-0.06919290125370026,0.011171426624059677,-0.11033028364181519,-0.005551300011575222,-0.20236945152282715,0.4962761402130127,0.16649319231510162,-0.3250657021999359,-0.2312568575143814,0.4446968138217926,-0.03081183321774006,0.6643648743629456,0.6126596331596375,0.16851885616779327,0.2613191306591034,0.5473915338516235,0.004401003941893578,0.002704707207158208,0.22565965354442596,0.7427404522895813,0.3332463204860687,0.4966149628162384,0.15800461173057556,0.02045579068362713,0.607598066329956,0.4281725287437439,0.22581757605075836,0.780914843082428,-0.47007375955581665,0.1584332436323166,0.43959900736808777,0.4480322301387787,0.330410361289978,0.6663007140159607,-0.3012335002422333,0.3535894751548767,0.24553532898426056,0.6493865847587585,0.7079416513442993,-0.014665702357888222,0.11484211683273315,0.3469274938106537,0.043058618903160095,0.258456826210022,0.12499989569187164,0.6982113122940063,0.21669338643550873,0.6220733523368835,0.03330189362168312,0.33319157361984253,0.1482773721218109,0.6983869671821594,0.5460357666015625,0.4512048363685608,0.32713449001312256,0.44967320561408997,0.44582074880599976,-0.035519763827323914,0.7005348801612854,0.4854530692100525,0.25237151980400085,0.01621880941092968,0.5043114423751831,0.6712582111358643,-0.03694886714220047,0.2735981047153473,0.2549609839916229,-0.8276903629302979,0.9557458758354187,-0.7327349781990051,-0.3924543261528015,0.036666713654994965,0.8824987411499023,-0.57817542552948,-0.21669906377792358,-0.503174364566803,-0.22362099587917328,-0.4403834640979767,0.09851329028606415,-0.8831339478492737,-0.4935508668422699,-0.28949666023254395,-0.11159536242485046,-0.599104642868042,-0.8717296719551086,-0.7248385548591614,-0.6114901304244995,-0.6499913930892944,-0.4909003674983978,-0.2596665024757385,-0.19590069353580475,-2.008725881576538,0.6888858079910278,-0.024823710322380066,-0.9717544913291931,0.11843319982290268,-1.5073299407958984,-1.9702434539794922,0.8165950775146484,-1.0345916748046875,1.0412920713424683,-1.369127869606018,-0.7046083211898804,0.08361726254224777,1.0487086772918701,-1.0017163753509521,-0.15816624462604523,-1.376462459564209,-0.90594083070755,-0.5355521440505981,-0.3672948181629181,-1.1941386461257935,-1.0480821132659912,-0.8833752274513245,0.2391015589237213,-0.9854053258895874,-0.8778634667396545,-0.822543203830719,-1.0180718898773193,-1.1785717010498047,-1.0319472551345825,-1.0409473180770874,-0.8873730897903442,-2.084547996520996,0.8294626474380493,0.09160275757312775,-1.373924970626831,0.7176703810691833,-1.9282417297363281,-2.214780330657959,0.90892094373703,0.4120379686355591,0.2250232994556427,0.5667514204978943,0.5909549593925476,0.061073265969753265,0.08986375480890274,0.5670418739318848,0.17769844830036163,0.5906074047088623,0.3371347486972809,0.46148940920829773,0.15106208622455597,0.7278332114219666,0.3235154449939728,0.682702362537384,-0.028936032205820084,0.3374769389629364,0.8039121627807617,0.20483243465423584,0.18385103344917297,0.6260287165641785,0.3188028037548065,-0.07679329812526703,-0.035082414746284485,0.6460707187652588,0.08394551277160645,-0.13092780113220215,0.7707916498184204,0.42532798647880554,0.4007492661476135,0.32666105031967163,-0.1681995838880539,-1.0494589805603027,0.5191742777824402,-0.3923664689064026,-0.6787610054016113,-0.09654568880796432,0.7593722343444824,-0.7880802750587463,0.507439136505127,-0.34817618131637573,-0.402391254901886,-0.7471054792404175,0.2576322853565216,-0.47815170884132385,-0.6031777262687683,-0.915469229221344,-0.19540724158287048,-0.34746208786964417,-1.0470794439315796,-0.8853145241737366,-0.7575879096984863,-0.8550854325294495,-0.27365079522132874,-0.4045497477054596,-0.290752112865448,-0.5268121361732483,-0.25096818804740906,-0.17833109200000763,-0.7371308207511902,-0.317404568195343,0.06683037430047989,-0.6269227862358093,0.2257436066865921,-0.36359256505966187,0.5692285895347595,-0.5471793413162231,-0.7389416098594666,-0.3677169680595398,0.6817495226860046,-0.04770566523075104,0.030614156275987625,-0.7222872972488403,-0.5116679668426514,-0.38088104128837585,0.4705566167831421,-0.4473784565925598,-0.421603798866272,-0.3536038100719452,-0.11670786887407303,-0.2289508581161499,-0.768668532371521,-0.430040568113327,-0.1950477808713913,-0.6797679662704468,-0.31856846809387207,-0.5307033658027649,-0.366561621427536,-0.42551296949386597,-0.2638161778450012,-0.1483651101589203,-0.5544340014457703,-0.5482349395751953,0.40664729475975037,-0.30464157462120056,-0.049300529062747955,-1.4463274478912354,1.2294739484786987,-1.2564189434051514,-1.2440465688705444,0.0057956199161708355,1.4091211557388306,-0.9353729486465454,-0.11845148354768753,-1.3250740766525269,-1.1352840662002563,-0.8757870197296143,0.00735747255384922,-1.000952959060669,-0.9931291341781616,-1.0191764831542969,0.02258899249136448,-0.926009476184845,-1.1159075498580933,-1.0833507776260376,-0.8162022233009338,-1.0754753351211548,-1.1217727661132812,-0.6951630115509033,-0.9345311522483826,-2.5857317447662354,0.9055716395378113,-0.20204442739486694,-1.549674153327942,0.8194795846939087,-1.7946685552597046,-2.074646472930908,1.2587413787841797,-1.0707591772079468,1.0446419715881348,-0.7367266416549683,-0.5569269061088562,-0.16946744918823242,1.1284840106964111,-0.7300345301628113,0.8761287927627563,-0.5322281718254089,-0.8401015400886536,-0.5993476510047913,0.7926892042160034,-0.7560665011405945,-0.9271343350410461,-0.7507392168045044,-0.07680819928646088,-0.83382648229599,-0.8613349795341492,-0.9229985475540161,-0.4998481273651123,-0.9992916584014893,-0.9718262553215027,-0.9341250061988831,-0.96345454454422,-0.8040914535522461,-0.19294756650924683,0.012063613161444664,-0.9438405632972717,-0.5655675530433655,0.0585855208337307,-0.3080595135688782,-0.007412800565361977,0.44182464480400085,-0.22591063380241394,0.5869351029396057,0.3733711540699005,0.09036833792924881,-0.1506054848432541,0.4339141249656677,0.12287156283855438,0.23022295534610748,0.5299280881881714,0.5088652968406677,-0.3683561682701111,0.39129599928855896,0.5316013097763062,0.2973533272743225,-0.06022153049707413,0.4097224473953247,0.7087050676345825,0.7323886156082153,0.4455149471759796,0.6777493357658386,0.6963159441947937,0.14227159321308136,0.35274216532707214,0.29517999291419983,-0.33926570415496826,-0.09468074887990952,0.38308942317962646,-0.28156778216362,0.3514072895050049,0.6992745995521545,-0.36479076743125916,0.33982473611831665,-0.46921250224113464,0.16663551330566406,0.3732201159000397,0.23560480773448944,-0.31992587447166443,0.83611661195755,-0.19122010469436646,0.2779178023338318,0.7211827635765076,0.4984706938266754,-0.2510872185230255,0.38750511407852173,0.7888739109039307,0.262921005487442,-0.003659123321995139,0.6043911576271057,0.46124133467674255,0.8027058243751526,0.5834320783615112,0.5289662480354309,0.34466320276260376,0.30382293462753296,0.42572468519210815,0.5072717070579529,-0.20610123872756958,-0.011825340799987316,0.8593935966491699,-0.22935928404331207,-0.006988141220062971,0.4669559895992279,0.017265191301703453,-0.7579594254493713,0.460610032081604,-0.8161977529525757,-0.6219943761825562,-0.11906420439481735,0.9931736588478088,-0.42981767654418945,0.6245278716087341,-0.6695593595504761,-0.6353675723075867,-0.23425909876823425,0.711677074432373,-0.9101464748382568,-0.3567957580089569,-0.8224647045135498,-0.24448277056217194,-0.7411936521530151,-0.6492766737937927,-0.22586680948734283,-0.6665456295013428,-0.817219614982605,-0.8257972598075867,-0.5645598769187927,-0.35278674960136414,-0.047327976673841476,-0.32492101192474365,-0.2779408395290375,-0.35675355792045593,-1.4731138944625854,0.9534199237823486,0.4946991205215454,-0.34918904304504395,0.48772358894348145,0.01827588677406311,0.39082059264183044,0.413632869720459,0.1576838344335556,-0.21491964161396027,0.16757045686244965,-0.10606406629085541,0.06678506731987,0.400193452835083,0.16028720140457153,0.1203131377696991,-0.01165797933936119,0.029104391112923622,0.5133157968521118,0.2566505968570709,0.08744385093450546,0.3384949862957001,0.07487121224403381,0.25086140632629395,0.3889302611351013,0.4159983694553375,0.37402284145355225,0.05384894087910652,0.5854231119155884,-0.26612338423728943,-0.032515209168195724,0.26991134881973267,-0.1124771237373352,0.4584008455276489,0.5572473406791687,-0.4106088876724243,0.028197254985570908,-0.24240727722644806,0.5841605067253113,0.599029004573822,-0.16541075706481934,-0.36846521496772766,0.07468792796134949,-0.6725260019302368,0.34134992957115173,0.3278849720954895,0.3909955620765686,-0.5779390931129456,0.33753737807273865,0.26285046339035034,0.6243578791618347,-0.0037746187299489975,0.33274951577186584,0.5447023510932922,-0.01391719002276659,0.3374605178833008,0.8613961338996887,0.4324297606945038,0.5597459077835083,0.33791354298591614,-0.17768217623233795,0.06991063058376312,0.08124595135450363,0.17568384110927582,0.301039457321167,0.008474060334265232,-0.19305062294006348,0.1771332174539566,0.4062168300151825,0.1219901293516159,0.48043394088745117,0.1946685016155243,-0.054406993091106415,0.1668688803911209,-0.09180457890033722,-0.14127306640148163,0.2741151750087738,-0.12402265518903732,0.4361222982406616,0.053236473351716995,0.5611352920532227,0.31950342655181885,0.12021730840206146,-0.13940824568271637,0.4243238866329193,0.3880138397216797,0.40713509917259216,0.08525698632001877,0.34930601716041565,0.49798476696014404,0.02773367054760456,0.10162514448165894,0.10380054265260696,-0.21032609045505524,-0.1573914736509323,0.48604464530944824,0.37851372361183167,-0.21634995937347412,0.1727367341518402,-0.06660403311252594,0.3728353679180145,0.16368620097637177,0.39415106177330017,0.778327226638794,-0.19584524631500244,0.0974930077791214,0.26212218403816223,0.2049144208431244,0.18781828880310059,0.2490057796239853,0.7504293918609619,-0.08825943619012833,0.7292579412460327,0.4937624931335449,0.6029543280601501,0.12914031744003296,0.679841935634613,0.5432326197624207,0.4354751408100128,0.4615640342235565,0.7264536023139954,0.6554602384567261,0.31255120038986206,0.37510016560554504,0.4044663608074188,0.23591157793998718,-0.30676379799842834,0.7250182032585144,0.577547550201416,0.2715911567211151,0.3243013918399811,0.005868473555892706,0.3612810969352722,-0.18657216429710388,0.40247032046318054,0.45043107867240906,0.1275174617767334,0.1268037110567093,0.17357906699180603,-0.2835884392261505,0.1876997947692871,-0.10236856341362,0.5563182234764099,-0.5598784685134888,0.39998430013656616,0.21927398443222046,0.07451330870389938,0.13403943181037903,0.7586458325386047,0.23067857325077057,0.19248457252979279,0.11272459477186203,0.34539827704429626,0.5495800971984863,0.1591821163892746,0.09597041457891464,0.0640430748462677,0.10356973856687546,0.02269156649708748,0.5617790818214417,0.3768252432346344,0.23106195032596588,-0.10229185223579407,-0.16393476724624634,0.11484133452177048,-0.15472348034381866,0.12106405943632126,0.1121809333562851,-0.18830591440200806,0.1927071362733841,0.35830390453338623,-0.1342163234949112,0.32801371812820435,0.5162562131881714,0.2674097716808319,0.08176954835653305,0.14481063187122345,0.24622419476509094,0.2943953573703766,0.16161100566387177,0.5969160795211792,0.6404780745506287,0.3860555589199066,0.4486965835094452,0.1335984319448471,0.68827223777771,0.4356178343296051,0.11501578986644745,0.38901403546333313,-0.37286898493766785,0.026328541338443756,0.642699122428894,-0.08233807981014252,0.3797639310359955,0.7764055132865906,-0.49658963084220886,0.5465119481086731,0.009011463262140751,0.34025365114212036,0.43856602907180786,0.0023896298371255398,-0.4825012683868408,-0.008920238353312016,-0.587536096572876,0.42553022503852844,-0.08017496019601822,0.695364773273468,-1.0556973218917847,0.5675404667854309,0.14528827369213104,0.3534039258956909,-0.1374841332435608,0.33310699462890625,0.1076832041144371,0.43268558382987976,0.27922049164772034,0.2966494560241699,0.5784758925437927,0.6222984790802002,0.7777634859085083,-0.5365551114082336,-0.11291171610355377,0.04157961905002594,0.5015400052070618,0.5518672466278076,-0.46521255373954773,-0.07067165523767471,-0.33309078216552734,0.8121699690818787,-0.3566576838493347,1.004741907119751,0.7726848721504211,0.036629024893045425,-0.5060075521469116,0.90704345703125,-0.7686272263526917,0.7567499876022339,0.7001885175704956,0.5116232633590698,-0.6792318820953369,0.7886053919792175,0.4574562907218933,0.7103745937347412,0.197066068649292,0.9493268132209778,0.45847541093826294,0.7106894850730896,0.9560339450836182,0.3828675448894501,0.5402615666389465,0.591274082660675,0.45350703597068787,0.7009845972061157,-0.2593773603439331,-0.22123999893665314,0.9767358303070068,0.3354756236076355,-0.13709251582622528,0.2258232682943344,-0.860711932182312,0.5965638160705566,-0.45086726546287537,0.7325637936592102,1.1100287437438965,-0.001973765902221203,-0.49213215708732605,0.22694404423236847,-0.3047500550746918,0.15376943349838257,0.22361041605472565,0.5803539752960205,-0.3891616761684418,0.8207707405090332,0.3157438635826111,0.5169784426689148,0.05155329033732414,0.4810287356376648,0.42357176542282104,0.4838346838951111,0.24565944075584412,0.8247604370117188,0.6842030882835388,0.5378353595733643,0.5319190621376038,-0.5172308087348938,-0.9290411472320557,0.0020929803140461445,0.7144598960876465,0.12838114798069,0.13302801549434662,-0.1200171485543251,-0.4512496590614319,-0.007090564351528883,-0.31925347447395325,0.4212985634803772,0.7453184127807617,-0.18245060741901398,-0.06454319506883621,0.12787112593650818,-0.3338344395160675,-0.022002050653100014,0.3960934579372406,0.6989710330963135,-0.28681254386901855,0.44708535075187683,0.6985153555870056,0.24617569148540497,-0.1172831729054451,0.3497416079044342,0.4857026934623718,0.27318504452705383,0.44493693113327026,0.8371660709381104,0.5038087368011475,0.5061132311820984,0.3879441022872925,-0.11986933648586273,-0.2901439964771271,0.13298238813877106,0.16885121166706085,0.8404796719551086,0.16783443093299866,-0.3190792500972748,0.35143524408340454,-0.8554760813713074,0.6744214296340942,-0.7086875438690186,-0.6285151243209839,0.23776483535766602,0.7765035629272461,-0.38827377557754517,0.4840056300163269,-0.472150057554245,-0.1960352510213852,-0.4006308615207672,0.19076332449913025,-0.542317271232605,-0.2998918294906616,-0.6944535374641418,-0.1478622406721115,-0.7362357974052429,-0.43072131276130676,-0.3541942536830902,-0.5371499061584473,-0.814117968082428,-0.19320696592330933,-0.31772902607917786,-0.1658325493335724,0.24675773084163666,0.07793337106704712,0.2107585072517395,-0.31420472264289856,-1.6947147846221924,0.5815668106079102,0.13252586126327515,-0.17139148712158203,0.14543290436267853,0.12462535500526428,0.2177285999059677,0.23852038383483887,0.14579658210277557,0.10234228521585464,0.17218972742557526,-0.5003659129142761,0.2286226898431778,0.07419091463088989,0.5036186575889587,-0.6845867037773132,0.26990795135498047,0.3139943480491638,0.46432915329933167,-0.06627599895000458,0.3436802625656128,0.3841438591480255,0.26848870515823364,-0.09674634784460068,0.4493492543697357,0.3558407723903656,-0.08636404573917389,0.4905773997306824,-0.1983405500650406,0.35113030672073364,-0.15681011974811554,0.11456047743558884,0.7584006786346436,-0.03483429551124573,-0.051490794867277145,0.019736463204026222,-0.8925629258155823,0.8017336130142212,-0.5598382353782654,-0.7463493943214417,0.06853746622800827,0.6690735816955566,-0.5080578327178955,0.7420491576194763,-0.38497689366340637,-0.27185922861099243,-0.5567282438278198,0.4959200322628021,-0.6650039553642273,-0.6768629550933838,-0.8347662091255188,0.05959857255220413,-1.0209918022155762,-0.4132027328014374,-0.5692582726478577,-0.5975740551948547,-0.8781041502952576,-0.8602327108383179,-0.6148654818534851,-0.7088969349861145,-0.09417902678251266,-0.27760812640190125,-0.07420826703310013,-0.25813406705856323,-1.1184030771255493,0.4118632674217224,0.33847135305404663,-0.09891695529222488,0.5874444246292114,-0.28790223598480225,0.43450433015823364,0.5534055233001709,0.12627078592777252,-0.14066708087921143,0.5687858462333679,0.08707257360219955,0.628254234790802,0.30306896567344666,0.4128004014492035,-0.2538541257381439,0.5608494281768799,0.4267193377017975,0.26207685470581055,-0.2710748314857483,0.4610733985900879,0.8203102946281433,0.6020099520683289,0.5605457425117493,0.067255400121212,0.4918370246887207,0.44565078616142273,0.12088949978351593,0.3174125850200653,-0.3409474492073059,-0.12031447142362595,0.6423152089118958,-0.1623368114233017,0.45039013028144836,0.7428992390632629,-0.300166517496109,0.6768206357955933,-0.0677836686372757,0.42203080654144287,0.8481057286262512,-0.26131728291511536,-0.13948118686676025,0.24390356242656708,0.030167967081069946,0.272454172372818,0.2911073863506317,0.8046630024909973,0.10150503367185593,0.5538142323493958,0.1708400696516037,0.7136704921722412,-0.22368434071540833,0.5981438159942627,0.30988478660583496,0.4524274170398712,0.7025795578956604,0.9739794731140137,0.8678604364395142,0.37890520691871643,0.6671984791755676,0.6795563101768494,-0.2984991669654846,0.14647147059440613,0.837001383304596,0.2922590374946594,0.41365429759025574,0.4590595066547394,-0.17911085486412048]},{"shape":[32],"values":[0.6126949191093445,-0.4181155264377594,0.7916262745857239,0.7839236259460449,-0.04837223142385483,-0.4786554276943207,0.4238033592700958,-0.24858969449996948,0.6625121235847473,0.6261590719223022,0.8018435835838318,-0.35448122024536133,0.7950576543807983,0.6524510979652405,0.7676719427108765,-0.0901227593421936,0.8993715047836304,0.7002694010734558,0.5386812090873718,0.7008369565010071,0.7664384841918945,0.7633389234542847,0.7209980487823486,0.681593120098114,0.23247836530208588,-0.4176379144191742,-0.025128601118922234,0.8448933362960815,0.21713444590568542,-0.226888045668602,0.050334397703409195,-0.4027571380138397]},{"shape":[32,9],"values":[0.9434568881988525,0.9333478212356567,0.6597588658332825,0.8551637530326843,0.8691055774688721,1.060221791267395,0.375993937253952,0.8654318451881409,0.6643986701965332,-0.7300604581832886,-0.7973161339759827,-0.7156607508659363,-0.9282166957855225,-0.6827155947685242,-0.7733145952224731,-0.8860500454902649,-0.5292489528656006,-0.5726799368858337,0.6656240820884705,0.7575832009315491,0.9787261486053467,0.48082485795021057,0.49847015738487244,0.6820363998413086,0.24636459350585938,0.7828407287597656,0.7568278312683105,0.3637821078300476,0.410147100687027,0.7436297535896301,0.21424636244773865,0.7899952530860901,0.7350797057151794,0.5023621320724487,0.5959540605545044,0.8528653979301453,-0.1856766641139984,0.025708548724651337,-0.18203072249889374,0.11766406893730164,-0.22518223524093628,0.31972724199295044,-0.252559632062912,0.1638563722372055,0.004680545534938574,-0.640412449836731,-0.8725608587265015,-0.6078296303749084,-0.646472156047821,-0.8519692420959473,-0.4242323637008667,-0.5185753107070923,-0.9361485242843628,-0.8337900042533875,0.1756223738193512,0.8568374514579773,0.4206865131855011,0.9221323132514954,0.19468559324741364,0.4553038775920868,0.8079534769058228,0.14089560508728027,0.3226604163646698,-0.5481507778167725,-0.7417624592781067,-0.5645856857299805,-0.4253489375114441,-0.21585771441459656,-0.12045912444591522,-0.49138355255126953,-0.4182130992412567,-0.4945049583911896,0.7007336020469666,0.6548469066619873,0.4491021931171417,0.2713127136230469,0.49932414293289185,0.4680044949054718,0.7305048108100891,0.6331038475036621,0.3807893693447113,0.8312780261039734,0.7760810852050781,0.13734792172908783,0.378011554479599,0.6967161893844604,0.1346176117658615,0.6104461550712585,0.371869295835495,0.6717900037765503,0.21952815353870392,0.6388828158378601,0.8087117671966553,0.17694814503192902,0.5353150963783264,0.10396959632635117,0.7815685272216797,0.6814813017845154,0.7537055611610413,-0.2945328652858734,-0.3940507173538208,-0.5823034644126892,-0.3089481294155121,-0.4141751825809479,-0.34817150235176086,-0.9269416332244873,-0.6447548866271973,-0.4577907919883728,0.5840790271759033,0.5590256452560425,0.7106244564056396,0.785433292388916,0.5421148538589478,0.9515248537063599,0.4212542474269867,0.5243270993232727,0.8672681450843811,0.23248733580112457,0.3158985376358032,0.5281618237495422,0.8044317960739136,0.6038239598274231,0.5188447833061218,0.5558664202690125,0.3897280991077423,0.6275370717048645,0.5165597796440125,0.26998910307884216,0.7195581793785095,0.694628119468689,0.8043572306632996,0.6149827241897583,0.42794910073280334,0.7786726951599121,0.8148223161697388,0.24122320115566254,-0.058543652296066284,0.15192346274852753,0.05459015071392059,0.12065673619508743,-0.30453476309776306,-0.07864754647016525,-0.005355688743293285,0.4177817404270172,0.4874825179576874,0.755932629108429,0.8407557606697083,0.3236440420150757,0.37028321623802185,0.6590036749839783,0.7977449297904968,0.6883199214935303,0.7824708223342896,0.5642276406288147,0.8196428418159485,0.6525970101356506,0.5384110808372498,0.5799362063407898,0.6560888290405273,0.46974194049835205,0.5288710594177246,0.19301225244998932,0.56764155626297,0.6017197966575623,0.18369822204113007,0.3666538894176483,0.6575325131416321,0.589941143989563,0.6160508990287781,0.42447397112846375,0.168941468000412,0.7779446840286255,0.26105716824531555,0.4868094325065613,1.0932403802871704,0.8225982189178467,0.2798098623752594,0.41613203287124634,0.6940655708312988,0.9067333936691284,0.30593499541282654,0.857381284236908,1.1179423332214355,0.3623000979423523,1.0820993185043335,1.1127773523330688,0.5786978602409363,0.9339820742607117,1.1430842876434326,0.5778818726539612,0.21533815562725067,0.6425023674964905,0.5989102721214294,0.6862417459487915,0.7242743372917175,0.6512527465820312,0.14530296623706818,0.782159686088562,0.4934423863887787,0.745652437210083,0.7523913979530334,0.9460180401802063,0.5424513220787048,0.45990386605262756,0.5023716688156128,0.9553075432777405,1.0187883377075195,0.2454414963722229,0.34468165040016174,0.5875899195671082,0.23039692640304565,0.6381494402885437,0.6827050447463989,0.8035633563995361,0.8382587432861328,1.0405333042144775,1.2978131771087646,0.45373281836509705,-0.450273334980011,0.8746063113212585,0.024080071598291397,-0.29467645287513733,0.8786276578903198,0.3282942771911621,-1.016859531402588,-0.7948323488235474,-0.23494304716587067,-0.1186060756444931,-0.600696861743927,-0.40568995475769043,-0.5409477949142456,-0.2893495261669159,-0.2714821994304657,-1.0869402885437012,-0.07214751094579697,-0.35005491971969604,-0.020292729139328003,0.27343204617500305,0.11463446170091629,-0.10180671513080597,-0.3425193130970001,0.14915795624256134,0.05367640405893326,0.5591184496879578,0.7550134062767029,0.43746060132980347,0.786354124546051,0.4654206335544586,0.8918067812919617,0.8929206132888794,0.8046412467956543,0.7412684559822083,-0.48256608843803406,-0.2506743371486664,0.05237601324915886,-0.5939783453941345,-0.30473390221595764,0.4528006315231323,-1.3974748849868774,-0.2974236011505127,0.01897994987666607,0.05851335451006889,-0.36713308095932007,-0.789007842540741,0.05486483499407768,0.15298661589622498,-0.7386870980262756,0.07376901805400848,-0.4720183312892914,-0.972119927406311,0.6409027576446533,0.11836729943752289,-0.17044362425804138,0.4969462752342224,0.013473985716700554,-0.5719690918922424,0.3622537851333618,0.18801797926425934,-0.8230916857719421,-0.48653778433799744,-0.41185030341148376,-0.6488152146339417,-0.5327335596084595,-0.1579994559288025,-0.8509938716888428,-0.1703217476606369,-0.31147995591163635,-0.909666895866394]},{"shape":[9],"values":[0.31188586354255676,0.24815233051776886,0.37284326553344727,0.20038314163684845,0.2852270007133484,0.2759590446949005,0.3403647541999817,0.4380963146686554,0.6165679097175598]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-29.json new file mode 100644 index 0000000..d6700cf --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:08:44.599Z","weights":[{"shape":[20,32],"values":[0.6391023993492126,0.38057348132133484,0.9426462650299072,0.7962964177131653,-0.5609953999519348,0.4344031810760498,0.052553266286849976,0.1530744433403015,0.33276107907295227,0.8272724747657776,-0.4254121482372284,-0.17757079005241394,0.23894517123699188,0.8923983573913574,0.2664390504360199,0.324225515127182,-0.08537236601114273,0.9364163279533386,0.021578367799520493,-0.3618561327457428,0.7177506685256958,0.6004511117935181,0.44251468777656555,0.6977773904800415,0.5535681247711182,0.4263288974761963,-0.12938103079795837,0.24597832560539246,0.7263373732566833,0.4283955991268158,0.5165891647338867,-0.13501520454883575,-0.673940122127533,-0.28344017267227173,-0.041442520916461945,-0.23426379263401031,-0.1239003837108612,0.2714117169380188,0.3396298885345459,0.4342692196369171,-0.09143251180648804,0.10099812597036362,0.06529788672924042,-0.4625672996044159,0.3730318546295166,-0.03085368312895298,0.2742900550365448,1.010995626449585,0.021315976977348328,0.37511393427848816,0.11112026870250702,0.2530260980129242,0.0025628949515521526,-0.27981433272361755,-0.007306260522454977,-0.0018640609923750162,0.43860113620758057,-0.376614511013031,-0.3578411340713501,-0.024246448650956154,-0.0953017920255661,-0.07310988754034042,-0.26595771312713623,0.042417608201503754,-0.9298221468925476,0.2845316231250763,0.07347498834133148,0.10162965953350067,-0.7383854985237122,-0.024637503549456596,0.9448704123497009,0.9829685688018799,-0.15049229562282562,-0.46295851469039917,0.5478478670120239,-1.2937201261520386,-0.020867355167865753,0.34221556782722473,-0.23389513790607452,1.1391723155975342,-1.3792983293533325,0.19334501028060913,-0.3094935119152069,0.6358782052993774,-0.0068373349495232105,0.3390459716320038,-0.23045240342617035,0.1526472121477127,0.19000457227230072,0.0019011700060218573,-0.7619773745536804,-0.016319744288921356,-0.4564911425113678,0.09412683546543121,-0.35785624384880066,0.4413301348686218,1.4040254354476929,-0.5318713188171387,-0.401197224855423,-0.7299037575721741,1.562890648841858,-0.5590261220932007,-1.4415407180786133,-1.066285490989685,-0.2923581004142761,-0.39021191000938416,-0.9169483184814453,1.6557652950286865,-0.5824066400527954,-0.4136956036090851,-0.13462667167186737,-1.1531546115875244,2.1746819019317627,-0.6437262296676636,-0.03230977803468704,-1.3109380006790161,-0.7068663835525513,-0.7529966235160828,-0.7779134511947632,-0.6836992502212524,-0.3732176721096039,-0.34714311361312866,2.0684847831726074,-0.5217598676681519,-0.040102988481521606,-0.6173684000968933,-0.14379674196243286,-1.380294919013977,0.2260337918996811,0.19177228212356567,0.16538597643375397,-0.07875775545835495,0.3217502236366272,-0.05165858939290047,0.18273501098155975,0.03638793155550957,0.01683737337589264,-0.1754455417394638,0.3316183388233185,-0.02023950219154358,0.23334474861621857,0.12097962945699692,-0.6340619325637817,-0.2799012362957001,0.3946022093296051,-0.2677256762981415,-0.25795164704322815,-0.29363322257995605,-0.10138317942619324,0.09928374737501144,0.22682005167007446,-0.014074119739234447,-0.49112388491630554,-0.08515969663858414,0.28481999039649963,0.08215337991714478,-0.20570848882198334,-0.20693013072013855,-0.04706580936908722,0.6423981785774231,0.33013737201690674,0.5504401922225952,0.06024455651640892,0.12975868582725525,0.6604050993919373,-0.17312680184841156,-0.8255757689476013,-0.8228284120559692,-0.1426331102848053,0.39290133118629456,0.051897644996643066,0.3128242790699005,-0.21398721635341644,-0.27814093232154846,0.03228827565908432,-0.8062006235122681,0.5247348546981812,-0.23967935144901276,0.033493757247924805,-0.6277814507484436,0.08277284353971481,0.19008535146713257,0.269197553396225,-0.32167476415634155,-0.18207882344722748,-0.09211181104183197,0.3411150276660919,0.4255894422531128,-0.2426026612520218,0.01780071295797825,-0.2809622585773468,0.41648104786872864,0.31980201601982117,0.18705444037914276,-0.14261944591999054,-0.09443396329879761,0.6823129653930664,-0.5016603469848633,-0.15950337052345276,-0.6126629710197449,-0.2083485871553421,0.24861207604408264,-0.006785022094845772,0.2572271525859833,-0.09963063150644302,0.09794561564922333,-0.3919775187969208,-0.5401792526245117,0.361773818731308,-0.4410814344882965,-0.08219048380851746,-0.4413774609565735,0.14220288395881653,0.2874847650527954,-0.1922096461057663,0.26119449734687805,-0.22710910439491272,0.3511444330215454,0.46676018834114075,-0.01600564830005169,-0.21014627814292908,-0.10593637079000473,0.0731109231710434,-0.24559903144836426,0.2073867917060852,0.3270840048789978,-0.17943760752677917,0.19622795283794403,0.07153943926095963,-0.31786808371543884,-0.2776601314544678,-0.41799670457839966,0.07691913098096848,0.05461789295077324,0.40538445115089417,0.2022569328546524,0.401400625705719,0.2125571370124817,0.11163724213838577,0.0864800214767456,0.15031833946704865,-0.261880099773407,-0.4880647361278534,0.01822308637201786,0.18250717222690582,0.034304939210414886,0.44565773010253906,0.041082963347435,0.03900310397148132,0.5411901473999023,0.15705567598342896,0.42899495363235474,0.2950352132320404,0.3820725381374359,0.37513336539268494,0.2515803575515747,-0.26129889488220215,0.11610325425863266,-0.040309254080057144,-0.31374591588974,-0.1580009162425995,0.3370996415615082,0.1370067447423935,0.22499528527259827,-0.3208926022052765,-0.24411123991012573,-0.3082576096057892,-0.07502533495426178,0.030807772651314735,-0.24259504675865173,0.20641186833381653,0.17391319572925568,0.09524088352918625,-0.14454446732997894,-0.29664453864097595,-0.3256596028804779,0.09408468753099442,0.054440245032310486,0.14345930516719818,-0.1387060284614563,0.08897610008716583,-0.12291191518306732,-0.26952075958251953,0.30201607942581177,-0.226384237408638,0.006526411511003971,-0.04497494921088219,0.06554809212684631,-0.2877827286720276,-0.19642429053783417,0.05334412679076195,-0.0802677646279335,0.04110634699463844,0.26225948333740234,-0.0877406969666481,-0.26847758889198303,-0.05645013600587845,0.08761462569236755,-0.1811506599187851,-0.1341572254896164,-0.1876242458820343,-0.22371356189250946,0.32475826144218445,-0.1933419555425644,-0.24455884099006653,-0.15417003631591797,-0.010480343364179134,-0.018620118498802185,-0.09561926126480103,0.014183778315782547,0.1392352133989334,-0.319339781999588,0.1009097471833229,-0.2424607127904892,-0.18449200689792633,-0.09593690186738968,-0.1775977462530136,0.20008018612861633,-0.29287856817245483,0.2704543471336365,-0.18149909377098083,-0.13714246451854706,0.23916113376617432,-0.06513696908950806,-0.3318365216255188,0.3344265818595886,-0.19877110421657562,-0.2149459719657898,-0.24872975051403046,-0.2085805982351303,0.2323043942451477,-0.3096288740634918,0.09180188924074173,-0.05325072258710861,-0.15261389315128326,-0.3286064863204956,0.12371842563152313,-0.046798136085271835,0.1898041069507599,0.2973398268222809,0.31521111726760864,-0.2574419379234314,-0.24269609153270721,-0.09330355376005173,0.2608146071434021,0.035471972078084946,0.10198938101530075,0.2765210270881653,0.2984820306301117,-0.09539460390806198,-0.33363041281700134,0.14765119552612305,0.14267969131469727,-0.2784707546234131,-0.08251248300075531,-0.3157021999359131,-0.23872913420200348,-0.13242313265800476,0.09398540109395981,-0.3089441955089569,0.2913767993450165,0.08927132189273834,-0.18508478999137878,-0.28346750140190125,0.25664663314819336,0.155680313706398,-0.2234998196363449,0.008397183381021023,-0.004160357639193535,-0.2019999921321869,0.22173963487148285,0.03580755740404129,-0.3141832947731018,0.02981969155371189,-0.2436378300189972,-0.30375388264656067,0.09626308083534241,-0.2771265208721161,-0.19441673159599304,-0.2317458838224411,0.2006702423095703,-0.033630724996328354,-0.25944119691848755,0.26686516404151917,0.28312957286834717,0.03419874235987663,-0.06498231738805771,-0.033233363181352615,0.27502864599227905,-0.11266408860683441,-0.12630285322666168,-0.20442835986614227,-0.1662922203540802,-0.2546364963054657,0.04330361634492874,-0.01507651712745428,-0.16447748243808746,-0.2895151674747467,0.1895657777786255,0.1271122694015503,-0.0030199908651411533,-0.10268381237983704,0.28287413716316223,0.016575084999203682,0.08941531926393509,-0.32065320014953613,-0.32382339239120483,-0.19963069260120392,-0.052365537732839584,-0.28836917877197266,0.13566270470619202,-0.3372613191604614,0.18989655375480652,-0.27656176686286926,-0.19498063623905182,0.16953499615192413,0.03923271223902702,-0.12663494050502777,-0.04679672792553902,0.025088783353567123,0.10412254184484482,-0.13850249350070953,-0.28621184825897217,0.2964819669723511,0.17276152968406677,0.2320781648159027,0.2601163387298584,-0.1254737377166748,0.27195900678634644,-0.2764161229133606,0.19826556742191315,-0.08129717409610748,-0.32191359996795654,-0.09866595268249512,-0.3370658755302429,0.32060348987579346,0.23483265936374664,0.32758647203445435,-0.008005843497812748,-0.03475352004170418,0.17253394424915314,-0.31550636887550354,-0.3153414726257324,0.05765024945139885,0.04448826611042023,-0.1933569312095642,0.08208385109901428,-0.08040846884250641,-0.06940650194883347,-0.324400931596756,-0.2259143590927124,-0.26362845301628113,0.3079461455345154,-0.15539273619651794,0.1819118857383728,0.27532097697257996,0.26639828085899353,0.010658481158316135,-0.17493796348571777,-0.3300977349281311,0.29220709204673767,0.2599017322063446,0.04756850004196167,-0.059570275247097015,-0.08976628631353378,0.22802956402301788,0.32732927799224854,-0.1882065087556839,-0.31694450974464417,0.29831957817077637,0.05190245807170868,0.2409208118915558,0.031892191618680954,-0.1602487862110138,0.14651267230510712,-0.016122858971357346,-0.2965809404850006,-0.2826194763183594,-0.14126968383789062,-0.1046372503042221,-0.3082926571369171,-0.2904888987541199,-0.08982454240322113,-0.17801745235919952,0.052539680153131485,0.24960577487945557,0.15505337715148926,-0.23619088530540466,-0.289535790681839,-0.16723962128162384,0.2220308780670166,-0.32924872636795044,0.0705408826470375,-0.20539338886737823,-0.008918649516999722,-0.049270931631326675,-0.05704767629504204,0.12185558676719666,0.1397353708744049,0.05760479345917702,0.06733670830726624,-0.3078795075416565,0.1179436519742012,-0.08313833177089691,-0.17106182873249054,-0.0005227841320447624,-0.03796897083520889,0.16242583096027374,0.30404922366142273,-0.15090718865394592,0.09024182707071304,-0.29698801040649414,-0.29455670714378357,0.24843721091747284,-0.30750617384910583,0.06157493591308594,-0.15407976508140564,0.0942758247256279,0.3283114433288574,-0.13505245745182037,0.18329043686389923,0.19486740231513977,0.1625032126903534,0.19196608662605286,-0.3030199408531189,0.25918152928352356,-0.039293523877859116,0.2663266062736511,-0.3314705789089203,-0.177592933177948,-0.11422146111726761,0.20270659029483795,0.17440325021743774,-0.06285388022661209,-0.05576534941792488,0.21810534596443176,-0.07453428208827972,0.08697028458118439,-0.17093811929225922,0.10518180578947067,-0.05939870327711105,0.09414514899253845,-0.18771566450595856,-0.18695886433124542,-0.0350283719599247,0.18798428773880005,0.20462383329868317,0.21693788468837738,-0.15789081156253815,-0.15860235691070557,0.2525888681411743,0.21634890139102936,-0.2670150101184845,-0.012069499120116234,0.01027685310691595,-0.18566779792308807,0.2130729705095291,0.3190773129463196,0.18918101489543915,0.018010135740041733,0.12695255875587463,0.18267452716827393,-0.15423324704170227,-0.2034236192703247,0.014284671284258366,0.18468818068504333,0.33643946051597595,-0.15051299333572388,-0.2314167469739914,-0.0523761585354805,0.14755742251873016,-0.00008423161489190534,-0.13706859946250916,0.11415454000234604,-0.2260385900735855,-0.039389897137880325,0.0375506766140461,0.19665509462356567,0.016114849597215652,0.2549721896648407,-0.3350106477737427,-0.30734384059906006,-0.1705845296382904,0.09172619879245758,-0.04297668859362602,-0.14836105704307556,0.3130209743976593,-0.0191692803055048,-0.27545690536499023,-0.11251987516880035,0.3021652102470398,-0.1646479219198227,-0.16116838157176971,0.0058298781514167786,0.3214554190635681,0.20260120928287506,0.056222133338451385,-0.039236389100551605,0.3286769688129425,0.15509489178657532,-0.2392444908618927,-0.2254180610179901,-0.2852950692176819,-0.1136481836438179,-0.13983850181102753,-0.07416412979364395,-0.05411679297685623,-0.05202828720211983,-0.1479921191930771,-0.19165799021720886,-0.1191943809390068,0.32843661308288574,-0.2583591043949127,0.15565258264541626,-0.23124532401561737,-0.25017789006233215,-0.24929681420326233,-0.16308808326721191,0.011151690967381,-0.22068984806537628,-0.06739436089992523,-0.04862198978662491,0.043446995317935944,-0.25426149368286133,0.1158319041132927,0.003880526637658477,0.23718756437301636,0.2359488606452942,0.2726241648197174,0.16580229997634888,-0.32953324913978577,-0.1648465245962143,-0.24985037744045258,0.0041654957458376884,-0.006338762119412422,0.22419729828834534,-0.15879204869270325,0.10900504142045975,-0.1889452040195465,-0.28885695338249207]},{"shape":[32],"values":[-0.535541296005249,0.7272632122039795,0.9358627796173096,0.8281551599502563,-0.4824203848838806,0.8148972988128662,-0.577572762966156,-0.565302312374115,0.9566614031791687,0.8166571259498596,0.4960559904575348,-0.5838330984115601,0.7853316068649292,0.8393940925598145,0.589749813079834,-0.0484868623316288,-0.47787225246429443,0.7992264032363892,0.8276607394218445,-0.46649372577667236,0.8205110430717468,0.7408275604248047,0.8124912977218628,0.7857515811920166,0.6299567222595215,0.6635899543762207,-0.5111144781112671,0.6664459109306335,0.8789012432098389,0.7313387393951416,0.7814677357673645,0.47310885787010193]},{"shape":[32,32],"values":[-0.7367697358131409,-0.8608131408691406,-0.8345490097999573,-0.7944173812866211,-0.1049969345331192,-0.9682492613792419,-1.9361847639083862,0.02490418031811714,-0.9686928391456604,-0.6964507102966309,-0.740224301815033,0.8665955066680908,1.0359251499176025,-0.6269744634628296,-0.3765285611152649,-2.4857163429260254,0.35958388447761536,0.132712721824646,-0.16832517087459564,-0.9775842428207397,-0.36040428280830383,-0.5803223252296448,-0.7315854430198669,-0.6772711873054504,0.061760589480400085,0.7875481247901917,-0.7149292826652527,-0.53830885887146,-0.8409906625747681,0.052331406623125076,-1.788748860359192,-0.9116695523262024,0.03301217034459114,0.5529901385307312,0.38031935691833496,0.2177111655473709,-0.13817007839679718,0.16006185114383698,0.18535618484020233,-0.3780374228954315,0.649009108543396,0.4098162055015564,0.09153593331575394,0.38658297061920166,0.16388823091983795,0.38988253474235535,0.44551920890808105,0.09382376819849014,0.15230995416641235,0.03352401778101921,-0.24642899632453918,0.2707231044769287,0.4717544615268707,0.27956148982048035,0.23280072212219238,0.47632113099098206,0.05395370349287987,0.30139607191085815,-0.06332165002822876,0.29796072840690613,0.3778945505619049,-0.0925002321600914,-0.3016092777252197,0.6302995681762695,0.36095133423805237,0.8684918880462646,0.7604043483734131,0.7484803795814514,0.13871018588542938,0.1611415445804596,0.22633661329746246,0.18299522995948792,0.9457141757011414,0.8349443078041077,0.4096786081790924,0.16017389297485352,0.02133525349199772,0.35882827639579773,0.7150648832321167,0.289596825838089,-0.06221304088830948,-0.12964753806591034,0.08139453083276749,0.6911130547523499,0.799223005771637,0.13976262509822845,0.28784456849098206,0.5373639464378357,-0.2940272390842438,0.01531369611620903,-0.1588769257068634,0.6016964912414551,0.4200325608253479,0.12458403408527374,0.4528123736381531,0.3622775375843048,0.6264531016349792,0.7663202285766602,0.21688881516456604,0.15850026905536652,-0.034319743514060974,0.3718107342720032,0.11969812959432602,0.07212729007005692,0.6935317516326904,0.5853021144866943,0.6080570816993713,0.4021660089492798,-0.3291120231151581,0.16335178911685944,0.1907493621110916,0.13158763945102692,0.1785460114479065,-0.291120707988739,0.1889348179101944,0.6138857007026672,0.3198133409023285,0.18653593957424164,0.23016156256198883,0.6108201146125793,-0.28543007373809814,0.14707337319850922,-0.005498146638274193,0.3679806888103485,0.3239549696445465,0.08952587842941284,0.2938152551651001,0.5650700330734253,-0.49512091279029846,-0.9685725569725037,-0.7683942914009094,-0.37255996465682983,-0.11024339497089386,-0.4504961669445038,-0.8426375985145569,-0.03095344267785549,-0.8228810429573059,-0.906998872756958,-0.5428248047828674,0.31425338983535767,0.564967930316925,-0.8345245122909546,-0.2593088150024414,-0.9453229904174805,0.5069200396537781,-0.22111651301383972,-0.24217158555984497,-0.683669924736023,-0.7107090950012207,-0.5271533131599426,-0.2863655388355255,-0.2827983796596527,0.20639212429523468,0.8729278445243835,-0.4837771952152252,-0.8350332379341125,-0.853360116481781,0.0970439687371254,-1.002724051475525,-0.43984708189964294,0.5284414291381836,0.6634003520011902,0.3657049536705017,0.23526644706726074,0.08080738037824631,0.5621023774147034,0.22684721648693085,-0.17308886349201202,0.7692847847938538,0.25930917263031006,0.3381270170211792,-0.5648896098136902,-0.609312891960144,0.21345412731170654,0.5940518379211426,0.5347725749015808,-0.5709312558174133,-0.3181512951850891,-0.2468946874141693,0.3528001308441162,0.3094421327114105,0.06093928962945938,0.07000172883272171,0.27134478092193604,-0.2543785274028778,-0.8211545944213867,0.22544190287590027,0.1543719470500946,0.40805843472480774,0.3961769640445709,0.35882991552352905,0.37200409173965454,-1.1075341701507568,-1.1914048194885254,-1.012686014175415,-1.0098739862442017,0.03223944827914238,-0.7208364009857178,0.9574322700500488,0.8435638546943665,-0.8409309387207031,-1.2451703548431396,-1.0451512336730957,-1.6633424758911133,0.03283059224486351,-0.7056416869163513,-0.8273889422416687,0.35281622409820557,0.07967008650302887,-0.11465445905923843,0.05709076300263405,-1.135404348373413,-1.2695950269699097,-0.8872682452201843,-1.0644549131393433,-0.548446536064148,0.21600750088691711,0.5891887545585632,-0.8124814033508301,-0.8739625811576843,-1.2706955671310425,-0.05443944036960602,-0.42299866676330566,-0.8934383392333984,-1.0035498142242432,-0.8079115152359009,-0.7863532900810242,-0.6802321076393127,-0.24324491620063782,-0.9779979586601257,0.7528831362724304,0.6738393902778625,-1.0344924926757812,-1.0327948331832886,-0.5401116013526917,-1.2390087842941284,0.19573424756526947,-0.9775381088256836,-0.7087280750274658,0.21871791779994965,0.22856514155864716,-0.2555898129940033,0.010529821738600731,-0.9208349585533142,-0.6381438970565796,-0.6960060596466064,-0.8923349380493164,-0.8293600678443909,-0.2613038122653961,0.4165436625480652,-0.5612114071846008,-0.4652707278728485,-0.9368591904640198,-0.0437001958489418,-0.6540175676345825,-1.0393579006195068,0.6360498070716858,0.6712161898612976,0.13162606954574585,0.6089993119239807,-0.10899098217487335,0.2555585503578186,0.18076948821544647,-0.1954994797706604,0.3534925580024719,0.5073918700218201,0.397973895072937,0.24644997715950012,-0.1392027586698532,0.4069287180900574,0.5458078384399414,0.06792279332876205,0.062870554625988,0.02123861014842987,-0.23601984977722168,0.3370659649372101,0.44546613097190857,0.34138163924217224,0.5878541469573975,0.2398335337638855,-0.07082757353782654,0.2237270027399063,0.48822274804115295,0.35847270488739014,0.49968165159225464,0.18187834322452545,0.4862784445285797,0.5241104364395142,0.5385291576385498,0.2454238086938858,0.5080305337905884,0.6092517971992493,0.232495978474617,0.5711464285850525,-0.30657193064689636,-0.5081033110618591,0.7099441885948181,0.3953400254249573,0.4683050811290741,0.7068805694580078,0.5096142292022705,0.24956095218658447,0.6321644186973572,-0.026215534657239914,-0.10720203816890717,-0.07319022715091705,0.04080859571695328,0.4767029285430908,0.38441213965415955,0.35133519768714905,0.5274025201797485,0.052439846098423004,-0.2535300850868225,0.3945041596889496,0.4213784635066986,0.014713388867676258,-0.08545976877212524,-0.2086237221956253,0.35896334052085876,0.5202863216400146,0.576945960521698,0.31396061182022095,0.3551044762134552,0.41440072655677795,-0.17532120645046234,0.3365139961242676,0.7796941995620728,0.4339337944984436,0.45178383588790894,0.6368675231933594,0.8890950083732605,-1.036537528038025,-0.9216045141220093,0.6194100975990295,0.540532648563385,0.5245930552482605,-0.6897164583206177,0.22735728323459625,-0.08865942806005478,0.7164328098297119,0.6238144040107727,0.4788742661476135,0.6950497627258301,0.766116201877594,-0.2654750645160675,-0.1199248880147934,-0.281406968832016,0.4256623685359955,0.7105535864830017,0.4662519097328186,-0.4169926047325134,0.9410077929496765,-0.7821959853172302,-1.0497366189956665,-0.6383978128433228,-0.8941811919212341,-0.13956022262573242,-1.1515307426452637,-1.9499218463897705,0.013426940888166428,-1.0578936338424683,-1.133901596069336,-1.1596534252166748,0.6029706001281738,0.7969734072685242,-0.47777944803237915,-0.8692079186439514,-1.4617377519607544,0.41884946823120117,-0.02309415675699711,-0.05779329314827919,-1.1296361684799194,-0.8297510147094727,-0.5590726733207703,-0.7932140231132507,-0.8278491497039795,0.015004018321633339,0.7176176309585571,-0.3105892241001129,-0.6729481816291809,-0.9257175326347351,-0.09541865438222885,-1.1194206476211548,-1.2360689640045166,0.3234655559062958,0.4033789038658142,0.5976653099060059,0.06012974679470062,0.016997992992401123,-0.03669818490743637,0.5450097322463989,0.24559623003005981,0.347522497177124,0.4013184607028961,0.08686456084251404,0.32567498087882996,-0.40224361419677734,0.3499826490879059,0.17768070101737976,0.10339253395795822,0.1988471895456314,-0.14690084755420685,-0.12973608076572418,0.7277492880821228,-0.0004122219979763031,0.3351089358329773,0.08322195708751678,0.35528630018234253,-0.07298459857702255,0.38148996233940125,-0.055637817829847336,0.595310628414154,0.5317754149436951,0.047223370522260666,0.10180637985467911,0.671393871307373,0.7152933478355408,0.6459918022155762,0.5904613733291626,0.680649995803833,-0.22614333033561707,0.5135300755500793,0.40940383076667786,-0.13432171940803528,0.9696800708770752,0.5427212715148926,0.5753574967384338,-0.19496560096740723,-0.512688934803009,0.5094661116600037,0.5094481706619263,0.2648739814758301,-0.33061283826828003,-0.36865559220314026,-0.14266306161880493,0.7273135781288147,0.4865019917488098,0.5394076704978943,0.4225687086582184,0.03779078647494316,-0.08263150602579117,-0.07535982877016068,0.09115563333034515,0.5945996642112732,0.32106107473373413,-0.2968815863132477,0.2928029000759125,0.8472869396209717,0.3668413758277893,0.4568702280521393,0.6251341700553894,0.1438063234090805,-0.2241344451904297,0.6534435749053955,0.11052389442920685,0.05928861349821091,0.6237612366676331,0.30406635999679565,0.6256980299949646,-0.04852820932865143,0.041902441531419754,0.08261308073997498,0.15017373859882355,0.24461029469966888,-0.030539683997631073,-0.022251473739743233,0.06433441489934921,0.7735841870307922,-0.004867115989327431,0.1801886260509491,0.004454059526324272,-0.10719742625951767,0.04233578220009804,-0.21211346983909607,0.7145293951034546,0.8502799272537231,0.01237458735704422,-0.2097191959619522,0.6174805164337158,0.28359752893447876,-0.5950711965560913,-0.06833712011575699,-0.4688926935195923,-0.6029322147369385,-0.15748216211795807,-0.4537726640701294,0.34133175015449524,0.07197506725788116,-0.5375964641571045,-0.9015837907791138,-0.6867772936820984,-1.761055827140808,0.046538013964891434,-0.5283147692680359,-0.8141089081764221,0.33059781789779663,-0.09964873641729355,0.29039859771728516,-0.10748670250177383,-0.24192281067371368,-0.9317715764045715,-0.4010254442691803,-0.43902310729026794,-0.6249385476112366,-0.3027019798755646,0.0891815721988678,0.24703651666641235,-0.07759924978017807,-0.6111260056495667,-0.8224496841430664,0.22196409106254578,-0.35799509286880493,-0.2678107023239136,-0.6478108763694763,-0.7774749398231506,-0.3866640031337738,-0.21968194842338562,-0.733542799949646,-2.0213088989257812,-0.3278009593486786,-0.878650426864624,-0.47903093695640564,-0.537074089050293,0.43328118324279785,1.0051579475402832,-0.20527514815330505,-0.10691800713539124,-1.615195631980896,0.697160005569458,-0.21699239313602448,-0.13344265520572662,-0.42870959639549255,-0.5168591737747192,-0.4663296937942505,-0.5155421495437622,-0.22134634852409363,-0.03807176277041435,0.9440374970436096,-0.08592919260263443,-0.7213619947433472,-0.1675245761871338,-0.2760944962501526,-0.8550915122032166,-0.6229271292686462,0.6289592981338501,0.5024721622467041,0.523697555065155,0.21840783953666687,-0.09551900625228882,0.6167945861816406,0.5425094366073608,0.10848173499107361,0.8498648405075073,0.2719484865665436,0.09502299129962921,-0.07457130402326584,-0.7220152020454407,0.18698473274707794,0.0388852134346962,0.5404734015464783,-0.09635576605796814,-0.08723843097686768,-0.24725481867790222,0.2244870811700821,0.1165040135383606,0.5700244903564453,0.29100510478019714,0.1810278296470642,-0.2887360751628876,-0.22848108410835266,-0.0608372762799263,0.3237757682800293,0.2971678376197815,-0.23684780299663544,0.6470539569854736,0.4546520709991455,1.0460885763168335,0.9916661381721497,0.7896652817726135,0.8463247418403625,-0.043954405933618546,1.0383657217025757,-0.23913605511188507,-0.27969688177108765,0.6582992672920227,0.7390725016593933,0.7945716977119446,0.387164831161499,-0.5242782831192017,0.9212431311607361,0.43728506565093994,0.03778594732284546,-0.15312734246253967,0.19697566330432892,0.13751022517681122,0.7222461700439453,0.9195709824562073,0.8250176310539246,0.5789785385131836,0.674288272857666,0.07451173663139343,-0.6037865281105042,0.5981327295303345,0.6381885409355164,0.8550645112991333,0.488752156496048,0.7242274284362793,0.8780781030654907,-0.7290894389152527,-0.482623428106308,-0.9009523391723633,-0.7937382459640503,0.13904383778572083,-0.5106227397918701,0.09720268845558167,0.3273299038410187,-0.7508611083030701,-0.9869323372840881,-0.7397869229316711,-1.1618850231170654,-0.2594808042049408,-0.4105968475341797,-0.6241209506988525,0.20097559690475464,-0.2687079906463623,-0.1517757624387741,-0.19226834177970886,-0.768913209438324,-0.7086771726608276,-0.4847211241722107,-0.39728569984436035,-0.7634763121604919,-0.21182343363761902,-0.022271284833550453,-0.0314163938164711,-0.45519694685935974,-0.566202700138092,-0.183908149600029,-0.4955263137817383,-0.7370660901069641,0.14991939067840576,0.5830006003379822,0.33904051780700684,0.5380645990371704,-0.07699805498123169,0.4481423795223236,0.38508763909339905,0.26668307185173035,0.44960808753967285,0.25350049138069153,0.35285666584968567,0.11949340999126434,-0.11503437161445618,0.2918057441711426,0.20056267082691193,-0.0021146470680832863,-0.01043744944036007,0.26183709502220154,0.1873006373643875,0.24038539826869965,0.4334571361541748,0.2912563383579254,0.47150424122810364,0.09111590683460236,-0.24832957983016968,0.40198472142219543,0.06342672556638718,0.6133584380149841,0.3302387297153473,-0.025792600587010384,0.23820769786834717,0.5271996855735779,0.6814520359039307,0.6164101362228394,0.4206262230873108,0.44579771161079407,0.14333298802375793,0.09714685380458832,0.5118852257728577,0.007108344230800867,0.524025022983551,0.6375269293785095,0.623489499092102,-0.00017534266225993633,-0.43636104464530945,0.5140472054481506,0.5105812549591064,0.3820931315422058,-0.2867055833339691,-0.11016752570867538,-0.17942753434181213,0.4577258825302124,0.32565200328826904,-0.1234203577041626,0.2945062518119812,0.42274436354637146,0.2419346123933792,0.25369393825531006,0.4709474444389343,0.12816865742206573,-0.1299961507320404,0.34937670826911926,-0.2069704532623291,0.13490170240402222,0.3678557872772217,0.331820547580719,0.6713330149650574,0.6739993691444397,0.08967189490795135,0.35116046667099,-0.1403542160987854,-0.29302486777305603,0.6958710551261902,0.6436797976493835,0.5367410182952881,0.32355910539627075,0.27272355556488037,0.1478409320116043,0.5466613173484802,-0.19221527874469757,-0.2305736541748047,-0.014983220025897026,0.20616020262241364,0.133255273103714,0.6763412356376648,0.5288422703742981,0.7043817639350891,0.4709832966327667,-0.26619845628738403,0.3754923343658447,0.3020666241645813,0.3066869080066681,0.18707311153411865,0.27916353940963745,0.03881237655878067,0.3711484968662262,0.6403926610946655,0.8959643840789795,0.680761992931366,0.4126128852367401,-0.3234880566596985,0.5521929860115051,0.3200850784778595,-0.16762839257717133,0.7561312317848206,0.5697205662727356,0.6184045672416687,-0.03928953409194946,-0.3015616536140442,0.3491130769252777,0.10305297374725342,0.5172615647315979,-0.05752670764923096,-0.2058628648519516,0.041331928223371506,0.2342074066400528,0.6284107565879822,0.1020737886428833,0.19683943688869476,0.3018590211868286,-0.28230857849121094,-0.4347985088825226,0.36732861399650574,0.36585307121276855,0.32338541746139526,-0.2601642608642578,0.1375868320465088,0.7269213199615479,0.3081243336200714,0.5557482838630676,0.43066850304603577,0.37780827283859253,-0.28817903995513916,0.21002665162086487,0.47846487164497375,0.3482995629310608,0.25084877014160156,0.11405972391366959,0.40401867032051086,-0.08718621730804443,-0.5578953623771667,-0.0940627008676529,-0.1381879448890686,0.15661616623401642,-0.17483435571193695,0.01795579493045807,-0.0330454520881176,0.48836567997932434,-0.0947888121008873,0.13616830110549927,0.33659735321998596,0.06710656732320786,-0.2830454707145691,-0.23945531249046326,0.07446834444999695,0.2660250663757324,0.2611480951309204,-0.1553240269422531,0.4367433190345764,0.13785295188426971,0.1654612272977829,0.04965272918343544,0.5649610757827759,0.5260438919067383,0.10880398005247116,0.2957395911216736,0.15890002250671387,-0.23345379531383514,0.5754918456077576,0.05983564630150795,0.35640817880630493,0.3825795352458954,0.09545048326253891,0.03406411036849022,0.09996440261602402,0.2319573014974594,0.025135116651654243,-0.19543397426605225,-0.2651109993457794,0.37996262311935425,0.4126223027706146,0.37995147705078125,0.32802948355674744,0.16266556084156036,-0.3001033365726471,0.056284889578819275,0.010050943121314049,0.4993937015533447,-0.09784886986017227,-0.3023407757282257,0.11004003137350082,0.2092067301273346,-0.3547690212726593,-1.1106370687484741,-1.0071384906768799,-0.9243505597114563,-0.03755427151918411,-0.9502134919166565,-1.5785505771636963,0.032830655574798584,-0.5420046448707581,-1.001657247543335,-0.8946472406387329,0.30093449354171753,0.4283911883831024,-0.7465859651565552,-0.40964454412460327,-1.7481894493103027,0.49276429414749146,0.2951739430427551,0.028828665614128113,-0.7293881177902222,-0.8269762992858887,-0.5111383199691772,-0.6836205720901489,-0.3220383822917938,-0.10209576040506363,0.9521729946136475,-0.7782274484634399,-0.4385872483253479,-0.7031773328781128,-0.2487986981868744,-1.4996240139007568,-0.5114656686782837,0.5567693710327148,0.4476931393146515,0.11876312643289566,0.5066509246826172,-0.32172542810440063,0.3452102541923523,-0.1737375557422638,-0.060371510684490204,0.27651360630989075,0.24709704518318176,0.4994443655014038,0.4226158559322357,0.29831182956695557,0.3347320556640625,0.10361821204423904,-0.012388462200760841,0.09790637344121933,0.2783873379230499,0.0066877868957817554,0.2884143888950348,0.20091648399829865,0.22502027451992035,0.32026734948158264,0.4130535125732422,-0.2778762876987457,-0.0843939557671547,-0.03303878381848335,0.12408998608589172,0.3901461064815521,0.3607456088066101,0.06183719262480736,0.34583142399787903,0.585727334022522,0.45303869247436523,0.6103558540344238,0.492367684841156,0.24747279286384583,0.22399015724658966,0.021687688305974007,-0.2831557095050812,0.8548179268836975,0.5833033323287964,0.12522102892398834,0.7335745096206665,0.3388819098472595,0.2916833162307739,0.06845194846391678,0.11090153455734253,0.15760639309883118,0.2749482989311218,0.15104827284812927,0.27855202555656433,0.3434959948062897,0.5597327351570129,0.5671865940093994,0.09178388863801956,0.24614067375659943,0.13239941000938416,0.33055227994918823,0.45868900418281555,0.22209018468856812,-0.41776585578918457,0.39126741886138916,0.24404726922512054,0.17249485850334167,0.7623376250267029,0.7225362062454224,0.389369398355484,0.2612190544605255,0.6366968154907227,0.022350240498781204,0.14629927277565002,0.5483022332191467,0.2564643621444702,0.37811872363090515,-0.004325950983911753,0.026804467663168907,0.345696359872818,0.04788626730442047,0.47694212198257446,-0.16791154444217682,0.16633687913417816,0.29390987753868103,0.11365387588739395,0.360696941614151,0.2874034345149994,0.3696129024028778,-0.017196791246533394,-0.2441612333059311,-0.257981538772583,0.10626047104597092,0.4661006033420563,0.4225597083568573,0.07967360317707062,0.07338571548461914,0.22966326773166656,0.5688886046409607,0.7059012055397034,0.581020712852478,0.21518798172473907,-0.29179897904396057,0.5992696285247803,0.10107078403234482,0.09028606861829758,0.5665662288665771,0.442545086145401,0.2932961583137512,0.2763834297657013,0.519378662109375,0.3389441668987274,0.251521497964859,0.13793595135211945,0.06336285918951035,0.0012089957017451525,-0.25853437185287476,0.46623942255973816,0.057364851236343384,0.06915578246116638,0.11032118648290634,0.27806732058525085,0.14283935725688934,0.5139666795730591,-0.015286135487258434,0.138596773147583,0.16498634219169617,0.10587136447429657,0.16423405706882477,0.4403073191642761,0.7404043078422546,0.39237695932388306,0.49123039841651917,0.5229947566986084,-0.1892024576663971,0.07304122298955917,0.40779930353164673,0.2210075408220291,0.3780817985534668,0.7924168109893799,0.3823048174381256,-0.3699595630168915,-0.7348877787590027,0.6817556619644165,0.48768749833106995,-0.060923684388399124,0.25063878297805786,0.11821567267179489,0.10039065033197403,0.319172739982605,0.6452303528785706,0.057086020708084106,0.7988407015800476,0.5698531270027161,-0.2479703724384308,-0.24736708402633667,-0.35640084743499756,0.5679411888122559,0.19396136701107025,0.6917622685432434,-0.9059903025627136,0.2961571514606476]},{"shape":[32],"values":[0.7280148863792419,0.8017734289169312,0.8208567500114441,0.673235297203064,-0.04577897861599922,0.665225088596344,-0.13658523559570312,-0.22148855030536652,0.8243880867958069,0.6892637014389038,0.646713376045227,-0.09173183888196945,-0.3391577899456024,0.5464171171188354,0.5329561829566956,0.23522713780403137,-0.06355734169483185,-0.0073232389986515045,0,0.6629282236099243,0.5940741896629333,0.5364127159118652,0.633704423904419,0.5277343988418579,0,-0.14091569185256958,0.5739630460739136,0.7069337964057922,0.5743338465690613,0.28242719173431396,0.531768262386322,0.7667936682701111]},{"shape":[32,9],"values":[0.09123821556568146,0.6617856025695801,0.24330094456672668,0.10531903058290482,0.6705424189567566,0.5649170875549316,0.7091464400291443,0.48072072863578796,0.5578129887580872,0.7392888069152832,0.6414330005645752,0.10437825322151184,0.6429644823074341,0.4555151164531708,0.5279796123504639,0.6602430939674377,0.5181284546852112,0.45763933658599854,0.449669748544693,0.48479029536247253,0.3064875602722168,0.5123041272163391,0.5961171984672546,0.6903401017189026,0.4326314628124237,0.6338845491409302,0.5295891761779785,0.4822080433368683,0.4439462721347809,0.5292124152183533,0.18072091042995453,0.5320169925689697,0.5925104022026062,0.41056475043296814,0.19390268623828888,0.46761563420295715,-0.012419662438333035,0.13855281472206116,0.13174177706241608,0.30985528230667114,-0.2953353226184845,0.032052408903837204,-0.24519121646881104,-0.09345321357250214,-0.04238235205411911,0.5973278284072876,0.4042258560657501,0.21608632802963257,0.740566074848175,0.8711880445480347,0.26257985830307007,0.7175714373588562,0.2837029695510864,0.6304174065589905,0.19260533154010773,0.060942985117435455,-0.08827280253171921,-0.09115887433290482,-0.13284440338611603,-0.4755409359931946,-0.06234753504395485,-0.27457353472709656,-1.1608749628067017,-0.20596669614315033,-0.2973499894142151,-0.4103952646255493,0.004685987718403339,0.24927909672260284,-0.2561430335044861,-0.7749142050743103,-0.38785412907600403,-0.3077903091907501,0.4936121702194214,0.7541041374206543,0.772003710269928,0.5383542776107788,0.48591306805610657,0.44132035970687866,0.47425687313079834,0.5384610295295715,0.516507625579834,0.32186058163642883,0.3164726495742798,0.7150828838348389,0.5956563949584961,0.824757993221283,0.880773663520813,0.6955704689025879,0.6418824791908264,0.8665241599082947,0.5012450218200684,0.6827652454376221,0.3703654110431671,0.10220494121313095,0.3963617980480194,0.24299879372119904,0.5005046129226685,0.6722025871276855,0.6078663468360901,-0.6426119804382324,-0.3766026794910431,0.05778185650706291,-0.3999578654766083,0.022455496713519096,-0.11156346648931503,-1.3753280639648438,-0.2845809757709503,-0.31118661165237427,-0.34414345026016235,-0.6371647715568542,-0.5088648796081543,-0.7306487560272217,-0.42761728167533875,-0.4843444526195526,-0.5294209718704224,-0.8381801843643188,-1.0142958164215088,0.548881471157074,0.3873250484466553,0.23819059133529663,0.3426169753074646,0.7843040227890015,0.579258382320404,0.06321916729211807,0.7468637824058533,0.5629233717918396,0.14827632904052734,0.6330176591873169,0.491583913564682,0.43337053060531616,0.3517214059829712,0.5287548303604126,0.1857757419347763,0.08599875122308731,0.6531364321708679,0.3415343463420868,-0.3698701858520508,-0.5250510573387146,0.24094615876674652,-0.5389368534088135,-0.5224391222000122,0.20707157254219055,-0.090138740837574,-0.8755277395248413,-0.4488322138786316,-0.32569482922554016,-0.1698635220527649,-0.1522901952266693,-0.5485466718673706,-0.9603429436683655,0.22846096754074097,-0.6302030682563782,-0.3382241427898407,-0.1963152140378952,-0.04882429912686348,-0.07414931803941727,-0.2743663489818573,-0.1644791066646576,-0.3873732089996338,-0.15051321685314178,0.17454387247562408,0.12534572184085846,-0.10281548649072647,0.14639674127101898,0.3766133487224579,-0.04843418672680855,0.15429474413394928,-0.3767642676830292,-0.22548599541187286,0.053284261375665665,-0.07431764155626297,0.7336568832397461,0.14464734494686127,0.8131166100502014,0.4300329089164734,0.6562955379486084,0.30840325355529785,0.44844192266464233,0.40444815158843994,0.3184632956981659,0.1446506828069687,0.49045735597610474,0.9768350124359131,0.3860470950603485,0.16435997188091278,0.9150012731552124,0.4017009139060974,0.5455241799354553,0.9841856956481934,0.6629559397697449,0.43343985080718994,0.4404747486114502,0.3231322169303894,0.4558604657649994,0.14603210985660553,0.5117748975753784,0.15331365168094635,0.62690269947052,0.3623994290828705,0.5390427708625793,0.6947528719902039,0.6569466590881348,0.043805647641420364,0.6840783953666687,0.4270867109298706,0.10505012422800064,0.6150314211845398,-0.07152655720710754,0.7233386039733887,0.7227587103843689,0.2614886164665222,0.6109886169433594,0.39338675141334534,0.15490026772022247,0.8302647471427917,0.7347065210342407,0.05535309389233589,-0.2606797218322754,0.1718757450580597,0.37336328625679016,0.3142111003398895,-0.20520707964897156,0.24975085258483887,-0.16596050560474396,-0.1980413794517517,-0.7490605711936951,-0.5067132115364075,-0.24486075341701508,-0.8754208087921143,-0.7437606453895569,-0.3083941638469696,-0.7763170599937439,-0.06004573777318001,-0.3253583610057831,0.9018977880477905,-0.02544630505144596,-0.14698773622512817,0.6285445094108582,0.2796784043312073,-0.1478222906589508,0.7588599920272827,0.6316444277763367,0.5747102499008179,0.14487212896347046,0.5651478171348572,0.23411476612091064,0.631796658039093,0.4849212169647217,0.5627936124801636,0.4163910150527954,0.7621088624000549,0.1972925215959549,0.7900289297103882,0.592153787612915,0.904146134853363,0.9839764833450317,0.6204842329025269,0.8388970494270325,0.5803261995315552,0.8759697079658508,0.7744930386543274,0.502464771270752,0.17803922295570374,0.29863494634628296,0.0797848105430603,0.4010145962238312,0.44647490978240967,0.5515180230140686,0.8024144768714905,0.672690212726593,0.9888728857040405,0.3733035922050476,-0.10081188380718231,0.7847274541854858,0.45449164509773254,-0.22305913269519806,0.7782497406005859,0.639567494392395,-0.3706437051296234,0.5360849499702454,0.1471039354801178,0.6856911778450012,0.5109012126922607,0.07458172738552094,0.5510691404342651,0.6495198011398315,0.4653341472148895,0.389864444732666]},{"shape":[9],"values":[0.24956022202968597,0.25809070467948914,0.1910065859556198,0.30185025930404663,0.20741170644760132,0.30729928612709045,0.5101502537727356,0.5002355575561523,0.4286852777004242]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-47.json new file mode 100644 index 0000000..35b33e7 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:09:13.980Z","weights":[{"shape":[20,32],"values":[0.6674160361289978,0.08654796332120895,-0.26076266169548035,0.40402525663375854,0.15656417608261108,0.4401898682117462,0.031527262181043625,0.2592830955982208,0.4022066593170166,0.022378088906407356,0.15620531141757965,-0.2140088826417923,0.29972130060195923,-0.1543029099702835,0.3992367684841156,0.27996793389320374,-0.21590960025787354,0.36182883381843567,0.6955573558807373,0.7691106200218201,0.2846873104572296,0.5864145755767822,-0.039498187601566315,0.048319537192583084,0.33740290999412537,0.38462451100349426,0.26872748136520386,0.8134734034538269,0.22092033922672272,0.09073856472969055,0.38574329018592834,0.3512957692146301,0.11306566745042801,0.6829332113265991,0.4783342480659485,-0.32377490401268005,0.3695406913757324,0.3614142835140228,0.14228886365890503,0.08460448682308197,0.1530589759349823,-0.34276556968688965,0.12246474623680115,-0.05933723598718643,-0.09586882591247559,-0.052425235509872437,0.24436168372631073,-0.238731250166893,0.18501076102256775,-0.23092782497406006,-0.11803276091814041,0.3194654583930969,0.8687500953674316,-0.22842998802661896,-0.3960686922073364,-0.03151538595557213,0.4673519730567932,-0.11141416430473328,-0.022244196385145187,-0.3396139442920685,0.10782364755868912,0.10703056305646896,0.19640356302261353,0.12861637771129608,0.23952066898345947,0.6886624097824097,-0.12362232059240341,0.41913697123527527,0.8382940888404846,-0.3421263098716736,0.08826125413179398,0.33908137679100037,0.04658239707350731,-1.0054012537002563,-0.053922638297080994,-0.2533109486103058,0.32335641980171204,0.18306288123130798,-0.21050918102264404,0.47507551312446594,1.0907481908798218,-0.05832626298069954,0.21931934356689453,-0.06174610182642937,1.139580249786377,-0.7424023151397705,-0.860905647277832,0.5340700149536133,0.9753873944282532,0.1885967254638672,0.09939783811569214,-0.2265927791595459,-0.3143761157989502,-0.030514219775795937,-0.12053444236516953,-0.2806745171546936,-0.421619713306427,-1.7176625728607178,-0.728564977645874,-0.8308531045913696,-1.6601741313934326,0.41472315788269043,-0.5764304399490356,-0.9809680581092834,-0.4183047115802765,1.8954241275787354,-0.36521676182746887,0.4059702754020691,-0.5339170694351196,-0.7084470987319946,-0.37434130907058716,-0.7171719670295715,-1.3967432975769043,-1.0895999670028687,-0.37429219484329224,-0.36172834038734436,-1.4797577857971191,1.9982601404190063,2.158970832824707,-1.2417086362838745,-1.8269994258880615,-0.5282992124557495,-0.8646607995033264,-0.26038822531700134,0.5834699869155884,0.12096334993839264,-0.40193843841552734,-0.00476480508223176,0.21564975380897522,0.09584958106279373,0.5571329593658447,-0.37668296694755554,0.26834866404533386,-0.40153324604034424,0.16748440265655518,-0.35360777378082275,0.22424867749214172,0.1328333467245102,0.24010664224624634,0.6739009022712708,0.3368593752384186,0.04364873841404915,-0.015391978435218334,0.4102829694747925,0.0774758905172348,0.5564915537834167,0.22153225541114807,-0.2973848283290863,-0.0021208098623901606,-0.11095929890871048,0.04726770892739296,0.2591520845890045,0.04206350818276405,-0.0676824077963829,-0.08660900592803955,0.5499159693717957,-0.11617042869329453,0.030795015394687653,-0.08174267411231995,0.35200509428977966,-0.12685197591781616,-0.6471231579780579,-0.16644033789634705,-0.30347388982772827,-0.3623376786708832,-0.13171511888504028,-0.14961104094982147,0.05792509391903877,-0.39032769203186035,0.5425939559936523,-0.017819644883275032,0.11551040410995483,0.4625665545463562,-0.055682193487882614,0.011785982176661491,0.3902204632759094,-0.269929438829422,0.3765670657157898,-0.3669563829898834,-0.29254773259162903,-0.25080183148384094,0.5493423342704773,0.5144107937812805,0.44020310044288635,-0.3358006477355957,-0.06261562556028366,0.4453009068965912,0.3256692588329315,-0.05206536501646042,-0.12982113659381866,-0.07446311414241791,-0.3930526375770569,-0.2819165885448456,-0.4457651674747467,-0.07974621653556824,0.2753908932209015,-0.7436097264289856,-0.3025475740432739,0.21705667674541473,-0.015249750576913357,-0.2820667624473572,0.46256503462791443,-0.3809131979942322,-0.38772353529930115,0.18499203026294708,-0.023240741342306137,-0.39402249455451965,0.2915789484977722,-0.7054566740989685,0.17972102761268616,-0.030349114909768105,-0.31567704677581787,-0.4651791751384735,0.120060496032238,0.057028837502002716,0.2412736415863037,-0.1693723499774933,0.2663254737854004,0.4273533225059509,0.36078140139579773,-0.5343844890594482,-0.4081486165523529,-0.5148333311080933,-0.34579533338546753,-0.1787785142660141,-0.7400680184364319,0.19114340841770172,0.40042802691459656,-0.8442034125328064,-0.29739436507225037,0.10250581055879593,0.6024271845817566,-0.0893230214715004,0.2547016143798828,-0.33340537548065186,-0.6630381345748901,0.34008848667144775,0.6611639857292175,-0.45002880692481995,0.27404552698135376,-0.34868085384368896,0.1464289277791977,-0.09705248475074768,-0.3358917534351349,0.013185855932533741,0.3394802212715149,0.32127341628074646,0.3477887809276581,-0.39845070242881775,0.2801392376422882,0.46814262866973877,0.10753007233142853,-0.37326502799987793,-0.12215065956115723,-0.12307433784008026,-0.552017331123352,0.17371317744255066,0.017455676570534706,-0.22012744843959808,-0.16447307169437408,-0.20408307015895844,-0.27558839321136475,-0.15903092920780182,0.09388784319162369,-0.07303249835968018,0.06190239265561104,-0.16701990365982056,-0.09314246475696564,-0.23288120329380035,-0.30229857563972473,0.08601386100053787,0.13840056955814362,0.26945731043815613,0.1866588145494461,-0.04728829860687256,-0.20350484549999237,-0.09317604452371597,0.237674281001091,0.2810724973678589,-0.18364915251731873,-0.16065172851085663,-0.27298036217689514,0.20802533626556396,-0.02641729637980461,0.3367871940135956,0.222100630402565,0.126071497797966,-0.3155825436115265,0.3191934823989868,0.05927712097764015,-0.3058621883392334,-0.09347766637802124,-0.03654042258858681,-0.21931998431682587,0.06930933892726898,0.004443406593054533,-0.27011480927467346,0.16621127724647522,0.2727013826370239,0.004240762442350388,-0.12904219329357147,-0.32690390944480896,0.3387517035007477,-0.19021034240722656,0.12126105278730392,-0.06526857614517212,-0.2352251559495926,-0.23601742088794708,0.3389940857887268,-0.26859110593795776,0.2620321214199066,0.09758931398391724,0.16522285342216492,-0.05144449695944786,-0.08058613538742065,-0.22644692659378052,0.139581099152565,-0.22409531474113464,0.0669531524181366,-0.27991360425949097,0.194645956158638,-0.002874546218663454,0.27313199639320374,-0.16249480843544006,-0.12178473174571991,0.2303888499736786,-0.33648741245269775,0.0256047323346138,0.22512944042682648,0.27983930706977844,0.057402919977903366,-0.2746860980987549,-0.1052035242319107,-0.24521313607692719,-0.04530780762434006,0.2863117754459381,-0.31351974606513977,-0.06786990165710449,0.20085521042346954,-0.30795666575431824,-0.3318440914154053,-0.07080241292715073,0.12899097800254822,0.21588461101055145,-0.08690675348043442,-0.27616050839424133,-0.29988470673561096,-0.21877840161323547,0.30493423342704773,0.11996425688266754,0.009182226844131947,0.21329589188098907,0.04945964366197586,0.2202804684638977,0.2391081005334854,-0.13044680655002594,-0.3162183463573456,0.15854576230049133,0.11437197774648666,0.011709201149642467,0.11533711105585098,-0.3380335867404938,0.2691512405872345,-0.024921560660004616,0.016553061082959175,0.23242053389549255,0.18112336099147797,-0.19227436184883118,-0.3351827561855316,0.18298639357089996,-0.06750869750976562,0.16294845938682556,0.13413818180561066,-0.2768642008304596,0.1374235898256302,-0.079779252409935,-0.023815128952264786,0.02503134123980999,-0.0683651715517044,-0.16045553982257843,-0.18679937720298767,-0.22054070234298706,0.0003121233021374792,0.24288076162338257,0.17083610594272614,-0.021598773077130318,-0.3292098939418793,-0.15288718044757843,0.33845141530036926,-0.29084107279777527,-0.319320946931839,0.21475835144519806,-0.10317094624042511,-0.17811185121536255,-0.003928927704691887,0.23541583120822906,-0.28881654143333435,-0.2841353416442871,0.3126881718635559,-0.0038354764692485332,-0.3210698068141937,0.17026697099208832,0.20370343327522278,0.19493478536605835,-0.3118837773799896,-0.005800312850624323,0.013817773200571537,0.2236003875732422,-0.03832727670669556,0.1947568953037262,-0.03790712729096413,-0.250724196434021,0.21224041283130646,0.12458194047212601,-0.0031788188498467207,-0.17655427753925323,0.01630585826933384,0.01578374020755291,0.02775259129703045,-0.25360098481178284,0.08592846244573593,-0.04493503272533417,-0.0604160912334919,0.23785457015037537,-0.2655171751976013,0.2595718801021576,-0.08946288377046585,0.20273299515247345,0.2240533083677292,-0.10524357855319977,0.1559123694896698,0.2745788097381592,0.07314049452543259,0.2927144765853882,-0.18177185952663422,-0.25821492075920105,0.011545846238732338,0.07492344081401825,0.33408430218696594,0.3113793134689331,-0.01930682547390461,-0.08758312463760376,0.3240348696708679,-0.023277537897229195,0.18507158756256104,-0.3078496754169464,-0.0675070509314537,0.06414099037647247,-0.27178600430488586,-0.21820862591266632,-0.08461588621139526,-0.16492559015750885,0.17360982298851013,-0.11640915274620056,-0.2994486689567566,-0.3257043659687042,0.2829851806163788,-0.20567496120929718,0.26121434569358826,0.2407858520746231,0.03173941373825073,0.12099587172269821,-0.20601782202720642,-0.27416911721229553,0.1380002200603485,0.2762465476989746,-0.25340262055397034,0.23134617507457733,0.27703335881233215,-0.25455859303474426,-0.15946245193481445,-0.07769262790679932,-0.22199983894824982,-0.3220330476760864,0.14203676581382751,-0.1190268024802208,-0.22733290493488312,0.06355340033769608,0.11500236392021179,0.23424102365970612,-0.14360332489013672,0.2273159623146057,0.2854480445384979,-0.173949733376503,0.3317457437515259,0.047879625111818314,-0.024842945858836174,-0.08391580730676651,0.15717530250549316,0.20837323367595673,0.16667889058589935,-0.14027193188667297,0.3085838854312897,0.33514404296875,0.3233918845653534,-0.06626477837562561,-0.3139711916446686,-0.04925047606229782,0.2638581097126007,-0.2868907153606415,0.12533621490001678,-0.13584978878498077,0.14121656119823456,0.20990504324436188,0.2699434757232666,-0.10975504666566849,-0.2900198698043823,0.33668288588523865,0.09596908092498779,0.10137645900249481,0.2838382422924042,0.32822126150131226,-0.14532779157161713,-0.1224418357014656,-0.21289853751659393,0.32212916016578674,-0.043497420847415924,0.0017851333832368255,0.15671566128730774,-0.17357687652111053,0.057945623993873596,-0.24407047033309937,-0.06919987499713898,-0.32418394088745117,-0.28931841254234314,-0.1519189327955246,-0.3190961480140686,-0.11167453229427338,-0.28336337208747864,-0.12193263322114944,0.27899202704429626,0.151933491230011,-0.21594779193401337,0.17595826089382172,0.16990695893764496,-0.04465511441230774,-0.06084767356514931,0.08913610875606537,0.28781697154045105,-0.26068374514579773,0.05252586677670479,-0.3316263258457184,0.2933010458946228,0.08803904056549072,-0.135316863656044,-0.00279529788531363,0.28309351205825806,0.13689592480659485,-0.12826694548130035,-0.04124695062637329,0.29584529995918274,-0.32611721754074097,-0.33511805534362793,0.14941400289535522,0.1754276305437088,0.28060030937194824,0.15211433172225952,0.15712803602218628,-0.10273493081331253,-0.007981717586517334,0.17815521359443665,-0.1727108359336853,-0.1269497573375702,-0.06337066739797592,0.2034265398979187,-0.07211121171712875,-0.12722493708133698,0.33369535207748413,0.22198927402496338,-0.2004026621580124,0.22423669695854187,-0.24851016700267792,0.2934119403362274,0.00776444748044014,-0.2647615075111389,0.24580898880958557,0.17212028801441193,-0.14546535909175873,-0.021576998755335808,-0.316527396440506,-0.05731730908155441,-0.3128356635570526,-0.3060261607170105,-0.044320281594991684,-0.22049659490585327,-0.09246166795492172,0.20708392560482025,0.04315606877207756,0.11438644677400589,-0.06189759448170662,0.20436418056488037,0.029315190389752388,0.07708113640546799,0.2093077450990677,-0.0831153467297554,0.07341373711824417,-0.266599178314209,-0.20674271881580353,-0.07963119447231293,-0.007877036929130554,-0.28311410546302795,-0.17323963344097137,0.07119108736515045,-0.21812041103839874,0.14626605808734894,-0.15465481579303741,-0.07940604537725449,0.19095194339752197,0.2239016592502594,-0.049410171806812286,-0.26885849237442017,0.32679978013038635,-0.3338172137737274,-0.032305944710969925,0.1355331689119339,0.31271061301231384,0.10541553050279617,-0.16236214339733124,0.2262325882911682,0.20320476591587067,-0.05381681025028229,-0.021855449303984642,-0.20299318432807922,0.21034875512123108,0.1634560227394104,-0.21129080653190613,-0.22158239781856537,-0.058979615569114685,-0.060274552553892136,0.049838896840810776,0.009276634082198143,0.0992620661854744,0.31128907203674316,-0.008970357477664948,-0.023006821051239967,-0.24539242684841156,-0.012787283398211002,0.26334041357040405,-0.3258255124092102,0.26818129420280457]},{"shape":[32],"values":[0.815679132938385,-0.14321374893188477,0.6529443264007568,0.815058708190918,-0.31354910135269165,0.40420234203338623,0.7611507177352905,0.5695940256118774,0.7436152100563049,-0.758560836315155,0.6013897657394409,0.17977629601955414,0.6728477478027344,0.45748791098594666,0.7258235812187195,0.7073709964752197,-0.46261996030807495,0.792725145816803,0.8547608852386475,0.8485934734344482,0.23381638526916504,-0.4349246621131897,-0.6585657000541687,0.4523983299732208,-0.3642418682575226,0.6802079677581787,0.7923781871795654,0.7081130146980286,0.4144676625728607,0.6357426047325134,0.7377137541770935,0.6453339457511902]},{"shape":[32,32],"values":[-0.1204516589641571,0.5137945413589478,0.5888213515281677,0.46208643913269043,0.3768874406814575,0.27689510583877563,0.20797720551490784,0.37225571274757385,0.18680301308631897,0.4459342360496521,0.0421450212597847,0.18294110894203186,-0.46926024556159973,0.27309709787368774,0.31454241275787354,0.4809286892414093,0.07413308322429657,0.20246779918670654,0.23684677481651306,0.6110196709632874,0.2828894853591919,0.785527765750885,-0.0022148764692246914,0.2206895500421524,0.6356788277626038,0.4252247214317322,0.6533724069595337,0.02161475457251072,0.38607150316238403,0.3115239143371582,0.6743455529212952,0.19816599786281586,0.18447637557983398,-0.15392281115055084,-1.0013424158096313,-0.583165168762207,-0.20863574743270874,-0.6846402287483215,-0.585533082485199,0.05278888717293739,0.0015536437276750803,-0.26856377720832825,-0.27973389625549316,0.11655078083276749,-0.10770974308252335,-0.6285710334777832,-0.6383733749389648,-0.771202802658081,-0.3990468978881836,-0.05209427699446678,0.5378568172454834,-0.4836481809616089,-0.08681376278400421,-0.08257142454385757,-0.12456203252077103,-0.1826665848493576,-2.3847336769104004,-0.8024810552597046,-0.3577544391155243,0.2547900080680847,-0.2059970200061798,-0.9711794257164001,-0.6942605972290039,0.47465965151786804,-0.06471387296915054,0.5353929400444031,0.5188135504722595,0.22391870617866516,0.4513704180717468,0.7054416537284851,0.09049614518880844,0.37465131282806396,-0.03666653484106064,0.29034173488616943,-0.0855836272239685,-0.19682976603507996,-0.11505180597305298,0.38992395997047424,0.26309695839881897,0.7424043416976929,0.19986259937286377,-0.0007927730330266058,-0.4178565740585327,0.9014866352081299,0.762847363948822,0.24517172574996948,0.03023175150156021,0.4349515736103058,0.7750366926193237,0.5994783639907837,0.5593869090080261,-0.0656125470995903,0.5075253844261169,0.11645515263080597,0.5507933497428894,-0.07502791285514832,-0.032935019582509995,0.2760140001773834,0.7161683440208435,0.4653479754924774,0.6037679314613342,-0.03703847527503967,0.9428429007530212,0.5102410912513733,-0.00795680470764637,0.35073885321617126,-0.08659684658050537,0.049840353429317474,-0.03086819499731064,0.26769334077835083,0.513899564743042,0.31893190741539,0.3860592246055603,0.36300596594810486,-0.2338757961988449,0.5431579351425171,0.5527461767196655,0.8164122700691223,0.09595301747322083,-0.23899632692337036,0.10976501554250717,0.6890136003494263,0.4440005123615265,-0.07060527801513672,0.784273624420166,0.5613802075386047,0.7805717587471008,-0.2935895323753357,-0.1218675822019577,-0.6294522285461426,-0.9566448330879211,-0.6735132336616516,-0.17158709466457367,-0.6245046257972717,-0.3244546353816986,0.12247027456760406,0.03533120080828667,-0.4191017746925354,0.05505939573049545,0.5404690504074097,0.21011531352996826,-0.8503196239471436,-0.7027660012245178,-0.7167119383811951,-0.6511072516441345,-0.2507973611354828,0.8215531706809998,-0.23240120708942413,-0.03789897635579109,-0.6161618828773499,-0.16497427225112915,-0.01812337525188923,-2.2806878089904785,-0.7925524711608887,-0.3478318452835083,-0.22770965099334717,-0.28272581100463867,-0.9755691289901733,-0.6993762254714966,0.5448841452598572,-0.21921250224113464,0.6635762453079224,0.17684218287467957,0.792443037033081,0.3447357416152954,0.5982440710067749,0.43901145458221436,0.8374972343444824,-0.17034782469272614,0.6859179735183716,0.24648477137088776,-0.5094150304794312,-0.3689708709716797,0.20299652218818665,0.41262978315353394,0.2813403010368347,0.30486467480659485,0.09981164336204529,-0.11469297856092453,0.4065965712070465,0.9390285611152649,0.22755523025989532,0.21318240463733673,-0.5486627221107483,-0.8145147562026978,-0.10596022754907608,0.13871684670448303,-0.010231584310531616,0.4833831191062927,0.6094809174537659,0.41224974393844604,-0.03647128865122795,-0.28282099962234497,0.5304048657417297,0.7284672856330872,0.3486575186252594,0.634488582611084,0.4315365254878998,0.45069560408592224,0.33530983328819275,-0.2967197000980377,0.18542419373989105,-0.2932182848453522,0.2472408264875412,-0.22345469892024994,0.29112738370895386,0.40795809030532837,0.63716059923172,0.5649770498275757,0.13636232912540436,-0.38237905502319336,0.502255380153656,0.3632242977619171,0.4997270405292511,-0.20986418426036835,-0.07146596908569336,0.5030249357223511,0.13746239244937897,0.27086421847343445,0.22899805009365082,0.5579116344451904,0.2599220871925354,0.2550787925720215,-0.10544204711914062,-0.2943181097507477,0.7756271362304688,0.4013463854789734,0.7630788683891296,0.27152207493782043,0.08419770747423172,0.7541463971138,0.4260682165622711,0.05605517700314522,0.2855672538280487,-0.28605514764785767,0.30653080344200134,0.11691489070653915,0.4010292589664459,0.38261672854423523,0.3579803705215454,0.1894994080066681,0.010301611386239529,-0.4877922832965851,0.47336506843566895,0.6272748112678528,0.46711766719818115,-0.19644151628017426,0.03134660795331001,0.049232665449380875,0.5451135635375977,0.3938728868961334,-0.13755495846271515,0.7280917167663574,0.8199684023857117,0.650139331817627,-0.2688029706478119,-0.09653060883283615,0.47269564867019653,0.6870725750923157,0.5543409585952759,0.30135178565979004,0.2185191810131073,0.6073881387710571,0.37735041975975037,-0.33943572640419006,0.623148500919342,-0.17854951322078705,0.18746843934059143,-0.02985248528420925,0.41285884380340576,0.02092081308364868,0.435630738735199,0.23425038158893585,0.27106258273124695,-0.2517731487751007,0.34021055698394775,0.2982374429702759,0.16013307869434357,-0.24408948421478271,0.3508584797382355,0.31804364919662476,0.401998907327652,0.4083126485347748,-0.47828036546707153,0.38594430685043335,0.5694130659103394,0.6589986681938171,-0.2028614580631256,-0.21279200911521912,-0.7446872591972351,-1.1209324598312378,-0.848055899143219,-0.6151198148727417,-0.7439537644386292,-0.9935773611068726,-2.075181007385254,0.06563519686460495,-0.6922047734260559,0.1601158231496811,-0.015326106920838356,0.5067170858383179,-0.9251096248626709,-0.7135522365570068,-0.6360373497009277,-0.3394506871700287,-0.32082149386405945,0.6137478947639465,-0.9277429580688477,-2.2180776596069336,-0.9067502021789551,0.2669544219970703,-0.3951707184314728,0.16792605817317963,-0.796461820602417,-0.4401293396949768,0.8214889764785767,-0.5394079089164734,-0.6323047280311584,-0.41882196068763733,-0.3060967028141022,0.20226876437664032,0.42595043778419495,0.5422758460044861,0.28958743810653687,0.11106682568788528,0.3458518087863922,0.48637625575065613,0.34488046169281006,0.1447397768497467,0.4666747450828552,-0.0377623587846756,-0.06198814511299133,-0.6672371029853821,0.12967993319034576,-0.046356506645679474,0.29142865538597107,0.265821248292923,-0.03518287092447281,-0.4224774241447449,0.43047985434532166,0.5244429111480713,0.5895720720291138,0.18344682455062866,0.642947793006897,0.4309956133365631,0.4568180739879608,0.6141859889030457,-0.6705836653709412,0.1836264580488205,0.10096516460180283,0.6107292771339417,-0.15772543847560883,0.15802647173404694,1.3125656843185425,1.118747353553772,1.08674955368042,1.3762832880020142,1.2913681268692017,1.0189212560653687,0.0957714319229126,-0.17554166913032532,0.9145647287368774,0.21586444973945618,-0.4438108503818512,-0.8852325081825256,0.9895913004875183,0.89531409740448,1.2532196044921875,0.6310211420059204,0.49896660447120667,-0.9259312152862549,1.4164643287658691,0.3509579002857208,1.213836908340454,0.34620922803878784,0.9624320864677429,0.4812111258506775,0.5943757891654968,1.1226414442062378,-0.6914402842521667,1.359002947807312,1.2020888328552246,1.233043909072876,-0.19266369938850403,0.22840362787246704,0.2621713876724243,0.509846568107605,0.391266793012619,0.4506301283836365,-0.03875444456934929,0.4479263126850128,0.027915289625525475,-0.05356068164110184,0.5846294164657593,0.23131054639816284,-0.12723813951015472,0.31437933444976807,0.4812700152397156,0.09357346594333649,0.13134180009365082,0.4983818829059601,-0.029418306425213814,0.16673463582992554,0.3590336740016937,-0.06025543808937073,0.17566260695457458,-0.057183194905519485,0.1852078139781952,0.5334713459014893,0.23764654994010925,0.5508708357810974,0.0783214196562767,0.36128732562065125,0.5647631287574768,0.3151692748069763,-0.5921515822410583,0.18571101129055023,0.41943231225013733,0.9719182848930359,0.6022380590438843,0.649535596370697,0.3493231534957886,0.33652782440185547,-0.10276327282190323,-0.1247451975941658,0.28942835330963135,-0.21317145228385925,0.2951814830303192,0.1687464565038681,0.6492235660552979,0.28910523653030396,0.7769314050674438,0.2881191074848175,0.2900567054748535,-0.3886224925518036,0.6004541516304016,-0.017473766580224037,0.4730195999145508,-0.08442097902297974,0.05321844667196274,0.6753697991371155,0.4778444468975067,0.6587329506874084,-0.2809544503688812,0.7203230857849121,0.4329855144023895,0.840850830078125,-0.26118743419647217,-0.22074763476848602,0.7323542237281799,0.7199339270591736,0.10317789018154144,0.6612414717674255,0.22542931139469147,0.7403069138526917,0.2952028810977936,-0.003634341061115265,0.17357034981250763,0.20193037390708923,-0.06718740612268448,-0.6516494750976562,0.40037259459495544,0.5945695042610168,0.6679009795188904,-0.0985255166888237,0.02837540954351425,-0.2932344973087311,0.440560519695282,0.6923093795776367,0.4162358045578003,0.28403177857398987,0.10797155648469925,0.6203298568725586,0.16933828592300415,0.6167190670967102,-0.3549053370952606,0.08490750193595886,0.6657155752182007,0.7491526007652283,-0.17540191113948822,0.04130959138274193,0.024476466700434685,0.11516974866390228,0.3599216938018799,0.47457602620124817,0.020639287307858467,0.13197578489780426,0.06835717707872391,0.17955556511878967,0.39824798703193665,-0.31383201479911804,-0.26901957392692566,0.17640402913093567,0.5544869303703308,0.4960514307022095,0.047370847314596176,0.029453841969370842,0.12758706510066986,-0.21617820858955383,0.5720455050468445,0.029473938047885895,0.37577179074287415,-0.048106685280799866,0.2580486238002777,0.7863876819610596,0.42220333218574524,0.40760859847068787,-0.034417252987623215,0.4574001431465149,0.5793665051460266,0.13601286709308624,-0.3406175374984741,0.20311036705970764,-0.9249269366264343,-1.1667296886444092,-0.7559978365898132,-0.7476889491081238,-0.6355117559432983,-0.9578916430473328,-0.32627034187316895,-0.2544252276420593,-0.6278776526451111,0.06684017926454544,0.3463117182254791,0.2774825096130371,-0.667184591293335,-0.9109301567077637,-0.8363716006278992,-0.9566923975944519,-0.26817265152931213,0.9527744054794312,-0.9168497920036316,-0.24038518965244293,-0.9519028067588806,0.26308149099349976,0.4821820557117462,-1.153469443321228,-0.5327280163764954,-1.0458309650421143,-0.3358977138996124,-0.7703377604484558,-1.089926838874817,-0.9586336612701416,0.382167786359787,0.06593270599842072,0.2018871158361435,0.20417261123657227,0.15635046362876892,0.26017630100250244,0.4106695055961609,0.3491446077823639,-0.042267389595508575,0.07102314382791519,0.4457394778728485,-0.008901762776076794,-0.979184627532959,-0.11625782400369644,0.263793021440506,0.4974117875099182,0.45843610167503357,0.26155728101730347,0.32084229588508606,0.1289973258972168,0.4233883321285248,-0.5033738613128662,0.42216265201568604,0.022161206230521202,0.703296422958374,0.9753946661949158,0.42623934149742126,0.5833153128623962,0.33110079169273376,-0.09872250258922577,0.04750452935695648,0.5849525332450867,-1.0002055168151855,0.06680073589086533,0.546325147151947,0.24839316308498383,0.019550619646906853,0.4328064024448395,0.4844925105571747,0.2660287320613861,0.2830735146999359,-0.0848526731133461,0.37143194675445557,-0.45295262336730957,0.07043331861495972,-0.20148542523384094,0.2088165283203125,0.5824013948440552,0.12824071943759918,0.37012356519699097,0.27646857500076294,-0.14497721195220947,0.3066384494304657,0.3979221284389496,0.676537036895752,-0.1461324840784073,-0.0934220477938652,0.8153294920921326,0.30643171072006226,0.5886034369468689,0.2546134293079376,0.581683874130249,0.6816423535346985,0.7512088418006897,-0.08681128919124603,-0.034484028816223145,0.25439608097076416,0.038073960691690445,0.0735502615571022,0.38015761971473694,0.32115069031715393,0.37472665309906006,0.6002519726753235,-0.03868768364191055,0.4364568591117859,0.08711979538202286,-0.17592090368270874,-0.24077728390693665,0.38098424673080444,0.34908628463745117,0.2502742409706116,0.12868092954158783,-0.0022760173305869102,0.2139553427696228,0.45242780447006226,0.6756319999694824,0.4529820680618286,-0.013986573554575443,-0.3426063358783722,0.07241930067539215,0.20406006276607513,0.29450660943984985,-0.5175195336341858,0.40630224347114563,0.06454617530107498,0.49798670411109924,-0.12934520840644836,-0.3381204903125763,-0.21013255417346954,-1.0527781248092651,-0.5639700293540955,-0.2543433904647827,-0.5665633082389832,-0.28819721937179565,0.7431906461715698,-0.09948998689651489,-0.45117971301078796,0.010248411446809769,0.595369279384613,0.8554663062095642,-0.5824172496795654,-0.01197222899645567,-0.3795206844806671,-0.1047184094786644,-0.3443824052810669,0.7319762110710144,-0.39937564730644226,0.30342015624046326,-0.332705557346344,-0.024338096380233765,-0.18036097288131714,-1.915231704711914,-0.39784684777259827,-0.5424045920372009,0.3474133014678955,-0.5624315738677979,-0.6927245855331421,-0.3157488703727722,0.2298581302165985,-0.07864964753389359,-0.8182542324066162,-0.48244455456733704,-0.512908399105072,-0.43061184883117676,-0.4638423025608063,-0.7848271727561951,-2.4581780433654785,0.13146381080150604,-0.4764196574687958,-0.30475708842277527,0.10500605404376984,0.8266169428825378,-0.9502320289611816,-0.30912137031555176,-0.09988053888082504,-0.5160872340202332,-0.7418050765991211,0.9399744272232056,-0.6493176221847534,-2.057344436645508,-0.6342081427574158,0.37897422909736633,0.005238896235823631,0.4155100882053375,-0.652722179889679,-0.08691798895597458,0.8832738399505615,-0.49888938665390015,-0.8806502223014832,-0.30318698287010193,-0.2285052090883255,0.0801745057106018,-0.8172151446342468,-1.2742178440093994,-0.767906904220581,-0.7446945905685425,-0.7252324223518372,-1.0164257287979126,-2.498587131500244,-0.10372258722782135,-0.9204930663108826,0.0150393545627594,-0.06200602278113365,0.8201852440834045,-0.7009027600288391,-1.0126311779022217,-0.6411148309707642,-0.6062589287757874,-0.759690523147583,1.2398903369903564,-0.5901277661323547,-1.873718500137329,-0.8259010314941406,0.30140113830566406,-0.506242036819458,-0.15942145884037018,-1.0810738801956177,-1.0888793468475342,0.9654333591461182,-1.1602652072906494,-1.4141714572906494,-0.6350197792053223,0.25231847167015076,-0.12606902420520782,0.5075676441192627,0.8128742575645447,0.7130118608474731,0.3476516008377075,-0.3074420094490051,0.7721067667007446,0.08707038313150406,-0.22571727633476257,0.7809542417526245,0.1600686013698578,0.17135198414325714,-0.18795301020145416,0.42299383878707886,0.130189910531044,0.4089058041572571,0.041749585419893265,0.22516195476055145,-0.5556678175926208,0.809748113155365,-0.07005229592323303,0.5051009058952332,-0.47800004482269287,0.13921768963336945,0.5193629860877991,0.8647765517234802,0.8778221607208252,-0.12202908098697662,0.48003751039505005,0.8044731020927429,0.5519785284996033,-0.06267544627189636,-0.035211313515901566,-0.8956127762794495,-0.8265630602836609,-0.8296706676483154,-0.8141992688179016,-0.5820306539535522,-0.7270184755325317,0.4219604432582855,0.15637437999248505,-0.5071675777435303,-0.1918572038412094,0.6380370855331421,0.3887285888195038,-0.8806016445159912,-0.7136192321777344,-0.7742589712142944,-0.20848645269870758,-0.38794052600860596,0.7749863862991333,-0.6064419746398926,-0.11941767483949661,-0.9290586709976196,-0.38833731412887573,-0.1263756901025772,-1.3392658233642578,-0.5154348015785217,-0.6393526792526245,0.23568609356880188,-0.621161699295044,-1.1068941354751587,-1.0388342142105103,0.5924316048622131,-0.06195223331451416,0.5473355650901794,0.470783531665802,0.07996849715709686,0.26745256781578064,0.29517415165901184,0.5890180468559265,0.3627798557281494,0.14686235785484314,0.36892855167388916,0.23151090741157532,0.001385753508657217,0.01609431393444538,-0.00770648755133152,0.1478050798177719,-0.03674773499369621,0.5070452094078064,-0.041127678006887436,0.30315327644348145,-0.027508655562996864,0.5335317850112915,0.5168657898902893,-0.3165253698825836,-0.40324053168296814,0.30093592405319214,0.4851713180541992,0.4297880232334137,0.2588123083114624,0.09616325050592422,0.1728540062904358,0.4675522744655609,-0.07011939585208893,-0.23074066638946533,0.5364224910736084,0.20809614658355713,0.35215938091278076,0.4549398422241211,0.24780485033988953,0.5600275993347168,0.2056085169315338,-0.3198741376399994,0.40253931283950806,0.025441311299800873,-0.5460032820701599,0.323762983083725,0.5489848852157593,0.6484714150428772,0.5102846622467041,0.17329664528369904,0.28263041377067566,0.24418506026268005,0.4483753442764282,0.42302677035331726,0.5788733959197998,0.04060470685362816,0.18798066675662994,0.6360116004943848,0.2733948230743408,0.3465283513069153,0.17554154992103577,0.3273228704929352,0.16550104320049286,0.4366965591907501,-0.5676570534706116,0.1303330510854721,-0.05587495118379593,0.4273627996444702,0.31053808331489563,0.06916145235300064,0.1043718084692955,0.13445927202701569,-0.14487403631210327,0.12272107601165771,0.1706404983997345,-0.1353950947523117,-0.9024614095687866,0.2768290340900421,-0.05707919970154762,0.18722374737262726,0.1453363299369812,0.3092299699783325,0.26818370819091797,0.26620733737945557,0.49326640367507935,-0.2634930908679962,-0.1177632212638855,0.34546732902526855,0.2925356328487396,0.44631093740463257,0.1592750996351242,0.23471979796886444,0.5510762333869934,-0.06218266114592552,0.18495160341262817,0.3304615914821625,-0.6577177047729492,0.07858743518590927,0.42498835921287537,0.5477970838546753,0.7468523979187012,0.4667990803718567,0.6943081021308899,0.9197800159454346,0.6214396357536316,0.12663263082504272,0.1874578893184662,-0.07308506220579147,-0.09375764429569244,-0.004106322769075632,0.449004590511322,0.37700968980789185,0.5313814282417297,0.06389758735895157,0.1695553958415985,-0.45102161169052124,0.4731947183609009,0.3871104419231415,0.6748532652854919,0.4160618782043457,-0.283697247505188,-0.537240207195282,0.09536678344011307,0.2343401312828064,-0.6459144353866577,0.5110833048820496,0.3538357615470886,0.39495766162872314,0.03981896862387657,0.050818219780921936,0.16191822290420532,0.3211835026741028,0.5464272499084473,0.7609119415283203,0.7335641384124756,0.29592636227607727,0.4350523352622986,-0.283507764339447,0.7323780655860901,-0.26570478081703186,-0.3825632631778717,-0.6730162501335144,0.5353151559829712,0.2970470190048218,0.18731603026390076,0.13431182503700256,0.2733624577522278,-0.3965674936771393,0.18142952024936676,0.40139850974082947,0.2848815321922302,-0.05506317690014839,0.11851690709590912,0.44682425260543823,0.16120955348014832,0.3720562160015106,-0.9666503071784973,0.14459280669689178,0.6375133395195007,0.7720657587051392,0.36077356338500977,-0.20063750445842743,0.29612600803375244,0.5560286641120911,0.6357002854347229,0.4088154733181,0.5467538237571716,0.429433673620224,0.6011872291564941,0.07927535474300385,0.6223530769348145,-0.04224107041954994,0.2868008017539978,-0.2396436184644699,0.6147134304046631,0.04159790650010109,0.18616798520088196,-0.028995292261242867,0.0814882293343544,0.02800949662923813,0.19119594991207123,0.19228844344615936,0.2933867573738098,0.21422931551933289,0.35375428199768066,-0.015227256342768669,0.24820752441883087,0.4397541284561157,-0.44006431102752686,0.05828866362571716,0.4759783148765564,0.5828720331192017,0.2079067826271057,0.023519640788435936,0.4871782958507538,0.7932289838790894,0.5982346534729004,0.7591618895530701,0.20861417055130005,0.5186625123023987,0.44895464181900024,-0.07901877909898758,0.31842032074928284,-0.2009216845035553,0.17282874882221222,-0.3308936655521393,0.029950041323900223,0.6314801573753357,0.3431917130947113,0.14332374930381775,0.3612997531890869,0.055802520364522934,0.6690220832824707,0.25993025302886963,0.38911619782447815,0.0908621996641159,0.2219972163438797,0.03405375778675079,0.04613116756081581,0.7476202249526978,-0.9081073999404907,0.3960907757282257,0.7104700207710266,0.7509772777557373,-0.11828252673149109]},{"shape":[32],"values":[-0.05293833836913109,0.6530572175979614,0.6670083999633789,0.6426292657852173,0.6846293807029724,0.6256019473075867,0.6927425265312195,0.3033175468444824,-0.07320234179496765,0.6733731627464294,-0.05556201934814453,-0.347027987241745,-0.0985347181558609,0.5351120233535767,0.6235102415084839,0.5924729108810425,0.35003629326820374,0.288409560918808,-0.3307386338710785,0.6030462980270386,0.44029363989830017,0.6857457756996155,-0.048123426735401154,0.1186484843492508,0.3660206198692322,0.6029052734375,0.6880331635475159,-0.1802372932434082,0.5490298271179199,0.6994909048080444,0.7190039157867432,0.03602464124560356]},{"shape":[32,9],"values":[0.42359840869903564,0.34125640988349915,-0.13942255079746246,-0.035169415175914764,0.09255494177341461,-0.2546270787715912,-0.09306229650974274,-0.24630974233150482,0.24428357183933258,0.7307423949241638,0.3511962890625,0.8714299201965332,0.40021881461143494,0.5508477091789246,0.5317050814628601,0.8014323711395264,0.33520397543907166,0.5212514400482178,0.5481096506118774,0.9126843214035034,0.8950240612030029,0.9465646147727966,1.1996763944625854,1.154175043106079,0.6597487926483154,0.8496361970901489,0.8874136209487915,0.4395912289619446,0.4344734847545624,0.9355647563934326,0.518567681312561,0.7960218191146851,0.24698318541049957,0.9122563004493713,0.6560306549072266,0.48298847675323486,0.23846915364265442,0.6831852793693542,0.14195221662521362,0.6759933829307556,0.13393838703632355,0.28247421979904175,0.3091351091861725,0.6743723750114441,0.6532865762710571,0.9895511865615845,0.7849925756454468,0.3855515420436859,0.9744160175323486,0.952909529209137,1.0568290948867798,1.227918267250061,0.9474247694015503,0.9290311336517334,0.8177653551101685,0.8395935297012329,0.0976865291595459,0.6499775052070618,0.6645990014076233,0.6630845069885254,0.7511407136917114,0.3532496690750122,0.5067036747932434,0.39174601435661316,-0.04315813630819321,-0.6617215275764465,0.2222478687763214,-0.1080302819609642,-0.477725088596344,0.30533847212791443,0.10705360770225525,-0.8363956212997437,0.3147047758102417,0.11712555587291718,-0.32552313804626465,-0.08649316430091858,0.2970219850540161,0.16598762571811676,-0.09647485613822937,-0.23568592965602875,0.027665771543979645,0.3557135760784149,0.22905965149402618,0.08734352886676788,0.32619142532348633,0.5445707440376282,0.5100188255310059,0.36733317375183105,0.7274489998817444,0.6914466619491577,0.16153115034103394,0.34940478205680847,-0.30945879220962524,-0.08138401061296463,-0.1294812113046646,0.32821351289749146,-0.22301433980464935,-0.33509963750839233,-0.045943085104227066,-0.5909335017204285,-0.48045140504837036,0.1232709288597107,-0.18236733973026276,-0.8554418087005615,-0.03759331256151199,-0.5220559239387512,-0.15716758370399475,-0.18421384692192078,0.18084391951560974,-0.4242657721042633,-0.44677627086639404,-0.20748241245746613,-0.8571663498878479,-0.1929665207862854,-0.24196718633174896,-0.5143309235572815,-1.0238940715789795,0.8078818917274475,0.7828730344772339,0.9054360389709473,1.0113425254821777,0.5927971005439758,0.8004692792892456,0.47045814990997314,0.3746947646141052,0.5487661361694336,0.648373544216156,0.4901373088359833,0.8447188138961792,0.35475361347198486,0.24393640458583832,0.2355894148349762,0.7519583106040955,0.5640326142311096,0.3175678551197052,0.328102707862854,0.6208863854408264,0.6691271066665649,0.4703950583934784,0.5572656393051147,0.3890133500099182,0.5314158201217651,0.5739502906799316,0.9753657579421997,0.4500253200531006,0.43056246638298035,0.6118220686912537,0.2996452748775482,0.4018085300922394,0.2785997688770294,0.15973593294620514,0.44971874356269836,0.010928917676210403,0.024553965777158737,0.507987916469574,0.6474324464797974,0.5514314770698547,0.3200920820236206,0.22177229821681976,0.12255070358514786,0.4332973062992096,0.1535174548625946,-0.32306841015815735,-0.4298715591430664,-0.4993346333503723,-0.665054440498352,-0.6425758004188538,-0.7018095254898071,-0.5806248188018799,-0.8824234008789062,-0.8955913186073303,0.5391811728477478,0.38340872526168823,0.7915721535682678,0.2741248905658722,0.4599837064743042,0.740623950958252,0.39185649156570435,0.2611943483352661,0.6977726817131042,0.4265361428260803,0.26678749918937683,-0.4704570472240448,0.44262468814849854,-0.1696539968252182,-0.7560536861419678,0.8309202194213867,0.2732323706150055,-0.957922101020813,0.17626765370368958,0.4974859356880188,0.7206171751022339,0.5749226212501526,0.6904346942901611,0.615216851234436,0.7750853300094604,0.30488625168800354,0.607671320438385,-0.17911559343338013,0.04797164723277092,0.24689853191375732,0.3367650508880615,0.263058066368103,-0.44028735160827637,-0.30428341031074524,-0.1475059539079666,-0.3682156801223755,-0.33663493394851685,0.6764382123947144,0.8368489146232605,-0.3250291645526886,0.4071864187717438,0.4856060743331909,-0.2474873960018158,0.13333290815353394,0.6058781743049622,-0.585097074508667,0.04917304962873459,0.25869220495224,-0.9499701261520386,0.1696063131093979,0.5464606285095215,-0.9920490384101868,0.08379585295915604,0.4991739094257355,0.5977469682693481,0.607890784740448,0.49556049704551697,0.7971901297569275,0.5184362530708313,0.9025917649269104,0.6892877817153931,0.8012372851371765,0.9880751371383667,0.44528859853744507,0.18622785806655884,0.619735062122345,0.19143429398536682,0.37591424584388733,0.6339607238769531,0.4621017277240753,0.529731810092926,0.5934236645698547,-0.4977583587169647,-0.6058318018913269,-0.42409175634384155,-0.7892096638679504,-0.5398932099342346,-0.14027531445026398,-0.36378970742225647,-0.5935227870941162,-0.4800158143043518,0.7137477993965149,0.620479166507721,0.6499064564704895,0.7770084738731384,0.3381112515926361,0.242830291390419,0.2518155872821808,0.17636777460575104,0.44906696677207947,1.1510123014450073,1.0749624967575073,0.7929884791374207,0.8296290040016174,0.6385455131530762,0.7475904822349548,0.6115827560424805,1.0456446409225464,0.6115239262580872,0.33743351697921753,0.2044406235218048,0.21050971746444702,0.6078140139579773,0.6490428447723389,0.5276908874511719,0.36034095287323,0.5189051032066345,0.5552762746810913,-0.2132527381181717,0.4281883239746094,0.4150516986846924,-0.2036386877298355,0.01875508390367031,0.14793746173381805,-0.6457520127296448,-0.19770312309265137,0.45799878239631653]},{"shape":[9],"values":[0.19921989738941193,0.2791456878185272,0.22691285610198975,0.3170883059501648,0.20887286961078644,0.26610392332077026,0.4747447073459625,0.5209072232246399,0.391134649515152]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-73.json new file mode 100644 index 0000000..8fa0a7e --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v1","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"episodeTransitions":600,"trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v1","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:09:41.529Z","weights":[{"shape":[20,32],"values":[0.6778188943862915,0.06414427608251572,0.7832091450691223,0.4754001498222351,0.11317716538906097,0.7241419553756714,0.12468073517084122,0.2733168601989746,0.19875408709049225,0.012219740077853203,-0.3594624102115631,-0.2293488085269928,0.39367061853408813,0.07396050542593002,0.12547974288463593,0.7559852600097656,0.21599933505058289,0.15947787463665009,0.3334358036518097,-0.08385848999023438,0.4018745720386505,0.6908475160598755,0.3187076449394226,0.15761159360408783,0.1369730532169342,0.5042955279350281,0.11986210942268372,0.11734244972467422,0.44403529167175293,0.6094874739646912,-0.07796352356672287,0.45351704955101013,0.02190496027469635,0.21002978086471558,0.035672690719366074,0.5817003846168518,-0.12893687188625336,0.44080469012260437,-0.09769584983587265,0.26221954822540283,-0.28577721118927,-0.543321430683136,-0.2807948887348175,0.4420667588710785,-0.26266416907310486,-0.011013220995664597,-0.35703662037849426,0.2519569993019104,-0.5458856821060181,-0.01788097433745861,0.009708018973469734,-0.2880866229534149,-0.05407740920782089,0.3315836787223816,-0.07727431505918503,-0.08975137025117874,-0.2708679437637329,-0.1645289808511734,0.0019325739704072475,0.014598419889807701,-0.4561429023742676,-0.3776489794254303,0.04114600270986557,0.08301283419132233,-0.3875730037689209,0.9577380418777466,-0.31012651324272156,0.5227331519126892,0.5943902134895325,-0.22449034452438354,-0.8606458306312561,0.1748458594083786,-0.04373865947127342,-0.7986700534820557,-1.0077875852584839,1.2508493661880493,0.10947766900062561,-0.3935740292072296,-1.0740748643875122,0.2684799134731293,-0.8160614371299744,-0.22295807301998138,-0.02147768810391426,-0.09869450330734253,-0.14352817833423615,-0.02936163730919361,0.19216905534267426,-0.25110605359077454,-0.5808711051940918,0.2990114390850067,-0.2931612432003021,0.5609289407730103,-0.0652618408203125,0.3275468647480011,0.4210127592086792,-0.1837821751832962,-0.5160596370697021,-1.1523207426071167,-0.5603618621826172,-1.0038776397705078,-0.7795053124427795,-0.17097878456115723,1.9269853830337524,-0.9216535091400146,1.8197803497314453,2.0432181358337402,2.463117837905884,-1.1336028575897217,-0.7832902073860168,0.3115498423576355,1.8837236166000366,-0.2737845182418823,2.0777390003204346,-0.2475428432226181,-0.6301262378692627,-0.6423468589782715,-0.4218939542770386,0.4411718547344208,-0.283632755279541,-0.5027287006378174,1.7723102569580078,-1.226269245147705,-0.6345919370651245,-1.273392677307129,-0.48404422402381897,-0.8574081659317017,-0.2908347547054291,-0.7092244029045105,0.08865857124328613,-0.015858547762036324,-0.01985166408121586,0.007344648241996765,0.5739296674728394,-0.17544206976890564,0.1948700100183487,0.018491020426154137,0.21895574033260345,0.2246251404285431,-0.09401450306177139,-0.151171013712883,0.37470418214797974,-0.3541260063648224,-0.07563331723213196,-0.1984330415725708,-0.2546555697917938,0.18344606459140778,0.3119005560874939,0.1859305053949356,0.08327260613441467,-0.8513248562812805,-0.22499918937683105,0.3703499138355255,0.13590538501739502,0.6575672626495361,0.08044889569282532,0.3914371430873871,0.4603048264980316,0.6700016260147095,-0.3377760052680969,0.1185147613286972,-0.24497592449188232,-0.2937752902507782,-0.12260431051254272,-0.10033395886421204,0.08280492573976517,-0.3033938705921173,0.20133480429649353,0.31366151571273804,0.5733646154403687,0.29550477862358093,0.4507310688495636,-0.42628371715545654,0.10348337143659592,-0.029501112177968025,0.03194073587656021,0.03341788053512573,0.5163392424583435,0.0356714203953743,-0.1203685849905014,-0.09819537401199341,0.3966069221496582,-0.34193772077560425,0.32976099848747253,-0.11587132513523102,0.513441801071167,0.4252092242240906,0.057278506457805634,0.15452755987644196,0.30179303884506226,0.2293292135000229,-0.14851060509681702,0.29506516456604004,0.022273875772953033,-0.6593866348266602,-0.0899680107831955,-0.25808385014533997,0.31756311655044556,-0.42794740200042725,0.561801552772522,0.12602442502975464,0.5184034705162048,0.4355153739452362,0.3588300049304962,-0.1778852641582489,-0.0130986999720335,-0.33819738030433655,0.30398324131965637,0.02802273817360401,0.24013029038906097,0.0033828699961304665,-0.4037415385246277,-0.033210448920726776,-0.24957993626594543,-0.05682975426316261,0.3603501319885254,0.1345706284046173,0.644065797328949,0.3288500905036926,-0.4125891327857971,0.26551106572151184,0.10194630920886993,0.30317652225494385,0.12084928154945374,0.09394093602895737,0.30029425024986267,-0.4225441813468933,-0.10766614973545074,-0.014373927377164364,0.21183894574642181,-0.30165791511535645,0.12139955163002014,-0.05332140997052193,-0.022021116688847542,-0.08678744733333588,0.06768990308046341,-0.5672274827957153,0.44167712330818176,-0.23704496026039124,0.11597269773483276,0.13406042754650116,0.42913752794265747,-0.14665448665618896,0.29749226570129395,0.33329102396965027,0.01695019006729126,-0.20845884084701538,0.3624604642391205,-0.08298836648464203,0.22074417769908905,0.08457402884960175,0.2753523588180542,0.3930492103099823,-0.21013981103897095,0.41876447200775146,0.7517661452293396,-0.17097970843315125,-0.069085493683815,-0.23050479590892792,0.07543753832578659,-0.033202625811100006,-0.19541990756988525,-0.14977991580963135,0.30439624190330505,0.2610628008842468,0.15681390464305878,-0.0017050844617187977,-0.2964673340320587,0.05375779792666435,0.2518170475959778,-0.22945743799209595,0.00546287652105093,-0.21656396985054016,0.20602892339229584,0.104730024933815,-0.10495211184024811,-0.1543852984905243,-0.15061283111572266,0.31295260787010193,0.0698273703455925,-0.11002328246831894,0.2758879065513611,0.10996897518634796,0.20926405489444733,0.17976488173007965,0.3344443142414093,0.06946993619203568,-0.1576845347881317,0.1616106927394867,-0.21531957387924194,0.2583886981010437,0.325063019990921,0.06297769397497177,0.3318813741207123,0.050098273903131485,0.2009536623954773,0.2718771696090698,0.023314716294407845,-0.011055606417357922,-0.032076239585876465,-0.29672229290008545,-0.07081729173660278,0.2599566876888275,-0.22933535277843475,0.0481986366212368,0.028415607288479805,0.1439521759748459,0.27540725469589233,0.16110892593860626,0.19510984420776367,0.29403480887413025,-0.23271077871322632,-0.007877214811742306,0.08578645437955856,-0.058246348053216934,-0.30009689927101135,0.09204202145338058,-0.2683674395084381,-0.05399613454937935,-0.11391565948724747,-0.1294224113225937,0.14086712896823883,0.27450811862945557,0.04729340970516205,0.02497860975563526,0.1135900691151619,0.26379773020744324,0.25388431549072266,0.1040271744132042,-0.09969987720251083,0.27791380882263184,-0.12404637783765793,0.06225978210568428,-0.2617804706096649,-0.09225121140480042,-0.005869404878467321,-0.06426612287759781,0.07271546870470047,0.15094950795173645,-0.08838081359863281,0.04631775617599487,-0.16320063173770905,0.22698618471622467,-0.31763842701911926,0.26098525524139404,0.1212988793849945,-0.07613419741392136,-0.12468965351581573,0.07415374368429184,0.22471897304058075,0.23061706125736237,0.15968632698059082,-0.09532671421766281,-0.035338450223207474,-0.17875468730926514,0.15049371123313904,-0.2367209494113922,0.2816011607646942,0.27695947885513306,0.2529638409614563,0.1491142362356186,0.2970983684062958,0.2563730776309967,0.2011464238166809,0.11331039667129517,-0.1507570594549179,0.3294886648654938,0.06065921112895012,-0.14770811796188354,-0.14161857962608337,0.09931088238954544,-0.06926663964986801,0.2785813808441162,0.1761915236711502,0.1585799753665924,-0.04037667438387871,0.07479371130466461,-0.3304700255393982,-0.054479483515024185,-0.2936747968196869,-0.12697067856788635,0.04429267719388008,0.20643524825572968,-0.330077201128006,-0.20371226966381073,-0.163810595870018,0.15790314972400665,-0.16011746227741241,0.30003780126571655,-0.2295977920293808,-0.08536584675312042,0.0838092714548111,0.13820408284664154,-0.11015033721923828,-0.16324631869792938,-0.004352528136223555,0.09006237983703613,-0.199396550655365,0.269503653049469,-0.08310723304748535,0.03497392684221268,0.208399698138237,-0.22290833294391632,0.03598450869321823,-0.04602557793259621,-0.16515745222568512,0.2962576150894165,0.014825375750660896,-0.20773246884346008,-0.2246500551700592,-0.33575576543807983,0.23680143058300018,0.23674240708351135,0.02365667186677456,0.3089601397514343,-0.1823924332857132,0.2578725814819336,0.21971555054187775,0.3288712501525879,0.3181304335594177,0.1971912384033203,-0.11015345901250839,-0.04962855204939842,0.1350432187318802,-0.33585089445114136,0.10599735379219055,0.2004229575395584,0.11964855343103409,-0.24348658323287964,0.0496157668530941,0.05233209207653999,0.15994977951049805,0.32622429728507996,-0.32100626826286316,-0.10068196058273315,0.28734374046325684,-0.024259168654680252,0.29844141006469727,-0.30397507548332214,-0.23801398277282715,0.14642859995365143,-0.2130032777786255,0.2518675923347473,-0.18073026835918427,-0.3110183775424957,0.17414329946041107,-0.011884823441505432,-0.20093534886837006,0.011531771160662174,-0.06973768025636673,0.25514644384384155,0.08348913490772247,-0.015466589480638504,0.13894419372081757,0.08916186541318893,0.21836037933826447,-0.23533228039741516,0.25462666153907776,-0.03237837925553322,-0.14261983335018158,-0.029946964234113693,0.10164898633956909,-0.18502451479434967,0.005418790504336357,-0.11525022238492966,-0.11197909712791443,0.28742215037345886,-0.30448344349861145,-0.1930622011423111,-0.02107526734471321,-0.3179417550563812,0.21893538534641266,0.18358783423900604,-0.0005854762275703251,0.18762923777103424,-0.06511343270540237,0.29257932305336,-0.24786803126335144,0.10536903142929077,-0.024399034678936005,-0.2527531385421753,0.10463995486497879,0.01848100684583187,0.1858014017343521,0.30561673641204834,0.33747684955596924,0.051172345876693726,-0.2756858170032501,-0.10960252583026886,-0.07696890830993652,-0.0019760597497224808,-0.18718981742858887,0.27383920550346375,0.06077468395233154,0.18286605179309845,-0.20801030099391937,-0.234437957406044,-0.19544270634651184,-0.017450101673603058,0.1659754514694214,0.1282472461462021,0.3156464099884033,-0.1719517856836319,-0.12604700028896332,0.030916916206479073,0.16707435250282288,0.2203654944896698,0.19350078701972961,0.02646121382713318,0.20331519842147827,-0.0059991078451275826,0.020119043067097664,-0.2002163678407669,-0.07362177222967148,-0.20629800856113434,-0.013198865577578545,-0.26733434200286865,-0.15624962747097015,0.14354930818080902,-0.3309519290924072,0.13307330012321472,-0.03475712612271309,0.06548544764518738,0.21839812397956848,0.3020186722278595,0.1326901763677597,0.11312919855117798,-0.08483097702264786,-0.1633531004190445,0.14600907266139984,-0.26663148403167725,-0.026371242478489876,0.07114536315202713,-0.3276410698890686,-0.01857990026473999,0.00889456458389759,-0.25051161646842957,0.022175177931785583,-0.2263641506433487,-0.32794344425201416,0.09591047465801239,-0.014215358532965183,-0.18993937969207764,0.03795287385582924,-0.2565400004386902,-0.08251625299453735,-0.2294970452785492,0.16897183656692505,0.13318569958209991,0.2679181396961212,0.03394559025764465,0.2624127268791199,-0.12376470118761063,0.00009363572462461889,-0.16955336928367615,0.06587152183055878,0.1947711855173111,-0.3115135729312897,-0.0957270935177803,0.21311460435390472,0.10691079497337341,-0.31778544187545776,0.16033872961997986,-0.03780050575733185,0.14722508192062378,0.26129215955734253,0.305693119764328,-0.04757995158433914,-0.2121683657169342,-0.15704771876335144,0.2765691876411438,0.04130604863166809,0.022872649133205414,-0.17458505928516388,0.30063891410827637,-0.32540351152420044,-0.062208790332078934,-0.10500038415193558,-0.24665440618991852,-0.0014570382190868258,-0.10436300188302994,0.08622365444898605,0.0388655886054039,0.1541147083044052,0.12551669776439667,-0.179510697722435,-0.13122664391994476,-0.03281538933515549,-0.14276839792728424,0.12824518978595734,-0.21837729215621948,0.23656868934631348,0.33692145347595215,-0.020221790298819542,-0.08537110686302185,-0.08728904277086258,-0.024883730337023735,-0.23300284147262573,-0.2171313762664795,-0.17622357606887817,-0.19147492945194244,-0.06163765862584114,0.15828676521778107,0.14358898997306824,0.27399176359176636,-0.16239000856876373,0.06546041369438171,0.28258517384529114,0.09158317744731903,0.08652225881814957,-0.11107674241065979,0.08366861194372177,-0.3151263892650604,-0.07140525430440903,-0.20715433359146118,-0.027559753507375717,-0.1085197925567627,0.233648419380188,-0.15016090869903564,0.17836616933345795,-0.05910378694534302,0.13446873426437378,0.2779015600681305,-0.19763123989105225,-0.2973029613494873,-0.04491906240582466,0.06252016872167587,-0.07901598513126373,-0.1547040343284607,-0.22292765974998474,-0.0992538258433342,-0.13514865934848785,0.17473915219306946,0.26774829626083374,0.048747967928647995,-0.3362022936344147,-0.026427268981933594,-0.2081790417432785,0.21112406253814697,0.32707473635673523,0.3060022294521332]},{"shape":[32],"values":[0.713756263256073,-0.6096780300140381,0.8303931951522827,-0.2619950473308563,0.49141302704811096,0.6242720484733582,-0.6622633934020996,0.7897447347640991,-0.4188881814479828,-0.7430034279823303,-0.6163017153739929,-0.3908270001411438,0.5936055779457092,0.5480923652648926,-0.809859573841095,0.6477490663528442,-0.42038652300834656,0.7990103363990784,0.8119020462036133,0.6878464221954346,0.7334939241409302,0.702391505241394,0.5535011291503906,0.7346549034118652,-0.15769128501415253,0.49512946605682373,0.7685093283653259,0.3310239017009735,0.6320410966873169,0.5076284408569336,0.12349224090576172,0.7775760889053345]},{"shape":[32,32],"values":[0.34291258454322815,0.09009813517332077,0.4091522693634033,0.06544190645217896,0.26195359230041504,0.31171897053718567,0.5766835808753967,0.016952721402049065,0.10775945335626602,0.42418166995048523,0.42831727862358093,0.4221314787864685,-0.23132765293121338,0.21271221339702606,-0.2987317740917206,0.3410385251045227,0.7600941061973572,0.33829087018966675,0.8502305746078491,0.036670178174972534,0.22078633308410645,0.09409931302070618,0.5480672717094421,0.5464624166488647,0.5324786305427551,0.642314612865448,0.28695565462112427,0.5077734589576721,0.2775968611240387,0.5032657384872437,0.21584832668304443,0.2279946506023407,-0.6063002943992615,-1.0607999563217163,-0.5481874346733093,0.2017599642276764,-1.2309035062789917,0.04505769535899162,-0.5082695484161377,0.037142038345336914,0.12782754004001617,-0.5863447189331055,-1.164258360862732,-1.0256825685501099,-0.18069444596767426,-1.1933510303497314,-0.14600367844104767,-0.7313171625137329,-0.9223132729530334,-0.2023399919271469,-1.2733765840530396,-1.0763404369354248,-0.17785534262657166,0.04466081038117409,-0.9239646792411804,-0.6526828408241272,-1.0618964433670044,-0.6308712959289551,-0.7380738854408264,-1.0006589889526367,-1.002057671546936,-0.7184663414955139,-0.843585193157196,-1.2541277408599854,0.17206019163131714,0.2593338191509247,0.2816513776779175,0.4588484466075897,0.6866490244865417,0.1794622540473938,0.2286851406097412,-0.2573133111000061,-0.22958752512931824,-0.09576211869716644,0.45569461584091187,0.30411678552627563,0.2504517436027527,0.5638712644577026,-0.19230839610099792,0.379391610622406,0.8708803057670593,0.10704996436834335,0.9655967950820923,0.42520591616630554,0.24875907599925995,-0.21845661103725433,0.48774266242980957,0.2975307106971741,0.13364359736442566,0.46073034405708313,0.5008037090301514,0.44180044531822205,0.5225725173950195,0.1834775060415268,0.3114011585712433,0.2332170158624649,-0.4461058974266052,-0.44590094685554504,-0.5960500836372375,0.6024412512779236,-0.37119290232658386,-0.7230673432350159,-0.17356693744659424,-0.029722845181822777,0.2268926203250885,-0.17894800007343292,-0.3998006582260132,-0.5193930268287659,-0.14236903190612793,-0.435916006565094,-0.19045670330524445,-0.022258620709180832,-0.13003520667552948,0.15912874042987823,-0.5446299910545349,-0.22412866353988647,0.1623310148715973,0.1209455356001854,-0.026147600263357162,-0.5995597839355469,-0.6417785286903381,-0.4988718330860138,-0.4310499429702759,-0.3840325176715851,-0.05767802521586418,-0.7670793533325195,0.07279861718416214,-0.40048539638519287,0.31956911087036133,0.046380527317523956,0.12390809506177902,0.47645828127861023,0.27796611189842224,0.5103769898414612,0.24509315192699432,-0.19979706406593323,-0.10139691084623337,0.3827528655529022,-0.02572760172188282,0.2645713686943054,-0.26325562596321106,0.1488695591688156,0.2437344640493393,-0.34207379817962646,0.15956155955791473,-0.3833514451980591,-0.2659899890422821,0.392890602350235,0.035483185201883316,-0.04962422326207161,0.3781299889087677,0.6465690732002258,0.5967836380004883,0.3693337142467499,0.5092580318450928,0.15642084181308746,0.5771774649620056,-0.004926071967929602,0.2780250608921051,0.5373196005821228,0.701013445854187,0.6649170517921448,0.053987596184015274,0.7494449615478516,0.364303320646286,-0.6326025724411011,0.032839469611644745,-0.13383643329143524,0.09207625687122345,0.16155804693698883,0.3725813925266266,0.30397069454193115,-0.3085152208805084,0.5559759736061096,-0.23931513726711273,0.385830819606781,0.8239437341690063,-0.6953325867652893,0.528495192527771,0.37911659479141235,-0.12965701520442963,0.23539526760578156,0.498952716588974,0.17372922599315643,0.03362911939620972,0.25846800208091736,0.35856691002845764,0.4564240574836731,0.3078483045101166,0.16533243656158447,0.4413367807865143,0.4901864528656006,-0.4540463387966156,-0.7804649472236633,-0.4202125370502472,-2.337472915649414,-0.7921707630157471,-0.1140403002500534,-0.20090782642364502,-0.12759239971637726,0.004313542041927576,-0.4772035777568817,-0.37903523445129395,-0.3643316924571991,0.2177761197090149,-0.6898279190063477,-0.11079069972038269,-0.1071661189198494,-0.8025223016738892,0.6750182509422302,-0.45268452167510986,-0.6159520745277405,0.0366094708442688,0.12275560200214386,-0.7342851161956787,-0.13342776894569397,-0.443791925907135,-0.6789284944534302,-0.2621971368789673,-0.4758777618408203,-0.18388581275939941,-0.4422400891780853,-0.7252474427223206,-0.20173467695713043,0.49916496872901917,0.46316173672676086,0.2220172882080078,0.7831256985664368,0.5811886191368103,0.1161193773150444,0.43595564365386963,-0.22372065484523773,-0.024689067155122757,-0.1518910974264145,-0.04923703148961067,0.6128771901130676,-0.2993079125881195,0.2202383428812027,-0.30290308594703674,-0.16133661568164825,0.28124743700027466,-0.4009586572647095,0.6388403177261353,0.1277051717042923,-0.20780591666698456,-0.2479133903980255,0.49581652879714966,0.058255527168512344,0.46016451716423035,0.2679792642593384,0.45432716608047485,0.09745994210243225,0.36810052394866943,0.5583930015563965,0.45431679487228394,0.41215234994888306,-0.2964300811290741,-0.17836669087409973,-0.15068373084068298,-0.9159176349639893,-0.5517240762710571,0.2880397439002991,-0.28970199823379517,0.05468738079071045,-0.28631559014320374,-0.2791856825351715,-0.4776345491409302,0.12958906590938568,0.11728902161121368,-0.6808561086654663,-0.2710932195186615,-0.1887505054473877,-0.5206543803215027,0.37817519903182983,-0.930628776550293,0.08016563206911087,0.3104807436466217,0.020105207338929176,-0.6701436042785645,0.1409471035003662,-0.43800613284111023,-0.2872556746006012,-0.43955928087234497,-0.5634170174598694,-0.4326693117618561,-0.5208371877670288,-0.062399376183748245,-0.08611542731523514,-0.7059302926063538,-0.6848982572555542,-0.7891813516616821,-1.6538310050964355,-0.7199731469154358,0.06298563629388809,-0.4280281662940979,-0.08077050000429153,-0.08676744252443314,-0.349481999874115,-0.9460355043411255,-0.43648314476013184,-0.18612533807754517,-0.9572600722312927,-0.10338953882455826,-0.6819369196891785,-1.0265854597091675,0.9075489640235901,-0.9038907289505005,-0.7243316173553467,0.7236540913581848,0.14481855928897858,-0.8219729065895081,-0.8278080224990845,-0.7345709204673767,-0.8857535719871521,-0.8779118061065674,-0.8383083343505859,-0.4617117941379547,-0.8941420912742615,-0.5493977665901184,-1.0150729417800903,-0.5358191132545471,-0.6475015878677368,-0.8069265484809875,-1.9036164283752441,-1.1382040977478027,-0.3025363087654114,-0.7711859941482544,-0.08010269701480865,-0.042452797293663025,-0.22314508259296417,-0.9976649880409241,-0.7594312429428101,0.11732565611600876,-0.6480019092559814,0.12985685467720032,-0.4998398423194885,-1.1393234729766846,0.9961163997650146,-1.093085765838623,-0.5656272768974304,0.6493167877197266,0.021724199876189232,-1.2760698795318604,-0.8731068968772888,-0.5748953223228455,-0.9406290650367737,-0.6698455214500427,-1.0873279571533203,-0.9776326417922974,-0.7022355794906616,-0.6259756684303284,-0.9181960821151733,-0.4293956756591797,-0.8871862292289734,-0.8098099231719971,0.5586062669754028,-1.109902262687683,0.044749125838279724,-0.9633322954177856,-0.15843576192855835,-0.1437753587961197,-0.5030949711799622,-0.8277050256729126,-0.8902387619018555,0.2015088051557541,-0.8172476291656494,0.019435187801718712,-0.6391260623931885,-0.5681049227714539,-0.31461313366889954,-1.2881481647491455,-0.5559688210487366,0.19807806611061096,0.018677467480301857,-1.126542568206787,-0.879796028137207,-0.8834503293037415,-0.7427623867988586,-1.0830562114715576,-1.0499376058578491,-0.676203191280365,-0.9453436136245728,-0.8030818700790405,-0.6299737095832825,0.11662184447050095,0.6055430173873901,-0.003405411262065172,0.5433756709098816,0.5115543603897095,0.23951950669288635,0.6278896331787109,-0.25049012899398804,0.052991434931755066,0.20706495642662048,0.16743625700473785,0.46869203448295593,-0.08340101689100266,0.4933299422264099,-0.10106614232063293,0.28644946217536926,0.43606165051460266,-0.11602950841188431,0.08944308757781982,0.6082914471626282,-0.23925790190696716,0.11926509439945221,0.5037912726402283,0.4708091616630554,0.4767374098300934,0.31016868352890015,0.04912177473306656,0.4300614893436432,0.2783465087413788,0.18226614594459534,0.051161691546440125,0.5121841430664062,0.6054959297180176,0.3723258674144745,0.3308902382850647,0.02043350413441658,0.8632590174674988,-0.8658588528633118,-0.2301355004310608,-0.059333208948373795,0.11086558550596237,0.01252059917896986,0.36581751704216003,0.3680781126022339,-0.1848568618297577,0.5961577296257019,0.08833131939172745,0.37800198793411255,0.5039234161376953,-0.7136784791946411,0.7254403233528137,0.6333045363426208,-0.601479172706604,-0.18567103147506714,0.42742446064949036,0.5334625840187073,0.3343745470046997,0.823290228843689,0.7350098490715027,0.02991650626063347,0.35404396057128906,0.019162975251674652,0.701140820980072,0.4052554965019226,-1.4723743200302124,-1.4823554754257202,-0.8608447909355164,-1.756441593170166,-1.0279334783554077,-0.3119036853313446,-1.3474884033203125,-0.006511173211038113,0.2766155004501343,-1.142026424407959,-1.181369423866272,-1.3557502031326294,0.15394039452075958,-1.5000797510147095,0.1451728492975235,-1.109322190284729,-1.4501628875732422,1.1819359064102173,-0.9748290777206421,-1.2703349590301514,1.00190269947052,0.1675877869129181,-1.4124952554702759,-1.5332194566726685,-1.437491774559021,-1.4678205251693726,-1.4489895105361938,-1.262032389640808,-1.5158143043518066,-1.0943694114685059,-1.0726439952850342,-1.4167507886886597,0.5565465688705444,0.13649067282676697,0.06910640746355057,0.7235913276672363,0.5524579882621765,0.15775394439697266,0.13009345531463623,-0.09753675013780594,-0.012347419746220112,-0.0930585041642189,0.4044726490974426,0.0021704358514398336,0.01772330142557621,0.016778292134404182,0.05550801381468773,-0.07241763174533844,0.4673464894294739,0.044884342700242996,0.4413829445838928,0.237037792801857,0.154060959815979,0.06943283975124359,0.8207830786705017,0.402352511882782,0.13473398983478546,0.1828598827123642,-0.003145309630781412,0.19952869415283203,0.36170756816864014,-0.13719934225082397,0.41438934206962585,0.3522306978702545,-0.7961035966873169,-0.6766878366470337,-0.24105441570281982,-1.5389375686645508,-0.948244035243988,0.12080016732215881,-0.18922293186187744,0.07544112205505371,-0.338038831949234,-0.48487645387649536,-0.6348430514335632,-0.5018791556358337,0.0826878547668457,-0.5352157950401306,0.10006166994571686,-0.11771152168512344,-0.939834713935852,0.7860596179962158,-0.9354000091552734,-0.6790418028831482,0.17081862688064575,-0.1062730923295021,-0.8821222186088562,-0.605387270450592,-0.719721257686615,-0.9794943928718567,-0.8385413289070129,-0.537952184677124,-0.7038007378578186,-0.2553235590457916,-0.9026715755462646,-0.6864639520645142,0.2593882381916046,0.30572524666786194,0.05548146739602089,0.10330554842948914,0.3544583022594452,-0.04191586747765541,0.47970446944236755,-0.06865598261356354,0.1689658910036087,0.33139801025390625,0.5917234420776367,0.26124462485313416,-0.24343840777873993,0.3425588309764862,0.10941336303949356,0.5912963151931763,0.25013184547424316,-0.03841350972652435,0.3281303942203522,0.6354344487190247,-0.282493531703949,-0.3035871982574463,0.11663719266653061,0.5006400942802429,0.15697239339351654,0.31367063522338867,0.5049722194671631,0.45695430040359497,0.20385590195655823,0.27334919571876526,0.2552137076854706,0.25682103633880615,0.16609925031661987,0.31079748272895813,0.521024227142334,0.4178202152252197,0.5412485599517822,0.32909300923347473,0.6481408476829529,-0.0036977205891162157,-0.22517432272434235,0.08591108024120331,0.36255162954330444,0.6291188597679138,-0.08667681366205215,0.7276692986488342,-0.36367106437683105,0.23617865145206451,0.5185496211051941,-0.33714720606803894,0.7925713658332825,0.3354998230934143,-0.13679099082946777,0.13298717141151428,0.80660080909729,0.762565016746521,0.37100619077682495,0.6344825625419617,0.2836044728755951,0.47532376646995544,0.6774227023124695,0.31455832719802856,0.30461305379867554,0.33926481008529663,0.6315281391143799,0.43442198634147644,0.35634249448776245,0.22509261965751648,0.6815419793128967,0.15517878532409668,0.3513992726802826,-0.1741623431444168,-0.06338055431842804,0.5927556157112122,0.13496410846710205,0.8582876920700073,-0.11925048381090164,0.41760921478271484,-0.2621117830276489,0.5852408409118652,0.5637680292129517,-0.05430170148611069,0.544232189655304,0.7710330486297607,-0.36483532190322876,-0.17415350675582886,0.528620183467865,0.7463251948356628,0.6004284024238586,0.32494622468948364,0.34231457114219666,0.4242984354496002,0.2942899763584137,0.6199018955230713,0.6064945459365845,0.42265641689300537,0.09030695259571075,0.1798446625471115,0.3458312153816223,0.3959939479827881,0.5995316505432129,0.12768718600273132,0.786064624786377,0.04245242103934288,-0.35577118396759033,-0.07958398014307022,0.22537139058113098,0.7057417631149292,-0.05515691637992859,0.5206055045127869,0.16792505979537964,0.09456301480531693,0.31256747245788574,0.2106247842311859,0.7956891655921936,0.6552878022193909,-0.17764338850975037,-0.04679940268397331,0.3546651303768158,0.8212578892707825,0.4720771610736847,0.4556419253349304,0.7372093200683594,0.3425300121307373,0.2918524444103241,0.3937748968601227,0.14287199079990387,0.24229693412780762,0.22814814746379852,0.13320603966712952,-0.1988251805305481,0.6274610757827759,0.25448644161224365,-0.4398448169231415,-0.12406712770462036,-0.013725410215556622,0.05665016546845436,0.0010085992980748415,0.2927336096763611,-0.49567121267318726,0.028513893485069275,0.3623278737068176,0.1150238886475563,0.26982665061950684,0.5709044933319092,0.2174815684556961,0.7188471555709839,0.1623031347990036,0.2648310363292694,-0.023665981367230415,0.24427169561386108,-0.49297016859054565,-0.17155008018016815,0.3014146089553833,0.015315433964133263,-0.09592686593532562,-0.09911618381738663,0.03808216005563736,0.4601164162158966,-0.37244656682014465,0.4944503605365753,0.5095635056495667,-0.2648918926715851,0.18441185355186462,0.08587812632322311,-0.07791702449321747,0.12119287997484207,-0.03823733702301979,-0.0366143062710762,0.40188300609588623,0.3838326036930084,0.054247330874204636,0.10607515275478363,0.2749423086643219,0.0981416329741478,-0.16754166781902313,0.503404438495636,0.03828641027212143,0.22189418971538544,0.11479885876178741,0.10482979565858841,-0.08768028020858765,0.20693625509738922,0.25886204838752747,0.23023802042007446,0.49840107560157776,0.5384982228279114,0.06315944343805313,0.09898914396762848,0.3795883357524872,0.3388502299785614,0.354035347700119,0.23308534920215607,0.5734552145004272,0.4672400951385498,0.008450932800769806,0.4951213002204895,0.3906611502170563,0.5338546633720398,0.09614767879247665,0.001591490930877626,0.509635865688324,0.36545437574386597,0.7407932281494141,-0.29599979519844055,0.4777422845363617,-0.22883081436157227,0.5360094904899597,0.38464799523353577,0.09016812592744827,0.2920319437980652,0.4599936604499817,-0.3953169584274292,-0.012612959370017052,0.07088405638933182,0.48786258697509766,0.37393462657928467,0.5227175354957581,0.4993642568588257,0.4390135705471039,0.6288493871688843,0.7047975659370422,0.00742165744304657,0.5473035573959351,-0.3389984965324402,-0.7265387177467346,-0.11689049005508423,-1.4402239322662354,-0.5655287504196167,0.11143103986978531,-0.09591913223266602,0.12017405778169632,0.17418499290943146,0.024079082533717155,-0.21699953079223633,0.24558699131011963,-0.11795945465564728,-0.7232170701026917,0.11827307939529419,-0.18116725981235504,-0.7300693988800049,0.20940925180912018,-0.8800946474075317,-0.18563173711299896,0.17283540964126587,-0.3109520971775055,-0.8066225051879883,-0.3711269497871399,-0.49237287044525146,-0.5758282542228699,-0.6069020628929138,-0.32587674260139465,-0.3071690797805786,-0.5333163142204285,-0.3714233934879303,-0.4044545888900757,-0.1043514758348465,0.12623213231563568,0.45064783096313477,0.1479577124118805,-0.05402103066444397,0.618474006652832,0.7219217419624329,0.1738538295030594,-0.2299770563840866,0.2640797793865204,-0.07420247048139572,0.6869531273841858,-0.13965396583080292,0.32079046964645386,-0.029048725962638855,-0.20043407380580902,0.1356523185968399,-0.019176173955202103,-0.03912132978439331,0.16444061696529388,0.2047673910856247,-0.44148966670036316,0.12165939807891846,0.22554665803909302,0.6057548522949219,0.1328684538602829,0.1378345787525177,0.30652302503585815,0.3254203796386719,0.09635119885206223,0.10442172735929489,0.4163530766963959,0.2269025593996048,0.4046477675437927,0.22391504049301147,0.2740533649921417,0.7866879105567932,0.027088085189461708,0.2626006007194519,0.13950954377651215,0.10403664410114288,0.4567313492298126,0.6131980419158936,0.27347132563591003,-0.2366267293691635,0.1068083643913269,-0.21930961310863495,0.6723850965499878,0.5042707324028015,0.032679229974746704,0.42624610662460327,0.1465688794851303,-0.44627946615219116,-0.17053166031837463,0.7591840028762817,0.40948742628097534,0.5516462922096252,0.7027694582939148,0.5142252445220947,0.873978316783905,0.4898778796195984,0.7453330755233765,0.19115771353244781,0.3123531639575958,-0.11036235839128494,0.5128622055053711,0.2640235722064972,0.6062020659446716,0.11221229285001755,0.5219211578369141,0.4417559504508972,-0.11234994232654572,0.05991728976368904,0.3572677969932556,0.1848156899213791,0.4836882948875427,0.10352719575166702,0.4824138879776001,-0.21309542655944824,-0.1586332768201828,0.23475633561611176,-0.260101854801178,0.07792511582374573,0.6837307214736938,-0.038587186485528946,-0.3164719343185425,0.54436856508255,0.28542959690093994,0.4381629228591919,0.3801106810569763,0.7113069295883179,0.5887478590011597,0.21758879721164703,0.09540538489818573,0.13884736597537994,0.642521858215332,0.28950437903404236,0.1424616277217865,0.35797443985939026,-0.22258535027503967,0.11830936372280121,0.6068944334983826,0.632094144821167,-0.1978079229593277,0.16052691638469696,0.5186792612075806,0.11780957132577896,0.3012772500514984,-0.1560591161251068,0.13660870492458344,0.004270820878446102,0.35679179430007935,0.39257171750068665,-0.28696975111961365,0.1980396807193756,0.49074050784111023,-0.0007785928901284933,-0.3405078053474426,0.35529083013534546,0.39241358637809753,0.44400376081466675,0.018370402976870537,0.2685651481151581,0.2626112997531891,0.36509883403778076,0.34326180815696716,0.03268897533416748,0.2520630359649658,0.07102835923433304,0.32687216997146606,0.3958686888217926,-0.25322964787483215,-0.0933627262711525,0.27712222933769226,0.4198974072933197,-0.21578191220760345,0.1935327798128128,0.4065721035003662,0.2782311737537384,0.6910167932510376,-0.007561753038316965,0.3511117994785309,-0.0023187219630926847,-0.25521448254585266,0.09133078157901764,-0.20706015825271606,-0.062468722462654114,0.049702126532793045,-0.017380714416503906,-0.2247477024793625,-0.08456141501665115,0.4778454899787903,0.1771102249622345,0.3597080409526825,-0.046646036207675934,0.15831491351127625,0.4180586636066437,0.43614205718040466,0.403311163187027,0.4641319513320923,0.44743573665618896,0.3671896457672119,0.06542237848043442,0.6576723456382751,0.5149552226066589,0.29209697246551514,0.12129861116409302,-0.09541801363229752,-0.18071746826171875,0.23096343874931335,0.47234177589416504,-0.19051559269428253,0.2762048542499542,0.19057774543762207,0.2063683122396469,0.36595457792282104,0.707050621509552,-0.8405715823173523,0.40152496099472046,0.5908709168434143,0.17696838080883026,0.03212812915444374,0.6757968664169312,0.1525336354970932,0.5023280382156372,0.3649854362010956,0.15763609111309052,0.4004693031311035,0.12946832180023193,0.1808035671710968,0.6085748672485352,0.3607122302055359,0.2387845665216446,0.3810635805130005,0.38836511969566345,0.16945621371269226,0.6467776894569397,-0.14753955602645874,0.6557024717330933,-0.112040214240551,-0.3519870638847351,0.3640671670436859,0.12000729143619537,0.5413689017295837,0.07451612502336502,0.1294116973876953,-0.17047181725502014,0.21245217323303223,0.2434001863002777,-0.07403799891471863,0.44165292382240295,0.120124451816082,0.1122216284275055,-0.24147340655326843,0.5767123103141785,0.4479619860649109,0.3435228168964386,-0.0031048457603901625,0.3274528384208679,0.5643662214279175,0.15373896062374115,0.3005031943321228,0.30763423442840576,0.6295035481452942]},{"shape":[32],"values":[0.6860361695289612,0.6653372049331665,0.3551177680492401,0.1933775693178177,0.6819902658462524,-0.037651821970939636,0.47404444217681885,0,-0.1152229756116867,0.3520140051841736,0.6155071258544922,0.534707248210907,-0.01991332694888115,0.5174280405044556,-0.07046196609735489,0.5630225539207458,0.7400883436203003,-0.33642059564590454,0.7159597277641296,0.6227675676345825,-0.34715622663497925,-0.03993261232972145,0.7493684887886047,0.604436993598938,0.5103309154510498,0.7150716185569763,0.6858722567558289,0.5101542472839355,0.6668404340744019,0.4132150113582611,0.675527811050415,0.5213080644607544]},{"shape":[32,9],"values":[0.4391225278377533,0.24112993478775024,0.34667712450027466,0.24628305435180664,0.5596253871917725,0.12284502387046814,0.6273744702339172,0.4121416211128235,0.24438545107841492,0.49095165729522705,0.735678493976593,0.6715613007545471,0.3071368932723999,0.8768600821495056,0.8257574439048767,0.9584880471229553,0.9467024803161621,0.5592231154441833,0.5306656360626221,0.7212201356887817,0.43863481283187866,0.10991829633712769,0.6275744438171387,0.27680912613868713,-0.10549566149711609,0.7104766964912415,0.7034279704093933,0.22580291330814362,-0.15807481110095978,-0.5362381935119629,0.7763553857803345,-0.23477253317832947,-0.5313116312026978,0.5280369520187378,-0.555131733417511,-1.2187658548355103,0.954723596572876,0.5389389395713806,0.7093236446380615,0.9165380001068115,1.1108211278915405,0.22783583402633667,0.8442187309265137,0.6976900100708008,0.6952752470970154,-0.4521126449108124,0.12879003584384918,0.5001511573791504,-0.5341679453849792,0.1150224357843399,0.7169903516769409,-0.5134940147399902,-0.15509086847305298,0.2257891595363617,-0.03502852842211723,0.34676751494407654,0.49058207869529724,0.22206752002239227,0.618948757648468,0.574873149394989,-0.13029785454273224,0.6209456324577332,0.8051486611366272,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11838390678167343,-0.07355088740587234,0.10456845909357071,-0.20156142115592957,-0.22464841604232788,0.38123002648353577,0.2745746672153473,-0.1661924123764038,-0.22496837377548218,-0.26920807361602783,-0.025245146825909615,0.056731514632701874,0.4739607870578766,0.3271169066429138,0.766891360282898,0.2486726939678192,0.388625830411911,0.07854966074228287,0.16363605856895447,0.05640466883778572,0.6118931770324707,0.8365646004676819,0.8692504167556763,0.4140842854976654,0.8478201031684875,0.4823061227798462,0.4235500693321228,0.6103330850601196,0.31850844621658325,0.5262494087219238,-0.0654568150639534,0.3325420618057251,0.7129812240600586,0.301107794046402,0.05663802847266197,0.7707735896110535,0.15591102838516235,0.4526260495185852,0.8210670948028564,0.1393638700246811,-0.0577365942299366,-0.15044984221458435,-0.3588131368160248,-0.06884884834289551,-0.3664138615131378,-0.07913536578416824,0.3502626419067383,-0.2414272427558899,0.8483496904373169,0.7029100656509399,0.6458015441894531,0.47585952281951904,0.6659017205238342,0.27403247356414795,0.3260831832885742,0.8279606103897095,0.2713497579097748,0.36801502108573914,-0.3090321719646454,-0.27407342195510864,-0.02721676230430603,0.015145988203585148,-0.3692600727081299,0.021085117012262344,0.24552617967128754,0.01954488269984722,0.8864359855651855,0.31010371446609497,0.318481981754303,0.8585439324378967,0.6209308505058289,0.28328749537467957,0.9483080506324768,0.42856690287590027,0.8409596085548401,0.7989544868469238,0.8587722182273865,0.5701391696929932,1.0912280082702637,0.4404202997684479,0.7207625508308411,0.9807154536247253,0.5333821177482605,0.525128960609436,-0.36872825026512146,-0.612686276435852,-0.6927098035812378,-0.7504919171333313,-0.14773041009902954,-0.9717458486557007,-0.5769488215446472,-0.8061099052429199,-1.353337287902832,1.319528341293335,1.0906516313552856,0.307796448469162,1.1455491781234741,1.062503695487976,0.5162679553031921,1.146650791168213,0.929391622543335,0.4539448618888855,0.5676978826522827,0.35470718145370483,0.5743836760520935,0.5024776458740234,0.035826534032821655,0.6772003769874573,0.3617786765098572,0.3123948276042938,0.5218464136123657,-0.4568394422531128,-0.2997548282146454,-0.08732298016548157,-0.24438463151454926,-0.2536565661430359,-0.2715592384338379,-0.42029693722724915,-0.7397028803825378,-0.8056322932243347,-0.2089231014251709,-0.269056499004364,0.011900990270078182,-0.38702526688575745,0.2028166800737381,0.09916941821575165,-0.07018762081861496,-0.22115400433540344,0.3578990399837494,0.8476018309593201,0.5270358324050903,0.5271026492118835,0.6583068370819092,0.6175345778465271,0.5765699148178101,0.9596275687217712,0.7838294506072998,0.39968109130859375,0.08552741259336472,0.6683675050735474,0.5255776643753052,0.30534905195236206,0.6685028672218323,0.7525507807731628,0.28310441970825195,0.5826517939567566,0.8748133182525635,0.7113044261932373,0.868026852607727,0.5671806931495667,0.8024441599845886,0.4734033942222595,0.7782168388366699,0.08022838085889816,0.35882431268692017,0.8743805289268494,0.4597693383693695,0.29852354526519775,0.7592464685440063,0.5213756561279297,0.6017724871635437,0.7290819883346558,0.882095456123352,0.7989292740821838,0.44835296273231506,0.2891579270362854,0.5809096693992615,0.6897192001342773,0.38203638792037964,0.6704164147377014,0.7236101031303406,0.8622346520423889,0.49421313405036926,0.7201845645904541,0.6539896130561829,0.7825716137886047,0.5647331476211548,0.5352913737297058,0.6067472696304321,0.9430843591690063,0.4614342451095581,0.6974380612373352,0.9100267291069031,0.022654708474874496,0.6958621144294739,0.6084725260734558,0.3548901379108429,0.3954629898071289,0.29378068447113037,0.666374146938324,0.7608292102813721,0.6192213892936707,0.5224337577819824,0.613050103187561,0.8301393389701843,0.41980069875717163,0.8970043063163757,0.8729745149612427,0.40291628241539,1.0599920749664307,0.9464433193206787,0.6495834589004517,0.017294324934482574,0.41158196330070496,0.5281621217727661,0.35936102271080017,0.7035365104675293,0.6090322136878967,0.3240986764431,0.2220325618982315,0.5186264514923096,0.5042893886566162,0.6676560044288635,0.18949435651302338,0.5885497331619263,0.48538529872894287,0.30370429158210754,0.5284764766693115,0.7677817344665527]},{"shape":[9],"values":[0.32987943291664124,0.1572042554616928,0.11956993490457535,0.31736698746681213,0.22890643775463104,0.2279631495475769,0.5131970047950745,0.5028318166732788,0.3789169192314148]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/index.html b/packages/demo-car-circuit/src/public/reports/racing-q-v1/index.html new file mode 100644 index 0000000..e8b3a41 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/index.html @@ -0,0 +1,9 @@ +DQN / Double DQN — Circuit Racing +

ARCHIVE V1 : cet entraînement arrêtait les sorties de piste. Il ne satisfait pas le contrat de récupération approuvé. Consulter le protocole corrigé V2 pour la validation finale.

← Circuit Racing

EXPÉRIENCE REPRODUCTIBLE · RACING Q-LEARNING V1

DQN et Double DQN,
à budget égal.

Cinq graines par méthode · 20 courses figées par pilote · 20 000 transitions d’entraînement · tensorflow, TensorFlow.js 4.22.0

+

DQN

68/100

courses réussies · 68/100 terminées

Réussite par graine : moyenne 68.0 %, écart-type 35.9 points ; 0.0–100.0 %.

Double DQN

89/100

courses réussies · 89/100 terminées

Réussite par graine : moyenne 89.0 %, écart-type 11.6 points ; 75.0–100.0 %.

+

Ces résultats décrivent ce circuit, ce curriculum et ce budget. Ils ne démontrent pas une supériorité générale de l’un des algorithmes. Les graines d’évaluation ne varient que légèrement le cap initial ; ces courses ne constituent pas 200 scénarios indépendants. Tous les checkpoints finaux et tous les échecs sont conservés.

+

Chaque graine, sans sélection

MéthodeGraineRéussiesTerminéesEntraînementÉvaluationCheckpoint
dqn110/200/2013.0 s24.5 sPoids
dqn2915/2015/209.9 s19.0 sPoids
dqn4714/2014/2010.4 s16.6 sPoids
dqn7320/2020/2011.0 s19.2 sPoids
dqn10119/2019/2011.5 s19.1 sPoids
double-dqn1115/2015/2012.2 s21.0 sPoids
double-dqn2920/2020/2011.4 s15.0 sPoids
double-dqn4719/2019/2015.0 s10.5 sPoids
double-dqn7315/2015/2011.4 s19.7 sPoids
double-dqn10120/2020/2011.8 s14.4 sPoids
+

Ce qui est identique

  • Réseau 20 → 32 → 32 → 9, ReLU et sorties Q linéaires ; Adam 0,001 ; replay 10 000 ; batch 32 ; gamma 0,99.
  • 20 000 décisions, chacune maintenue six ticks physiques de 1/60 s. Mise à jour toutes les quatre transitions et copie cible toutes les 100 mises à jour. Dernier checkpoint programmé ; aucune sélection sur l’évaluation.
  • Exploration, replay et initialisation pilotés par la graine. Pas de mélange aléatoire supplémentaire dans fit.
  • Entraînement solo sur Alpine Park : départs variés sur la piste, vitesse initiale 4–12 m/s, épisodes limités à 600 décisions et arrêt anticipé lors d’une sortie. Récompense de progression, checkpoints et pénalités. Aucun label ni remplacement par un pilote à règles.
  • Évaluation complète : cinq caps initiaux par circuit et par condition solo/trafic. Alpine Park et Harbour Test, trois tours, plafond 300 s. Trafic constitué de références à règles figées identiques pour les deux méthodes.
  • Réussite : trois tours, aucune remise en piste, pénalité ≤ 10 s. Une course terminée peut échouer à ce critère.
+

Temps et limites

Temps réels mesurés sur darwin/arm64, Node v22.14.0. Le premier passage inclut davantage de démarrage à froid ; les temps ne servent pas de classement de vitesse. Le curriculum d’entraînement diffère des départs de course arrêtés et ne comprend pas de trafic : les échecs de transfert restent mesurés.

Les reprises navigateur rechargent les poids et recréent optimiseur, replay et exploration. Ce benchmark utilise uniquement des entraînements neufs. Les poids de cette page sont des résultats expérimentaux ; leur présence ne garantit pas un adversaire compétent.

+

Télécharger les 200 résultats bruts, paramètres, versions et empreintes des sources

Reproduction : pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/compare-racing-q.mts, puis node scripts/report-racing-q.mjs. Le script refuse d’écraser un protocole existant ; déplacer le dossier de résultats avant une nouvelle expérience.

Calcul Double DQN : sélection online, évaluation cible, selon van Hasselt, Guez et Silver.

\ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v1/results.json b/packages/demo-car-circuit/src/public/reports/racing-q-v1/results.json new file mode 100644 index 0000000..8725584 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v1/results.json @@ -0,0 +1,2577 @@ +{ + "manifest": { + "protocol": { + "id": "racing-q-learning-v1", + "seeds": [ + 11, + 29, + 47, + 73, + 101 + ], + "evaluationSeeds": [ + 211, + 307, + 419, + 509, + 601 + ], + "transitions": 20000, + "actionRepeat": 6, + "episodeTransitions": 600, + "trainEvery": 4, + "hiddenLayers": [ + 32, + 32 + ], + "learningRate": 0.001, + "batchSize": 32, + "memorySize": 10000, + "gamma": 0.99, + "epsilonDecay": 0.9995, + "minEpsilon": 0.05, + "targetUpdateFrequency": 100, + "evaluation": "5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy", + "selection": "last scheduled checkpoint; all failures retained" + }, + "createdAt": "2026-09-06T17:07:57.181Z", + "node": "v22.14.0", + "tfjs": "4.22.0", + "backend": "tensorflow", + "platform": "darwin", + "arch": "arm64", + "head": "c5777d331613f01591d5461da70cb13a598885e1", + "sourceHashes": { + "packages/demo-car-circuit/src/racing/q-training.ts": "5a421c74c0dbcdeecfab09e509d6d10ab5ef01e0f884333f36688c7c4119e2bc", + "packages/demo-car-circuit/src/racing/q-protocol.ts": "dc872321ad27d56bd0e044e67d2ee8a039106d55b25c92c6e06259212b1b2c99", + "packages/demo-car-circuit/src/racing/learned-driver.ts": "67dd9890d773d8f1935f6b02da8585da9e09bbb6190af0239e37c71bc548e361", + "packages/demo-car-circuit/src/racing/training.ts": "04e2eb652afd50eb316a812d12f1eac5b9001b9811861f420da54c24cc826ccd", + "packages/demo-car-circuit/src/racing/driving.ts": "59ab36e303859c1abc9b9f07708bf1f2c248132d3bf453667f2e8daffd69dada", + "packages/demo-car-circuit/src/racing/race.ts": "dfb0d0d31ee6fab9015df0e086159e775dad9caee83a51f5b61f665cb6ffe075", + "packages/demo-car-circuit/src/racing/observations.ts": "284640c1e5c00d854013ac724910b4a565596320477f0346dbc7c43f3bb9f9e4", + "packages/backend-tfjs/src/agents/dqn.ts": "acc73079c7d5c95e59628311517e0a9e3b1e668200e2fd6c84cb1178e2afb648", + "packages/backend-tfjs/src/model/BuildMLP.ts": "f359df8f1ec1544d8c0b5d5b9e1b53f63ef38f8ddd190ddf7997fe5e9375e28e", + "packages/backend-tfjs/src/memory/ReplayBuffer.ts": "09e9b9b839cb3b4c98eba82ec10a735510bde195daa90efdc3aa17f33af43f80" + } + }, + "additionalProvenance": { + "reference": { + "path": "packages/demo-car-circuit/src/racing/reference.ts", + "sha256": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "verifiedIdenticalToRecordedHead": "c5777d331613f01591d5461da70cb13a598885e1", + "capturedAfterRun": true + } + }, + "reports": [ + { + "algorithm": "dqn", + "seed": 11, + "trainingSeconds": 12.976010583, + "evaluationSeconds": 24.499678042000003, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4670 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7148 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2835 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3818 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4624 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1551 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2154 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3489 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1611 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1524 + } + ] + }, + { + "algorithm": "dqn", + "seed": 29, + "trainingSeconds": 9.919293624999998, + "evaluationSeconds": 18.996156042000003, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.36666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 197.51666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9132 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 217.76666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9998 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 219.83333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10572 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 215.58333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10497 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 241.56666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11782 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.78333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.85, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.833333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15922 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16681 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 14936 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15574 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15878 + } + ] + }, + { + "algorithm": "dqn", + "seed": 47, + "trainingSeconds": 10.382379709, + "evaluationSeconds": 16.568217957999995, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.933333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.966666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.916666666666668, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 209.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4573 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3304 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3454 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 203.53333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 2044 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4971 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 113.76666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3106 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 162.86666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3407 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5882 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6666 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6474 + } + ] + }, + { + "algorithm": "dqn", + "seed": 73, + "trainingSeconds": 10.977546415999997, + "evaluationSeconds": 19.17241016700001, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.333333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.31666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 240.53333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 12107 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 194.55, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9366 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 276.46666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 14305 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 221.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10846 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 119.53333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4983 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.78333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.733333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.666666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.666666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 158.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6644 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 266.98333333333335, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 12798 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 193, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8453 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 268.73333333333335, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 13129 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 175.33333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7762 + } + ] + }, + { + "algorithm": "dqn", + "seed": 101, + "trainingSeconds": 11.481121500000008, + "evaluationSeconds": 19.051239500000026, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.333333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 239.01666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11504 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 213.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10005 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 220.13333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10603 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 228.93333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11037 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 196.06666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9902 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.166666666666664, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.666666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.95, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 230.5, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 10235 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 225.08333333333334, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 9795 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 8625 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 223.31666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10140 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 180.15, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 7597 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 11, + "trainingSeconds": 12.249157082999998, + "evaluationSeconds": 21.01962049999999, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.78333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.833333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.833333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.88333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 253.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 12607 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 182.98333333333332, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8664 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 180.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8125 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 230.83333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11296 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 125.64999999999999, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5244 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.416666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.68333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.233333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16163 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16383 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15753 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16252 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15581 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 29, + "trainingSeconds": 11.396927041999996, + "evaluationSeconds": 14.992831875000004, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.266666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.28333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.31666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.61666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6575 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 148.91666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6412 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 179.96666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7652 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 155.98333333333332, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6644 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 151.33333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6482 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.083333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.63333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.666666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.88333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 153.63333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 5829 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 182.4, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6834 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 147.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5251 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 218.85, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9055 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 218.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9199 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 47, + "trainingSeconds": 14.952409207999997, + "evaluationSeconds": 10.45181554099999, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.233333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.18333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.233333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.25, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 90.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1704 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 93.7, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 646 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 100.1, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1290 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 93.41666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 635 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 108.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1567 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.61666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 45.166666666666664, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 40.733333333333334, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 40.733333333333334, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 146.48333333333332, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 3101 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 142.65, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 2136 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 1666 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 102.58333333333333, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 1755 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 73.36666666666666, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 355 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 73, + "trainingSeconds": 11.363214959000004, + "evaluationSeconds": 19.723151208999973, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.516666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.46666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.46666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 15477 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 14876 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 275.95, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 12604 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 15411 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 279.0833333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 12873 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 41.15, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.25, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.13333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.88333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 191.35, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 7902 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 176.2, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 7334 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 13895 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 231.41666666666666, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 10588 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 16025 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 101, + "trainingSeconds": 11.838089459000038, + "evaluationSeconds": 14.377712708000036, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.06666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.06666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 223.01666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 10705 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 232.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11274 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 181.78333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8051 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 148.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6070 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 201.7, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9839 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.55, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.65, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.483333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.55, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.36666666666667, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 5964 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 183.55, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7546 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 171.65, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7102 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 195.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8358 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.78333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6046 + } + ] + } + ] +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-101.json new file mode 100644 index 0000000..fceaf1e --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:28:04.694Z","weights":[{"shape":[20,32],"values":[1.5020357370376587,-0.5620394945144653,0.24276231229305267,1.2676640748977661,0.3299739360809326,1.4035216569900513,1.2656198740005493,-0.025465834885835648,-0.5472559332847595,1.5292868614196777,-0.6612758636474609,0.40504419803619385,1.0222082138061523,1.1889015436172485,0.7604674696922302,0.11389555037021637,-0.12122270464897156,0.17167043685913086,0.8310245871543884,0.924281895160675,0.8555594086647034,-0.5385043025016785,-0.21602191030979156,0.6186811923980713,0.5396389961242676,-0.5223312377929688,-0.004764074459671974,1.0995036363601685,1.5832329988479614,0.5181881189346313,-0.38969120383262634,0.676181435585022,-0.10398606210947037,0.10553689301013947,-0.15755818784236908,0.058347150683403015,0.6616814136505127,0.1126735731959343,0.0027342208195477724,-0.12061940878629684,-0.2607244551181793,0.044823698699474335,-0.03467364236712456,-0.0644678995013237,-0.2158404439687729,-0.08799099177122116,0.11941361427307129,-0.22318008542060852,0.15633466839790344,0.06228485703468323,0.01357687171548605,-0.06795336306095123,-0.25891637802124023,0.04610583186149597,-0.06097843497991562,-0.12571516633033752,0.06814772635698318,-0.046413324773311615,-0.10886254906654358,-0.038141705095767975,0.23934654891490936,0.03367811441421509,-0.08677903562784195,0.24420912563800812,-0.05528894066810608,-0.7706177234649658,-0.3067138195037842,-0.0005876068607904017,0.08602514117956161,-0.0157863050699234,0.08926721662282944,-0.39586901664733887,-0.3928227722644806,-0.1052044928073883,0.27029359340667725,0.39874571561813354,0.2534394860267639,-0.18968841433525085,-0.14537279307842255,-0.6543998718261719,-0.24032658338546753,-0.3633229732513428,0.43574246764183044,0.13262324035167694,-0.08762481808662415,1.1166104078292847,-0.2966138422489166,0.3604700565338135,-0.14432725310325623,1.0034548044204712,-0.45373886823654175,-0.12355628609657288,0.06784915179014206,-0.02610470913350582,-0.49229058623313904,0.03718479722738266,-0.304584264755249,1.0720137357711792,1.559111475944519,-0.25368717312812805,-0.7809373140335083,0.25171464681625366,-0.42757606506347656,1.368955373764038,1.0719103813171387,-0.37966910004615784,1.6378000974655151,-0.2134181261062622,-0.5155332088470459,-0.31200507283210754,-0.08208145201206207,0.5368525981903076,-0.933046817779541,0.20704029500484467,-0.34554323554039,-0.2064589560031891,-0.24708862602710724,-0.8613172173500061,1.5142245292663574,-0.752738893032074,0.558997631072998,-0.6870166659355164,1.3048052787780762,0.23084911704063416,0.05844457074999809,-0.3589635491371155,1.3177056312561035,-0.49346405267715454,0.16182966530323029,-0.06580536812543869,-0.043249815702438354,-0.0676085576415062,0.14144964516162872,0.0016151948366314173,-0.05067889764904976,-0.07212137430906296,0.3303861618041992,0.10460922867059708,-0.060965120792388916,-0.18382109701633453,-0.3228747248649597,0.32988816499710083,-0.13956232368946075,0.028093650937080383,0.1517733931541443,0.15525195002555847,-0.03235771507024765,0.2397015243768692,-0.13407954573631287,0.030797146260738373,-0.3378494083881378,0.2928781807422638,0.1152743324637413,0.1478448063135147,0.2863415479660034,0.16135498881340027,-0.29088178277015686,-0.0895429477095604,0.23142340779304504,-0.13523991405963898,0.000341690523782745,0.30699285864830017,0.24205268919467926,0.13165603578090668,-0.4222334027290344,0.0930638536810875,0.18829146027565002,0.3431573808193207,-0.06030010059475899,-0.19828663766384125,-0.03497936204075813,0.38717415928840637,-0.21618376672267914,-0.0007406307850033045,-0.09594570100307465,-0.2293768972158432,-0.24826061725616455,-0.19294825196266174,-0.1977049708366394,0.4368681311607361,-0.13748586177825928,-0.11724945157766342,0.21514521539211273,0.04585809260606766,-0.31840190291404724,-0.4998300075531006,0.3082582652568817,-0.24153900146484375,-0.23769500851631165,0.06325840950012207,0.37178510427474976,0.10757734626531601,0.21547409892082214,-0.15511085093021393,-0.1778395026922226,0.025191834196448326,-0.6333909630775452,-0.1771269142627716,-0.11803072690963745,0.0579574890434742,0.42188864946365356,0.2926272451877594,0.01473216712474823,0.181658536195755,0.21132424473762512,-0.0661882683634758,-0.2712978422641754,0.1891622543334961,-0.44610294699668884,-0.40660062432289124,0.21950893104076385,-0.20315662026405334,0.0528205968439579,0.20936188101768494,0.4065471589565277,0.21580709517002106,-0.5016029477119446,0.14398832619190216,-0.13885462284088135,-0.23735357820987701,-0.40684399008750916,0.11834880709648132,-0.06114228814840317,0.1796627938747406,-0.008967256173491478,0.2429078072309494,0.3082946538925171,0.008332141675055027,-0.6833162903785706,-0.18781103193759918,0.2239522933959961,-0.025491157546639442,0.23354916274547577,0.40966108441352844,0.6931443810462952,0.27898603677749634,0.3082484304904938,0.5121034383773804,-0.32408830523490906,-0.13108333945274353,-0.6470925211906433,-0.06312718987464905,0.3444064259529114,0.18942613899707794,0.5054717659950256,-0.15184704959392548,-0.004447560757398605,0.41834497451782227,-0.198297917842865,-0.03538869321346283,0.0644664540886879,0.19853836297988892,-0.16720722615718842,-0.06418630480766296,0.3541913330554962,0.022823156788945198,-0.4412398040294647,-0.1378013789653778,0.05515813082456589,-0.650749921798706,-0.03769237548112869,-0.08308111876249313,-0.23153740167617798,0.28925952315330505,0.14977328479290009,0.16680599749088287,0.12398012727499008,0.1822345107793808,0.21232226490974426,0.15945975482463837,0.3236866295337677,0.04303436726331711,0.1466672569513321,0.3452652096748352,0.20206855237483978,0.20809929072856903,0.3546975255012512,-0.10667349398136139,0.11556331068277359,-0.3141801357269287,0.2749330699443817,-0.10326860100030899,0.16779129207134247,0.5480807423591614,-0.031203515827655792,0.6895031929016113,-0.22390705347061157,0.16365915536880493,0.348929762840271,-0.10192320495843887,0.18164241313934326,-0.24513480067253113,-0.22169698774814606,0.00015543654444627464,-0.019843624904751778,0.00557061517611146,0.21124088764190674,-0.019593708217144012,-0.3405557870864868,0.3999340534210205,0.2180529534816742,0.14447738230228424,0.038727931678295135,-0.12636679410934448,0.028862690553069115,-0.016153983771800995,-0.1723543256521225,0.3220981955528259,-0.07645310461521149,0.35550209879875183,-0.21876223385334015,0.1620139479637146,0.16176359355449677,0.19830843806266785,-0.11116316169500351,0.33168548345565796,0.3809807002544403,-0.3553699254989624,-0.009784040972590446,-0.3605448603630066,0.2944425046443939,0.10832354426383972,-0.017687998712062836,0.0037502984050661325,-0.3006196916103363,0.04212084412574768,0.01594654843211174,0.27173930406570435,0.3416668474674225,-0.2483929693698883,-0.25839167833328247,0.1861565262079239,-0.13411398231983185,-0.10850796848535538,-0.056890469044446945,-0.1683133989572525,0.020627425983548164,0.004460543859750032,0.28450196981430054,0.08329863846302032,0.2887185513973236,0.22428332269191742,-0.297126442193985,0.2858630418777466,0.2939527928829193,-0.027605371549725533,0.022190436720848083,0.4925846755504608,0.002439772943034768,0.3399140536785126,-0.06484093517065048,-0.10957596451044083,-0.1883808672428131,0.196268692612648,-0.1922672688961029,-0.25117626786231995,-0.06587298959493637,0.14493097364902496,-0.28891879320144653,-0.04901645705103874,0.11648185551166534,0.08170254528522491,0.030129116028547287,0.029698440805077553,-0.10660368204116821,0.12476353347301483,0.08780863881111145,0.24005326628684998,0.24413101375102997,0.07365302741527557,-0.5215989351272583,0.19474637508392334,-0.09267919510602951,0.016057197004556656,-0.017401089891791344,-0.09865042567253113,-0.13672494888305664,-0.26418596506118774,-0.08043072372674942,-0.24572375416755676,0.007264516782015562,-0.4673515260219574,-0.1892872303724289,0.2224063128232956,0.08039076626300812,-0.04112604260444641,-0.23089995980262756,-0.34839940071105957,-0.26457899808883667,0.0779082253575325,-0.4869329035282135,-0.05663951113820076,-0.20188190042972565,-0.2594524025917053,0.07660042494535446,-0.18230418860912323,0.06650695204734802,0.14122848212718964,0.1140550971031189,-0.04047434404492378,-0.3804114758968353,0.48692092299461365,-0.11612415313720703,-0.06968698650598526,-0.052596837282180786,0.0797966942191124,-0.1845630407333374,0.14380988478660583,-0.052413102239370346,0.15923362970352173,-0.010705233551561832,0.5907531380653381,0.27433526515960693,0.2579115629196167,0.071792833507061,-0.1089702770113945,0.231057271361351,0.2984694838523865,0.05482680723071098,-0.20445483922958374,0.15556499361991882,-0.14007864892482758,0.14383414387702942,-0.05077133700251579,0.02161157876253128,-0.13307532668113708,0.290147989988327,0.1746423989534378,0.13557107746601105,-0.11270414292812347,0.054489776492118835,-0.11019672453403473,-0.26012176275253296,0.3645164370536804,-0.19879290461540222,-0.13309037685394287,0.3257046937942505,-0.17369256913661957,-0.21821443736553192,0.2315376251935959,0.1598040908575058,0.37696248292922974,0.22811715304851532,0.12124919891357422,0.3717156946659088,-0.2113855928182602,-0.02814551070332527,-0.23943710327148438,-0.15250492095947266,0.39589717984199524,-0.16617603600025177,0.2702620327472687,-0.20734894275665283,-0.2210104763507843,0.3038683831691742,0.31317177414894104,0.2159455567598343,-0.18157431483268738,-0.40262553095817566,0.12423795461654663,0.15219995379447937,0.20136241614818573,0.1287592053413391,0.09972452372312546,-0.08807472884654999,-0.1141769215464592,0.0262894369661808,-0.13829314708709717,0.3451724052429199,-0.2533562183380127,0.31587517261505127,-0.11910133808851242,-0.007137322332710028,0.0801498144865036,0.38387829065322876,0.14149460196495056,0.1444527506828308,0.3912277817726135,-0.3733152151107788,-0.16223503649234772,-0.2539730370044708,0.12013428658246994,0.161668062210083,0.29954293370246887,-0.09464221447706223,-0.3232687711715698,0.14620047807693481,0.033638402819633484,0.24283580482006073,0.033185966312885284,-0.20402324199676514,-0.13565413653850555,-0.32412201166152954,0.1051027849316597,-0.2671477198600769,-0.2865632474422455,-0.16421566903591156,-0.03399040549993515,-0.5121386051177979,-0.09436905384063721,-0.15457823872566223,-0.2334371656179428,0.12675511837005615,0.20932915806770325,-0.14443065226078033,-0.26468706130981445,0.04392710700631142,-0.02553912065923214,0.10786634683609009,-0.1092144027352333,-0.21488313376903534,-0.12081478536128998,-0.2700231075286865,0.020021643489599228,0.18851374089717865,0.10069876164197922,-0.0290172528475523,0.05387616157531738,-0.47446998953819275,-0.3894263803958893,-0.0236690491437912,-0.3203292489051819,0.2556808888912201,0.21636393666267395,-0.062331702560186386,0.09008514881134033,0.09828901290893555,-0.2729776203632355,-0.082768514752388,-0.18104949593544006,-0.12835368514060974,-0.09153462946414948,-0.08575301617383957,0.13639384508132935,0.20572860538959503,-0.1646219789981842,-0.17984843254089355,-0.062235020101070404,-0.2451203614473343,0.22082580626010895,-0.17286202311515808,0.11831329017877579,0.12850746512413025,0.13098813593387604,0.10203739255666733,-0.3120436668395996,-0.1151234358549118,-0.2341797649860382,0.0725231021642685,0.18524564802646637,-0.12641945481300354,-0.04550574719905853,-0.18891212344169617,0.3105839192867279,-0.20864854753017426,0.23340679705142975,0.014064498245716095,0.15735945105552673,0.35598641633987427,0.11880461126565933,-0.06332693248987198,0.10667629539966583,-0.5250115990638733,0.10695050656795502,-0.09995539486408234,0.20773464441299438,0.30605220794677734,0.09258603304624557,-0.08225415647029877,-0.1628376543521881,-0.01625445857644081,-0.33700910210609436,0.007216713856905699,-0.03490250185132027,0.2830943167209625,0.11724641174077988,0.10924208164215088,0.3641926646232605,-0.23521080613136292,-0.16565237939357758,-0.03689234331250191,-0.10633186995983124,0.2096993327140808,0.45739901065826416,-0.2787703275680542,-0.0419137142598629,-0.2601240277290344,-0.1835610717535019,-0.28637373447418213,-0.1674984097480774,-0.15918684005737305,0.3620975613594055,0.3264344334602356,0.04169593006372452,0.04427841678261757,-0.28209730982780457,-0.1479429453611374,-0.3856657147407532,-0.17855405807495117,0.11036844551563263,-0.028235862031579018,0.12284409999847412,0.4011164903640747,-0.3212681710720062,0.22657425701618195,-0.06746916472911835,-0.14997221529483795,-0.4591752290725708,-0.20327427983283997,0.22769327461719513,-0.18618586659431458,-0.2998909652233124,0.32105013728141785,-0.21328596770763397,-0.41525816917419434,0.3320309519767761,-0.359159380197525,0.049102783203125,0.4088391065597534,0.1534399539232254,0.06447302550077438,0.14410153031349182,-0.31939882040023804,0.11741286516189575,0.3646789491176605,-0.06648583710193634,-0.4621095061302185,-0.09904812276363373,0.03096560575067997,-0.21087245643138885,0.12092025578022003,-0.1630968451499939,0.2555185854434967,0.2855589985847473,0.28497856855392456,-0.10061123222112656,0.1310526430606842,-0.05254405736923218,-0.10269106179475784,-0.07590518891811371]},{"shape":[32],"values":[0.6718916893005371,-0.125831738114357,-0.36073318123817444,0.6048375368118286,-0.038613297045230865,0.6077418923377991,0.47224244475364685,-0.18507057428359985,-0.2994788587093353,0.3738071322441101,-0.08475273102521896,0.26323339343070984,0.5243881940841675,0.4797452390193939,0.6449060440063477,-0.053274448961019516,-0.2139807790517807,-0.051167674362659454,0.47495755553245544,0.47793883085250854,0.35110193490982056,-0.17488646507263184,-0.16601784527301788,0.2477456033229828,0.28747501969337463,-0.10359109938144684,-0.2545278072357178,0.5797871351242065,0.5456375479698181,0.5005132555961609,-0.21451303362846375,0.31965506076812744]},{"shape":[32,32],"values":[-0.1551506370306015,0.5612844824790955,-0.018521884456276894,0.4037042260169983,-0.13960173726081848,0.04234263300895691,0.6930887699127197,-0.13544216752052307,-0.05698563903570175,-0.03673770651221275,0.23478129506111145,0.3947242796421051,0.8726993203163147,0.8200891613960266,0.511936604976654,0.5582051277160645,0.4810262620449066,0.6935202479362488,0.9543638825416565,-0.14423546195030212,0.32039862871170044,0.4825873076915741,0.8617152571678162,0.6548298001289368,0.5235198140144348,0.22099928557872772,-0.033671244978904724,0.5344089865684509,0.31807172298431396,0.07908116281032562,-0.2373061329126358,0.08310619741678238,-0.3376125693321228,-0.30600738525390625,0.3537530303001404,-0.6028236150741577,0.21830932796001434,0.3185447156429291,-0.16702616214752197,-0.07586335390806198,0.018906138837337494,0.15306594967842102,-0.3005974590778351,0.10434199124574661,-0.1983620673418045,-1.0613278150558472,-0.33697545528411865,0.07089546322822571,-0.20629940927028656,-1.1361643075942993,-0.2112298458814621,0.02472028136253357,0.20365040004253387,0.16968217492103577,-0.013194951228797436,0.2135097086429596,-0.3402198851108551,-0.3688713014125824,-0.07469114661216736,0.17793957889080048,-0.0013767026830464602,0.14992733299732208,0.1893957555294037,0.12000223994255066,0.1317577064037323,-0.939723551273346,0.32840496301651,-0.688917875289917,-0.18131379783153534,0.42913609743118286,-0.42535918951034546,0.10626616328954697,0.3449127674102783,-0.32597655057907104,0.18688246607780457,0.006837320048362017,-0.7579778432846069,-1.3760273456573486,-0.5708656907081604,-0.08063953369855881,-0.5846710801124573,-1.3334294557571411,-0.2250760942697525,0.2899128794670105,-0.6053527593612671,-0.5346564650535583,-0.38615912199020386,0.10585901141166687,-0.5120652318000793,0.41309043765068054,-0.07900706678628922,0.06726215779781342,0.27265477180480957,0.10075827687978745,0.001997299725189805,0.08634784817695618,-0.6055376529693604,0.7039247751235962,-0.2548963129520416,0.32728683948516846,-0.3139932453632355,-0.029033198952674866,0.3423152267932892,-0.026145176962018013,-0.019554339349269867,0.009424948133528233,-0.22185969352722168,-0.007644800003618002,0.6318898797035217,0.45049962401390076,0.7134246826171875,0.4706570506095886,0.23743179440498352,0.7483109831809998,0.4420536160469055,-0.11450787633657455,0.2668829560279846,0.48492300510406494,0.8573724031448364,0.5941044092178345,0.1548975110054016,0.15918779373168945,0.13688604533672333,0.41794320940971375,0.1542409062385559,0.009010996669530869,0.32960423827171326,-0.3046760559082031,-0.4939950406551361,0.08375628292560577,0.04606465995311737,0.12103544175624847,0.06412415206432343,0.08548729866743088,0.0831039771437645,0.20198404788970947,0.3562372028827667,-0.26074695587158203,0.07752052694559097,-0.36364102363586426,-0.6602677702903748,-0.5523786544799805,-0.11674094945192337,-0.5598843097686768,0.17036597430706024,0.007510429248213768,-0.27984553575515747,0.12283781915903091,0.24955032765865326,-0.6280567049980164,-0.0914677307009697,0.021473446860909462,-0.7178588509559631,-0.9511501789093018,0.2884231507778168,-0.02931716851890087,-0.28017520904541016,-0.12319841980934143,-0.0810089036822319,-0.2086647003889084,-0.3485967218875885,0.475193589925766,-0.18943315744400024,0.593654453754425,-0.1696498543024063,-0.2856283485889435,0.6801921725273132,-0.15697471797466278,0.3029201924800873,0.16813762485980988,0.011228100396692753,0.31901293992996216,0.12048138678073883,0.9334827065467834,0.30444175004959106,0.2859242260456085,0.44007283449172974,0.3120536804199219,0.682433545589447,-0.10381343960762024,0.5466178059577942,-0.10746084153652191,0.6142866015434265,0.5262607932090759,0.41162818670272827,0.18204638361930847,0.08766313642263412,0.4484696388244629,0.06079060956835747,-0.33476847410202026,0.1890210211277008,-0.24963179230690002,-0.5333827137947083,0.2248932123184204,0.13928593695163727,0.6228989362716675,-0.033222828060388565,0.0007255285745486617,0.4309345781803131,-0.1714242547750473,0.044817689806222916,0.18981623649597168,0.11460846662521362,0.10570766031742096,0.517217218875885,0.34801381826400757,0.7564221024513245,0.14680030941963196,0.49255436658859253,0.5383601784706116,0.4710627496242523,0.2609754204750061,0.4699362814426422,0.30921879410743713,0.4905710518360138,0.3013678789138794,0.4246668219566345,0.1241685003042221,-0.20468761026859283,0.37014660239219666,0.018936311826109886,0.1649290770292282,-0.06959934532642365,0.16204029321670532,-0.2971547245979309,-0.6602470278739929,0.26516667008399963,-0.6404824256896973,0.07513335347175598,-0.06660657376050949,-0.48146939277648926,-0.2148941308259964,0.33067402243614197,-0.3167846202850342,-0.0008049634052440524,0.19273318350315094,-0.06524646282196045,-1.0727590322494507,0.07397525012493134,0.06795790046453476,-0.31079018115997314,-0.7286720275878906,-0.0181775763630867,0.1013810932636261,-0.45326361060142517,-0.3627072274684906,-0.40760427713394165,0.2120843529701233,-0.23726911842823029,0.18960922956466675,0.13122013211250305,-0.01804201304912567,0.03818615525960922,0.119809590280056,-0.019627342000603676,-0.020073741674423218,-0.7451355457305908,-0.45886313915252686,-0.21265718340873718,-0.8497723340988159,-0.018937738612294197,0.07189127802848816,0.08055456727743149,0.27371808886528015,0.13214434683322906,0.10377666354179382,-0.3066213130950928,-0.08620110154151917,0.16794313490390778,-0.4072459936141968,0.2786346971988678,0.17084264755249023,-0.20573748648166656,-0.6674997210502625,-0.11904238164424896,0.2987672984600067,0.2946348190307617,-0.2136390656232834,-0.3003597557544708,0.10430719703435898,-0.4857288897037506,-0.175850972533226,-0.1959139108657837,-0.12083235383033752,0.19077347218990326,0.19284294545650482,0.09083772450685501,-0.00008385692490264773,-0.0790773555636406,-0.00033538308343850076,0.02146916463971138,0.7628268003463745,-0.05992189794778824,-0.08942223340272903,0.8056709170341492,0.050871532410383224,0.09898065775632858,-0.06800074130296707,-0.1532716453075409,0.23345214128494263,0.705258309841156,0.6844059228897095,0.4614652097225189,0.37918028235435486,0.037530653178691864,0.39458167552948,0.23592369258403778,-0.08595476299524307,0.26799049973487854,-0.009158063679933548,0.7155219912528992,0.1083364188671112,0.011719130910933018,0.13125719130039215,0.0011432536412030458,0.24414871633052826,-0.03179521858692169,-0.24662896990776062,-0.025389831513166428,0.35960155725479126,0.4825037717819214,-0.3890525698661804,0.2969588339328766,-1.182439923286438,-0.034923870116472244,0.3458106517791748,-0.4665890336036682,-0.13489721715450287,-0.06430614739656448,-0.22635076940059662,-0.22380775213241577,0.203516885638237,0.07820364087820053,-0.652641773223877,-0.13294246792793274,0.060211509466171265,-0.5868030786514282,-0.8824353218078613,-0.03783293440937996,0.08323346823453903,-0.08375958353281021,0.15416045486927032,-0.49143099784851074,0.08444280177354813,-0.6392889022827148,-0.16111953556537628,-0.02441565692424774,-0.38028883934020996,-0.17432670295238495,0.06714895367622375,0.22303712368011475,0.3899329602718353,0.44372430443763733,0.3449818789958954,0.27249330282211304,-0.1747625768184662,-0.05312379077076912,0.09241506457328796,0.456906795501709,-0.11603588610887527,-0.45502662658691406,0.051665034145116806,-0.03473707288503647,-0.39087021350860596,0.5067527294158936,0.13969768583774567,-0.05567321553826332,0.4053347110748291,0.0010022191563621163,0.46410486102104187,0.6393585801124573,-0.26790982484817505,0.42428213357925415,-0.11622363328933716,0.541382372379303,-0.052673839032649994,-0.13981309533119202,0.18230323493480682,-0.25698012113571167,0.03785549849271774,-0.26644936203956604,-0.40364816784858704,-0.014319010078907013,-0.1970938742160797,0.4702158570289612,0.2851601243019104,-0.22241565585136414,0.3921031057834625,0.2805840075016022,0.11224684864282608,0.6271395683288574,-0.24686746299266815,0.259740948677063,-0.2147030234336853,-0.317473828792572,0.12231258302927017,0.267829567193985,0.47581398487091064,0.5780120491981506,0.1921708881855011,0.3442063629627228,0.5320050120353699,0.33518585562705994,0.21901680529117584,0.6134902238845825,0.10430026799440384,0.5587571859359741,0.49616092443466187,0.47805479168891907,0.09975919127464294,-0.04777996614575386,0.08950623124837875,-0.07821784913539886,0.13565899431705475,0.1994500309228897,-0.23609888553619385,-0.16251389682292938,0.4214527904987335,0.1622280776500702,0.28408393263816833,0.12420804053544998,0.04034293815493584,0.2422797530889511,0.20592038333415985,0.0773027092218399,-0.03172467648983002,-0.1332481950521469,0.013715782202780247,0.5817679166793823,0.19169901311397552,0.45057740807533264,0.08628905564546585,-0.31493645906448364,0.2826736271381378,0.5674968957901001,-0.09029937535524368,0.21343356370925903,0.39732611179351807,0.2157515585422516,0.43421751260757446,0.4562365710735321,-0.004622647073119879,-0.24420002102851868,0.5383526682853699,0.3389516770839691,0.15771006047725677,0.29297131299972534,0.25731006264686584,-0.5088858604431152,0.33424943685531616,-1.0377840995788574,0.2645806074142456,-0.362598717212677,0.05656961724162102,0.5584586262702942,-0.0663992166519165,-0.14942008256912231,-0.15935605764389038,-0.24127474427223206,-0.5151844620704651,0.5684022307395935,0.3660450279712677,0.4264003038406372,0.15531125664710999,0.2987242639064789,0.7401842474937439,0.7106823325157166,-0.3075757324695587,0.16579018533229828,0.26649218797683716,0.7393339276313782,0.35650649666786194,0.055357471108436584,-0.10555708408355713,0.33812230825424194,0.04605414345860481,-0.18450479209423065,0.06175839155912399,-0.43183445930480957,-0.680193305015564,0.2031228095293045,-0.532859742641449,-0.035555269569158554,-0.5596851110458374,-0.31188246607780457,-0.14381395280361176,-0.4709608852863312,-0.1632695496082306,-0.043609801679849625,-0.23235833644866943,0.1651420146226883,-0.3568830192089081,-0.4590994119644165,-0.715816855430603,-0.1912500113248825,-0.24690327048301697,-0.09492034465074539,-0.841530442237854,-0.04610220342874527,0.2815648019313812,-0.14541678130626678,0.09967049956321716,0.01232562679797411,-0.27924594283103943,-0.7462074160575867,0.011725480668246746,0.2353464812040329,-0.26582011580467224,0.19987866282463074,0.2388152778148651,0.2531683146953583,-0.06641153991222382,-0.17441250383853912,-0.053679224103689194,-0.3111953139305115,-0.12772594392299652,-0.01967685855925083,0.4776672124862671,-0.41327905654907227,-0.0284754429012537,0.4690728485584259,-0.07361617684364319,0.17334693670272827,-0.6320189833641052,-0.8010320663452148,-0.7501055002212524,-0.48822021484375,-0.21531465649604797,-0.2881476581096649,-0.43452051281929016,-0.196742981672287,0.25499415397644043,-0.22945763170719147,-0.47247591614723206,-0.2906261384487152,0.004120696801692247,-0.693469762802124,-0.5937438011169434,0.16635918617248535,-0.2981545329093933,0.32908007502555847,0.4148958921432495,0.35090503096580505,0.27760371565818787,0.2651677429676056,0.6580988168716431,-0.5225479006767273,0.48104211688041687,-0.0471060536801815,0.31463292241096497,0.4120301902294159,0.07338576018810272,-0.17550988495349884,-0.06871063262224197,-0.1707077920436859,0.16007286310195923,0.233567476272583,0.6276606917381287,0.21625244617462158,0.18601548671722412,-0.163797065615654,0.366014689207077,0.6113306879997253,-0.41317638754844666,0.20386287569999695,0.3428848087787628,0.7922466397285461,-0.14326201379299164,0.0005027909646742046,0.2847963869571686,0.2551700472831726,-0.0605354979634285,0.3783651888370514,0.02733525075018406,-0.002704070182517171,-0.2961934804916382,0.2055729180574417,0.2556608021259308,-0.09460167586803436,0.434520423412323,-0.5997908115386963,0.028934475034475327,0.7286821007728577,0.024989956989884377,-0.3699590861797333,0.2126660794019699,0.09057016670703888,-0.011967331171035767,0.6765031814575195,0.7970046401023865,0.24873602390289307,0.21247728168964386,0.12007453292608261,0.6507794857025146,0.8339036703109741,0.1609717458486557,0.3266424536705017,0.015843255445361137,0.48895853757858276,0.27329137921333313,0.2496093362569809,0.17881743609905243,-0.13727323710918427,0.06914873421192169,-0.21709874272346497,-0.3085448741912842,-0.22892233729362488,-0.3055306375026703,-0.12442765384912491,0.5429884195327759,-0.05547328293323517,0.297303706407547,0.27851977944374084,0.019730428233742714,0.6490259766578674,-0.3036959171295166,0.019390709698200226,0.11788161098957062,-0.1398739516735077,0.11215318739414215,0.7397089600563049,0.6574077010154724,0.6245711445808411,0.6097704768180847,0.2040807008743286,0.4382210075855255,0.6049942970275879,-0.22486968338489532,0.4719346761703491,0.0036144566256552935,0.8236175775527954,0.15711262822151184,0.48574569821357727,0.4476158320903778,-0.32075899839401245,0.41467422246932983,0.1195298358798027,-0.3416353166103363,-0.03730550780892372,-0.31454747915267944,0.07625595480203629,0.4889666736125946,0.05271138250827789,0.14229217171669006,0.04932939633727074,0.35783499479293823,0.48262539505958557,-0.23683863878250122,0.02014206163585186,-0.1275939792394638,-0.03955184668302536,-0.12422674149274826,0.11692783236503601,0.48854926228523254,0.44139713048934937,0.35895007848739624,-0.009774209931492805,0.40998905897140503,0.2383667677640915,0.07616287469863892,0.3799945116043091,0.32054752111434937,0.17212001979351044,0.4258712828159332,0.40733131766319275,0.047640103846788406,-0.39639243483543396,0.12403539568185806,0.006301782093942165,0.05686643719673157,-0.040175825357437134,0.3070203363895416,0.4890052080154419,-0.4487566649913788,0.09954947233200073,-0.5226806998252869,-0.24086251854896545,0.46082746982574463,-0.8385303616523743,0.2332925945520401,0.3207786977291107,-0.2516874670982361,-0.12842340767383575,-0.3920951783657074,-0.7876478433609009,-0.9630168676376343,-0.37449899315834045,-0.7691848278045654,0.024614589288830757,-0.8638319969177246,-0.1651397943496704,0.5232262015342712,-0.3755813539028168,-0.7567164897918701,-0.844524621963501,-0.5802001953125,-0.5093548893928528,0.328454852104187,0.5259685516357422,-0.43661758303642273,-0.6409473419189453,0.22668972611427307,-0.12408137321472168,-0.009310143999755383,0.04501509293913841,-0.7428613901138306,0.19714809954166412,-0.7022092342376709,0.2186567634344101,0.04189230874180794,-0.27919504046440125,-0.30875369906425476,0.1376202553510666,-0.10646004229784012,-0.22802437841892242,0.13037678599357605,-0.5590239763259888,-1.1145639419555664,-0.28548479080200195,-0.3065691292285919,-0.1161068007349968,-0.7707152962684631,-0.41048842668533325,0.2316717952489853,0.0142771415412426,-0.02339344657957554,-0.4595720171928406,-0.03326660022139549,-0.2591245174407959,0.049658630043268204,-0.12948986887931824,0.024657340720295906,0.1020880714058876,0.22675970196723938,0.3945061266422272,0.3995833098888397,0.40640056133270264,0.5191187262535095,-0.2523960471153259,0.16043047606945038,0.0626489445567131,-0.0009484990150667727,0.4742528796195984,0.23021112382411957,-0.2171766459941864,-0.14904503524303436,-0.29149869084358215,-0.34046176075935364,0.28552666306495667,0.5530040264129639,0.4973661005496979,0.266030490398407,0.013254424557089806,0.24288111925125122,0.6227623820304871,0.02241063117980957,0.5545492172241211,0.22739383578300476,0.7715705633163452,0.009790905751287937,0.21498076617717743,0.3427368700504303,-0.3725990355014801,-0.022495988756418228,-0.22100774943828583,-0.31992438435554504,-0.4876231253147125,-0.44456130266189575,-0.07187110930681229,0.18004655838012695,-0.23803453147411346,0.4625418186187744,0.2359495460987091,0.13871712982654572,0.750045120716095,-0.23744431138038635,-0.2602143883705139,-0.3573726713657379,-0.32169264554977417,-0.2199825495481491,0.39515426754951477,0.44419679045677185,0.5000751614570618,0.20717141032218933,0.2711254060268402,0.7929072380065918,0.35005638003349304,-0.2956430912017822,0.5303968191146851,0.019935771822929382,0.32355761528015137,0.28810831904411316,0.2761841416358948,-0.13766080141067505,-0.04602263122797012,0.3055365979671478,0.2639901041984558,0.07798874378204346,-0.275505393743515,-0.5288266539573669,0.5304786562919617,-0.9470991492271423,0.02659628726541996,-0.7984204888343811,0.11198414117097855,0.6179015636444092,-0.5960315465927124,-0.14142844080924988,0.06831376254558563,-0.06322857737541199,0.232634499669075,-0.31991222500801086,-0.7757094502449036,-1.4671822786331177,-0.8672303557395935,-0.8653976917266846,0.17214377224445343,-0.9377593994140625,-0.7346357703208923,0.4700961112976074,-0.4117816090583801,-0.661789059638977,-0.9581730365753174,-0.13311266899108887,-0.7161857485771179,0.24481233954429626,0.2671125829219818,-0.35702571272850037,-0.2468240112066269,0.07501985877752304,0.1668214648962021,0.24381785094738007,0.03823303431272507,-0.3587225079536438,0.17776428163051605,-0.49738192558288574,-0.3692721426486969,0.25057634711265564,0.1053096204996109,0.2542869448661804,0.3358438014984131,0.14274272322654724,-0.012030870653688908,0.2707151472568512,-0.3123798966407776,-0.8586503267288208,-0.2117672711610794,0.27180710434913635,0.03861437737941742,-0.9017041921615601,-0.25436297059059143,0.3246310353279114,0.08807335048913956,-0.3401147425174713,-0.24148114025592804,-0.3110022246837616,-0.27581986784935,-0.08355452865362167,0.05607492849230766,-0.1825280338525772,0.2777078151702881,-0.30142107605934143,0.4559992551803589,0.13920177519321442,0.32899603247642517,0.5187698602676392,0.21601039171218872,1.0902334451675415,0.22176221013069153,-0.19487352669239044,0.9124254584312439,-0.16016225516796112,0.17628313601016998,0.19973412156105042,-0.18966230750083923,0.24132543802261353,0.4510476589202881,0.7163849472999573,0.3845349848270416,0.559322714805603,0.584372878074646,0.7370150089263916,0.9807734489440918,0.5508988499641418,0.8361023664474487,0.1990985870361328,0.5551076531410217,0.29053762555122375,0.24269065260887146,0.03834937512874603,-0.2831052541732788,0.630964457988739,0.13288630545139313,0.11868824064731598,0.37004876136779785,0.07806932181119919,0.09880281239748001,0.3568600118160248,-0.18572743237018585,0.4948537349700928,0.24193325638771057,-0.08523296564817429,0.35706818103790283,-0.19321316480636597,-0.12481412291526794,-0.2229621261358261,-0.11669596284627914,-0.15394896268844604,0.46105560660362244,0.33600279688835144,0.5761616826057434,0.217834934592247,0.01071196235716343,0.5996264815330505,0.20245854556560516,0.24043941497802734,0.3733324110507965,-0.437777578830719,0.48572176694869995,0.25960657000541687,0.22901912033557892,-0.3439096212387085,0.08126536756753922,0.43692120909690857,-0.3316043019294739,0.21373431384563446,0.07321158051490784,0.10911893844604492,0.03379390761256218,0.2042689174413681,0.03484104946255684,0.16525588929653168,-0.26207685470581055,-0.25137999653816223,0.47761985659599304,0.019590632990002632,-0.04461466521024704,-0.31104210019111633,-0.2536148726940155,-0.24445661902427673,0.355567067861557,0.48533985018730164,0.660683810710907,0.17829996347427368,0.2368379533290863,0.48930642008781433,0.6782423257827759,-0.2636660039424896,0.4343070685863495,-0.030349595472216606,0.1519923359155655,0.4897821545600891,0.185494065284729,-0.23284004628658295,-0.3892456293106079,0.2808416187763214,-0.31543949246406555,-0.023762427270412445,-0.19733569025993347,0.03546050935983658,-0.40545526146888733,-0.04181598126888275,0.3770744502544403,-0.8046485185623169,-0.34122687578201294,0.12446517497301102,-0.36008352041244507,-0.11672177165746689,0.348455011844635,-0.1650943160057068,0.01620262861251831,0.1948380172252655,0.08606664091348648,-0.8392664194107056,-0.3220112919807434,0.17392918467521667,-0.3575923442840576,-0.9724907875061035,0.174672931432724,-0.019026165828108788,0.14311836659908295,0.02246035449206829,-0.0608946867287159,-0.28967759013175964,-0.45407405495643616,0.06291541457176208,-0.048353735357522964,0.2292950451374054,0.1900266855955124,0.037446826696395874,0.1469201296567917,0.2718118131160736,0.16388849914073944,-0.001866492792032659,-0.3193106949329376,0.14704498648643494,0.24698297679424286,-0.2446565330028534,0.1392372101545334,-0.30314892530441284,0.25879114866256714,-0.09086347371339798,-0.2922012209892273,-0.028777915984392166,0.018665889278054237,0.28585126996040344,0.28255653381347656,-0.08639414608478546,0.2490154355764389,0.047199781984090805,0.23552347719669342,-0.03066134639084339,0.3536970317363739,-0.05927501246333122,0.36897313594818115,-0.005021688994020224,0.053049486130476,0.16980481147766113,0.20867033302783966,0.2642805576324463,0.2650631368160248,-0.015645410865545273,0.10587314516305923,-0.02260058932006359]},{"shape":[32],"values":[0.025107277557253838,0.3117862641811371,-0.05246344208717346,0.41352444887161255,0.12836116552352905,-0.13910549879074097,0.5571795701980591,-0.017184613272547722,-0.18741178512573242,-0.05471739545464516,-0.04581598937511444,-0.1709836721420288,0.47362786531448364,0.3554323613643646,0.3976847231388092,0.3020227551460266,0.16386927664279938,0.3754870891571045,0.5293000340461731,-0.1439664214849472,0.42537781596183777,0.2674395442008972,0.5303244590759277,0.33442845940589905,0.2112003117799759,-0.04969364404678345,-0.030384372919797897,0.27059078216552734,-0.1950148642063141,-0.004081725142896175,-0.04552215710282326,-0.07976443320512772]},{"shape":[32,9],"values":[-0.7242247462272644,-0.6330081224441528,-0.1730518937110901,-0.2839471101760864,-0.13471587002277374,-0.1553267240524292,-0.829788327217102,-0.407100111246109,-0.3373573422431946,0.4184979498386383,0.26832765340805054,0.6894419193267822,0.6741395592689514,0.509518027305603,0.4841362237930298,0.1895916759967804,0.6653693914413452,0.7151879072189331,0.0343012772500515,0.19267399609088898,-0.2007133811712265,0.35446897149086,0.1260221153497696,-0.5073637366294861,-0.17325328290462494,0.10419721156358719,-0.46810445189476013,0.7902438044548035,0.8180517554283142,0.8736153244972229,0.9437663555145264,0.6948270201683044,0.673201322555542,1.1959869861602783,0.6959863305091858,0.9420694708824158,0.1708606481552124,0.48629069328308105,0.4322730302810669,-0.2927747964859009,-0.01593821682035923,0.3021485209465027,-0.02018873021006584,-0.416194885969162,0.08840763568878174,0.03051835484802723,0.09767825901508331,-0.14474208652973175,-0.4033183157444,-0.021108262240886688,0.10200086236000061,-0.3987104296684265,-0.24339422583580017,-0.429289311170578,0.7996461987495422,0.614467203617096,0.5003392100334167,0.7080289125442505,0.6240279674530029,0.27842390537261963,0.7327858805656433,0.39700180292129517,0.3321426808834076,-0.26548126339912415,-0.24520866572856903,0.06693582236766815,-0.12351109087467194,-0.22125142812728882,-0.14973360300064087,-0.2612665891647339,0.06947329640388489,0.2676134705543518,-0.23768693208694458,-0.27866023778915405,-0.034675952047109604,-0.3699039816856384,-0.25300511717796326,-0.08164092153310776,-0.18803289532661438,-0.1721421480178833,-0.20045532286167145,-0.1398438811302185,-0.28211042284965515,-0.06500916928052902,0.091252401471138,0.022937363013625145,-0.16068226099014282,0.17177607119083405,0.06854571402072906,-0.25451919436454773,-0.06554049253463745,-0.2093939632177353,0.2587411403656006,-0.052642036229372025,-0.19464455544948578,-0.1834065169095993,0.19054722785949707,-0.06370601058006287,0.018747929483652115,-0.5181013345718384,-0.14952875673770905,-0.046854808926582336,-0.12723290920257568,-0.41006720066070557,-0.21404126286506653,-0.1729333996772766,-0.11747440695762634,0.10010914504528046,0.5952160954475403,0.5474149584770203,0.898358166217804,0.29062384366989136,0.5190799236297607,0.4775282144546509,0.7611942291259766,0.7154406905174255,0.6774089932441711,1.0629223585128784,0.8952791094779968,0.892880916595459,0.6189678311347961,1.1313077211380005,1.1001064777374268,0.8924686908721924,0.7980566620826721,0.7221835255622864,0.13167449831962585,0.1626705378293991,0.4771861433982849,0.710088849067688,0.5703089833259583,0.5710010528564453,0.6368180513381958,0.3910253345966339,0.12260161340236664,0.6747209429740906,0.23397774994373322,0.4984317123889923,0.4637959897518158,0.1708449125289917,0.23289012908935547,0.04015105962753296,0.28069984912872314,0.5713692903518677,-0.05325876176357269,-0.009925457648932934,-0.0527925081551075,0.6736829280853271,0.23995286226272583,-0.12239940464496613,0.49224260449409485,0.20861530303955078,0.454301655292511,1.0022971630096436,0.8781476616859436,0.4915086627006531,0.6672917604446411,0.5404025912284851,0.739615797996521,0.6237162351608276,1.0149691104888916,0.5482262969017029,0.3664190173149109,0.43605631589889526,0.4713580012321472,0.7367681264877319,0.3255026042461395,0.9267851710319519,0.8572220206260681,0.5352401733398438,0.7683484554290771,-0.4553738534450531,-0.3430984318256378,-0.5276312232017517,-0.37105655670166016,-0.24761070311069489,-0.1268622726202011,0.05601856857538223,0.08672983199357986,-0.3664477467536926,0.4732779860496521,0.43531903624534607,0.11099623888731003,-0.14861248433589935,0.33202311396598816,0.28518569469451904,0.4657289385795593,0.2538798451423645,0.28503498435020447,-0.07783392071723938,0.25157850980758667,0.5368105173110962,-0.3040492832660675,0.0812702476978302,0.23736022412776947,0.3187440037727356,0.6278664469718933,0.7445972561836243,0.5427541136741638,0.7653870582580566,0.5664255023002625,0.7559035420417786,0.7232268452644348,0.6328495740890503,0.2937546372413635,0.7994844317436218,0.7905898094177246,0.03629060834646225,0.1351912021636963,0.12289383262395859,0.5927755832672119,0.2193911373615265,0.04630914330482483,0.3390028476715088,0.35616418719291687,0.37154677510261536,0.22315388917922974,0.807504415512085,0.37613239884376526,0.773249626159668,0.3872639238834381,0.5719507932662964,0.16627377271652222,0.6130344867706299,0.7876937985420227,-0.37447696924209595,-0.016871580854058266,0.07562855631113052,-0.3916657865047455,0.33174189925193787,0.4789086878299713,-0.5475308895111084,-0.0926063284277916,0.6218229532241821,-0.36871373653411865,-0.46001631021499634,0.08463896811008453,-0.5850570797920227,-0.3515954315662384,-0.026411065831780434,-0.5702739357948303,-0.4076038599014282,0.44336941838264465,0.24446333944797516,0.25948071479797363,0.06520550698041916,-0.03370631858706474,0.624152660369873,0.7006443738937378,0.3885466456413269,0.47988805174827576,0.041993070393800735,-0.47964268922805786,-0.1355922669172287,0.16163288056850433,-0.3284875154495239,-0.038742613047361374,0.033594951033592224,-0.5135621428489685,-0.24477620422840118,0.15716607868671417,0.1489291936159134,0.1040010079741478,0.023668313398957253,-0.22366581857204437,0.037441227585077286,-0.46925288438796997,-0.2727404534816742,0.004555010702461004,0.15542593598365784,-0.26949989795684814,-0.3355574607849121,-0.1635800451040268,0.08410826325416565,-0.4575268626213074,-0.2490716427564621,-0.25780028104782104,-0.6101634502410889,0.08155443519353867,0.2894837260246277,-0.22521710395812988,-0.2578507661819458,-0.2821809947490692,-0.13506892323493958,-0.26584967970848083,-0.44179579615592957,-0.09202594310045242,-0.6009737253189087]},{"shape":[9],"values":[0.23133514821529388,0.3700616955757141,0.22716572880744934,0.21203985810279846,0.23710043728351593,0.17014412581920624,0.23820140957832336,0.3528612554073334,0.2657717764377594]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-11.json new file mode 100644 index 0000000..6ed5496 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:25:47.247Z","weights":[{"shape":[20,32],"values":[1.2407281398773193,-0.3974028527736664,-0.36708998680114746,0.9046503901481628,-1.233529806137085,0.05989338457584381,1.2861801385879517,-0.45186397433280945,-0.13285908102989197,1.6078276634216309,-0.06540665030479431,-0.5289052724838257,0.08578022569417953,0.477863609790802,-0.24680280685424805,0.8725234866142273,0.015684321522712708,0.6148963570594788,1.1844401359558105,0.907493531703949,1.4609922170639038,1.3208788633346558,1.0985783338546753,-0.2975119352340698,0.11704568564891815,1.2293598651885986,1.0375010967254639,-0.25948449969291687,1.397385597229004,0.1648598313331604,1.044940710067749,0.26268354058265686,0.06303911656141281,-0.07580775767564774,0.05159585177898407,0.06426535546779633,-0.1362057775259018,-0.0005688894307240844,0.14447137713432312,0.07746955007314682,0.062343113124370575,-0.20001192390918732,0.017388449981808662,0.04640693962574005,-0.08089546114206314,0.0017108387546613812,-0.04168348386883736,0.1674981415271759,0.2751089334487915,0.09921965003013611,-0.17106939852237701,-0.0853521078824997,-0.00880042091012001,0.14612522721290588,-0.02297971211373806,-0.3667289614677429,-0.11103897541761398,0.19769862294197083,-0.10126332938671112,0.3496359586715698,-0.3047226071357727,-0.2378651350736618,0.08003360033035278,0.4537592828273773,0.011422132141888142,-0.37651941180229187,0.7949077486991882,-0.2806203365325928,0.4700295925140381,0.79638671875,-0.15662528574466705,-0.5902197360992432,-0.018566465005278587,-0.007023984100669622,-0.14969635009765625,-1.0224494934082031,-0.6028002500534058,0.2456229031085968,-0.4610397219657898,-0.13298292458057404,0.314126580953598,-0.36187317967414856,0.1437639594078064,-0.004271026235073805,-0.33865228295326233,-0.02495017647743225,-0.08898083865642548,-0.7705654501914978,-0.7121434807777405,0.15221013128757477,-0.22226062417030334,0.6395403146743774,-0.26985445618629456,-0.4710797369480133,-0.02239391766488552,0.25843337178230286,-0.312175989151001,1.6210013628005981,-1.160038948059082,-0.004428654443472624,0.16037099063396454,-0.33741599321365356,-0.16661667823791504,0.814272940158844,0.1575181484222412,0.29793989658355713,0.16058553755283356,0.9284483790397644,1.273902416229248,-0.14294858276844025,0.16113464534282684,-0.050597451627254486,-1.2916306257247925,-0.6161962747573853,-0.373703271150589,-0.40377816557884216,-0.33923494815826416,0.1778552234172821,-0.15122322738170624,0.41126713156700134,1.3017398118972778,-0.21703404188156128,0.1378539502620697,-0.8291364312171936,0.015286184847354889,-0.005103463772684336,0.049695950001478195,-1.0552399158477783,-0.2501431107521057,-0.2243029922246933,-0.05307256802916527,-0.24640734493732452,-0.1933482587337494,-0.20071637630462646,-0.0569470077753067,0.2635391354560852,0.27050623297691345,0.08501220494508743,-0.22770214080810547,-0.0660429522395134,-0.09424120932817459,0.3713305592536926,-0.08325883001089096,-0.439111590385437,-0.015338071621954441,0.0024505446199327707,0.3474406599998474,0.06670279055833817,-0.3606525957584381,0.15908023715019226,-0.46586570143699646,0.1234021857380867,-0.27200639247894287,0.1147632971405983,0.20746690034866333,-0.2503584027290344,0.13469474017620087,0.40498653054237366,-0.6097099184989929,0.22385671734809875,0.1576782912015915,-0.14932765066623688,-0.13671405613422394,-0.02916286326944828,-0.3500801622867584,-0.06914009153842926,-0.4972384572029114,0.3639688789844513,0.32461580634117126,0.28117746114730835,0.11984886974096298,0.1532852053642273,0.11662821471691132,-0.025288397446274757,0.10098028182983398,-0.1177944764494896,-0.22662726044654846,0.48823410272598267,0.6355579495429993,-0.048568207770586014,-0.1444615125656128,-0.08564294874668121,-0.2377059906721115,0.42414578795433044,0.20927567780017853,0.39807015657424927,-0.21277053654193878,-0.5440137982368469,0.46322330832481384,-0.13991330564022064,-0.42288702726364136,0.057842839509248734,0.1770879626274109,0.47798001766204834,-0.009233188815414906,0.08564236760139465,-0.07310838997364044,0.10521162301301956,-0.5700805187225342,0.35893017053604126,-0.10715580731630325,-0.07520867139101028,-0.23038001358509064,-0.11297842860221863,0.4417652189731598,0.24194863438606262,-0.2786146402359009,-0.37003710865974426,-0.4724734425544739,0.11910153925418854,0.23577743768692017,0.2978183329105377,-0.079947330057621,0.10489977896213531,-0.12552510201931,0.15836332738399506,0.4024845063686371,-0.1488262265920639,-0.19855493307113647,0.2698450982570648,0.16841493546962738,0.47198426723480225,-0.4332607388496399,-0.28375548124313354,0.36008551716804504,0.06357438862323761,-0.10230150818824768,-0.3015318810939789,0.15580129623413086,0.21589182317256927,0.07537885755300522,-0.232743039727211,-0.5463470220565796,0.45541059970855713,0.05806338042020798,0.11542392522096634,-0.13126473128795624,0.451343297958374,-0.22116804122924805,0.021035628393292427,-0.5719086527824402,0.3286496102809906,-0.01662464067339897,0.4341742992401123,0.14273899793624878,-0.024492304772138596,0.5936492085456848,0.3510403037071228,-0.17156870663166046,0.24441564083099365,0.18409430980682373,-0.16739343106746674,0.19903245568275452,-0.2510248124599457,0.44405093789100647,-0.4717937111854553,0.011084884405136108,-0.11358585953712463,-0.2799234390258789,-0.30966439843177795,-0.06708025187253952,0.025462809950113297,-0.06634482741355896,-0.18814431130886078,-0.3685990571975708,0.20408956706523895,0.8023166656494141,0.31279799342155457,0.20037488639354706,0.16496813297271729,-0.03079228103160858,-0.04108866676688194,0.02537144161760807,-0.22408728301525116,-0.01571890152990818,-0.16381514072418213,-0.34137287735939026,0.2084793746471405,-0.1337364763021469,0.01467625517398119,-0.2378692924976349,-0.10878082364797592,0.026949983090162277,-0.14842911064624786,0.01895969919860363,0.33806613087654114,0.30693644285202026,-0.001068789279088378,0.2440110296010971,-0.09475857764482498,0.025004563853144646,-0.4723797142505646,-0.10857410728931427,-0.18908998370170593,0.4203120768070221,-0.27478814125061035,0.08005184680223465,0.14467917382717133,0.09344753623008728,-0.1521066278219223,-0.013129903003573418,-0.2923499643802643,0.26703208684921265,-0.060040347278118134,-0.04111175239086151,0.4367227852344513,0.07163941860198975,-0.03880831226706505,-0.07022963464260101,-0.04819532856345177,0.4259532392024994,-0.2509506940841675,-0.21201223134994507,-0.10105324536561966,0.24556593596935272,-0.03275686502456665,0.2808798551559448,-0.0072130779735744,0.10218597203493118,-0.22672070562839508,0.1877540946006775,0.24008320271968842,-0.06991727650165558,0.03565417230129242,0.2993806302547455,-0.46940892934799194,0.32916852831840515,0.14751537144184113,-0.22234366834163666,-0.04421526938676834,0.45866551995277405,0.05880685895681381,0.3125953674316406,-0.3073572516441345,0.10887967795133591,-0.06880804151296616,0.4625788927078247,0.3622492551803589,0.11012985557317734,0.06737008690834045,0.3963707685470581,0.17114345729351044,-0.048569273203611374,-0.04655555635690689,-0.42943790555000305,-0.03979029133915901,0.1464070975780487,0.09407494962215424,0.4608075022697449,-0.1653003841638565,0.009134366177022457,-0.3379613757133484,0.12557555735111237,-0.15266619622707367,-0.060622960329055786,-0.33522433042526245,0.1500788778066635,-0.06184731051325798,-0.04713426157832146,0.2858699560165405,-0.04459831863641739,0.01406547985970974,-0.17254933714866638,0.20203720033168793,-0.032202865928411484,0.13365888595581055,0.2346271574497223,0.13612796366214752,-0.17530037462711334,-0.34328657388687134,-0.10801385343074799,0.16587571799755096,0.04609554260969162,0.25670820474624634,-0.38873815536499023,0.30537149310112,-0.14783652126789093,0.2203187346458435,-0.16416145861148834,0.3513190746307373,-0.20804686844348907,0.24483470618724823,-0.1952240765094757,-0.14362487196922302,0.23767001926898956,-0.31228959560394287,0.15216566622257233,-0.5172646045684814,-0.1736156940460205,-0.07976699620485306,0.25908616185188293,0.17090845108032227,-0.6574690341949463,0.19471898674964905,0.4368797540664673,-0.23629756271839142,-0.1925177425146103,-0.1396723985671997,-0.24785418808460236,-0.3547326624393463,-0.09889555722475052,-0.6431339383125305,-0.07490094006061554,-0.04007662832736969,0.09786050766706467,0.19641870260238647,0.12708251178264618,0.04010181874036789,0.3820140063762665,0.03540251776576042,0.25970786809921265,0.13475364446640015,-0.430179238319397,0.2176225632429123,0.06342525035142899,-0.012127148918807507,0.20246721804141998,0.2079952210187912,0.09058304876089096,-0.46623268723487854,0.08397786319255829,0.07905649393796921,-0.0761634036898613,-0.06884652376174927,-0.17190514504909515,-0.06445910781621933,-0.36503666639328003,0.2928925156593323,0.2206925004720688,-0.012177198193967342,0.18786442279815674,0.07665589451789856,-0.038070570677518845,0.35406264662742615,-0.0512322261929512,0.1120603010058403,0.051565319299697876,0.05238693207502365,0.08966152369976044,-0.2689502239227295,-0.20728272199630737,-0.17446397244930267,0.1390133947134018,-0.07632669061422348,0.3621365427970886,0.18956367671489716,0.22930963337421417,-0.09152907133102417,-0.23188556730747223,-0.08854478597640991,0.36052384972572327,0.1747177094221115,0.45436060428619385,-0.4582813084125519,-0.18605796992778778,0.029226606711745262,0.19116654992103577,-0.11073771864175797,0.05599332973361015,0.17833970487117767,-0.31231391429901123,0.024029333144426346,0.3766952157020569,0.2775311768054962,-0.2136557400226593,0.019668202847242355,0.17880721390247345,0.24259382486343384,-0.06936979293823242,-0.07195481657981873,-0.10915233194828033,0.014070925302803516,-0.10012785345315933,0.12065626680850983,0.10408894717693329,0.09687395393848419,0.020471155643463135,-0.1318974494934082,0.006668811663985252,-0.3268044590950012,-0.34082305431365967,-0.2581556737422943,0.11022550612688065,-0.16402599215507507,-0.010772917419672012,0.029387610033154488,0.2610660791397095,-0.13598553836345673,-0.05605528503656387,-0.06395881623029709,-0.28400400280952454,0.3534676730632782,-0.1836116462945938,0.11456349492073059,0.4640182554721832,0.11424209922552109,-0.15400104224681854,0.09552076458930969,-0.1854402720928192,-0.25970250368118286,-0.01431071013212204,0.1084696501493454,-0.04346397891640663,0.38284415006637573,0.11918167024850845,0.07986032962799072,0.15242725610733032,-0.027326585724949837,-0.22308535873889923,0.30856189131736755,0.21548038721084595,0.362998902797699,0.11051058769226074,0.04335050284862518,0.1458916813135147,-0.09693901985883713,-0.04816724359989166,0.21759943664073944,-0.21831339597702026,0.5560480356216431,-0.3470207750797272,-0.12319847196340561,0.43162983655929565,-0.10432203859090805,0.04578808322548866,0.26426708698272705,0.1792808622121811,0.2683452367782593,-0.07555421441793442,0.013247831724584103,0.060647621750831604,0.1697828471660614,-0.048891693353652954,-0.10108951479196548,-0.01902409829199314,-0.052837710827589035,0.12293773144483566,0.1947796791791916,-0.21700774133205414,-0.328071653842926,0.15222644805908203,-0.36657020449638367,-0.11318346858024597,0.20963670313358307,0.18927554786205292,-0.2898322343826294,-0.29850560426712036,-0.20252034068107605,0.1779547929763794,0.38541021943092346,0.29778194427490234,0.25801947712898254,0.06657693535089493,-0.03496936336159706,-0.2809542119503021,-0.43053552508354187,0.039584722369909286,-0.03872586041688919,-0.0690564513206482,0.10048345476388931,0.037751805037260056,-0.16963839530944824,0.19606035947799683,0.04131177440285683,-0.11742503941059113,-0.13439668715000153,-0.07769455015659332,-0.08357717841863632,0.36770355701446533,-0.089661605656147,0.12266986072063446,-0.19155199825763702,0.17164970934391022,-0.35179609060287476,-0.19354479014873505,0.11393808573484421,-0.3581863045692444,-0.053250983357429504,0.6121178865432739,0.062329091131687164,0.4802051782608032,-0.18374009430408478,-0.13443523645401,-0.2610231041908264,-0.0004454831941984594,-0.07918182015419006,-0.19708839058876038,0.01550950389355421,-0.3865814208984375,-0.30928629636764526,0.45275619626045227,0.03899313509464264,-0.09670616686344147,0.27533435821533203,-0.38990318775177,0.19752269983291626,0.09614638984203339,-0.05742965266108513,0.13512293994426727,0.04544120654463768,-0.30513039231300354,0.1622554063796997,-0.35948294401168823,-0.410974383354187,-0.1266532838344574,-0.039638034999370575,-0.1757088452577591,0.34090280532836914,0.05882551148533821,-0.004190667998045683,0.07652197033166885,0.07201312482357025,0.3544844686985016,-0.18583306670188904,0.1127927154302597,0.05801200866699219,-0.06824200600385666,-0.08095908910036087,-0.0744720995426178,-0.051006607711315155,-0.10268057137727737,0.13076001405715942,0.3867703974246979,-0.20565329492092133,-0.046314872801303864,-0.17629331350326538,-0.32324156165122986,0.10207655280828476,-0.20325854420661926,-0.3036072254180908,0.22008027136325836,0.18056729435920715,0.13063770532608032,0.018058551475405693,-0.0705818459391594,0.14192761480808258,0.05877332389354706,0.3621859848499298,0.21146664023399353,0.017857708036899567]},{"shape":[32],"values":[0.5028495192527771,-0.07787711173295975,-0.23038242757320404,0.5025415420532227,-0.03757186979055405,-0.2915421724319458,0.6170480251312256,-0.24546195566654205,0.03903565555810928,0.6514419913291931,0.5908251404762268,-0.1419420689344406,-0.3837977349758148,0.045575402677059174,0.022617604583501816,0.5148633718490601,-0.2737460434436798,0.4115382432937622,0.61907559633255,0.423652321100235,0.5610966682434082,0.6481185555458069,0.5490090847015381,0.07432915270328522,-0.23834538459777832,0.6005913615226746,0.7052240967750549,-0.11968841403722763,0.6504902243614197,-0.20118889212608337,0.5073017477989197,-0.16665533185005188]},{"shape":[32,32],"values":[-0.14617611467838287,0.31303122639656067,0.626903235912323,0.45270898938179016,0.3938208520412445,0.10632919520139694,0.5382748246192932,0.06927318871021271,0.46527278423309326,0.298018217086792,0.5425376296043396,0.3789476454257965,0.26963141560554504,0.42278853058815,0.5056173801422119,-0.04487650841474533,0.019291095435619354,0.4777815639972687,0.4646071493625641,0.311629980802536,0.35683494806289673,0.22209550440311432,-0.008723231963813305,0.06653634458780289,0.46197184920310974,0.1765180379152298,0.037603769451379776,0.1716606169939041,0.4849663972854614,0.26205846667289734,0.0729324221611023,0.37756070494651794,-0.1057954877614975,0.5994421243667603,-0.969249427318573,-0.8429482579231262,-0.23988202214241028,-0.10733238607645035,-0.09005291014909744,-0.2458404302597046,-0.9160080552101135,0.47558218240737915,-0.46009254455566406,-0.02860403247177601,-0.658073902130127,-0.5008679032325745,-0.2381444126367569,-0.979247510433197,-1.3824044466018677,-0.9431331753730774,0.0943886786699295,-0.3587731420993805,-0.3862352967262268,-0.22184790670871735,-0.4119842052459717,-0.30468282103538513,-0.6225775480270386,0.5071746706962585,0.7027153968811035,-0.5613832473754883,0.28998038172721863,0.39717596769332886,0.22187210619449615,0.06721723824739456,0.47543758153915405,0.48298391699790955,-1.046085238456726,-0.7982525825500488,-0.5720919966697693,0.6570740342140198,-0.36169540882110596,0.19952864944934845,-0.281002402305603,0.4678167402744293,-0.7983124256134033,0.6610867977142334,-0.6741271615028381,-0.6385709047317505,-0.38903194665908813,-0.6961876749992371,-0.22402621805667877,-0.8217490911483765,-0.6131342053413391,-0.5932298898696899,-0.6109506487846375,-0.7187965512275696,-0.5777395367622375,0.026538416743278503,-0.08957861363887787,-0.36005061864852905,0.28757211565971375,-0.6465811133384705,-0.7239920496940613,0.7328022718429565,0.3280823230743408,-0.3204073905944824,-0.38650190830230713,-0.17808452248573303,0.947066068649292,0.9028060436248779,-0.2002057135105133,-0.3121092617511749,0.6535617113113403,-0.12646405398845673,0.5991445779800415,-0.039884213358163834,0.5513055920600891,-0.3567269742488861,1.0475894212722778,0.3074614405632019,0.6491555571556091,0.16225963830947876,0.8274920582771301,0.8778316378593445,0.5445603132247925,0.864580512046814,0.6874167919158936,0.6120302081108093,-0.1339486539363861,0.115155890583992,0.07681488245725632,-0.12027229368686676,-0.33077239990234375,1.1034644842147827,0.03855111822485924,-0.21886952221393585,-0.221885547041893,0.6092191338539124,0.48376384377479553,0.8483303785324097,-0.6437912583351135,-0.30771392583847046,-0.2761007845401764,0.38491693139076233,-0.2816270887851715,-0.13768279552459717,-0.09407704323530197,0.1799028217792511,-0.17292198538780212,0.5351822376251221,-0.5767550468444824,-0.14589154720306396,-0.4809231162071228,-0.3889504671096802,-0.15763451159000397,-0.622880220413208,-0.3809906244277954,-0.3159860372543335,-0.7305806279182434,-0.33847737312316895,0.012168419547379017,0.04851357266306877,-0.5917545557022095,0.13777226209640503,0.6266985535621643,-0.36834096908569336,-0.625127911567688,-0.02464551106095314,0.30471745133399963,-0.3608826994895935,-0.31116318702697754,0.36581042408943176,-0.42126569151878357,-0.4965258240699768,-0.3985242545604706,0.18056604266166687,-0.019823703914880753,-0.16621647775173187,-0.05271594226360321,0.46793651580810547,-0.6065754294395447,0.6972516775131226,-0.1485515832901001,-0.43135276436805725,-0.45985710620880127,-0.2337462604045868,-0.07957092672586441,-0.6834827661514282,-0.2892342209815979,-0.31516727805137634,-0.7564341425895691,-0.054278962314128876,-0.1275593340396881,-0.09059161692857742,0.4163022041320801,-0.216230109333992,0.7698677778244019,-0.3410813510417938,0.3054206371307373,0.6798584461212158,0.5453097820281982,-0.3576945960521698,0.0749528631567955,-0.15487819910049438,0.6751227378845215,0.741611897945404,-0.16256992518901825,-0.04248688742518425,0.7085205316543579,-0.08046462386846542,0.4535031318664551,-0.40656834840774536,0.8204227089881897,0.26872241497039795,0.8131621479988098,0.06431112438440323,0.2594361901283264,0.4444499611854553,0.7134577035903931,0.8623219728469849,0.8151867389678955,0.5794462561607361,0.4727032780647278,0.46929535269737244,-0.09730281680822372,0.2002113163471222,0.45172029733657837,0.1018267497420311,0.05314655229449272,0.6629242897033691,-0.026168566197156906,-0.507034420967102,-0.11899947375059128,0.8228946924209595,0.02429649606347084,0.3230837285518646,-0.5174450874328613,-0.05537756159901619,-0.28040575981140137,0.29374343156814575,0.08242206275463104,-0.22591635584831238,-0.3021951913833618,0.24297089874744415,-0.16273224353790283,0.19362203776836395,-0.3743179440498352,-0.3284732699394226,0.1181974709033966,-0.4468006193637848,-0.2705061733722687,-0.6696850657463074,-0.18574538826942444,-0.17999406158924103,-0.303043931722641,-0.07757294923067093,0.09000714123249054,-0.1327253133058548,-0.12122644484043121,0.38055646419525146,-0.15870371460914612,-0.3344493508338928,-0.23985928297042847,0.2412460297346115,0.09705604612827301,0.055321890860795975,0.34954366087913513,-0.3917109966278076,0.06867692619562149,0.6666590571403503,0.12673787772655487,-0.3974808156490326,0.03823854774236679,-0.18645253777503967,-0.023485638201236725,-0.08510895818471909,0.5962609052658081,-0.44842609763145447,0.37037214636802673,-0.021551944315433502,0.3709986209869385,0.6339351534843445,0.4799952805042267,0.38077184557914734,0.343944251537323,0.31800708174705505,0.23827055096626282,0.17987294495105743,0.17936517298221588,-0.1036917120218277,0.3631596863269806,-0.5158686637878418,-0.04391981288790703,0.259610652923584,-0.20221944153308868,-0.4637897312641144,-0.19068902730941772,-0.006552737206220627,-0.09326454997062683,0.1828027218580246,0.732441782951355,0.7181429862976074,0.35465726256370544,-0.033645953983068466,0.6769924759864807,-0.07195193320512772,0.7438419461250305,0.17168349027633667,0.705528736114502,0.12612313032150269,0.80687415599823,0.3403474986553192,0.7899166941642761,0.4794037640094757,0.25876620411872864,0.8501255512237549,0.29028770327568054,0.39233410358428955,0.9084975123405457,0.38731834292411804,-0.1649872362613678,0.09904744476079941,0.14592981338500977,0.18136174976825714,0.04648693650960922,0.86736661195755,0.08735830336809158,0.009314432740211487,-0.03684316948056221,0.22373992204666138,-0.2517987787723541,-0.3776356875896454,0.8304493427276611,0.6916704773902893,-0.1443702131509781,-0.30818507075309753,0.4023663401603699,-0.005978480912744999,0.8930113911628723,0.19227421283721924,0.4975513517856598,-0.5872491598129272,0.85272616147995,0.7092231512069702,0.4749976694583893,0.45019102096557617,0.9974465370178223,0.29402148723602295,0.47390222549438477,0.5117232799530029,0.5290119051933289,0.891707181930542,0.860739529132843,1.2052041292190552,-0.46624594926834106,-0.5232512950897217,-0.558000385761261,0.6989538669586182,-0.20395725965499878,-0.48207688331604004,-0.600455641746521,1.0014002323150635,0.32175660133361816,0.4837667942047119,-0.9354369640350342,-0.7974013090133667,-0.5937778353691101,0.3406614065170288,-0.04611848294734955,-0.2985304594039917,-1.1975549459457397,-0.060120996087789536,-0.5533989071846008,-0.09885648638010025,-0.4790354073047638,-1.0300039052963257,-0.34849053621292114,-1.0109007358551025,-0.5157037377357483,-1.4961483478546143,-0.273420125246048,-0.20987153053283691,-0.6548281908035278,-0.48375001549720764,-0.5430697202682495,-0.14058251678943634,-0.2721457779407501,0.1369096040725708,0.01494700089097023,-0.5123552680015564,-0.04642274230718613,0.5907361507415771,0.569311797618866,-0.13606829941272736,-0.3831573724746704,0.525099515914917,-0.9283779263496399,-0.659248411655426,-0.053639043122529984,0.5893270969390869,-0.27810990810394287,-0.12770429253578186,-1.1011357307434082,-0.13865745067596436,-0.3040821850299835,0.11735641211271286,-0.2286568433046341,-0.683351457118988,-0.3017655909061432,-0.6693871021270752,-0.44812652468681335,-1.0281040668487549,-0.40549951791763306,-0.1996248960494995,-0.45169416069984436,-0.4904770255088806,-0.005934600718319416,-0.522259533405304,-0.7237758636474609,0.47650083899497986,-0.534272313117981,-0.58222895860672,0.4779679477214813,0.6390562057495117,0.636546790599823,-0.22818616032600403,-0.15034115314483643,0.24969494342803955,0.18749991059303284,0.347167432308197,0.06639561802148819,0.45031625032424927,0.08611802011728287,0.2754909098148346,0.14071530103683472,-0.3265909254550934,0.25625959038734436,0.3366858661174774,0.13111025094985962,-0.33934035897254944,0.10266949236392975,-0.1945991963148117,-0.05762486532330513,0.20039069652557373,-0.044696252793073654,0.27435773611068726,0.11944115161895752,-0.1690199077129364,-0.27682584524154663,-0.3161099851131439,-0.10630994290113449,-0.023578539490699768,0.3118862211704254,-0.11486893892288208,0.27321118116378784,-0.08728287369012833,0.26969900727272034,0.029123788699507713,0.3923296630382538,-0.3723134696483612,0.26210153102874756,0.03867289796471596,-0.22065100073814392,-0.09739430993795395,-0.0037414918188005686,0.1328144520521164,-0.2970051169395447,-0.14825007319450378,-0.058075640350580215,-0.31099292635917664,-0.054305583238601685,-0.008304336108267307,-0.14147734642028809,-0.060931939631700516,-0.0031005581840872765,0.18000000715255737,0.05949058383703232,-0.14247016608715057,0.2703004479408264,0.20718759298324585,-0.1363673359155655,-0.19667991995811462,-0.25254058837890625,-0.5179764032363892,-0.026184409856796265,-0.2189359962940216,-0.8199316263198853,-0.4342445135116577,0.03671766817569733,0.12276986241340637,-0.08989614248275757,-0.21817734837532043,0.19587330520153046,0.5637965798377991,-0.0005125482566654682,-0.19504660367965698,0.6471635699272156,-0.03672150522470474,0.3390228748321533,0.2321123331785202,0.4993394613265991,-0.0318034365773201,0.41960474848747253,0.6341794729232788,0.33053824305534363,0.3542986810207367,0.5873655676841736,0.5043113231658936,0.8537386059761047,0.6028826236724854,0.7544505000114441,0.3153758645057678,-0.01288982480764389,0.12559373676776886,0.049267955124378204,-0.2667825520038605,0.02220778353512287,0.7508453726768494,-0.2567678391933441,0.01961749978363514,-0.20377160608768463,0.6064276099205017,-0.08467134833335876,-0.6371476650238037,-0.7249848246574402,-0.22645974159240723,-0.887048065662384,0.8350202441215515,-0.33247536420822144,0.07397092133760452,-0.7036471962928772,-0.06760044395923615,-0.198468416929245,0.5712937712669373,-0.5350812077522278,-0.02420699968934059,-0.25387319922447205,-0.939765453338623,-0.44231247901916504,-0.7781877517700195,-0.34062737226486206,-0.34900978207588196,-0.6799320578575134,-0.5978946685791016,-0.20108573138713837,0.1813357174396515,-0.18712680041790009,-0.19150914251804352,0.17457154393196106,-0.1951148957014084,-0.0813363566994667,0.5867006182670593,0.5755215287208557,-0.4938048720359802,0.07538991421461105,-0.10044679790735245,0.3665982186794281,0.5740013122558594,0.34064745903015137,-0.2635965347290039,0.2143315076828003,-0.15505655109882355,-0.15453846752643585,0.0657300353050232,0.1838962584733963,-0.3471446931362152,0.15536414086818695,-0.025194333866238594,0.5257675647735596,0.5474717617034912,0.3394022285938263,0.18413381278514862,-0.036918364465236664,0.24800658226013184,0.3968976140022278,0.5411294102668762,0.4838375151157379,-0.0054851402528584,0.07705052196979523,-0.1083262637257576,-0.5446329712867737,0.30751970410346985,-0.10463439673185349,-0.0858364999294281,-0.17176170647144318,-0.130708709359169,-0.5361467003822327,-0.19314751029014587,0.5582253336906433,0.5687638521194458,0.0438893660902977,-0.15964554250240326,0.350849986076355,-0.27047085762023926,0.3940160870552063,-0.0006909515941515565,0.37882357835769653,0.11181619018316269,0.4042719602584839,0.12510861456394196,0.5219372510910034,0.27856674790382385,0.26621219515800476,0.600281834602356,0.14720004796981812,0.40764421224594116,0.8222522735595703,0.48125314712524414,0.42511072754859924,-0.07741940021514893,-0.08329293876886368,0.2109362930059433,0.03546090051531792,0.35988619923591614,0.07432307302951813,0.12462963163852692,-0.1642318218946457,0.5522860884666443,0.1966734081506729,0.2180008888244629,0.43275150656700134,0.19192761182785034,0.26518142223358154,0.328285276889801,0.09256623685359955,-0.024678247049450874,0.24716436862945557,-0.207145556807518,0.44153743982315063,0.39518341422080994,0.5765267610549927,0.213008314371109,0.04684087261557579,0.06449463963508606,0.22301416099071503,0.4110702574253082,0.4928089380264282,0.17675067484378815,0.3084091246128082,0.5692708492279053,-0.09501266479492188,-0.04834958538413048,-0.07062654197216034,-0.13255801796913147,0.11204114556312561,0.5661023855209351,0.07149094343185425,-0.11983337253332138,0.04411066323518753,0.07927069813013077,-0.31600695848464966,0.2305789589881897,0.5557796955108643,1.0244134664535522,-0.13908769190311432,0.03501863032579422,0.42372673749923706,0.0772959291934967,0.3479461967945099,0.03744596615433693,0.9054812788963318,-0.05811430886387825,1.016312837600708,0.546079158782959,0.6550354361534119,0.6843180060386658,0.652337372303009,0.7841349840164185,0.5734397768974304,0.734689474105835,0.9115386605262756,0.8943933844566345,0.19176998734474182,0.17961038649082184,0.11358704417943954,0.09412743151187897,-0.3392044007778168,0.867731511592865,0.1489465981721878,0.03607338294386864,-0.10816028714179993,0.3983129858970642,0.0077892327681183815,-0.3319638967514038,0.4860929250717163,0.5712306499481201,0.1450120359659195,0.10052376240491867,0.6009660363197327,-0.12957029044628143,0.4031687378883362,-0.3576427400112152,0.777477502822876,-0.2355850785970688,0.6178613305091858,0.2052908092737198,0.14556878805160522,0.4673820734024048,0.7823336124420166,0.475519061088562,0.5443522930145264,0.3938756585121155,0.5274009108543396,0.7179177403450012,0.14926579594612122,-0.12164962291717529,0.2073429375886917,0.05599319562315941,0.07772835344076157,0.7859625816345215,-0.10513818264007568,0.04275284707546234,-0.19358207285404205,0.24051572382450104,-0.3900242745876312,0.29746922850608826,0.24790699779987335,0.4011685848236084,0.142095685005188,0.3222174644470215,0.23367688059806824,-0.20873922109603882,0.3128393888473511,0.31786277890205383,0.3764011263847351,0.21647445857524872,0.2429123818874359,0.33475473523139954,0.5462292432785034,0.4583158493041992,0.5387865900993347,0.5900604128837585,0.27469053864479065,0.5379269123077393,0.4641313850879669,0.7626945972442627,0.28225260972976685,0.308881014585495,-0.21901240944862366,0.17248213291168213,0.1953624039888382,0.6277545094490051,0.03181804344058037,0.3443875014781952,0.21463501453399658,0.3496689796447754,0.4444546103477478,0.14671286940574646,-0.28164395689964294,0.003998422995209694,0.15492013096809387,-0.22868584096431732,-0.1729540377855301,0.017154771834611893,-0.152112677693367,-0.3787258267402649,0.33550623059272766,-0.07465244084596634,0.1564248502254486,-0.4777664840221405,-0.0226804967969656,-0.26743268966674805,-0.49806588888168335,-0.6468299627304077,0.13786524534225464,-0.05990687012672424,-0.12343332916498184,0.2629769742488861,0.32796746492385864,0.34716707468032837,-0.9002220630645752,0.027898091822862625,0.22038403153419495,0.237277090549469,-0.02582196146249771,-0.03731502965092659,0.2526184320449829,-0.33490151166915894,-0.01360775250941515,0.7807610630989075,-0.7939014434814453,-0.42925673723220825,-0.06356065720319748,0.3918202817440033,-0.1438932716846466,-0.21877314150333405,-0.9813235402107239,0.03509072959423065,-0.7240175008773804,-0.044605132192373276,-0.515688419342041,-1.369217872619629,-0.796371579170227,-0.7820905447006226,-0.559106171131134,-1.3366724252700806,-0.1413993537425995,-0.44037359952926636,-0.7898966073989868,-0.6449028253555298,-0.4325766861438751,-0.745037317276001,0.301012247800827,0.6171737909317017,-0.1276233047246933,-0.37936460971832275,0.1745951771736145,0.6215802431106567,0.5617173910140991,-0.5879617929458618,0.14003920555114746,-0.17740242183208466,0.3398975431919098,0.6956143379211426,0.0658348798751831,0.1351381242275238,0.5404722690582275,-0.13106276094913483,0.23006804287433624,-0.3416910171508789,0.4705483615398407,-0.10167217254638672,0.48575642704963684,-0.13981622457504272,0.14847275614738464,0.34855300188064575,-0.0387657955288887,0.4312100112438202,0.691824197769165,0.18500521779060364,0.4412437975406647,0.4637819230556488,0.15876369178295135,-0.02047412283718586,0.10834436863660812,-0.4249165952205658,0.22968457639217377,0.5413318872451782,-0.08697882294654846,0.09039384871721268,0.10507867485284805,0.5966562032699585,-0.2230885773897171,-0.24437382817268372,0.47396120429039,0.8733893036842346,0.00031604940886609256,-0.050874244421720505,0.2899685204029083,-0.18456561863422394,0.09401140362024307,0.1031733974814415,0.6474684476852417,0.11923128366470337,0.6880995035171509,0.6228370070457458,0.18483899533748627,0.30821651220321655,0.49788564443588257,0.5889719128608704,0.5073300004005432,0.6949735879898071,0.8887248635292053,0.5209843516349792,0.3426806628704071,-0.0035708697978407145,0.3338905870914459,-0.2195902168750763,-0.03638806194067001,0.5178639888763428,0.30723774433135986,0.2912648618221283,0.212674081325531,0.5803003311157227,-0.4823012053966522,0.5160614848136902,-0.705072820186615,-0.367999792098999,-0.46488693356513977,0.5214723348617554,-0.24956470727920532,0.049172889441251755,-0.42789122462272644,0.4830068349838257,-0.39537638425827026,0.03994882106781006,-0.38231146335601807,-0.176950141787529,-0.5035507082939148,-0.6844593286514282,-0.5504657030105591,-0.4331226050853729,-0.27504968643188477,-0.48817962408065796,-0.7690383195877075,-0.1268889605998993,-0.1073756143450737,0.23217912018299103,0.2890560030937195,-0.142490416765213,0.5025873780250549,-0.2428101897239685,-0.2739640474319458,0.5333659648895264,0.20871767401695251,-0.20702359080314636,-0.04924037680029869,0.10451260954141617,0.4274226427078247,0.4234599173069,0.45414429903030396,0.07102290540933609,0.3322015702724457,-0.20233187079429626,0.4051440954208374,-0.0785379558801651,0.6267694234848022,-0.2533888518810272,0.5066159963607788,0.3338966965675354,0.5560488700866699,0.32410967350006104,0.5356220006942749,0.48077234625816345,0.44590476155281067,0.15354864299297333,0.6455948948860168,0.4848238527774811,-0.038621146231889725,0.45370176434516907,-0.4583483636379242,0.33215758204460144,-0.29064005613327026,0.40464821457862854,0.3194901943206787,-0.006195783615112305,0.05912892147898674,0.07775096595287323,-0.00019504129886627197,0.1214103102684021,-0.10300812125205994,-0.024441609159111977,0.02609257772564888,0.0066316993907094,-0.17178361117839813,0.22350139915943146,-0.6245578527450562,-0.02997744455933571,-0.15113651752471924,-0.03533263877034187,0.10498093068599701,-0.372061550617218,-0.20208114385604858,-0.20551547408103943,-0.36801692843437195,-0.2514154314994812,-0.33816006779670715,-0.1403137743473053,-0.2389422059059143,-0.29215100407600403,-0.1608695685863495,-0.5922300815582275,0.0989929810166359,-0.21672505140304565,-0.017372313886880875,0.20409907400608063,0.19333551824092865,-0.15541744232177734,0.29526931047439575,-0.20006343722343445,0.041348472237586975,-0.05673098564147949,0.3888586759567261,0.6134496331214905,0.10997307300567627,-0.24109338223934174,0.5437324643135071,-0.026906782761216164,0.4884451627731323,-0.015074044466018677,0.323853075504303,-0.19920614361763,0.5529455542564392,0.46636417508125305,0.26406988501548767,0.06496729701757431,0.270117849111557,0.6320351958274841,0.44214412569999695,0.6682064533233643,0.0937487855553627,0.4104922413825989,0.2589088976383209,0.060536712408065796,-0.2216341346502304,-0.21874262392520905,-0.010904860682785511,0.47121983766555786,-0.07462923973798752,0.2742249667644501,0.11808785796165466,0.3915359079837799,0.09590158611536026,-0.6403363943099976,-0.865936815738678,-0.20504586398601532,-1.0017212629318237,0.0922013521194458,-0.10115009546279907,-0.057411182671785355,-0.5025305151939392,-0.42954355478286743,-0.28357261419296265,0.47037273645401,-0.49788033962249756,-0.4753447473049164,-0.22507381439208984,-0.9949797987937927,-0.30762723088264465,-0.7150389552116394,-0.2318437397480011,-0.03952256217598915,-0.36375677585601807,-0.09889964759349823,-0.33005455136299133,0.023357994854450226,0.44938400387763977,-0.38990575075149536,0.46827390789985657,-0.19977739453315735,-0.40095627307891846,0.537216067314148,0.416496604681015,-0.1132306382060051]},{"shape":[32],"values":[0.22114932537078857,-0.16710709035396576,0.44694310426712036,0.6429330706596375,0.009837552905082703,-0.18868838250637054,0.39486929774284363,-0.03271475061774254,0.5371047854423523,0.029713552445173264,0.637455940246582,-0.10455924272537231,0.5609748959541321,0.45709308981895447,0.5429033041000366,0.3875202238559723,0.5465463399887085,0.3918595612049103,0.4342705011367798,0.5886414647102356,0.6123242378234863,0.576275646686554,0.46204689145088196,0.597150444984436,-0.23231029510498047,-0.3710508346557617,0.06436154991388321,0.7386873960494995,-0.40695086121559143,-0.37533020973205566,-0.1903253197669983,0.46840792894363403]},{"shape":[32,9],"values":[0.8233646154403687,0.5492188334465027,0.0912434384226799,0.16713717579841614,-0.3249112665653229,0.08883079141378403,-0.5613243579864502,-0.5092852115631104,-0.5284984707832336,-0.60472172498703,-0.40079304575920105,-0.494623601436615,-0.5866904854774475,-0.6124555468559265,-0.488485723733902,-0.4283137917518616,-0.3344270586967468,-0.23157362639904022,0.6050079464912415,0.7974186539649963,0.9131978750228882,0.5779570937156677,0.4911160171031952,0.6516098380088806,0.3318668603897095,0.7339716553688049,0.6615195870399475,0.402718722820282,0.40271231532096863,0.6013323664665222,0.38716280460357666,0.7068861722946167,0.6805629730224609,0.5339942574501038,0.6122363805770874,0.7581564784049988,-0.2690960764884949,0.35855478048324585,0.3675643503665924,0.0140321534126997,0.08412869274616241,0.6401625871658325,-0.48278099298477173,0.23823347687721252,0.2957393527030945,-0.4651348888874054,-0.3496069610118866,-0.14747752249240875,-0.43113794922828674,-0.6728036403656006,0.03825828805565834,-0.47237446904182434,-0.5425805449485779,-0.2252781093120575,0.003901369171217084,0.6855468153953552,0.4068250060081482,0.7724166512489319,0.12429477274417877,0.29019463062286377,0.7107447981834412,0.10555603355169296,0.15737003087997437,-0.1858033984899521,-0.11573009938001633,-0.20367267727851868,0.13287530839443207,0.17285428941249847,0.2643158435821533,0.019959313794970512,0.013482949696481228,-0.029320556670427322,0.594560980796814,0.5665255188941956,0.2985853850841522,0.2857740521430969,0.4503251612186432,0.3439916670322418,0.8437633514404297,0.6022900938987732,0.28572508692741394,-0.3626116216182709,-0.5260602831840515,-0.6963085532188416,-0.39201620221138,-0.07311791926622391,-0.18239393830299377,0.010088018141686916,-0.053682535886764526,-0.11324600875377655,0.49606338143348694,0.6220374703407288,0.7750570178031921,0.21633414924144745,0.6318073272705078,0.18837954103946686,0.7726712822914124,0.7200882434844971,0.731637179851532,-0.22297830879688263,-0.3862357437610626,-0.3198431432247162,0.14000746607780457,-0.3472992777824402,-0.21444828808307648,-0.6933795809745789,-0.4891881048679352,-0.3255997598171234,0.5941246151924133,0.5507855415344238,0.5571885108947754,0.8446763753890991,0.3804672062397003,0.8098236918449402,0.5216836333274841,0.4242442548274994,0.7572221159934998,0.3751771152019501,0.2776154577732086,0.3125057816505432,0.6951125860214233,0.5475344657897949,0.2823135554790497,0.6401139497756958,0.3441064953804016,0.5672394037246704,0.5845622420310974,-0.06578018516302109,0.466574490070343,0.5004985332489014,0.5266482830047607,0.41857728362083435,0.1872386634349823,0.5321089625358582,0.6232925057411194,0.6777017712593079,0.4212774634361267,0.734309196472168,0.6364204287528992,0.8559188842773438,0.36000603437423706,0.48054057359695435,0.6539971232414246,0.9883500337600708,0.49380767345428467,0.5619015693664551,0.6515393853187561,0.3657281994819641,0.24691079556941986,0.4715569317340851,0.6855546236038208,0.49462538957595825,0.5797452330589294,0.7868017554283142,0.8426491022109985,0.7436321973800659,0.586383581161499,0.705679714679718,0.8034073114395142,0.45169568061828613,0.5984687209129333,0.24640339612960815,0.6021729707717896,0.49794846773147583,0.10762172937393188,0.18601630628108978,0.5785735249519348,0.4760720431804657,0.4713596999645233,0.35301274061203003,0.01944969967007637,0.913870632648468,0.16271157562732697,0.3588974177837372,0.8715730905532837,0.9175633192062378,0.2769503891468048,0.46289587020874023,0.7169004082679749,0.5244157910346985,0.5771343111991882,0.9569085836410522,0.5544467568397522,0.4012202024459839,0.8461093306541443,0.9106623530387878,0.5652269721031189,0.6591018438339233,0.7781528830528259,0.6002997159957886,0.091831736266613,0.5547006130218506,0.6015293598175049,0.624228298664093,0.6810875535011292,0.6196848750114441,0.13455839455127716,0.7125194072723389,-0.134351909160614,0.07006245851516724,0.25323089957237244,0.4667544662952423,0.09333430230617523,0.2324730008840561,0.30778154730796814,0.7678900957107544,0.7774460911750793,-0.1575457751750946,-0.18171019852161407,-0.23558205366134644,0.1376190334558487,-0.09669338166713715,0.19708342850208282,0.41835519671440125,0.5341475605964661,0.7956990599632263,0.9264513850212097,-0.1771276444196701,-0.16236324608325958,0.3598461151123047,-0.06475412845611572,-0.11620773375034332,0.15936316549777985,-0.1155911237001419,-0.8588294982910156,-0.3270716369152069,0.07199077308177948,0.0006963185151107609,-0.36660128831863403,-0.5296229720115662,-0.3244401514530182,-0.16658653318881989,-0.29664140939712524,-0.8878903985023499,-0.31217700242996216,-0.4731806516647339,-0.42695385217666626,-0.18627522885799408,-0.327153742313385,-0.42191168665885925,-0.8002311587333679,-0.37187546491622925,-0.3791675865650177,0.3562471568584442,0.6481341123580933,0.33429214358329773,0.7417135834693909,0.34748804569244385,0.7313856482505798,0.8160606026649475,0.6324477195739746,0.6067540645599365,0.03916480764746666,0.16738690435886383,0.11803245544433594,-0.428418904542923,-0.5615721344947815,0.12599967420101166,-0.6204379796981812,-0.6305665969848633,-0.09510412812232971,-0.33463814854621887,-0.7117785215377808,-0.5461317300796509,-0.2524354159832001,-0.11988356709480286,-0.4619668424129486,-0.2957371473312378,-0.7831266522407532,-0.6728801131248474,-0.20403096079826355,-0.4209730923175812,0.02056879922747612,-0.3575168550014496,-0.26379793882369995,-0.37430697679519653,-0.23170959949493408,-0.06399194151163101,-0.4437820613384247,0.366761177778244,0.6329579949378967,0.09672039747238159,0.3327816426753998,0.5327369570732117,0.08110406994819641,0.32608291506767273,0.6493507027626038,0.12023714184761047]},{"shape":[9],"values":[0.11161726713180542,0.009864503517746925,0.1862974613904953,0.24174906313419342,0.1881314069032669,0.26032546162605286,0.4978775978088379,0.561062216758728,0.471292108297348]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-29.json new file mode 100644 index 0000000..1939b12 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:26:22.735Z","weights":[{"shape":[20,32],"values":[-0.3042689859867096,0.6415565013885498,1.2462095022201538,1.291921854019165,-0.47172293066978455,0.8554876446723938,-0.13920848071575165,0.024129843339323997,0.9342489838600159,0.9521247148513794,0.5285439491271973,-0.28738051652908325,0.9460485577583313,1.2357797622680664,0.8083362579345703,0.2629314661026001,-0.49490606784820557,1.174254059791565,0.1177191510796547,0.18042120337486267,1.3750861883163452,0.9649255275726318,0.7244762778282166,0.9421297311782837,1.0104587078094482,0.30460605025291443,0.044984277337789536,0.4345511794090271,1.2981257438659668,0.7366847395896912,0.5284450650215149,0.008998792618513107,-0.11921299248933792,0.06878721714019775,-0.10770110785961151,-0.17561110854148865,-0.03178470954298973,0.06957263499498367,0.07874520868062973,0.2925051748752594,0.05032500624656677,0.1542431265115738,-0.02650308422744274,-0.08701224625110626,0.23637482523918152,-0.03287448734045029,-0.05725051462650299,0.05073903873562813,-0.03371180593967438,0.17225281894207,0.026894904673099518,0.35676467418670654,-0.10319994390010834,-0.13724736869335175,-0.01706000789999962,0.06857193261384964,0.13079796731472015,0.04300868511199951,-0.09375176578760147,0.08445657044649124,0.15436434745788574,-0.1103450208902359,-0.07141544669866562,0.06425003707408905,-0.8795737624168396,-0.08501831442117691,-0.05970236659049988,0.2398897260427475,0.014983303844928741,0.13765797019004822,0.42795610427856445,0.5668861865997314,0.0033751255832612514,-0.401760995388031,0.1765151470899582,-0.8723439574241638,-0.11577579379081726,0.31557151675224304,0.11975724995136261,1.398240566253662,-0.6808489561080933,0.04715833067893982,-0.22576546669006348,-0.027787985280156136,-0.5688518285751343,0.14785058796405792,-0.1755969226360321,-0.08036770671606064,-0.07291429489850998,-0.383293092250824,-0.20185476541519165,0.20510061085224152,0.015351822599768639,0.114064522087574,-0.6694115996360779,0.5231539011001587,1.2137699127197266,-0.11866505444049835,0.36729317903518677,-0.44187691807746887,0.32138949632644653,-0.011523225344717503,-1.5683339834213257,-0.5699803829193115,0.012901789508759975,0.30821049213409424,0.11631477624177933,1.1521483659744263,-0.00852697342634201,0.025142641738057137,0.03785939887166023,-0.10109719634056091,1.8867326974868774,0.016899816691875458,0.39655351638793945,-1.1297093629837036,0.4446209669113159,-0.26934459805488586,-0.043857391923666,-0.2617688775062561,0.355843186378479,-0.04046163335442543,2.0055935382843018,-0.18592871725559235,0.05127916485071182,-0.011987471953034401,1.7389134168624878,-1.0666228532791138,0.27326175570487976,0.15939712524414062,0.28253164887428284,0.00147463649045676,0.34636491537094116,0.13886196911334991,0.37433183193206787,0.03871513158082962,0.02740435302257538,-0.1450582891702652,0.013666232116520405,-0.14021585881710052,0.2852810025215149,0.28585687279701233,-0.55794358253479,-0.21303953230381012,0.21002992987632751,-0.07354149222373962,0.07905220985412598,-0.39184877276420593,0.03911538049578667,0.2585372030735016,0.21115662157535553,0.23590654134750366,-0.30311718583106995,0.014825325459241867,-0.006599188316613436,0.0059172483161091805,-0.26307201385498047,-0.027716927230358124,-0.04638073593378067,0.45403823256492615,0.08227311819791794,0.41234201192855835,0.14118599891662598,0.14438116550445557,0.4590069651603699,-0.15029630064964294,-0.39164605736732483,-0.5534221529960632,-0.3966756761074066,0.3273353576660156,-0.0023830768186599016,-0.02973194606602192,-0.2498597800731659,-0.2383602410554886,0.013560360297560692,-0.058328043669462204,0.17043925821781158,-0.2147083431482315,0.14157164096832275,-0.3148447573184967,0.21009030938148499,0.2904784381389618,0.1627434939146042,-0.25825071334838867,-0.07785259187221527,-0.25129467248916626,-0.05251101404428482,0.23910048604011536,-0.4470122754573822,0.09459403902292252,-0.2667921781539917,0.42056605219841003,0.024053718894720078,0.20355568826198578,-0.04770873114466667,-0.02873266488313675,0.5107066035270691,-0.5179846286773682,0.22519265115261078,-0.5340083837509155,-0.46726569533348083,0.26107674837112427,0.08422277867794037,-0.06338785588741302,-0.10195290297269821,0.11901015043258667,-0.31393009424209595,0.04583202302455902,0.06908033043146133,-0.36712905764579773,-0.04923057183623314,-0.27098822593688965,0.28442803025245667,0.42799657583236694,-0.21422268450260162,0.33964529633522034,-0.05623217672109604,0.22764445841312408,0.19148893654346466,-0.12932442128658295,-0.38444170355796814,0.010618751868605614,0.1983567625284195,-0.11574138700962067,0.11913897097110748,0.35018566250801086,-0.15050241351127625,0.24423828721046448,0.08047545701265335,-0.40703701972961426,-0.13669924437999725,-0.6997759342193604,-0.11157062649726868,0.07066675275564194,0.42417752742767334,0.14706075191497803,0.3371555507183075,0.17486779391765594,0.16885656118392944,0.24443966150283813,0.06743393838405609,-0.1954026222229004,-0.5671387314796448,-0.19135649502277374,0.2593786120414734,0.10500667244195938,0.4509219229221344,0.13199469447135925,0.1382984071969986,0.4519316554069519,0.12454834580421448,0.3266684114933014,0.11429914087057114,0.4550366699695587,0.2280428558588028,0.28616854548454285,-0.16503222286701202,-0.11855222284793854,0.07082583755254745,-0.19751359522342682,-0.061482157558202744,0.41123154759407043,0.014637681655585766,-0.10407301038503647,-0.15281444787979126,-0.2473667711019516,-0.09350762516260147,-0.026188137009739876,0.16697871685028076,-0.12791649997234344,0.40709131956100464,0.01598081924021244,0.17551596462726593,0.08900735527276993,-0.4299894869327545,-0.3863368630409241,0.11812758445739746,0.18617111444473267,0.18358542025089264,-0.5854501128196716,0.25545307993888855,-0.2536148130893707,-0.13736039400100708,0.5357261300086975,0.05692584440112114,0.11117537319660187,0.1268816739320755,0.21746782958507538,-0.17105400562286377,-0.6437919735908508,0.14948126673698425,0.0337291918694973,0.14546246826648712,0.23914626240730286,-0.19867409765720367,-0.028994152322411537,0.16002045571804047,0.22184772789478302,-0.045012231916189194,-0.0673496350646019,-0.05330802500247955,-0.09809942543506622,0.5136274695396423,-0.2038051337003708,-0.055124346166849136,-0.08307398110628128,-0.40549546480178833,-0.29952260851860046,0.13499176502227783,0.14026831090450287,0.20633038878440857,-0.38507080078125,0.2907784879207611,-0.49234625697135925,-0.03535810112953186,0.03939983993768692,-0.0961943045258522,0.3571787476539612,-0.15583960711956024,0.299320250749588,-0.224273219704628,0.009482304565608501,0.35784703493118286,0.013131425715982914,-0.31397613883018494,0.4458692967891693,-0.418162077665329,-0.3085436224937439,-0.11610909551382065,-0.18141521513462067,0.28858429193496704,-0.2053900957107544,0.18327279388904572,0.018744777888059616,0.05420323461294174,-0.41038402915000916,0.04870335012674332,0.08288278430700302,0.18929550051689148,0.12232634425163269,0.41577449440956116,-0.20154255628585815,-0.292849600315094,0.05650969594717026,0.36939752101898193,0.038786739110946655,0.1131623312830925,0.3728671669960022,0.4093796908855438,-0.029968850314617157,-0.5550273060798645,0.2648994028568268,0.2732137143611908,-0.471661776304245,-0.1691482961177826,-0.36779239773750305,-0.24860025942325592,-0.08796428143978119,0.09729704260826111,-0.2644455134868622,0.2893524467945099,0.033090122044086456,-0.24675673246383667,-0.38425153493881226,0.16211913526058197,0.12830427289009094,-0.2978608012199402,0.11409592628479004,0.06753786653280258,-0.2262968122959137,0.1728246808052063,0.12611813843250275,-0.4272958040237427,-0.052727244794368744,-0.26264482736587524,-0.36110472679138184,0.1239931732416153,-0.4341449737548828,-0.13323481380939484,-0.3358727991580963,0.12635232508182526,-0.1280275583267212,-0.2239941656589508,0.33752965927124023,0.2279224991798401,-0.08977893739938736,-0.03664349019527435,0.07174860686063766,0.1417294144630432,-0.06475258618593216,-0.04883424565196037,-0.33891358971595764,-0.09115307033061981,-0.28393837809562683,0.15166780352592468,0.03638347610831261,-0.07021627575159073,-0.17563755810260773,0.30945175886154175,0.05040096491575241,-0.10708021372556686,0.09210190922021866,0.31613054871559143,-0.005599960219115019,0.09974869340658188,-0.2438308745622635,-0.39743247628211975,-0.44156381487846375,0.03693980351090431,-0.33263376355171204,0.1588955819606781,-0.2603258192539215,0.3632940948009491,-0.25145792961120605,-0.11632897704839706,0.3711148798465729,0.1987234503030777,-0.6522250771522522,-0.014824760146439075,0.07374083995819092,0.1742362380027771,-0.03802446275949478,-0.4172894060611725,0.43184471130371094,0.3061700761318207,0.23498541116714478,0.29769203066825867,-0.06842965632677078,0.3650316596031189,-0.2141081988811493,0.38850024342536926,-0.08781591057777405,-0.15454718470573425,-0.07882196456193924,-0.5427539348602295,0.26000919938087463,0.3350098729133606,0.3690117299556732,0.01261252723634243,-0.17588090896606445,0.30136626958847046,-0.6604360938072205,-0.18486125767230988,0.19173064827919006,0.05586545541882515,-0.1468999981880188,0.14154048264026642,-0.07544586807489395,-0.027966029942035675,-0.15540441870689392,-0.20636874437332153,-0.28636032342910767,0.2661530077457428,-0.21310216188430786,0.07965774834156036,0.24814878404140472,0.2629304826259613,-0.04677579924464226,-0.22866998612880707,-0.22710338234901428,0.2593671679496765,0.23490957915782928,0.12883512675762177,-0.22335347533226013,0.09030675143003464,0.20656761527061462,0.08919752389192581,-0.21674031019210815,-0.4010266661643982,0.25824084877967834,-0.10213324427604675,0.28380340337753296,0.05581700801849365,-0.21795357763767242,0.1026562750339508,-0.02183135226368904,-0.29865387082099915,-0.2517439126968384,-0.2909392714500427,-0.04762052372097969,-0.1777585744857788,-0.4836799204349518,-0.1764603555202484,-0.23010775446891785,0.04266827553510666,0.29406461119651794,0.1583651453256607,-0.19169221818447113,-0.2915601432323456,-0.22342069447040558,0.1603589653968811,-0.43003273010253906,-0.023986823856830597,-0.23276939988136292,-0.08327879011631012,0.05642778426408768,0.014650506898760796,0.09755880385637283,0.09082077443599701,0.14791539311408997,-0.04577558860182762,-0.3904259204864502,0.0989365428686142,-0.1404896080493927,-0.14333173632621765,-0.15754124522209167,0.023213190957903862,0.058298926800489426,0.22973068058490753,-0.24530385434627533,0.12568877637386322,-0.2263229489326477,-0.14397871494293213,-0.11476810276508331,-0.4686908721923828,0.03569357842206955,-0.032234035432338715,0.01280667632818222,0.37697163224220276,-0.6022703647613525,0.03181016817688942,0.044203758239746094,0.08018934726715088,0.15797293186187744,-0.34482279419898987,0.20865553617477417,-0.04757586121559143,0.2607481777667999,-0.15714658796787262,-0.051394566893577576,0.10241513699293137,0.07553490251302719,-0.038132764399051666,-0.21223695576190948,-0.29065483808517456,-0.21393045783042908,-0.07266881316900253,-0.1424127221107483,-0.14410248398780823,0.025686802342534065,0.013856259174644947,-0.12419941276311874,0.15325523912906647,-0.2710254490375519,0.08571349084377289,0.002336547477170825,0.25428274273872375,0.2709663510322571,-0.11813711374998093,-0.07346347719430923,0.10540872812271118,0.15265434980392456,-0.18915598094463348,0.0626647025346756,0.0644417330622673,-0.1966346949338913,0.3210243880748749,0.3608973026275635,0.28453385829925537,-0.0867437869310379,0.2711171507835388,0.22154350578784943,-0.0998651459813118,-0.2552531957626343,0.07183785736560822,0.17036369442939758,0.3179221451282501,-0.22531187534332275,-0.14608760178089142,-0.10537616908550262,0.1629253327846527,0.10540074855089188,-0.1348268836736679,0.18247061967849731,-0.17125621438026428,-0.07674131542444229,0.15592636168003082,0.3742777705192566,-0.12363941222429276,0.14824295043945312,-0.4111177921295166,-0.43377092480659485,-0.3533690571784973,0.131373792886734,-0.11142242699861526,-0.2748171091079712,0.16770142316818237,0.017012538388371468,-0.43542590737342834,-0.20016947388648987,0.17207954823970795,-0.3164840638637543,0.1760537475347519,-0.07209314405918121,0.16251204907894135,0.29647746682167053,-0.15860305726528168,-0.18973353505134583,0.04388808831572533,0.25351908802986145,-0.30400368571281433,-0.06378494203090668,-0.4006524384021759,-0.23919089138507843,-0.27868250012397766,-0.13736505806446075,-0.0815490186214447,-0.09087421745061874,-0.017457999289035797,-0.3848488926887512,-0.20583003759384155,0.2763464152812958,-0.2682301104068756,0.20011144876480103,-0.22793342173099518,-0.20567898452281952,-0.25132131576538086,-0.21926914155483246,-0.05052030831575394,-0.3214740455150604,-0.16192187368869781,-0.0759982094168663,-0.03091314062476158,-0.14856268465518951,0.18753015995025635,-0.020416259765625,0.1882726550102234,0.32626020908355713,0.15951155126094818,0.08325554430484772,-0.3485398292541504,-0.2221977710723877,-0.22211939096450806,-0.1528528779745102,0.05484343320131302,0.12007021903991699,-0.2331099659204483,0.014608402736485004,-0.15349841117858887,-0.2181919813156128]},{"shape":[32],"values":[-0.29220321774482727,0.4478045105934143,0.5488322377204895,0.5821908116340637,-0.2704843580722809,0.525479793548584,0.157187819480896,-0.08427651971578598,0.6577958464622498,0.42932337522506714,0.2338315099477768,-0.3055970370769501,0.5094799399375916,0.5172959566116333,0.2812992334365845,0.0021447816397994757,-0.3110135793685913,0.49338993430137634,-0.0878089889883995,-0.10144603997468948,0.5574659705162048,0.3036800026893616,0.4466225504875183,0.5473981499671936,0.459704726934433,0.3090660274028778,-0.30561044812202454,0.3151463270187378,0.5368649959564209,0.38361096382141113,-0.2960052788257599,0.04930539056658745]},{"shape":[32,32],"values":[-0.23187480866909027,-0.16343849897384644,-0.4323716163635254,-0.34759950637817383,0.06927847117185593,-0.37301990389823914,0.49209991097450256,0.30868810415267944,-0.6457555294036865,-0.04965564236044884,-0.372385174036026,0.05378946289420128,0.48179054260253906,-0.23696710169315338,-0.1554991602897644,-0.3047240674495697,0.2704717814922333,0.5407425761222839,-0.3051493167877197,-0.770545244216919,0.10756055265665054,0.39340320229530334,-0.48134541511535645,-0.5128299593925476,0.061760589480400085,0.23966874182224274,-0.23920924961566925,-0.025614796206355095,-0.6306492686271667,0.043098900467157364,-0.7239702343940735,-0.2613411843776703,0.07130514830350876,0.6839715242385864,0.2350904792547226,0.31971752643585205,-0.4176103174686432,0.3447923958301544,-0.006451134569942951,-0.2558625340461731,0.6740864515304565,0.4496116638183594,0.06786166876554489,-0.16905765235424042,0.06377631425857544,0.381911963224411,0.4000038802623749,0.228428915143013,-0.045006509870290756,-0.15949010848999023,-0.28186511993408203,0.2815503180027008,0.3896231949329376,-0.10242664068937302,0.2034015953540802,0.44603586196899414,0.05395370349287987,-0.11292015761137009,-0.1836356371641159,0.25379103422164917,0.3751794099807739,0.09224683046340942,0.0778941661119461,0.7011576890945435,0.19592033326625824,0.8409207463264465,0.8842625617980957,0.5427963137626648,0.21781419217586517,0.43657055497169495,-0.05674612522125244,0.3074045181274414,0.7756708860397339,0.9120311141014099,0.3701441287994385,-0.10161435604095459,0.15282410383224487,0.46540290117263794,0.5268836617469788,0.36292773485183716,0.13857203722000122,0.20658563077449799,0.007507078815251589,0.8513808846473694,0.945151150226593,-0.1761597990989685,0.22952911257743835,0.647604763507843,-0.2940272390842438,-0.011661502532660961,-0.6591667532920837,0.4818283021450043,0.7362760305404663,0.5041778683662415,0.8104308843612671,0.44325199723243713,0.7554541230201721,1.0181021690368652,0.13627955317497253,0.37491223216056824,0.06965173035860062,0.49430301785469055,-0.38102978467941284,0.031596146523952484,0.8626561760902405,0.6951832175254822,0.657406747341156,0.24353227019309998,-0.2939557135105133,0.2560499310493469,0.2110220044851303,0.13893921673297882,0.1155628189444542,-0.5274975895881653,0.18345896899700165,0.8287398815155029,0.3416932225227356,-0.31987860798835754,0.3550061583518982,0.666908860206604,-0.28543007373809814,-0.12854249775409698,-0.2124953418970108,0.39453062415122986,0.6737300157546997,0.44671157002449036,0.46687501668930054,0.8519681692123413,-0.10497266054153442,-0.3300533592700958,-0.4663732945919037,0.17020386457443237,-0.31177619099617004,0.11165762692689896,0.08475266396999359,0.05930984765291214,-0.33802440762519836,-0.45796117186546326,-0.24763962626457214,-0.20038874447345734,0.14229248464107513,-0.2852866053581238,0.08602748811244965,-0.012819395400583744,0.11224590986967087,-0.18241696059703827,-0.22357496619224548,-0.36011984944343567,-0.32943037152290344,-0.03146808594465256,0.00019753231026697904,-0.0716305524110794,0.20639212429523468,0.34575918316841125,-0.08123400062322617,-0.3553975820541382,-0.6225099563598633,0.029088929295539856,-0.6561151146888733,0.06334738433361053,0.4576003849506378,0.6744725108146667,0.44119271636009216,0.13998724520206451,0.18238337337970734,0.672829270362854,-0.49850764870643616,-0.6002236008644104,0.8087791204452515,0.4470497667789459,0.3203946352005005,-0.18724963068962097,-0.20966844260692596,0.21269366145133972,0.5297173261642456,0.5137388706207275,-0.1314694583415985,-0.5013477802276611,-0.3056170642375946,0.5849537253379822,0.40930357575416565,-0.3175118565559387,0.13284125924110413,0.12506191432476044,-0.2543785274028778,-0.6183878779411316,-0.05933612585067749,-0.0021790005266666412,0.44932305812835693,0.3753761053085327,0.4651995003223419,0.5191295146942139,-0.8037716150283813,-0.9080340266227722,-0.9274361729621887,-0.5757386684417725,0.04398604482412338,-0.4644741117954254,0.21977685391902924,1.0376328229904175,-0.5153937935829163,-0.850294291973114,-0.8198050260543823,-0.11035138368606567,0.11214754730463028,-0.5757932662963867,-0.4808236062526703,-0.007043073885142803,0.43471717834472656,-0.46702244877815247,0.11301859468221664,-0.8390112519264221,-0.9427353739738464,0.2846193015575409,-0.595901370048523,-0.9938710927963257,0.21600750088691711,0.46305298805236816,0.05078160762786865,-0.4743153154850006,-1.2491703033447266,-0.5924702286720276,-0.4392620921134949,-0.5285619497299194,-0.6279637217521667,-0.46444031596183777,-0.4481292963027954,-0.33997440338134766,-0.24587132036685944,-0.6092190146446228,0.08138449490070343,-0.24342864751815796,-0.5958234071731567,-0.4421464502811432,-0.1876954287290573,0.06763654202222824,0.0883605033159256,-0.6346871256828308,-0.5125365257263184,-0.31804516911506653,0.249884694814682,-0.061398688703775406,-0.03430180251598358,-0.4601449966430664,-0.16483494639396667,-0.06236826628446579,-0.6329605579376221,-1.1601307392120361,-0.2613038122653961,0.41624826192855835,0.08823379874229431,-0.10978548973798752,-0.8095970153808594,-0.44769418239593506,-0.5480608344078064,-0.655699610710144,0.6285098791122437,0.7553218007087708,0.29285624623298645,0.5144088268280029,-0.045162152498960495,0.31729644536972046,-0.2834817171096802,-0.6182730793952942,0.3478039801120758,0.6507114171981812,0.44125568866729736,0.22066520154476166,-0.1782410442829132,0.5842933058738708,0.6162290573120117,0.17360706627368927,0.041121575981378555,-0.259672075510025,-0.3404829800128937,0.4401242733001709,0.3970582187175751,-0.12739503383636475,0.49721163511276245,0.19764947891235352,-0.07082757353782654,0.2568744719028473,0.27659711241722107,0.4076995551586151,0.47119665145874023,0.6412729620933533,0.6189907193183899,0.47507670521736145,0.364721417427063,0.08339032530784607,0.48709848523139954,0.3636051416397095,0.3334396481513977,0.41147175431251526,0.38388922810554504,0.03142803907394409,0.5820890069007874,0.2589986026287079,0.39355191588401794,0.44595271348953247,0.4907571077346802,0.21517978608608246,0.3837720453739166,0.05945416912436485,-0.056149184703826904,0.30763137340545654,-0.0395352728664875,0.19888631999492645,0.41764816641807556,0.2986838221549988,0.41128259897232056,0.17041800916194916,-0.2535300850868225,0.30160582065582275,0.021652445197105408,-0.05825037509202957,-0.010533220134675503,0.03667084500193596,0.5190119743347168,0.5418455004692078,0.2081838995218277,0.06151795759797096,-0.17625169456005096,0.04090069606900215,-0.17332838475704193,0.23621325194835663,-0.154641792178154,0.2859332859516144,0.08744917064905167,0.2534991502761841,0.3413971960544586,-0.15637904405593872,0.3028847277164459,0.17781466245651245,0.13943077623844147,0.1721276342868805,-0.3010754883289337,0.0974048599600792,-0.0791604220867157,0.38789376616477966,0.0463414266705513,-0.11534648388624191,0.23715506494045258,0.24436761438846588,-0.2654750645160675,0.24296920001506805,-0.11299682408571243,0.0978941023349762,0.315354585647583,-0.19409719109535217,-0.15002861618995667,0.5202766060829163,-0.35409244894981384,-0.5871762037277222,-0.44778338074684143,-0.4780689477920532,-0.1484450250864029,-0.6631341576576233,0.5365822315216064,0.4696783125400543,-0.8810601234436035,-0.37143591046333313,-0.7872366905212402,-0.3162062168121338,0.40265244245529175,-0.1411302238702774,-0.6434096693992615,-0.0029683802276849747,0.2103472501039505,0.3873438537120819,-0.1254722774028778,-0.9841996431350708,-0.2575545310974121,0.5444561839103699,-0.615025520324707,-0.6718201637268066,0.015004018321633339,0.30546626448631287,0.19349977374076843,-0.20348110795021057,-0.5774980187416077,-0.050426386296749115,-0.9444334506988525,-0.660067617893219,0.3525424301624298,0.45633432269096375,0.44020646810531616,-0.06525342166423798,0.26073554158210754,0.1836278885602951,0.12307723611593246,0.22084350883960724,0.4569169282913208,0.36258649826049805,0.032666582614183426,0.3760707974433899,-0.3431216776371002,0.31764844059944153,0.06066848710179329,0.01892077550292015,0.40166816115379333,0.04633835703134537,-0.18057505786418915,0.5997857451438904,0.023274315521121025,0.12256091088056564,-0.008516783826053143,0.33917418122291565,-0.07298459857702255,0.22307312488555908,-0.25927144289016724,0.5413650870323181,0.36856895685195923,0.21844090521335602,0.19986535608768463,0.7273521423339844,0.7559599876403809,0.785312294960022,0.5025691390037537,0.810223400592804,-0.05471044033765793,0.7104749083518982,-0.2972593605518341,-0.20540829002857208,1.0941154956817627,0.5241784453392029,0.670803964138031,-0.06233749911189079,-0.34546956419944763,0.6586500406265259,0.62193763256073,0.2072167992591858,-0.3072516918182373,-0.45414501428604126,-0.13800236582756042,0.8403980135917664,0.4399450719356537,0.14573831856250763,0.5135294198989868,0.24147938191890717,-0.08263150602579117,-0.24921682476997375,0.005656856577843428,0.5237837433815002,0.6601144671440125,-0.03592662885785103,0.367037832736969,0.9068959355354309,0.4452023506164551,0.5111271739006042,0.6302617192268372,0.33800914883613586,-0.2817705273628235,0.6786212921142578,0.4391780197620392,-0.052027951925992966,0.802551805973053,0.6113582253456116,0.8024556636810303,-0.101773202419281,0.2521900534629822,0.11425111442804337,0.389014333486557,0.32028740644454956,0.15615855157375336,-0.04401575028896332,-0.005392121151089668,0.8274242877960205,0.22263507544994354,-0.06125907227396965,0.3885517120361328,0.19114656746387482,0.04233578220009804,0.0202107485383749,0.2660146653652191,0.7804659008979797,0.2467375248670578,0.5598075985908508,0.4405723214149475,0.3415854871273041,-0.4523632526397705,-0.079217329621315,-0.6059591770172119,-0.5654255151748657,-0.02493758127093315,-0.5559834837913513,-0.4206174314022064,0.8150448799133301,-0.464150607585907,-0.6643505096435547,-0.8711103200912476,-0.08290895074605942,0.7182327508926392,-0.5593934655189514,-0.48917895555496216,-0.4272458851337433,0.21912632882595062,0.8271263837814331,-0.04124898463487625,-0.4482177495956421,-0.6936014890670776,-0.013023212552070618,-0.2874203324317932,-1.038185954093933,-0.3027019798755646,0.6533798575401306,0.5235381126403809,-0.08564312011003494,-0.8328379392623901,-0.6008626818656921,-0.17304794490337372,-0.42166003584861755,-0.1504741609096527,-0.31798362731933594,-0.7084110379219055,-0.22159814834594727,0.008832684718072414,-0.48218339681625366,0.35288581252098083,0.14759767055511475,-0.859104573726654,-0.3508342504501343,-0.48696964979171753,0.034133244305849075,0.6835469603538513,-0.05485152080655098,-0.07693656533956528,-0.029974890872836113,0.5592904686927795,0.20355992019176483,-0.2652431130409241,-0.5269849300384521,-0.33620765805244446,0.3288501799106598,-0.5111183524131775,-0.337190181016922,-0.03807176277041435,0.6657525300979614,0.22647447884082794,-0.49247580766677856,-0.39228007197380066,-0.48248255252838135,-0.6652207970619202,-0.36855387687683105,0.6760642528533936,0.5057571530342102,0.6585010290145874,0.18995913863182068,-0.03745978698134422,0.6704794764518738,0.052735835313797,-0.16581855714321136,0.9117622375488281,0.4089079797267914,0.2911319136619568,0.04943038150668144,-0.3903299570083618,0.39611053466796875,0.10014014691114426,0.5104170441627502,0.014204827137291431,-0.368154376745224,-0.30583319067955017,0.3133678138256073,0.23567600548267365,0.16976070404052734,0.35978513956069946,0.3438377380371094,-0.2887360751628876,0.07729298621416092,-0.30152958631515503,0.3333466053009033,0.5588151216506958,0.23368479311466217,0.6784719228744507,0.4563770592212677,0.4895057678222656,0.4924379289150238,0.37071362137794495,0.5169916152954102,0.23545153439044952,0.4857422709465027,0.12371358275413513,-0.16359229385852814,0.14713864028453827,0.47882166504859924,0.2615657150745392,0.11836259812116623,-0.599829912185669,0.5595316290855408,0.19786399602890015,-0.12184163182973862,-0.009006624110043049,0.22828853130340576,0.11424022167921066,0.37778133153915405,0.6143958568572998,-0.010739093646407127,0.385396808385849,0.15241113305091858,0.07451173663139343,-0.09649432450532913,0.10280296951532364,-0.20882532000541687,0.5436545610427856,0.3425939381122589,0.4162015914916992,0.4888218343257904,-0.3254050314426422,-0.03450819477438927,-0.4552467167377472,-0.4253479838371277,0.09648404270410538,-0.2942611575126648,-0.22284267842769623,-0.22990591824054718,-0.18848349153995514,-0.5138078927993774,-0.3613765239715576,0.13083966076374054,-0.17736543715000153,-0.10094921290874481,-0.28467899560928345,0.00659378943964839,-0.07714242488145828,-0.5971265435218811,-0.19895026087760925,-0.1274144947528839,-0.2280397266149521,-0.07858602702617645,0.05700291693210602,-0.6615382432937622,-0.21182343363761902,0.12444339692592621,0.4828871190547943,-0.011706501245498657,-0.10411283373832703,-0.13730114698410034,-0.27130019664764404,-0.1870633214712143,0.06937584280967712,0.4426737427711487,0.19732533395290375,0.439221054315567,0.06158139184117317,0.3691653609275818,0.44359391927719116,0.4172574281692505,0.2884577512741089,0.19141730666160583,0.3217769265174866,-0.09939119219779968,0.05776372179389,0.2748481035232544,0.11135442554950714,-0.07966095954179764,0.11798049509525299,0.5220000743865967,0.0914657935500145,0.016644742339849472,0.4675540328025818,0.2916910946369171,0.39516356587409973,0.1788017600774765,-0.24832957983016968,0.34094417095184326,-0.27923840284347534,0.4842506945133209,0.31447145342826843,0.2294951230287552,0.2046048790216446,0.46590813994407654,0.5746914148330688,0.6258611083030701,0.1798599511384964,0.4852553904056549,0.12092304974794388,0.18588334321975708,0.12132944166660309,0.0371243879199028,0.545070230960846,0.5632472634315491,0.5498450994491577,-0.17453162372112274,-0.32827433943748474,0.4872663617134094,0.5141931176185608,0.2697657346725464,-0.2195511758327484,-0.13993187248706818,-0.20961801707744598,0.5216962695121765,0.18151946365833282,-0.3243144750595093,0.30894044041633606,0.39041024446487427,0.2419346123933792,-0.03317854180932045,0.0449906550347805,-0.022399311885237694,0.11330091208219528,0.4089224636554718,-0.10947132855653763,0.17832785844802856,0.2074185460805893,0.27600961923599243,0.45447179675102234,0.5187856554985046,0.34296706318855286,0.34506136178970337,-0.09404142946004868,-0.1670415997505188,0.5297577977180481,0.4684755206108093,0.4578283131122589,0.18022271990776062,0.29450273513793945,0.046900395303964615,0.3016287386417389,-0.02544068731367588,-0.22843977808952332,0.06721241772174835,0.15647323429584503,-0.02710677683353424,0.47856858372688293,0.32931527495384216,0.49490588903427124,0.3983096182346344,-0.26619845628738403,0.14386755228042603,-0.13509580492973328,0.16359220445156097,0.014617480337619781,0.39105933904647827,0.34391355514526367,0.3405226767063141,0.7965973019599915,1.0663596391677856,0.7294455170631409,0.5731595158576965,-0.5142140984535217,0.8070254325866699,-0.28394266963005066,-0.43157273530960083,0.9717252254486084,0.752055287361145,0.8743271827697754,-0.21530452370643616,-0.30009323358535767,0.619956374168396,0.2345803827047348,0.5534101128578186,-0.001970855053514242,-0.23464258015155792,-0.018823813647031784,0.38125962018966675,0.8059903979301453,-0.40849965810775757,0.3120385408401489,0.778849184513092,-0.28230857849121094,-0.5583095550537109,0.02521860972046852,0.33943459391593933,0.8005074858665466,0.2368360459804535,0.2745482921600342,0.8542565107345581,0.4104778468608856,0.5371344685554504,0.49193117022514343,0.5136510729789734,-0.3386458456516266,0.21464258432388306,0.3829067051410675,0.411971777677536,0.36992162466049194,0.3945619463920593,0.594032347202301,0.0823761522769928,0.18530072271823883,0.08653638511896133,0.10882801562547684,-0.06026190519332886,0.19440008699893951,0.35717931389808655,-0.14095912873744965,0.4981924891471863,0.20469865202903748,0.05177255719900131,0.5595923066139221,0.3368264436721802,-0.2830454707145691,0.15817345678806305,-0.17554432153701782,0.19721686840057373,0.4463975131511688,0.457669734954834,0.24789217114448547,0.10509444773197174,0.33179202675819397,0.07360997051000595,0.6091175675392151,0.6100686192512512,-0.20134402811527252,0.5004886388778687,0.0589100606739521,-0.2945419251918793,0.6621594429016113,0.28836923837661743,0.5302159190177917,-0.007045213598757982,-0.02497122250497341,0.1332443505525589,0.3137437105178833,0.2270386666059494,0.08074112981557846,-0.37293142080307007,-0.3761751651763916,0.3766278028488159,0.6634842753410339,0.17861464619636536,0.4051796793937683,0.44598907232284546,-0.3001033365726471,-0.14365099370479584,0.012275957502424717,0.5171560645103455,0.052952397614717484,0.055526990443468094,0.17651677131652832,0.20455524325370789,-0.15311624109745026,-0.7527661919593811,-0.939684271812439,-0.6851456165313721,-0.13722385466098785,-0.574739933013916,0.3534680902957916,0.5292436480522156,-0.3939964175224304,-0.6720508933067322,-0.8422538042068481,-0.19063624739646912,0.24940240383148193,-0.5808760523796082,-0.20195189118385315,-0.333879292011261,0.5470609068870544,0.799075186252594,-0.10318499803543091,-0.7579212784767151,-0.4908076226711273,0.3908516764640808,-0.5732409358024597,-0.3771226704120636,-0.10209576040506363,0.6305411458015442,-0.28155115246772766,-0.23636405169963837,-0.714365541934967,-0.5250942707061768,-1.1070094108581543,-0.21440976858139038,0.3790633976459503,0.40237826108932495,-0.16694362461566925,0.37948915362358093,-0.31833577156066895,0.3259829878807068,-0.38407444953918457,0.18234103918075562,0.18718792498111725,0.039095230400562286,0.3545997142791748,0.16845642030239105,0.22450150549411774,0.17897823452949524,-0.11724288016557693,0.010005788877606392,-0.0821664109826088,0.23980888724327087,0.01671610400080681,0.14072297513484955,-0.03408028185367584,-0.0790085718035698,0.13908487558364868,0.27424749732017517,-0.2778762876987457,-0.4055313467979431,-0.4033667743206024,0.001959996996447444,0.19275575876235962,0.3652805685997009,0.0754413902759552,0.3115299344062805,0.8229644298553467,0.6288836598396301,0.8393716812133789,0.6190565228462219,0.35386720299720764,0.4078352153301239,-0.06831780076026917,-0.18303042650222778,1.0632274150848389,0.9514518976211548,0.24063369631767273,0.32293087244033813,0.1449095904827118,0.4559348225593567,0.16884823143482208,0.21158930659294128,0.07922960817813873,0.1351715475320816,0.10978042334318161,0.5770248174667358,0.5366899967193604,0.2863762676715851,0.750515341758728,0.2883557677268982,0.24614067375659943,-0.04146568104624748,0.06465625762939453,0.5602321028709412,0.5927374362945557,0.4782611131668091,0.5632756948471069,0.37352117896080017,0.19341078400611877,0.7473800182342529,0.514914333820343,0.45627763867378235,0.24196603894233704,0.6400012373924255,-0.2797088921070099,0.16655601561069489,0.6028475761413574,0.22166770696640015,0.3997362554073334,-0.08991093933582306,0.2927158772945404,0.3975473940372467,0.013533633202314377,0.30492350459098816,-0.12847426533699036,0.08479171991348267,0.2694055140018463,0.12205508351325989,0.33802005648612976,-0.007812656462192535,0.36848336458206177,0.146601602435112,-0.2441612333059311,-0.27649179100990295,-0.27403587102890015,0.3860352635383606,0.6228175759315491,0.25637152791023254,-0.011214077472686768,0.23770564794540405,-0.16680468618869781,-0.21785175800323486,-0.3626607060432434,-0.600943922996521,0.25847771763801575,-0.2090701460838318,0.9380596876144409,0.8808020949363708,-0.4392576813697815,-0.14479534327983856,-0.4428139626979828,0.060187146067619324,0.9465698599815369,-0.4701620936393738,-0.36223307251930237,-0.44869568943977356,0.6609521508216858,0.6798481941223145,-0.3836232125759125,-0.6263776421546936,-0.38305550813674927,0.5348467230796814,-0.5650367140769958,-0.35612472891807556,0.14283935725688934,0.8182032108306885,-0.09853793680667877,-0.7037000060081482,-0.707594096660614,-0.2529364824295044,-0.6302657723426819,-0.2813117802143097,0.2448458969593048,0.18578709661960602,-0.10279905796051025,0.08288103342056274,-0.3332696259021759,-0.09159690886735916,-0.5385662317276001,0.20224569737911224,-0.034738704562187195,0.21866540610790253,-0.035199783742427826,-0.8812209963798523,-0.7286155819892883,0.2653127610683441,-0.09347684681415558,0.16455529630184174,0.08593108505010605,-0.14661268889904022,0.1409698724746704,-0.009931521490216255,-0.0043465266935527325,-0.7613294124603271,0.2470986694097519,-0.03513382002711296,-0.2479703724384308,-0.5912984013557434,-0.17781241238117218,0.2601252794265747,-0.36828702688217163,0.27940109372138977,-0.446505606174469,-0.0032952914480119944]},{"shape":[32],"values":[0.36299237608909607,0.41892892122268677,0.35509419441223145,0.32026082277297974,-0.01834283024072647,0.39891016483306885,-0.1009100005030632,-0.17655415832996368,0.47583335638046265,0.4268507659435272,0.37561893463134766,-0.0676271840929985,-0.08875522762537003,0.33688610792160034,0.1457410454750061,0.3609704077243805,-0.06731796264648438,-0.039750102907419205,-0.02196260169148445,0.2994033396244049,0.2914014160633087,-0.09040720760822296,0.25878626108169556,0.33586516976356506,0,-0.08212496340274811,0.25911468267440796,0.3250274956226349,0.2574043273925781,0.3866582214832306,0.5216522216796875,0.42269694805145264]},{"shape":[32,9],"values":[0.0297654140740633,0.5887337923049927,0.21074029803276062,0.08256924897432327,0.5713940262794495,0.43842563033103943,0.636612594127655,0.4175582826137543,0.4725692570209503,0.6744784116744995,0.5916157960891724,0.1362522840499878,0.6560508012771606,0.5087400674819946,0.5830104351043701,0.7153423428535461,0.5520868897438049,0.5200982093811035,0.3367612063884735,0.674192488193512,0.44232508540153503,0.5116716623306274,0.5714946389198303,0.6022427678108215,0.38957297801971436,0.6545401215553284,0.6724176406860352,0.4489801526069641,0.36010053753852844,0.4829502999782562,0.12854576110839844,0.4559761881828308,0.5228526592254639,0.32207030057907104,0.2068946659564972,0.34963515400886536,0.25833937525749207,0.4448730945587158,0.47635650634765625,0.22766751050949097,-0.32894453406333923,0.2594321668148041,-0.12068331241607666,-0.22318774461746216,-0.16731500625610352,0.5583768486976624,0.4428119361400604,0.2457110732793808,0.6111556887626648,0.7305579781532288,0.2266882210969925,0.6550659537315369,0.2993398606777191,0.5534705519676208,-0.5906931161880493,-0.3567477762699127,-0.2539393901824951,-0.444039523601532,-0.4203300178050995,-0.490418016910553,-0.5673888325691223,-0.4834340512752533,-0.8261377811431885,-0.4821324050426483,-0.6770594716072083,-0.506807804107666,-0.27695807814598083,0.017624985426664352,-0.3260793387889862,-0.7073043584823608,-0.6939709782600403,-0.33504271507263184,0.5314828157424927,0.7798574566841125,0.8350116014480591,0.6558135747909546,0.5895905494689941,0.5720586180686951,0.5576445460319519,0.6277632117271423,0.6203580498695374,0.445280522108078,0.21092158555984497,0.5085384845733643,0.5242959260940552,0.8190625905990601,0.7996450066566467,0.7002599835395813,0.39434686303138733,0.7487610578536987,0.49637502431869507,0.6999439597129822,0.34257885813713074,0.1010076180100441,0.35361772775650024,0.2145194411277771,0.47506359219551086,0.6946161389350891,0.5258998870849609,0.2344921976327896,0.27690818905830383,0.09756144881248474,0.39562416076660156,0.4092203378677368,-0.2268340289592743,-0.05508649721741676,0.030493149533867836,-0.5985326766967773,-0.14813008904457092,-0.5547851920127869,-0.6979334354400635,-0.5193002820014954,-0.38474735617637634,-0.43072766065597534,-0.49141237139701843,-0.6885578632354736,-1.0336995124816895,0.567832350730896,0.27875852584838867,0.1731809377670288,0.3205870985984802,0.735658586025238,0.48220232129096985,0.08311432600021362,0.7441526055335999,0.40906810760498047,0.34087932109832764,0.4690633714199066,0.3557559549808502,0.41475921869277954,0.25592565536499023,0.370949923992157,0.08298312872648239,0.06103881448507309,0.40314751863479614,0.5160596370697021,0.1286882609128952,0.08872304111719131,0.5967438817024231,-0.09497480094432831,0.0020116788800805807,0.3165767192840576,0.4088732600212097,0.17527452111244202,-0.5505266189575195,-0.4149414002895355,-0.3448249101638794,-0.09916509687900543,-0.5450133681297302,-0.5939046740531921,0.03277072682976723,-0.574658989906311,-0.006071578245609999,-0.6725815534591675,-0.6700680255889893,-0.3763662576675415,-0.5350393056869507,-0.4384443461894989,-0.6801490783691406,-0.7957567572593689,-0.18282856047153473,-0.20813195407390594,-0.05919695273041725,0.15544064342975616,0.38687002658843994,0.03670854866504669,0.17296360433101654,-0.3460298776626587,-0.22491738200187683,0.04426898434758186,-0.10135706514120102,0.8606519103050232,0.2969599962234497,0.917395293712616,0.5812884569168091,0.7016705274581909,0.35864853858947754,0.5078914761543274,0.4209555387496948,0.36136460304260254,-0.07215026766061783,0.24802608788013458,0.7477975487709045,0.20703917741775513,0.11589938402175903,0.6500184535980225,0.23505698144435883,0.4183628559112549,0.8309069871902466,-0.12086351215839386,-0.30289801955223083,-0.44084346294403076,-0.4618573486804962,-0.4423654079437256,-0.7507456541061401,-0.22997507452964783,-0.6990066766738892,-0.588333249092102,0.36620768904685974,0.5093275904655457,0.7032031416893005,0.6906816363334656,0.04893476888537407,0.6692244410514832,0.39928150177001953,0.131283238530159,0.47318586707115173,0.22713632881641388,0.6658470034599304,0.5988085865974426,0.4243556261062622,0.7569144368171692,0.4305381178855896,0.3054717481136322,0.9208865761756897,0.7258397936820984,0.05535309389233589,-0.2606797218322754,0.1718757450580597,0.37336328625679016,0.3142111003398895,-0.20520707964897156,0.24975085258483887,-0.16596050560474396,-0.1980413794517517,-0.4862273633480072,-0.6658017039299011,-0.6166738867759705,-0.5021069645881653,-0.5710147619247437,-0.360366553068161,-0.5722275376319885,-0.19332832098007202,-0.6239548921585083,-0.1619105339050293,-0.3454575836658478,0.1589512825012207,-0.02986454777419567,0.2531388998031616,0.17684072256088257,-0.04602980986237526,0.201496884226799,0.8112092614173889,-0.08869592845439911,0.5176493525505066,0.19249820709228516,0.6026051640510559,0.44992780685424805,0.3759911358356476,0.2905541658401489,0.5894174575805664,0.16615094244480133,0.7111127972602844,0.5106450319290161,0.6585732698440552,0.865691065788269,0.3514672517776489,0.8604896068572998,0.39085811376571655,0.5999482274055481,0.5434353351593018,0.40088003873825073,0.32455360889434814,0.14795337617397308,0.11954274773597717,0.3806534707546234,0.5153676867485046,0.738636314868927,0.419470876455307,0.4929370582103729,0.8717440962791443,0.47301194071769714,0.30005863308906555,0.6797509789466858,0.6865038871765137,0.19517777860164642,0.7117555737495422,0.8089144229888916,0.24282076954841614,0.49631890654563904,0.049906183034181595,0.6406249403953552,0.4532296657562256,-0.004604266956448555,0.4680599868297577,0.6005927324295044,0.42401766777038574,0.3235820233821869]},{"shape":[9],"values":[0.1863548755645752,0.1693175733089447,0.12026448547840118,0.13037288188934326,0.07773298770189285,0.024273289367556572,0.3203504979610443,0.3748526871204376,0.24915136396884918]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-47.json new file mode 100644 index 0000000..317d111 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:26:57.271Z","weights":[{"shape":[20,32],"values":[1.5053272247314453,-0.5253903269767761,0.7339532971382141,1.3874907493591309,0.9629070162773132,0.02418745681643486,0.08849360793828964,1.3644015789031982,1.0649088621139526,-0.32077810168266296,0.6272661089897156,0.1301693320274353,-0.44941794872283936,-0.4666798710823059,0.5358859896659851,-0.3327280580997467,-0.08067703992128372,1.1941050291061401,1.5773382186889648,1.441185712814331,0.4157579839229584,0.05691177397966385,1.1416317224502563,0.6686206459999084,1.1889961957931519,1.518568515777588,1.5198053121566772,0.167059525847435,0.3840493857860565,0.6554121375083923,0.9725034236907959,-0.2960626184940338,0.02272406779229641,0.33123645186424255,0.24532653391361237,-0.16046975553035736,-0.052566949278116226,-0.013935771770775318,-0.011610647663474083,-0.04500782489776611,0.07136043161153793,-0.059892311692237854,0.1774865686893463,0.042404528707265854,-0.13003791868686676,-0.06739871203899384,0.09833569079637527,-0.29291534423828125,0.1751406192779541,-0.2162470668554306,-0.11970885097980499,0.13646431267261505,0.10833548754453659,-0.016892731189727783,-0.14846497774124146,0.04995046183466911,-0.12647195160388947,-0.1875726729631424,0.10524812340736389,-0.12358077615499496,0.04030932858586311,-0.06132854148745537,0.1363499015569687,-0.2019839733839035,0.062118276953697205,0.4932127594947815,-0.17780667543411255,0.22501808404922485,0.053310077637434006,-0.8761500716209412,0.16510219871997833,-0.020821070298552513,-0.02705085650086403,-0.5113183856010437,0.0045273141004145145,-0.29046064615249634,0.13208022713661194,0.45258429646492004,-0.36231157183647156,0.22278043627738953,1.0148327350616455,-0.1941704899072647,0.06632246822118759,-0.030182668939232826,-0.24257338047027588,-0.4889536201953888,-0.12650208175182343,0.2606731057167053,0.1624864786863327,-0.10856017470359802,-0.21145908534526825,-0.6253418922424316,-0.43893352150917053,-0.23509150743484497,-0.23349687457084656,-1.038598895072937,0.22587408125400543,-1.284616231918335,-0.023229343816637993,-0.5271638631820679,-0.22197161614894867,1.1173374652862549,-0.7036038637161255,-0.5860543251037598,0.12925639748573303,0.3417220413684845,-0.33411097526550293,0.06920583546161652,1.2988334894180298,-0.7034128308296204,-0.19615961611270905,1.0906014442443848,-0.1836315095424652,0.003341374220326543,0.14322461187839508,-0.00044253497617319226,-0.004675076808780432,1.1416152715682983,-0.0035319640301167965,-0.6791008114814758,-0.5425467491149902,-0.27634918689727783,0.04763006418943405,1.1828136444091797,0.47898992896080017,0.42672768235206604,0.1669761687517166,1.0384255647659302,0.28901663422584534,0.5564719438552856,0.12836013734340668,-0.2794163227081299,0.3981266915798187,-0.18559530377388,0.13714104890823364,-0.2148594707250595,0.21865175664424896,0.11696767807006836,0.16485756635665894,0.32875749468803406,-0.1195129007101059,0.06601088494062424,0.14493095874786377,0.03674982488155365,0.1243070662021637,0.014879221096634865,0.3121364414691925,-0.2789296507835388,-0.03186257556080818,-0.2780439257621765,0.10369668155908585,-0.018580544739961624,0.060327284038066864,-0.0875747948884964,-0.48929986357688904,0.0699821189045906,0.0831313207745552,0.15279504656791687,-0.10030922293663025,0.31646090745925903,0.03375188261270523,-0.10168323665857315,-0.31681403517723083,-0.20113322138786316,0.00458707008510828,0.075266532599926,-0.34066200256347656,0.1840454638004303,-0.27530667185783386,0.24807201325893402,-0.0735543891787529,-0.012926488183438778,0.27125710248947144,-0.2494947463274002,0.10873723775148392,0.28426381945610046,0.011358710005879402,0.3024114668369293,-0.32372769713401794,-0.3280782103538513,-0.1441860944032669,0.22236153483390808,0.27789193391799927,0.325154185295105,0.13932602107524872,-0.02476402185857296,0.2458910048007965,0.13223041594028473,0.10590160638093948,-0.07458074390888214,0.0590578094124794,-0.19500254094600677,-0.09309443086385727,-0.026910606771707535,-0.10764661431312561,0.3181259036064148,-0.4415336549282074,0.045295149087905884,0.2081017792224884,0.06344527006149292,-0.029968436807394028,0.15661300718784332,-0.4638705849647522,-0.34963956475257874,0.22742928564548492,-0.31523528695106506,-0.3917264938354492,0.45150628685951233,-0.27806323766708374,0.2866842746734619,-0.011230257339775562,-0.33054816722869873,-0.5725004076957703,-0.13290731608867645,-0.24056336283683777,0.17424845695495605,0.4079294502735138,0.33437755703926086,0.33808112144470215,0.41462358832359314,-0.5192469954490662,-0.4526422321796417,-0.1795136034488678,0.15849269926548004,0.01621829904615879,-0.7349081039428711,0.2753780782222748,0.4585214853286743,-0.4928663671016693,0.09971140325069427,-0.14064152538776398,0.6811427474021912,0.21689075231552124,0.16057072579860687,-0.32313424348831177,-0.47706037759780884,0.19787180423736572,-0.19399455189704895,-0.5792115926742554,0.21287988126277924,-0.05516352877020836,0.008309747092425823,0.01534162275493145,-0.2950228750705719,0.06170053780078888,0.26942238211631775,0.5153582692146301,0.35082146525382996,0.3254294693470001,0.3991842269897461,0.482570081949234,-0.12989751994609833,-0.4057214856147766,-0.36564403772354126,0.27476170659065247,-0.08534318208694458,0.15835435688495636,0.09879287332296371,-0.5644080638885498,-0.08494406193494797,0.5408062934875488,-0.035742782056331635,-0.06968290358781815,0.17299354076385498,-0.029627077281475067,0.3554145395755768,-0.18755187094211578,-0.01386489812284708,0.09715152531862259,-0.21258507668972015,0.17167022824287415,0.06760182231664658,0.2091858685016632,-0.33402299880981445,0.03548711910843849,0.36666372418403625,0.25023502111434937,0.05253104120492935,0.35200247168540955,-0.1585022509098053,-0.16619719564914703,-0.04976923018693924,0.2403092235326767,0.03239846229553223,0.674394428730011,0.834283173084259,0.33492162823677063,-0.27451395988464355,0.44963541626930237,0.01927880011498928,-0.24983464181423187,0.11982907354831696,-0.30002185702323914,0.010617101565003395,-0.28711023926734924,0.18598240613937378,-0.33477792143821716,0.11173146218061447,0.3325657248497009,0.4085402488708496,-0.33138227462768555,-0.42512086033821106,0.6594909429550171,-0.2675945460796356,0.17251211404800415,-0.10149434208869934,-0.1136101558804512,-0.4269168972969055,-0.19192366302013397,-0.287846177816391,0.40355801582336426,0.3641290068626404,0.31985267996788025,0.07090777158737183,0.12455067783594131,-0.47650158405303955,0.5246933698654175,-0.6327337026596069,0.16519664227962494,-0.35775282979011536,0.5491262078285217,-0.09921009838581085,0.6562047004699707,0.21786291897296906,0.3857312500476837,0.2315889149904251,-0.6760227680206299,0.37210705876350403,0.6703398823738098,0.34979185461997986,0.4044248163700104,-0.019861532375216484,-0.12024912983179092,-0.5191068053245544,0.2563686966896057,0.07463876157999039,-0.3825407922267914,0.13068819046020508,0.5948957800865173,0.27306216955184937,-0.11806315928697586,-0.4599112570285797,0.4857458770275116,0.5438816547393799,0.23939567804336548,0.13411404192447662,0.07104534655809402,-0.5573972463607788,0.6778077483177185,0.5361658334732056,0.3410874307155609,-0.06941457837820053,-0.036827992647886276,0.2565273940563202,0.07149065285921097,-0.12988312542438507,-0.5105825066566467,0.053810227662324905,0.05478030815720558,0.009385728277266026,-0.01854088343679905,-0.35060304403305054,0.18532201647758484,-0.06609150767326355,-0.024329787120223045,0.3237817883491516,0.12610866129398346,-0.12281426042318344,-0.408241331577301,0.06720340996980667,-0.12579648196697235,-0.009319934993982315,-0.23155836760997772,-0.2742931544780731,0.04019958898425102,-0.15690714120864868,-0.06783365458250046,0.03284437209367752,-0.12700395286083221,0.05355120822787285,-0.15171968936920166,-0.32622063159942627,-0.07001638412475586,0.333013653755188,0.05141563341021538,-0.04309605434536934,-0.6216446161270142,-0.23726427555084229,0.6480513215065002,-0.13429459929466248,-0.07670588791370392,0.15990793704986572,-0.15458539128303528,-0.1333560049533844,-0.1845056563615799,0.25485628843307495,-0.08681073039770126,-0.0979156345129013,0.3842213749885559,0.06444630771875381,-0.12359455227851868,0.0052672079764306545,0.06828168034553528,0.17250166833400726,-0.1148761510848999,0.09499375522136688,-0.05670739710330963,0.11220575869083405,-0.13304148614406586,0.18351928889751434,-0.07502900063991547,-0.13170138001441956,0.26817256212234497,0.28967979550361633,0.016576355323195457,-0.061894048005342484,0.065688855946064,-0.0031598627101629972,0.0824773758649826,-0.1260998696088791,0.043895572423934937,0.038760777562856674,-0.25398293137550354,0.3563489019870758,-0.2804948389530182,0.18768657743930817,-0.0790930688381195,0.33464527130126953,0.16895583271980286,0.08361656218767166,0.3685462474822998,0.2383255660533905,0.1555163860321045,0.31212425231933594,-0.0944787934422493,-0.39558595418930054,-0.32799577713012695,0.08454105257987976,0.3844040334224701,0.4741600751876831,0.08277101069688797,0.05933363363146782,0.4145583510398865,-0.0927024781703949,0.330850213766098,-0.3017194867134094,-0.010933373123407364,-0.032404087483882904,-0.23173236846923828,0.019753405824303627,0.04222831130027771,-0.06871063262224197,0.4480459988117218,-0.1471661478281021,-0.48620495200157166,-0.22660274803638458,0.47515788674354553,-0.11794669926166534,0.29496484994888306,0.1690770834684372,0.31522098183631897,0.18165095150470734,-0.10027452558279037,-0.2616378366947174,-0.02405962347984314,0.289114385843277,-0.175130695104599,0.5978200435638428,0.42251163721084595,-0.4586486220359802,-0.12818482518196106,-0.03315693512558937,-0.15313415229320526,-0.16857200860977173,0.19118815660476685,-0.2609361708164215,-0.1833374798297882,0.2748354375362396,0.18752837181091309,0.34886738657951355,-0.22989106178283691,0.26356300711631775,0.11783113330602646,-0.17338575422763824,0.13738268613815308,-0.05685598403215408,-0.08443474769592285,-0.0862392783164978,0.023297157138586044,0.1958032101392746,0.08284971117973328,-0.1814420372247696,0.2677009105682373,0.42650508880615234,0.2683776021003723,0.0031950045377016068,-0.387029767036438,-0.16503334045410156,0.20557080209255219,-0.45915886759757996,-0.24036036431789398,-0.13327880203723907,0.043992575258016586,0.13277721405029297,0.22592495381832123,-0.10194208472967148,-0.3486587703227997,0.5506890416145325,0.13104863464832306,-0.0043037813156843185,0.2135097235441208,0.4183539152145386,-0.2200593501329422,-0.17212313413619995,-0.37033215165138245,0.2692386507987976,0.0581166073679924,0.17576593160629272,0.3415641784667969,-0.21768319606781006,0.028701724484562874,-0.1381351202726364,-0.18553826212882996,-0.33366936445236206,-0.2965966463088989,-0.15334409475326538,-0.20737822353839874,-0.0611959733068943,0.08204099535942078,-0.3321775496006012,0.153860405087471,0.133322075009346,-0.1979672610759735,0.43524613976478577,0.08392080664634705,-0.06667119264602661,-0.10217685252428055,0.05290953442454338,0.2448081225156784,-0.05894172564148903,0.05620076507329941,-0.22186729311943054,0.29611632227897644,0.060335125774145126,-0.13049288094043732,-0.04293995350599289,0.25414934754371643,0.22278979420661926,-0.11414549499750137,-0.16810622811317444,0.08977305144071579,-0.24611926078796387,-0.3683394491672516,0.09473879635334015,0.14255745708942413,0.3089817762374878,0.1928393840789795,0.320096492767334,-0.0041923848912119865,0.034054987132549286,0.20313069224357605,-0.19308091700077057,-0.08658081293106079,-0.11541708558797836,-0.04711344838142395,-0.06367290019989014,-0.12704162299633026,0.36823633313179016,0.2537481486797333,-0.08696427196264267,0.2526983320713043,-0.16088587045669556,0.43490836024284363,0.029366200789809227,-0.19171829521656036,0.25148043036460876,0.04025285691022873,0.2558610439300537,-0.04244791716337204,-0.3158208429813385,-0.04951191321015358,-0.2409159392118454,-0.4615117311477661,-0.0686565563082695,-0.2742440700531006,-0.02370656281709671,0.10978424549102783,-0.12966300547122955,0.34495052695274353,0.06705762445926666,0.2102932631969452,0.10856649279594421,-0.022281792014837265,0.09286385029554367,-0.2034585028886795,0.24176418781280518,-0.249312162399292,-0.24908488988876343,-0.2242901772260666,-0.0825454592704773,-0.35443809628486633,-0.17934051156044006,-0.05327837914228439,-0.1962594985961914,0.057006727904081345,-0.14382824301719666,-0.17801398038864136,0.5130351185798645,0.1376139223575592,-0.013163096271455288,-0.4364755153656006,0.3273637294769287,-0.5281808376312256,-0.13704180717468262,0.07594147324562073,0.3103870451450348,-0.02846240997314453,-0.17493216693401337,0.1424035131931305,0.16203437745571136,-0.09469945728778839,0.0695064440369606,-0.25800806283950806,0.2798081636428833,0.09039664268493652,-0.3270733654499054,-0.27987000346183777,-0.23124760389328003,-0.42597129940986633,0.052410002797842026,-0.0879475474357605,0.022134047001600266,0.2672697603702545,-0.0011573218507692218,-0.08164545893669128,-0.03138575702905655,0.022292444482445717,0.15766049921512604,-0.3961530923843384,0.3583139181137085]},{"shape":[32],"values":[0.658385157585144,0.10336251556873322,0.3926312327384949,0.6227625012397766,0.5294728875160217,-0.1730257272720337,-0.10498812049627304,0.35333260893821716,0.5736211538314819,-0.30077260732650757,0.637256920337677,0.07677275687456131,-0.17141170799732208,-0.05567464977502823,0.14303559064865112,-0.22552713751792908,-0.11230549961328506,0.2778179347515106,0.8289037346839905,0.6856171488761902,0.46991243958473206,-0.15647870302200317,0.4768236577510834,0.22471313178539276,0.304073691368103,0.41396066546440125,0.7740005850791931,-0.12337687611579895,-0.0542457289993763,0.19424358010292053,0.6043989062309265,-0.1475938856601715]},{"shape":[32,32],"values":[-0.09357961267232895,0.697738766670227,-0.04182787239551544,0.11499200761318207,0.506629467010498,0.8063747882843018,0.5213773250579834,0.4945507347583771,0.3240318298339844,0.48077017068862915,0.07057833671569824,0.3336559236049652,-0.24202807247638702,0.010915909893810749,-0.006172734312713146,0.8233832120895386,-0.24995817244052887,0.013208369724452496,0.1319233924150467,0.540432333946228,0.36609622836112976,0.9533926844596863,0.03996763750910759,0.21674737334251404,0.12888795137405396,0.6454039812088013,0.5778514742851257,0.2111649066209793,0.5930243134498596,0.04454730451107025,0.8116974830627441,0.9189400672912598,-0.010139159858226776,-0.2283606380224228,-0.24275588989257812,0.3896767199039459,-0.24120764434337616,-0.7063575387001038,-0.854156494140625,-0.5581167936325073,-0.7653687596321106,-0.2677469253540039,-0.43851062655448914,-0.6037548780441284,-0.210880845785141,-0.19901806116104126,-0.46546924114227295,-0.6932269334793091,0.5720854997634888,0.5426159501075745,0.11382360756397247,-0.5004438757896423,-0.43764790892601013,-0.22638718783855438,-0.18167643249034882,-0.5917313098907471,-0.6601849794387817,-0.7166198492050171,-0.3084719777107239,0.17147666215896606,-0.3226090967655182,0.0025738528929650784,-0.7224019169807434,-0.519037127494812,-0.15662890672683716,0.449278861284256,-0.009200895205140114,-0.04227727651596069,0.35100454092025757,0.7589139938354492,0.3445096015930176,0.12820565700531006,0.054691117256879807,0.20787562429904938,-0.12113332748413086,0.3998981714248657,0.05340201035141945,-0.21956558525562286,-0.14443401992321014,0.5907952189445496,0.0477379746735096,-0.26143938302993774,-0.036895886063575745,0.5328838229179382,0.4589916467666626,0.16667494177818298,-0.03419653698801994,0.06754518300294876,0.22599485516548157,0.28728237748146057,0.24873881042003632,0.09734006226062775,0.45931509137153625,-0.5010946393013,0.5423661470413208,0.18085122108459473,-0.14013826847076416,0.44398802518844604,0.09482774883508682,0.11381988227367401,0.4000396132469177,0.3050091564655304,0.9000804424285889,0.6482722163200378,0.09313058853149414,0.30951768159866333,0.07038112729787827,0.20429497957229614,-0.0030914640519768,-0.3015478253364563,0.05185765027999878,0.5268210172653198,0.23342539370059967,0.289779931306839,-0.24732553958892822,0.49047383666038513,0.4990924000740051,0.8111308813095093,-0.02895224653184414,0.04869033768773079,-0.1762111485004425,0.6642927527427673,0.4060129225254059,0.047198355197906494,0.7609390020370483,0.12564030289649963,0.774311900138855,0.49399688839912415,0.044149249792099,0.38682958483695984,-0.27708518505096436,-0.8640074729919434,0.7077001333236694,0.6753450632095337,0.7665253281593323,0.5145930051803589,0.2149352878332138,0.5294510126113892,0.16670769453048706,0.38451939821243286,-1.1829594373703003,-0.20304493606090546,-0.716788113117218,0.5070956945419312,-0.46358317136764526,-0.45723477005958557,-0.9008983373641968,0.6874248385429382,0.4548299014568329,0.3810354769229889,-0.26944446563720703,0.29046082496643066,0.029176140204072,0.41892895102500916,0.6421646475791931,-0.9249204397201538,0.5577426552772522,-0.27110379934310913,0.3836369514465332,0.8783950805664062,-0.4373031258583069,-0.5778494477272034,-0.24679602682590485,0.680870771408081,-0.39796704053878784,-0.43328943848609924,-0.9315169453620911,-0.41212671995162964,-0.26884570717811584,0.009358324110507965,0.2743043899536133,-0.4780454635620117,0.41163578629493713,0.07737519592046738,0.17936593294143677,-0.41821619868278503,0.3423662781715393,0.31736981868743896,0.7839541435241699,-0.3592120409011841,-0.3890213966369629,-0.9269843697547913,0.057279523462057114,-0.4275854527950287,0.30779924988746643,-0.7119389772415161,-0.7123423218727112,0.7253407835960388,-0.6975411176681519,-0.23080261051654816,-0.5861441493034363,-0.8979533910751343,-0.2800622582435608,-0.17618486285209656,0.19213223457336426,-0.11336112767457962,0.08082450926303864,-0.22559717297554016,-0.1210540309548378,-0.30085960030555725,0.04546917974948883,-0.4270066022872925,-0.15381692349910736,0.37869441509246826,-0.15155239403247833,0.19975237548351288,-0.08152703195810318,-0.06587506085634232,0.46006080508232117,-0.0812821239233017,-0.3557051718235016,-0.05737746134400368,-0.20825476944446564,-0.17923615872859955,0.09935080260038376,-0.29491284489631653,0.22657814621925354,-0.5849964022636414,-0.4606717824935913,0.47851622104644775,0.11769712716341019,0.2608147859573364,-0.33997970819473267,-0.2343551516532898,-0.545804500579834,0.8272516131401062,-0.32829874753952026,0.16932176053524017,0.1622292399406433,0.48194563388824463,0.8057264685630798,0.4722856879234314,0.21524576842784882,0.2006630301475525,-0.12889321148395538,0.5169814825057983,0.04721884801983833,0.03799610584974289,-0.19468967616558075,0.43482470512390137,-0.06820301711559296,-0.1526615023612976,-0.48815277218818665,0.334911584854126,0.5797790288925171,0.4883740544319153,-0.06378069519996643,0.2739851176738739,-0.0966215580701828,0.6077208518981934,0.25696712732315063,0.0671045333147049,0.7877825498580933,0.24140547215938568,0.6477919220924377,0.5009222626686096,0.032015517354011536,0.6042273044586182,0.16747908294200897,0.08231281489133835,0.3215429484844208,0.5116501450538635,0.7690081000328064,0.2675526738166809,-0.24031706154346466,0.5904151201248169,-0.18923257291316986,0.3232358992099762,0.19762445986270905,0.13782912492752075,-0.29830899834632874,0.5922602415084839,0.07066331058740616,0.1470312923192978,-0.24372875690460205,0.1900639683008194,0.2717350721359253,0.30329978466033936,-0.1117229014635086,0.4217754304409027,-0.09838667511940002,0.32670238614082336,0.31363368034362793,0.039331573992967606,0.5105289220809937,0.34760525822639465,0.6995015740394592,0.26347196102142334,-0.06417862325906754,-0.18744632601737976,-0.2892288863658905,-0.07587316632270813,-0.053031567484140396,-0.15804871916770935,-0.3974525034427643,-0.2521129548549652,-0.021159349009394646,-0.18614578247070312,0.010733973234891891,-0.20069685578346252,0.099726103246212,-0.2408372461795807,0.07722493261098862,-0.1879035085439682,0.07218225300312042,0.157928466796875,-0.05088863894343376,-0.4401763379573822,-0.514739990234375,-0.3228731155395508,-0.007541281171143055,-0.2313981056213379,0.16655275225639343,-0.2743043899536133,0.05804049223661423,0.26130443811416626,-0.01785884238779545,0.17934352159500122,0.09524855762720108,-0.46793028712272644,0.250325471162796,0.3935357332229614,0.06559116393327713,-0.526656448841095,-0.049502674490213394,0.4253849685192108,0.5770346522331238,0.13927613198757172,0.14030703902244568,0.21659785509109497,0.00000491592800244689,0.008997492492198944,-0.7807419896125793,-0.1616775542497635,-0.9510722756385803,0.20441991090774536,0.17136520147323608,-1.1071969270706177,-1.4096477031707764,0.10108204931020737,0.41358232498168945,0.4526910185813904,0.22577321529388428,0.41894620656967163,-0.5570839643478394,0.26403191685676575,0.34128424525260925,-0.5616925954818726,0.15389299392700195,0.23336955904960632,0.4755113422870636,0.12601794302463531,0.10151907801628113,0.3877819776535034,-0.22814980149269104,-0.3306616544723511,0.34564507007598877,0.5812225341796875,0.1531379520893097,0.2552267611026764,-0.1903558224439621,-0.04660172015428543,0.3129136264324188,-0.0061729177832603455,-1.095011591911316,-0.17764124274253845,-0.8320692181587219,0.46559980511665344,0.17776337265968323,-1.0718588829040527,-1.4480763673782349,0.19837261736392975,0.2650429606437683,0.1808091551065445,0.2561928629875183,0.1106199324131012,-0.3211946487426758,-0.13408003747463226,-0.059043120592832565,-0.4028882384300232,0.11767718195915222,0.06970390677452087,0.1480264812707901,0.0007733310339972377,0.19863930344581604,-0.30886223912239075,-0.029278341680765152,0.36824139952659607,-0.096685029566288,-0.4659987688064575,0.0016780211590230465,-0.37279319763183594,-0.07814264297485352,-0.07731109112501144,0.34837159514427185,-0.21467696130275726,0.5083280801773071,-0.15053217113018036,0.0034686254803091288,-0.5567899346351624,0.4603250026702881,0.03793364390730858,0.41479822993278503,-0.29829779267311096,-0.5419186353683472,-0.4289807975292206,0.06595156341791153,-0.2499210238456726,0.07935352623462677,-0.36596301198005676,-0.1271854192018509,0.1397547423839569,-0.15587766468524933,0.22089210152626038,-0.36973339319229126,-0.2896542251110077,-0.031142976135015488,-0.45101198554039,0.13150081038475037,0.46393758058547974,-0.05125588923692703,-0.19641271233558655,-0.5261365175247192,-0.46131381392478943,-0.3634757697582245,-0.3191898763179779,-0.19910618662834167,-0.20242813229560852,0.17379799485206604,-0.2293470799922943,-0.33891308307647705,-0.037904318422079086,0.09032172709703445,0.09023027867078781,-0.22790661454200745,-0.32344162464141846,-0.562831461429596,-0.4687716066837311,-0.09814558923244476,-0.5869519114494324,0.1601182073354721,-0.3266012668609619,-0.11226408183574677,0.1356855183839798,-0.28557783365249634,-0.05441083014011383,-0.00394722493365407,-0.48415428400039673,-0.19482821226119995,0.4920058250427246,0.165390282869339,-0.760001003742218,0.3994715213775635,0.07421984523534775,0.5302046537399292,-0.10379940271377563,-0.04148183390498161,-0.1911190301179886,0.2946498394012451,0.14291585981845856,-0.7517871856689453,0.3029634952545166,-0.34991949796676636,0.5316913723945618,-0.24028229713439941,-0.7156129479408264,-1.088728666305542,0.06819090247154236,0.3186474144458771,0.057679299265146255,0.3115752637386322,0.12273333966732025,0.2661406993865967,-0.22357046604156494,0.19405622780323029,-0.27219176292419434,-0.06981438398361206,0.44589322805404663,0.44895070791244507,0.042877789586782455,0.12506736814975739,-0.3114716410636902,-0.32780686020851135,0.2936713397502899,0.028323570266366005,-0.3084036707878113,-0.2822731137275696,-0.010058039799332619,0.17109566926956177,-0.054819073528051376,-0.347189724445343,-0.19308678805828094,0.3807834982872009,0.16564536094665527,0.40214645862579346,-0.31241893768310547,-0.10464456677436829,0.14377161860466003,0.056369706988334656,0.11782770603895187,-0.19683311879634857,-0.00652275001630187,0.08745500445365906,-0.09105377644300461,0.3003174662590027,0.003786355722695589,-0.05801621079444885,-0.06258733570575714,0.10179930925369263,0.25304660201072693,-0.35133081674575806,-0.15031975507736206,-0.36256253719329834,-0.7939481735229492,-0.12320294976234436,0.7848950028419495,-0.7367981672286987,-0.323052316904068,-0.8823060989379883,-0.4880836009979248,-0.6470098495483398,-0.4885864853858948,-0.12048610299825668,-0.777038037776947,0.9569430351257324,0.04996809363365173,0.010991109535098076,-0.8368802070617676,0.2154303640127182,0.6243076920509338,0.9794400334358215,-1.1042029857635498,-0.2326595038175583,-0.8622714281082153,0.06914215534925461,-0.8974023461341858,-0.28920823335647583,-0.561377763748169,-0.9497942328453064,0.40279972553253174,-1.0864548683166504,-0.3772408962249756,-0.8338603973388672,-0.7447346448898315,0.22991031408309937,0.06373632699251175,-0.22644129395484924,-0.023802122101187706,0.10933943092823029,0.16986411809921265,0.15289655327796936,0.04816916957497597,0.1682906299829483,0.2507435381412506,-0.04600275307893753,-0.10548736900091171,0.011528348550200462,-0.13936375081539154,0.38139817118644714,0.21352429687976837,0.008200748823583126,0.2627648413181305,0.28030532598495483,0.1586393564939499,-0.21623893082141876,0.2594153583049774,0.0009925001068040729,0.4157913029193878,0.5276042222976685,0.2785763442516327,0.3272142708301544,0.31779226660728455,-0.32087066769599915,-0.36505386233329773,0.3399687707424164,-0.03505785018205643,0.22760720551013947,0.7794659733772278,-0.35528138279914856,-0.3685399889945984,0.5004838705062866,0.9357182383537292,0.5437026023864746,0.4472663402557373,0.10780993103981018,0.4221854507923126,-0.19321489334106445,0.2586498260498047,-0.1149006262421608,-0.05535081773996353,0.13563373684883118,0.568045437335968,0.19111430644989014,0.10955747961997986,-0.4187498092651367,0.41127878427505493,0.4726778566837311,0.9327916502952576,-0.20058168470859528,0.10193712264299393,0.2273845374584198,0.38249731063842773,0.5873720049858093,0.21498997509479523,0.7941844463348389,0.28028833866119385,0.8999110460281372,0.6704041361808777,0.19617058336734772,0.5243831276893616,-0.26196515560150146,-0.47351720929145813,0.5169992446899414,0.6611373424530029,0.6348508596420288,0.5082706212997437,-0.06596194207668304,0.543889045715332,0.14951226115226746,-0.004217713139951229,-0.2727937698364258,0.1182577833533287,-0.15928472578525543,0.6898510456085205,0.05687378719449043,-0.4742043912410736,-0.045000821352005005,0.6057036519050598,0.6429207921028137,0.7401444911956787,-0.007682156283408403,0.048454370349645615,-0.2421015352010727,0.3301215171813965,0.4292896091938019,-0.33930230140686035,0.6440001726150513,-0.06599188596010208,0.7066613435745239,0.5184105634689331,-0.32842546701431274,0.37624168395996094,-0.34957918524742126,-0.029387177899479866,0.35157346725463867,0.03627023473381996,0.13732200860977173,0.4090232253074646,-0.1995539516210556,0.29729434847831726,-0.05487777665257454,0.21247635781764984,0.23450374603271484,-0.4231976866722107,0.4522857367992401,0.45545798540115356,0.23349890112876892,-0.24180184304714203,0.3878897428512573,0.2875535786151886,0.17692333459854126,0.29343554377555847,-0.28897765278816223,0.05743918940424919,-0.6159408092498779,0.38561806082725525,0.2285156399011612,-0.5424519777297974,-0.08466082811355591,-0.809921383857727,0.4416596293449402,0.06281562894582748,-0.1257731020450592,-0.7267327308654785,0.05346987769007683,0.5264419317245483,-0.3326052725315094,-0.4461044669151306,-0.609804093837738,-0.7825891971588135,-0.025691458955407143,-0.4047628939151764,-0.15852956473827362,0.08704877644777298,0.7762171030044556,0.007507857400923967,0.5894432067871094,-0.3158959746360779,0.2899327874183655,-0.03640042990446091,0.7351306676864624,-0.7204433679580688,-0.5554002523422241,-0.5186055302619934,0.4976494312286377,-0.274566113948822,0.20170821249485016,-0.46358367800712585,-0.09087099134922028,0.6221223473548889,-0.37218382954597473,-0.006483833771198988,-0.24269422888755798,-0.6661645770072937,0.21173648536205292,0.8855963349342346,-0.3134671449661255,0.1507626473903656,0.5579710006713867,1.0468636751174927,0.6391497850418091,0.332218199968338,0.05467379093170166,0.3050774335861206,0.15275171399116516,0.36424729228019714,0.3918503224849701,0.386941522359848,-0.13608700037002563,0.8808937072753906,-0.08545293658971786,-0.12038318812847137,0.33844074606895447,0.6886959075927734,0.429733008146286,0.6770131587982178,0.21400095522403717,0.43567565083503723,0.03801024332642555,0.23330290615558624,0.15860193967819214,0.2728153169155121,0.26419225335121155,-0.13412466645240784,0.8281239867210388,1.0223944187164307,-0.3913283944129944,0.347074419260025,-0.0591164268553257,0.19812095165252686,0.01775193028151989,0.18713931739330292,0.5668405294418335,0.37419670820236206,-0.0371585339307785,0.3510726988315582,0.2084859311580658,0.37068772315979004,-0.2999662756919861,-0.18344008922576904,-0.25687047839164734,0.25597020983695984,-0.16366815567016602,0.05359301716089249,-0.40338134765625,0.34842008352279663,0.18072429299354553,0.1926599144935608,-0.3531207740306854,0.016680337488651276,0.20638173818588257,0.6445260643959045,0.400344580411911,-0.029785526916384697,0.3854210078716278,0.18993578851222992,0.10723055154085159,0.7931572198867798,-0.19821222126483917,0.4115932881832123,0.10345054417848587,-0.20596982538700104,0.09093580394983292,0.8616225719451904,0.5690313577651978,0.7149627208709717,0.3647333085536957,0.4218893051147461,-0.13155530393123627,0.4816044270992279,-0.01133056916296482,-0.22285011410713196,-0.20500952005386353,0.5047298073768616,0.33951854705810547,-0.014889920130372047,-0.3857204020023346,0.4870604872703552,0.2815893590450287,0.22487051784992218,-0.15859659016132355,0.07943633943796158,0.20523983240127563,0.5600284934043884,0.3816564083099365,0.26478907465934753,0.5858185887336731,0.004593440797179937,0.18976593017578125,1.0332870483398438,-0.06045810505747795,0.7065069675445557,0.012971153482794762,-0.025878798216581345,0.20979729294776917,0.48934364318847656,0.580072820186615,0.300063818693161,0.3335391581058502,0.477534681558609,0.3272040784358978,0.38606786727905273,0.27548304200172424,-0.18408793210983276,-0.06286410987377167,0.18696579337120056,0.232865571975708,-0.02034875936806202,0.41233980655670166,0.04545498639345169,0.38576069474220276,0.7032781839370728,-0.14836420118808746,0.04482444003224373,0.11861439049243927,0.6103132367134094,0.4652476906776428,0.4039393961429596,0.13530336320400238,-0.21741938591003418,0.5738305449485779,0.7271909117698669,-0.13792623579502106,0.41859492659568787,-0.2640852928161621,0.22916628420352936,0.3558097779750824,0.15835478901863098,0.39910387992858887,0.11369778215885162,-0.20965394377708435,0.33598172664642334,0.06683487445116043,-0.017420155927538872,0.5049455761909485,0.2544182538986206,0.45109280943870544,0.3969108760356903,-0.10502059757709503,0.20435427129268646,0.5037371516227722,0.2515513002872467,0.15806740522384644,0.49881136417388916,0.05362951010465622,0.3319215476512909,0.3004581332206726,0.2765597701072693,0.16515111923217773,0.23914097249507904,0.1864435225725174,-0.2789808511734009,0.3011014461517334,0.2621087431907654,0.15037405490875244,-0.4975984990596771,0.11186595261096954,0.36905989050865173,-0.2825841009616852,-0.4085172712802887,-0.26385390758514404,-0.5501053929328918,0.1733161211013794,-0.18347030878067017,-0.18865787982940674,-0.35183119773864746,0.4638534188270569,-0.125559464097023,0.16720642149448395,-0.4289218485355377,0.3629949986934662,0.3685920834541321,0.3094553053379059,0.066151462495327,-0.7816035151481628,-0.5378993153572083,0.4412591755390167,-0.2255437970161438,0.025860490277409554,-0.23752975463867188,-0.19878697395324707,0.5066381692886353,-0.4886971414089203,0.03552747517824173,-0.08124589174985886,-0.24478523433208466,0.1934572458267212,0.37888455390930176,0.028503380715847015,-0.2231149971485138,0.3310766816139221,0.7657551765441895,0.8859666585922241,0.5656341910362244,0.08863333612680435,0.051582954823970795,0.011035815812647343,0.42797738313674927,-0.3037717044353485,0.47267621755599976,-0.765226423740387,0.6231650710105896,-0.13800111413002014,-0.813579797744751,-0.9073277711868286,0.2858213484287262,0.21180862188339233,0.45986104011535645,0.3335878252983093,-0.054231785237789154,-0.22461412847042084,0.3266202509403229,-0.008194183930754662,-0.7472723722457886,0.4485332667827606,-0.08750849217176437,0.26766201853752136,0.575581431388855,0.3506724536418915,0.4293830990791321,-0.15370124578475952,-0.08484717458486557,0.6892535090446472,1.0146379470825195,0.5935089588165283,0.6194792985916138,-0.30502036213874817,0.5968474745750427,-0.2969959080219269,-0.026381198316812515,-0.47957175970077515,0.36992284655570984,-0.38463905453681946,0.44694530963897705,-0.269244521856308,-0.22049197554588318,-0.5743756294250488,0.22845347225666046,0.5438104867935181,0.5433492660522461,-0.19058296084403992,0.44361039996147156,-0.011080377735197544,0.29837527871131897,0.3582545816898346,-0.23055674135684967,0.25312307476997375,0.16109055280685425,0.7668554782867432,1.0325037240982056,-0.06362952291965485,0.36410433053970337,0.1940992772579193,0.33880189061164856,0.3803386688232422,0.6250193119049072,0.42555883526802063,0.39757639169692993,0.0008099660626612604,0.5662774443626404,0.03843808174133301,0.4613751471042633,0.3420114815235138,0.43868061900138855,-0.04837871342897415,0.2990643382072449,-0.09162190556526184,0.006946521811187267,0.31886932253837585,0.08635788410902023,0.04529764503240585,0.3274456262588501,0.29015496373176575,0.5205809473991394,0.01697063259780407,0.11435671150684357,0.38771092891693115,0.2700771689414978,0.10541383177042007,0.2700348198413849,0.5814267992973328,0.52581787109375,0.07789064943790436,-0.6130654811859131,0.12671424448490143,0.2993165850639343,-0.2139197438955307,-0.5863692164421082,-0.684025764465332,-0.47819364070892334,-0.21465353667736053,-0.48016202449798584,-0.26400575041770935,0.10274133831262589,0.6434971690177917,-0.22242096066474915,0.2143031358718872,-0.38237327337265015,0.04784896969795227,0.2591124475002289,0.6821867823600769,-0.22101058065891266,-0.7555589079856873,-0.7641059160232544,0.0251321904361248,-0.06043766438961029,0.21674124896526337,-0.5019591450691223,-0.2157270312309265,0.35414978861808777,-0.6803919076919556,0.3447521924972534,-0.3386021554470062,-0.7505797147750854]},{"shape":[32],"values":[0.11846403032541275,0.4490242004394531,-0.13030816614627838,0.04445840045809746,0.2454937845468521,0.5058238506317139,0.3602415919303894,0.36788690090179443,-0.06473851203918457,0.31805750727653503,-0.0511779747903347,0.14736253023147583,0.0794791504740715,-0.12688851356506348,0.006045186426490545,0.494853138923645,-0.1332244575023651,-0.11780128628015518,-0.017088115215301514,0.23843014240264893,0.2748802900314331,0.39110228419303894,-0.1584070771932602,0.11815481632947922,-0.18854071199893951,0.42088744044303894,0.31608307361602783,-0.05247773230075836,0.2836732268333435,0.11787135899066925,0.3036905527114868,0.5516033172607422]},{"shape":[32,9],"values":[0.7336726784706116,0.5580710768699646,0.2654734253883362,0.09518429636955261,0.17873072624206543,0.3397279679775238,-0.18348953127861023,-0.18354837596416473,0.3527710437774658,0.6035654544830322,0.2716250717639923,0.8703838586807251,0.2740449011325836,0.4490388333797455,0.4329681396484375,0.6066299676895142,0.3066014349460602,0.40979138016700745,-0.23379023373126984,0.0840412899851799,0.07181308418512344,0.04088990017771721,0.26582345366477966,0.18188031017780304,-0.2374248057603836,-0.1163906678557396,0.10323351621627808,-0.39247503876686096,-0.5683091878890991,0.01065314281731844,-0.41176119446754456,-0.07506264746189117,-0.6168326139450073,0.05462711676955223,-0.15270709991455078,-0.3457934856414795,0.011461766436696053,0.48589909076690674,-0.03408278152346611,0.5202010869979858,-0.008524853736162186,0.12717534601688385,0.15977245569229126,0.47351616621017456,0.45863625407218933,0.6119700074195862,0.24925962090492249,0.31126201152801514,0.44981199502944946,0.45836135745048523,0.9186053276062012,0.7501243948936462,0.619804322719574,0.5293047428131104,0.7364695072174072,0.7611098885536194,0.06589208543300629,0.5748561024665833,0.6709286570549011,0.682922899723053,0.6765987873077393,0.3225454092025757,0.394398957490921,0.6450949311256409,0.39131322503089905,0.1961641162633896,0.3993362784385681,0.5192294120788574,0.4969797730445862,0.5396183133125305,0.8064635992050171,0.10847789794206619,0.3941546678543091,0.3804936707019806,0.17244234681129456,0.08796045929193497,0.3495858311653137,0.3875771164894104,-0.255674809217453,-0.11932043731212616,0.28813832998275757,0.12687265872955322,0.0445905365049839,-0.027547182515263557,0.26971226930618286,0.41832396388053894,0.29362383484840393,0.2621217370033264,0.5855776071548462,0.5018377304077148,0.26993048191070557,0.3886541426181793,-0.1542334258556366,0.17337295413017273,0.1538386195898056,0.37932562828063965,-0.17083437740802765,0.059023939073085785,0.4017618000507355,0.17624500393867493,0.250699520111084,0.5954018831253052,0.42168208956718445,0.0932178869843483,0.4880251884460449,0.06605254113674164,0.6357764005661011,0.023614240810275078,-0.4112541377544403,-0.5369662046432495,-0.787968099117279,-0.2462584376335144,-0.7120453119277954,-0.23071736097335815,-0.6830340623855591,-0.6079379916191101,-0.5561771392822266,0.4103012979030609,0.19190959632396698,0.09382589906454086,0.4345603287220001,0.03905018791556358,-0.23252761363983154,0.5506104230880737,0.17512761056423187,-0.4107638895511627,0.016196785494685173,-0.30909568071365356,0.1109870970249176,-0.2809697687625885,-0.42198872566223145,-0.4927595257759094,0.213307723402977,-0.08028259128332138,-0.34715571999549866,0.2339588701725006,0.667226254940033,0.500585675239563,0.43905600905418396,0.45795896649360657,0.2412405163049698,0.4505694806575775,0.4867369830608368,0.8479470014572144,-0.09304870665073395,-0.13682110607624054,0.10381448268890381,-0.2752426862716675,0.031165171414613724,-0.06375779211521149,-0.29322168231010437,0.045942891389131546,-0.5218324065208435,-0.5790795087814331,-0.18241477012634277,0.03380941227078438,-0.2009734809398651,-0.26133835315704346,-0.3136843144893646,-0.49892866611480713,-0.00829992163926363,-0.5370435118675232,-0.29661619663238525,-0.40071263909339905,-0.7210122346878052,-0.49499934911727905,-0.5673679709434509,-0.6544342637062073,-0.3049953579902649,-0.4856806993484497,-0.5207938551902771,0.3810024857521057,0.2125650942325592,0.6050708889961243,0.19925782084465027,0.3574015200138092,0.5468363165855408,0.23779410123825073,0.09069288522005081,0.4828023910522461,0.3966718018054962,0.7120367884635925,0.3719315230846405,0.3619103729724884,0.3040621876716614,0.17450186610221863,0.7371556162834167,0.8106887936592102,0.07318122684955597,0.004470540210604668,0.30331823229789734,0.6705347895622253,0.4670073688030243,0.6404445171356201,0.49234163761138916,0.6551742553710938,0.22459733486175537,0.47892239689826965,0.0192303117364645,0.21343578398227692,0.23421241343021393,0.2899130582809448,0.27774834632873535,-0.27034991979599,-0.12672396004199982,0.17906764149665833,-0.4148511290550232,0.06243041530251503,0.7371817231178284,0.6880505681037903,-0.09019976854324341,0.31683653593063354,0.015317512676119804,0.09948641806840897,0.15394100546836853,0.36383819580078125,-0.4831850528717041,0.1324855089187622,-0.024809757247567177,-0.4019509255886078,-0.1101984903216362,0.12896515429019928,-0.5021732449531555,-0.037048496305942535,0.16317756474018097,0.4462435841560364,0.4303523302078247,0.23257674276828766,0.6697776913642883,0.41538065671920776,0.4635075032711029,0.547245979309082,0.7305196523666382,0.7789290547370911,0.27809450030326843,-0.005091318394988775,0.45884969830513,0.10617606341838837,0.23267421126365662,0.40902286767959595,0.33764976263046265,0.3219047486782074,0.4026488661766052,-0.631334662437439,-0.3199120759963989,-0.3122553527355194,-0.49707186222076416,-0.3102376163005829,-0.007898700423538685,-0.5145713686943054,-0.4278266429901123,-0.156249538064003,0.6900421380996704,0.5330300331115723,0.5738309025764465,0.759041428565979,0.374236524105072,0.1865861415863037,0.25353431701660156,0.10268662124872208,0.2947321832180023,0.691739022731781,0.7464041709899902,0.19760596752166748,0.17903053760528564,-0.0572870709002018,-0.22895117104053497,-0.08313830941915512,-0.13123658299446106,-0.21876148879528046,0.16976860165596008,0.10083615779876709,0.11120220273733139,0.5027838349342346,0.54362952709198,0.4461269974708557,0.2505422532558441,0.43869057297706604,0.45898517966270447,0.7751148343086243,0.7156210541725159,0.8316734433174133,0.7289040088653564,0.5630940794944763,0.35593700408935547,0.5231984853744507,0.48539653420448303,0.5084090232849121]},{"shape":[9],"values":[0.2039709985256195,-0.023612743243575096,0.05357879772782326,0.16866521537303925,0.06160534545779228,0.03792612999677658,0.33335214853286743,0.235532745718956,0.2617352306842804]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-73.json new file mode 100644 index 0000000..eb9d1c1 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/double-dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:27:32.194Z","weights":[{"shape":[20,32],"values":[1.1395347118377686,-0.1513252705335617,1.2090163230895996,0.30778956413269043,0.9773778915405273,0.9877488613128662,-0.33457064628601074,0.9556776285171509,-0.2743363678455353,-0.14758476614952087,-0.30374783277511597,-0.11221214383840561,1.0623975992202759,0.646186113357544,-0.19007980823516846,0.25604212284088135,-0.22579199075698853,0.20459416508674622,0.761935293674469,0.5024421811103821,1.2653647661209106,0.2729438245296478,1.1441631317138672,-0.4339783489704132,-0.2572568953037262,0.8958342671394348,0.68165522813797,0.37082651257514954,0.7402242422103882,1.2216296195983887,1.0662219524383545,1.2148057222366333,0.07965429127216339,0.06422428786754608,0.07929912954568863,0.18526345491409302,-0.1602826863527298,0.32409220933914185,-0.2001274824142456,0.11760203540325165,-0.10328814387321472,-0.42692074179649353,-0.14891591668128967,0.09765992313623428,-0.18441878259181976,-0.2671998143196106,-0.07517870515584946,0.07952111959457397,-0.26407381892204285,-0.09201792627573013,0.00030190040706656873,-0.18685464560985565,-0.06954922527074814,-0.011622456833720207,0.09020325541496277,-0.01441995706409216,-0.06638684123754501,-0.05547705292701721,0.06299180537462234,-0.36698371171951294,-0.2561820149421692,-0.21190869808197021,0.10457181185483932,0.11766690760850906,-0.31028515100479126,0.08518069237470627,-0.08160325139760971,-0.590324342250824,0.11332397162914276,0.11269732564687729,-0.18647968769073486,0.17351919412612915,0.0034662047401070595,-0.4565248191356659,-0.39264559745788574,1.0404211282730103,0.0276272501796484,-0.24464139342308044,-0.8831395506858826,0.7867363691329956,-0.24851290881633759,-0.5851982831954956,0.0007848691893741488,-0.045604873448610306,-0.23690645396709442,-0.7865440845489502,0.09285042434930801,0.164409339427948,-0.17924214899539948,0.07121599465608597,-0.6211341023445129,0.4878690242767334,0.09085545688867569,0.051472898572683334,0.3120765686035156,-0.013404126279056072,0.010719547048211098,-1.287501335144043,0.04245437681674957,0.45657098293304443,-0.052698567509651184,0.17149138450622559,0.5735291242599487,-0.24671819806098938,0.3849509358406067,0.5506379008293152,1.6963331699371338,-0.464298278093338,-0.38662880659103394,0.18302112817764282,0.2322806417942047,-0.26803120970726013,1.5179553031921387,1.0050526857376099,-0.07937696576118469,-0.010177754797041416,0.10071295499801636,0.8102697134017944,0.03795942664146423,-1.259708285331726,0.44733819365501404,-0.5247095227241516,-0.3521483838558197,-0.14252668619155884,0.11335230618715286,-0.14464043080806732,-0.19527582824230194,-0.13876646757125854,0.022313974797725677,0.2853415012359619,-0.09088676422834396,-0.09793417900800705,0.3813817501068115,-0.1284564733505249,0.2886772155761719,-0.05580776929855347,0.43012627959251404,0.5528109073638916,-0.13749969005584717,0.174932599067688,0.30470186471939087,-0.11412296444177628,0.016759956255555153,0.058940060436725616,-0.3523990511894226,0.21513885259628296,0.274090439081192,-0.03174091503024101,0.04401131719350815,-0.17573659121990204,-0.33009403944015503,0.40539804100990295,0.2501935064792633,0.29815730452537537,0.14513064920902252,0.03379043936729431,0.05301210656762123,0.35692688822746277,-0.23536185920238495,0.04644700884819031,-0.29468658566474915,0.06381036341190338,-0.4183466136455536,0.2111729085445404,0.002612598706036806,-0.31704607605934143,0.10536067932844162,0.28775134682655334,0.4339401423931122,0.33051493763923645,0.2739812135696411,-0.052207134664058685,0.13687948882579803,0.09531638026237488,-0.053348664194345474,-0.05469014123082161,0.2842184603214264,0.18097533285617828,-0.14843961596488953,-0.26622793078422546,0.34336698055267334,0.17634402215480804,0.07233070582151413,-0.2655397951602936,0.35328593850135803,0.2885371446609497,0.10902147740125656,-0.11909479647874832,0.06521419435739517,0.12881600856781006,-0.2759983241558075,0.25774988532066345,-0.0394442081451416,-0.4369056820869446,-0.3904587924480438,-0.05828063562512398,0.3626098930835724,-0.3441271483898163,0.5136304497718811,0.18245325982570648,0.1652795672416687,0.35938140749931335,0.23168817162513733,0.17711235582828522,0.12869597971439362,-0.1281830072402954,0.13868826627731323,-0.034022439271211624,0.06586550176143646,0.18661890923976898,-0.3609647750854492,-0.1641542613506317,-0.31409668922424316,0.317466676235199,0.0405721552670002,-0.030030779540538788,0.3371939957141876,0.3580045998096466,-0.1810951977968216,0.3629153370857239,0.04597580432891846,0.3786771297454834,-0.22401483356952667,0.1239023432135582,0.276296466588974,-0.20266185700893402,-0.4512942433357239,0.1162954568862915,0.2619501054286957,-0.22771920263767242,0.15832553803920746,0.006952475756406784,-0.3301721513271332,-0.1488458216190338,0.11278519779443741,-0.193446546792984,0.5412181615829468,0.03413747623562813,0.05984248220920563,0.02500138431787491,0.4945177137851715,-0.19544696807861328,0.391480952501297,0.3744441866874695,-0.05372266471385956,-0.05462784692645073,0.13116537034511566,-0.41797247529029846,-0.04329873248934746,0.13681752979755402,0.37831318378448486,0.44481727480888367,-0.2340628057718277,0.4872927665710449,0.582938551902771,-0.1149773970246315,-0.10159612447023392,-0.1978134661912918,0.24485664069652557,0.019344067201018333,-0.15082676708698273,-0.01140817441046238,0.18498964607715607,0.3988569378852844,0.08787331730127335,0.04697142541408539,-0.14580969512462616,-0.09440071135759354,0.267365425825119,-0.21153828501701355,0.05691825598478317,-0.17395538091659546,0.07087861001491547,0.19742459058761597,-0.06106732413172722,-0.06330055743455887,-0.1454334259033203,0.20701247453689575,0.012754183262586594,-0.11106885969638824,0.33880335092544556,0.1291729211807251,-0.31679341197013855,0.0024166847579181194,0.9369527697563171,0.017184993252158165,-0.6188905239105225,0.15194158256053925,-0.18429584801197052,0.12503674626350403,0.3653407096862793,0.013421936891973019,0.3692094385623932,0.1082775667309761,-0.013944940641522408,0.30769357085227966,-0.1951732039451599,-0.06744012981653214,-0.0881461352109909,-0.22948354482650757,0.018716871738433838,0.32258251309394836,-0.2870686650276184,0.05601727217435837,0.17839862406253815,0.009979727678000927,0.3666389286518097,0.23220571875572205,0.25807493925094604,0.12888242304325104,-0.0790693387389183,0.09100154042243958,0.16320954263210297,-0.005440269131213427,-0.635772705078125,0.18209265172481537,-0.2632540166378021,0.040178101509809494,-0.1996108740568161,-0.08343697339296341,0.3514425456523895,0.5430518388748169,0.2746913731098175,0.08603344857692719,0.33056145906448364,0.48353806138038635,0.1975952684879303,0.3388913571834564,-0.14084886014461517,0.18783268332481384,-0.18854768574237823,-0.2113969922065735,-0.08423715829849243,0.12732039391994476,-0.06423638761043549,-0.15196198225021362,-0.17908158898353577,0.20483821630477905,0.0937909260392189,0.24572154879570007,0.05367022752761841,0.027409961447119713,-0.14987653493881226,0.3388580083847046,0.061505481600761414,0.14292730391025543,-0.10725953429937363,-0.3010656535625458,0.6055701971054077,0.44489219784736633,0.42721906304359436,0.11613862216472626,-0.18535345792770386,-0.10322040319442749,0.040256548672914505,-0.36097586154937744,0.21842196583747864,0.1681223064661026,0.3968134820461273,0.06336703896522522,0.4127236008644104,0.2969784736633301,0.2224724143743515,0.2284807413816452,-0.19491571187973022,0.2134358286857605,0.18752498924732208,-0.10422757267951965,-0.05296916142106056,0.16690027713775635,-0.1835918128490448,0.17860111594200134,0.049039069563150406,0.1756007969379425,-0.03639863431453705,0.17400138080120087,-0.3687348961830139,-0.1210428923368454,-0.42449498176574707,-0.0712081789970398,-0.12246613204479218,0.08971782773733139,-0.5049365758895874,-0.30636897683143616,-0.22797562181949615,0.32613980770111084,-0.05250924825668335,0.2636868357658386,-0.15620669722557068,0.00538313714787364,-0.01909577287733555,0.22485961019992828,0.009231692180037498,-0.0634181872010231,0.10188115388154984,-0.04664544016122818,-0.16594313085079193,0.2820291519165039,-0.06490463018417358,0.10619235038757324,0.03254229947924614,-0.1395745426416397,0.0017189995851367712,-0.05059089511632919,-0.17723751068115234,0.1733877956867218,0.0578184500336647,-0.039425890892744064,-0.1357356309890747,-0.28785064816474915,-0.24394536018371582,-0.072413370013237,0.28942516446113586,0.22790761291980743,-0.4345121383666992,0.2609269917011261,0.22677287459373474,0.2964056134223938,0.35706472396850586,0.07465563714504242,-0.013984369114041328,0.023419220000505447,0.09968553483486176,-0.273408979177475,0.06406445801258087,0.24386274814605713,0.11090990900993347,-0.25734904408454895,0.22154450416564941,0.08420970290899277,0.2106274664402008,0.3942081332206726,-0.14444701373577118,-0.02502257004380226,0.33675825595855713,0.028220159932971,0.33098623156547546,-0.4158889353275299,-0.04984236881136894,0.21031594276428223,-0.11889805644750595,0.2796785831451416,-0.5749618411064148,-0.26016953587532043,0.15137717127799988,0.03256038576364517,-0.07847608625888824,0.05644458159804344,0.04226382076740265,0.3059617877006531,0.2301398515701294,0.02523672953248024,0.2217610478401184,0.1823081076145172,0.3361603915691376,-0.02259407937526703,0.5583054423332214,-0.17267164587974548,-0.14563144743442535,-0.1592646986246109,0.1804269701242447,-0.05405700206756592,0.05415225028991699,-0.18595543503761292,-0.3566480576992035,0.4191785752773285,-0.15483351051807404,-0.0459669791162014,0.11141803860664368,-0.5264192819595337,0.30796754360198975,0.33221229910850525,-0.14313088357448578,0.3352189064025879,-0.07511981576681137,-0.004097930621355772,0.1598510444164276,0.2334154099225998,0.1717037558555603,-0.13182127475738525,-0.04537498950958252,0.0940152257680893,0.07556396722793579,0.1813618689775467,0.2742975056171417,-0.05766437575221062,-0.13183552026748657,-0.19534967839717865,0.038657110184431076,0.03862934559583664,-0.16586382687091827,0.38900911808013916,0.01661592535674572,0.06681325286626816,-0.08114443719387054,-0.19095733761787415,-0.10679347068071365,0.05013933405280113,0.051650285720825195,0.02826724760234356,0.1884937435388565,-0.154930979013443,-0.12206893414258957,0.1301247626543045,0.12880939245224,0.15380197763442993,0.06268098950386047,0.08222383260726929,0.03655635565519333,-0.12271632999181747,-0.15473990142345428,-0.3028729259967804,-0.0898793637752533,-0.10622373968362808,-0.016251038759946823,-0.005798053462058306,-0.08666281402111053,0.13326521217823029,-0.2565446197986603,0.14164690673351288,0.0306630227714777,0.2218615561723709,0.33457067608833313,0.13668423891067505,0.1341957300901413,0.13350556790828705,-0.004707635845988989,-0.018886208534240723,0.04272908344864845,-0.2192048877477646,-0.06172453612089157,0.041850294917821884,-0.2952544093132019,-0.041671983897686005,0.020917672663927078,-0.1687101125717163,0.11009601503610611,-0.18583665788173676,-0.44442033767700195,-0.062090449035167694,0.09342775493860245,-0.23103995621204376,0.03612225875258446,-0.21238988637924194,-0.009465903043746948,-0.3303107023239136,0.24195654690265656,-0.010173267684876919,0.4122624099254608,0.042110614478588104,0.2972244918346405,-0.02234225533902645,-0.03738333657383919,-0.1844693273305893,-0.07206644862890244,0.08991845697164536,-0.1413964331150055,-0.022522440180182457,0.23924759030342102,-0.10316895693540573,-0.32143762707710266,0.19038648903369904,0.0666532814502716,0.25708135962486267,0.34129923582077026,0.21323350071907043,0.18043892085552216,-0.37363019585609436,-0.16080793738365173,0.3443627953529358,-0.12168270349502563,-0.0399421751499176,-0.08088225871324539,0.37716343998908997,-0.12720245122909546,0.0601452961564064,-0.20172761380672455,-0.34753555059432983,-0.08301322162151337,-0.036754414439201355,-0.09791356325149536,-0.08414018154144287,0.4311959147453308,0.1766633242368698,0.5188974738121033,-0.10476009547710419,0.2204732745885849,-0.06145700067281723,0.013620870187878609,-0.31145474314689636,0.4575307071208954,0.24736285209655762,-0.1834292709827423,0.16755548119544983,-0.1483783721923828,-0.08671054244041443,-0.331533819437027,-0.40044453740119934,-0.28960731625556946,0.030438199639320374,-0.11019913852214813,0.02781343087553978,0.09279315173625946,-0.13093510270118713,0.14746889472007751,-0.04993150755763054,0.2816374599933624,0.007391126826405525,-0.06349272280931473,-0.035542502999305725,-0.026568448171019554,-0.43938127160072327,-0.1345846951007843,-0.3159906566143036,0.1162906363606453,-0.1942669302225113,0.3492737412452698,-0.10955549776554108,0.19969214498996735,0.056066568940877914,0.09031002223491669,0.16184929013252258,-0.070765420794487,-0.2538219392299652,0.04373033717274666,0.13010966777801514,-0.19334128499031067,-0.25468412041664124,-0.3500814139842987,-0.08223310858011246,-0.13117045164108276,0.27394717931747437,0.22948358952999115,-0.017815662547945976,-0.4670224189758301,0.0293353833258152,-0.3749379813671112,0.0944065973162651,0.15221573412418365,0.20334510505199432]},{"shape":[32],"values":[0.6527678370475769,-0.1758950650691986,0.4998239278793335,-0.29320573806762695,0.4228540062904358,0.4282224178314209,-0.1852612942457199,0.6360340118408203,-0.11221013218164444,-0.2629795968532562,-0.260362833738327,-0.0231624785810709,0.5133922696113586,0.5724032521247864,-0.2515081465244293,-0.18468421697616577,-0.30252760648727417,-0.3135621249675751,0.6921646595001221,0.3093726933002472,0.7055914402008057,-0.3232923746109009,0.5690379738807678,-0.1092916801571846,-0.2518022954463959,0.3191988468170166,0.6162065863609314,-0.17506568133831024,0.4820343852043152,0.3807002604007721,0.31885799765586853,0.7260115146636963]},{"shape":[32,32],"values":[0.3818230628967285,0.15895195305347443,0.2332555502653122,0.1947576105594635,0.2866670787334442,0.3268451690673828,0.6635003685951233,0.016952721402049065,0.34984007477760315,0.26082515716552734,0.23687611520290375,0.6934726238250732,-0.2860008478164673,0.19955149292945862,-0.4011225402355194,0.04886553809046745,1.072224736213684,0.35137543082237244,0.7715367674827576,0.22285960614681244,0.0969613566994667,0.34758231043815613,0.6470942497253418,0.9216278791427612,0.7453481554985046,1.0394355058670044,0.48215556144714355,0.7849141955375671,0.35942506790161133,0.8046724796295166,0.41234827041625977,0.309323251247406,-0.22030431032180786,-0.8708254098892212,0.5478981137275696,-0.6447083353996277,-0.5745921730995178,0.17389053106307983,0.03134676814079285,0.037142038345336914,0.5959348678588867,0.006141376215964556,0.09097142517566681,-0.7366549372673035,-0.2222437560558319,-1.1568628549575806,-0.015423083677887917,-0.13564929366111755,-0.44677790999412537,0.22837266325950623,-0.8952010273933411,-0.9181244373321533,-0.20833052694797516,0.6866768002510071,-0.7409458756446838,-0.46344757080078125,-0.937869668006897,-0.38931161165237427,-0.5017396807670593,-0.3635643422603607,-0.6371777057647705,-0.2043054848909378,-0.559089183807373,-0.843468427658081,0.1937541663646698,0.10475506633520126,0.1255817860364914,0.46199101209640503,0.4833056926727295,0.2115538865327835,0.06833624839782715,-0.2573133111000061,-0.1294722855091095,-0.3940633237361908,0.3628386855125427,0.20223291218280792,0.04597591608762741,0.6235463619232178,-0.39466023445129395,0.0013830472016707063,0.7099688649177551,0.0365220308303833,0.7621333003044128,0.5373799800872803,0.15062499046325684,-0.09344367682933807,0.3371011018753052,0.10839075595140457,0.02013487182557583,0.42346495389938354,0.61700439453125,0.3168007731437683,0.5580810308456421,0.09692398458719254,0.6935522556304932,-0.14056573808193207,-0.4824056029319763,-0.246688112616539,0.0870337262749672,-0.0511094368994236,-0.21726803481578827,0.03672800958156586,0.3705810010433197,-0.029722845181822777,0.5195311903953552,0.06213981285691261,-0.13251058757305145,-0.08696351945400238,-0.4224165380001068,-0.4105294942855835,0.11174514144659042,0.10296713560819626,0.10992956161499023,0.46954575181007385,-0.4970652163028717,-0.0461888462305069,0.06953046470880508,0.3368210196495056,0.09097401797771454,-0.05825996398925781,-0.2838367223739624,-0.1206665188074112,-0.23234347999095917,0.1838322877883911,0.13442805409431458,-0.27253711223602295,0.08361203223466873,-0.05028984695672989,0.30922529101371765,-0.018495237454771996,-0.37945443391799927,0.3599911630153656,0.40688300132751465,0.11976921558380127,0.06442663818597794,-0.19979706406593323,-0.1682092249393463,0.2386864721775055,-0.23100169003009796,0.21133887767791748,0.11991699039936066,0.12379220873117447,0.3774915933609009,-0.254330575466156,0.05479271709918976,-0.22505980730056763,0.023446757346391678,0.18382734060287476,0.20582960546016693,-0.015672098845243454,0.37597551941871643,0.6581141352653503,0.6407915353775024,0.2241283506155014,0.3505696654319763,0.2197863757610321,0.48375627398490906,-0.07505471259355545,0.3463117480278015,0.5093361139297485,0.5942406058311462,0.40485647320747375,-0.06252885609865189,0.5788800120353699,0.20189188420772552,-0.23138856887817383,0.15098293125629425,-0.13383643329143524,0.15004700422286987,-0.2154104858636856,0.1722913533449173,0.3327041566371918,-0.3231601417064667,0.4213418662548065,-0.2982196509838104,-0.020280972123146057,0.7257468104362488,0.014821256510913372,0.2705942392349243,0.4538339376449585,0.0173997413367033,0.26867568492889404,0.22537483274936676,0.21083959937095642,-0.09278962761163712,0.26628512144088745,0.49280500411987305,0.4405556917190552,0.2744523584842682,0.2602809965610504,0.5882878303527832,0.23403704166412354,0.09922285377979279,-0.2213481366634369,-0.13517223298549652,-0.19776345789432526,-0.20519031584262848,-0.06263701617717743,-0.0018610397819429636,-0.12759239971637726,0.16685763001441956,-0.41551241278648376,0.1879063993692398,-0.21012580394744873,0.14863179624080658,-0.3560236096382141,0.07269983738660812,0.23178480565547943,-0.6204220056533813,0.2466631978750229,-0.006008367985486984,-0.4403921961784363,-0.2950061559677124,0.267953485250473,-0.053547345101833344,0.17426954209804535,-0.09300433844327927,-0.2805236876010895,-0.010109447874128819,-0.041840970516204834,0.23979836702346802,-0.2564070224761963,-0.290790855884552,0.06843698024749756,0.64615797996521,0.5365219116210938,-0.22623351216316223,0.5349287390708923,0.5614434480667114,-0.07240515947341919,0.3155241310596466,-0.22372065484523773,-0.08577055484056473,-0.3144482672214508,-0.198955699801445,0.5058287978172302,-0.18111875653266907,0.23386448621749878,-0.15256015956401825,-0.3840254247188568,0.17158694565296173,-0.26966163516044617,0.5017586946487427,0.09682244062423706,-0.020317349582910538,-0.15535703301429749,0.4577541947364807,0.03508057817816734,0.5825051665306091,0.26891905069351196,0.4316263496875763,-0.02095683291554451,0.4479614794254303,0.4946274757385254,0.6635693907737732,0.32964959740638733,0.1911015510559082,0.0414033904671669,0.3689049780368805,-0.22579888999462128,-0.09997164458036423,0.3172512650489807,-0.40635132789611816,0.05468738079071045,-0.34585294127464294,-0.368851900100708,0.10486289858818054,-0.04828012362122536,0.38491368293762207,-0.23321449756622314,0.12436877936124802,0.21640042960643768,-0.5138328671455383,0.1922176629304886,-0.2686164677143097,0.026242241263389587,0.23327703773975372,-0.05383417755365372,-0.3190633952617645,0.15305837988853455,-0.32913798093795776,-0.13149183988571167,-0.4761073887348175,-0.33826860785484314,-0.2958509027957916,-0.6790930032730103,0.2444695383310318,-0.1421939730644226,-0.10042856633663177,-0.02203226462006569,-0.019272716715931892,-0.24960003793239594,0.026919513940811157,0.1922987550497055,0.04634720832109451,-0.08077050000429153,0.1247018352150917,0.215836763381958,0.0013182302936911583,0.10438993573188782,-0.5968824625015259,-0.6238589882850647,0.03808854892849922,-0.2744446396827698,-0.913334310054779,0.37595894932746887,-0.2055208384990692,-0.23913580179214478,0.3080672323703766,0.3924557566642761,-0.07617223262786865,-0.14168260991573334,-0.1240466833114624,-0.32967409491539,-0.38740724325180054,-0.03949316218495369,0.10384999960660934,-0.7596551775932312,-0.0051221116445958614,-0.3761793076992035,-0.11973410099744797,-0.14161993563175201,-0.11939626187086105,-0.4146064221858978,-0.5798618793487549,-0.22361190617084503,-0.46974149346351624,-0.08010269701480865,0.28264153003692627,-0.030413877218961716,-0.04943851754069328,-0.6625924110412598,0.2638918161392212,-0.638318657875061,0.5578607320785522,-0.00321052479557693,-1.1663318872451782,0.5868905186653137,-0.7982646822929382,-0.593132734298706,0.48960819840431213,0.4630664587020874,-0.6451376676559448,-0.6456433534622192,-0.4178856909275055,-0.621611475944519,-0.46845102310180664,-0.6156525611877441,-0.5986194014549255,-0.9180440902709961,-0.42632341384887695,-0.7464995384216309,-0.11718513071537018,-0.5950614213943481,-0.30897200107574463,-0.13530254364013672,-0.6747884750366211,0.08772702515125275,-0.5310758352279663,-0.15843576192855835,-0.33469367027282715,0.06836631149053574,-0.08483722805976868,-0.7461662292480469,0.57049161195755,-0.6729971766471863,0.33757734298706055,-0.24210795760154724,-0.2749546468257904,-0.3296341598033905,-0.8979895114898682,-0.507939338684082,0.15820613503456116,-0.11553847044706345,-1.0496174097061157,-0.6587615013122559,-0.6631231307983398,-0.6908794045448303,-0.8879082202911377,-0.40169617533683777,-0.37972918152809143,-0.5796172022819519,-0.47632330656051636,-0.3036262094974518,0.25792163610458374,0.7719147801399231,-0.6638256311416626,0.6253150105476379,0.5645168423652649,-0.044563163071870804,0.44367489218711853,-0.25049012899398804,-0.0763842761516571,0.12284776568412781,-0.09931987524032593,0.3781924843788147,0.27355557680130005,0.3894221782684326,0.012017523869872093,0.18746107816696167,0.2831893861293793,-0.225545272231102,0.022716648876667023,0.4958009123802185,-0.11763618141412735,0.09920985251665115,0.6358698606491089,0.37957891821861267,0.6514256596565247,0.27394920587539673,0.02076650969684124,0.47869449853897095,0.3547530770301819,0.12131617963314056,0.34554800391197205,0.6277520060539246,0.0817146971821785,0.15009035170078278,0.0914027988910675,0.13026218116283417,0.3817816376686096,-0.33866244554519653,-0.15032458305358887,-0.059333208948373795,0.279662162065506,-0.38358840346336365,-0.11677291989326477,0.7011466026306152,-0.25091296434402466,0.12731799483299255,0.007600782904773951,-0.3712220788002014,0.2477305829524994,0.13384853303432465,0.46268248558044434,0.5871915817260742,-0.2893088459968567,0.11736098676919937,0.21654121577739716,0.6337441802024841,0.38225165009498596,0.5706901550292969,0.7911174893379211,0.26067522168159485,0.03763880953192711,0.021885350346565247,0.554459273815155,0.26674535870552063,-0.8707684278488159,-0.7008675336837769,0.4655062258243561,-0.420831561088562,-0.265821248292923,0.3647010326385498,-0.5640662908554077,-0.006511173211038113,0.6667137742042542,-0.3529782295227051,0.24264205992221832,-0.6759310364723206,-0.028275316581130028,-1.2624874114990234,0.387402206659317,-0.274435430765152,-0.9284766912460327,0.5234639048576355,-0.5889366865158081,-0.8017067313194275,0.3205259144306183,0.5717562437057495,-0.5154855847358704,-0.7745239734649658,-0.7331050038337708,-0.7083993554115295,-0.8921706080436707,-0.3552907407283783,-0.7331961989402771,-0.900995135307312,-0.5119077563285828,-0.8111371397972107,-0.07783341407775879,-0.8034033179283142,0.02125922217965126,-0.242239311337471,-0.08240329474210739,0.13774673640727997,-0.15853603184223175,-0.09753675013780594,0.1073627918958664,-0.20033098757266998,0.4694948196411133,-0.5552839040756226,0.21936286985874176,-0.8723776340484619,0.47518837451934814,-0.26607373356819153,-0.28563252091407776,-0.12932687997817993,-0.5309904217720032,-0.5756207704544067,0.3037099540233612,0.1443471759557724,-0.2565314471721649,-0.2864116430282593,-0.5139885544776917,-0.6963809728622437,-0.670902669429779,-0.1118563637137413,-0.2894904911518097,-0.3923705816268921,-0.08165141195058823,-0.28834059834480286,-0.3870038092136383,-0.24887609481811523,0.266315758228302,-0.005381877534091473,-0.41753774881362915,0.07620920240879059,-0.11513986438512802,0.07544112205505371,0.07019948959350586,-0.32867854833602905,0.3623883128166199,-0.5440658926963806,0.14056627452373505,-0.5641676783561707,0.47596439719200134,0.26792851090431213,-1.033823013305664,0.5472455620765686,-0.721183180809021,-0.9785712361335754,0.14897480607032776,0.20580188930034637,-0.345638632774353,-0.5897340178489685,-0.5645822286605835,-0.8074957132339478,-0.8467766642570496,-0.11957895010709763,-0.44242265820503235,-0.39295274019241333,-0.7470906972885132,-0.6222317218780518,-0.43632492423057556,-0.2997897267341614,-0.22687244415283203,-0.48257339000701904,-0.2879067659378052,0.1304532289505005,-0.001669025863520801,-0.06865598261356354,0.5519270300865173,0.2228838950395584,0.4965950548648834,-0.29820823669433594,-0.5450054407119751,-0.41818252205848694,0.2697301506996155,0.23357093334197998,-0.6825211644172668,0.32309800386428833,-0.6525102257728577,-0.018938608467578888,0.017032504081726074,0.2923876941204071,-0.5369946956634521,0.008924197405576706,-0.517653226852417,-0.2030205875635147,-0.18185599148273468,-0.272726833820343,-0.4463184177875519,-0.9206081628799438,-0.35449355840682983,-0.5148084163665771,0.08142606168985367,0.2271484136581421,0.23689454793930054,0.35931330919265747,0.40365728735923767,0.3040955662727356,0.4189870059490204,-0.0036977205891162157,-0.2281101644039154,-0.11041144281625748,0.06306921690702438,0.5253846049308777,0.14928977191448212,0.6240202188491821,-0.3055112659931183,-0.13988471031188965,0.3180815875530243,-0.24803774058818817,0.6477288007736206,0.2599309980869293,0.04038671776652336,0.17854934930801392,0.695737361907959,0.5118033289909363,0.2836863696575165,0.5512632131576538,0.23476707935333252,0.41525647044181824,0.6318117380142212,0.2600991725921631,0.3554891049861908,0.2002556025981903,0.47027531266212463,0.4095678925514221,0.09136193990707397,0.23263013362884521,0.4490619897842407,-0.0537513792514801,0.025149453431367874,-0.1741623431444168,0.0954076424241066,0.15895801782608032,-0.32825860381126404,0.4728104770183563,0.15875768661499023,0.3624956011772156,-0.4626261293888092,0.18416239321231842,0.2805555462837219,0.4371521770954132,0.47084498405456543,0.4125858247280121,-0.03555257245898247,-0.11619150638580322,0.4656618535518646,0.42603009939193726,0.32334402203559875,0.15937255322933197,0.12977270781993866,0.11149992793798447,0.1164342612028122,0.5105860829353333,0.4244230091571808,0.16748733818531036,0.2582674026489258,0.2810400128364563,0.04490247741341591,0.5788623690605164,0.5392446517944336,-0.18489915132522583,0.7147214412689209,0.04245242103934288,-0.1834900677204132,-0.08452218025922775,-0.059961024671792984,0.726104199886322,-0.3950127959251404,0.521576464176178,0.2048393189907074,-0.3904275894165039,0.18699665367603302,0.12319126725196838,0.6626454591751099,0.8468060493469238,-0.22525562345981598,0.05816294625401497,0.34059077501296997,0.7664886713027954,0.5547022223472595,0.5319404006004333,0.8972463011741638,0.4017010033130646,0.4922213554382324,0.3138473629951477,0.47874948382377625,0.10344823449850082,-0.6864132285118103,-0.3844628632068634,-0.004578900523483753,-0.3633680045604706,-0.5838577747344971,-0.026153458282351494,0.007582562509924173,-0.013725410215556622,0.49649930000305176,0.25782740116119385,0.2606015205383301,-0.6234346628189087,-0.08488225191831589,-0.7611311674118042,0.3145281970500946,-0.2465568333864212,-0.8212030529975891,0.534735918045044,-0.7312220335006714,-0.7323792576789856,0.4369732737541199,0.6600021719932556,-0.5577287673950195,-0.7823075652122498,-0.5365453362464905,-0.511537492275238,-0.8540424108505249,-0.7140178680419922,-0.6773590445518494,-0.9507157206535339,-0.5396237373352051,-0.838988184928894,0.515861451625824,0.5410095453262329,-0.22301772236824036,0.2734047472476959,0.21758584678173065,-0.594135582447052,0.2299589067697525,-0.03823733702301979,-0.005690328311175108,0.34927433729171753,0.37579962611198425,0.24977713823318481,0.3159530758857727,0.24466635286808014,0.08966764807701111,-0.2551678419113159,0.6835164427757263,-0.06805673241615295,0.29681849479675293,0.09447053074836731,0.22060395777225494,0.13580197095870972,0.2379172444343567,0.4199872612953186,0.4424419701099396,0.5732505917549133,0.6453848481178284,0.15738339722156525,0.21540594100952148,0.6438149809837341,0.419034868478775,0.38907095789909363,-0.4355463981628418,-0.49749547243118286,0.3429639935493469,-0.5319400429725647,-0.4221939444541931,0.42612215876579285,-0.19652369618415833,0.09614767879247665,0.40300896763801575,-0.05902290716767311,0.31613728404045105,-0.13437533378601074,-0.39127862453460693,-0.5567216873168945,-0.14635851979255676,0.21054081618785858,-0.62794029712677,0.6736849546432495,-1.0004019737243652,-0.5721620917320251,-0.28890103101730347,0.4769642949104309,-1.024825096130371,-0.6090494990348816,-0.8246881365776062,-0.4054097831249237,-0.4706451892852783,-0.2785808742046356,-0.2458081990480423,-0.12466499209403992,-0.5419606566429138,-0.532545804977417,0.13683316111564636,-0.3085380792617798,0.1682230681180954,-0.02189958281815052,0.007126804441213608,-0.07018112391233444,0.05836740881204605,0.12017405778169632,0.33291390538215637,0.17416568100452423,0.21243588626384735,0.24591533839702606,-0.16560746729373932,-0.47561490535736084,0.3593582212924957,0.11673275381326675,-0.7679574489593506,-0.1510997861623764,-0.3015725612640381,-0.06554286181926727,-0.03306805342435837,-0.07481320947408676,-0.25487685203552246,-0.17916470766067505,-0.27662134170532227,-0.23639215528964996,-0.4371447265148163,0.16942398250102997,0.015909692272543907,-0.5750269293785095,-0.01367189735174179,-0.2290126085281372,0.04946320131421089,0.15643611550331116,-0.07081262022256851,0.2175942063331604,0.03327426686882973,0.27222371101379395,0.3996623456478119,0.1738538295030594,-0.2636810541152954,0.17361240088939667,-0.2278146594762802,0.42672199010849,0.03648442402482033,0.34432315826416016,0.08868581801652908,-0.07923716306686401,0.009822934865951538,-0.011535387486219406,0.10622214525938034,-0.007252258248627186,0.2524101734161377,-0.23642189800739288,0.1947331428527832,0.11437880247831345,0.5753373503684998,0.08365336060523987,-0.025932613760232925,0.05720119550824165,0.27698880434036255,-0.16207586228847504,0.2709956169128418,0.27664732933044434,0.023860542103648186,0.3467385172843933,0.07687973976135254,0.4127556383609772,0.5308890342712402,-0.07738189399242401,0.27716368436813354,0.13950954377651215,0.2618018388748169,0.23422172665596008,0.13625015318393707,0.35288888216018677,-1.1900050640106201,-0.15369939804077148,-0.28648999333381653,0.19341933727264404,0.34024709463119507,0.280563622713089,-0.012006301432847977,0.10384434461593628,-0.46573135256767273,0.1484745889902115,0.6291527152061462,0.48424673080444336,0.5009050965309143,0.7244157195091248,0.40848129987716675,0.8029207587242126,0.4081699252128601,0.5710775852203369,0.13496838510036469,0.2517182230949402,-0.540009081363678,0.07064449787139893,-0.13239546120166779,0.03783692046999931,-0.17065896093845367,0.14618635177612305,0.027376243844628334,-0.11234994232654572,0.11589345335960388,0.1347956359386444,0.011465426534414291,0.017266761511564255,0.4685242772102356,-0.037539612501859665,-0.1289670467376709,-0.12294091284275055,-0.4401167631149292,0.06156589090824127,-0.32703861594200134,-0.04177480563521385,0.16852162778377533,-0.11287296563386917,0.044827014207839966,-0.19236940145492554,0.09111295640468597,-0.23035673797130585,0.0732894241809845,0.31253641843795776,-0.18529833853244781,-0.31224891543388367,-0.37298956513404846,0.29740607738494873,0.7823421359062195,0.4538164436817169,-0.19710426032543182,0.32693007588386536,0.286741703748703,0.42137613892555237,0.2665397822856903,-0.1978079229593277,0.07079043239355087,0.11888613551855087,-0.06694503873586655,0.26555436849594116,-0.29134058952331543,0.27464109659194946,0.2734207510948181,0.18244874477386475,0.5723356604576111,-0.24881026148796082,0.5099703669548035,0.5777480006217957,-0.02218771167099476,-0.29050642251968384,0.7578632235527039,0.47993314266204834,0.4860120117664337,0.23043538630008698,0.5029442310333252,0.16811612248420715,0.5012929439544678,0.22666893899440765,0.6005668640136719,0.16458258032798767,0.23257558047771454,0.44138655066490173,-0.08417829871177673,-0.03390505537390709,0.08461929857730865,-0.06694857031106949,0.25114384293556213,-0.21578191220760345,0.17755725979804993,0.25487542152404785,0.1826651245355606,0.7614242434501648,0.30052387714385986,0.3781695067882538,0.14285948872566223,-0.20633238554000854,0.12390901893377304,-0.21109943091869354,0.09432198107242584,-0.08774393051862717,0.09599504619836807,-0.048403240740299225,0.0627114325761795,0.5024093985557556,0.2808525860309601,0.3490636944770813,-0.10414343327283859,0.17809626460075378,0.47136545181274414,0.41835901141166687,0.5783413052558899,0.4997418522834778,0.39255446195602417,0.4344521462917328,0.14994260668754578,0.5454769730567932,0.5573722124099731,-0.010896832682192326,0.5575541257858276,-0.09541801363229752,-0.44876039028167725,-0.04407021403312683,0.09394771605730057,0.2888675332069397,0.6226837635040283,0.13610728085041046,-0.05316131189465523,-0.00677903275936842,0.7067924737930298,-0.6014169454574585,0.5658715963363647,0.7473164796829224,0.24802875518798828,-0.3104093670845032,0.6649253368377686,0.4505429267883301,0.7755277752876282,0.5148009657859802,0.4157966375350952,0.6675165295600891,0.5125450491905212,0.5490183234214783,0.5512354969978333,0.5545404553413391,0.603035569190979,0.49580615758895874,-0.2010011076927185,0.33726969361305237,0.6952174305915833,-0.4489925503730774,0.4956153631210327,-0.112040214240551,-0.34587058424949646,0.3198672831058502,-0.05211815610527992,0.5127298831939697,0.042213380336761475,0.16014344990253448,-0.12004371732473373,-0.13333448767662048,0.2560094892978668,-0.158702552318573,0.27561715245246887,0.31871113181114197,0.059595171362161636,-0.07905109226703644,0.614212155342102,0.49222925305366516,0.4221404194831848,0.2130633294582367,0.46616020798683167,0.5287601947784424,0.40196317434310913,0.15464109182357788,0.8266816139221191,0.5168469548225403]},{"shape":[32],"values":[0.4565412700176239,0.4411367177963257,0.010665972717106342,0.4545213282108307,0.5061635375022888,0.01216915063560009,0.3637682795524597,0,-0.2792534828186035,-0.1854635775089264,-0.07612571120262146,0.4744258522987366,0.008994233794510365,0.24603691697120667,-0.19033247232437134,-0.03696107119321823,0.3684515357017517,-0.16469423472881317,0.5161952376365662,0.49662598967552185,-0.3611520826816559,-0.2094312310218811,0.496602863073349,0.4886356592178345,0.4739350378513336,0.5333154797554016,0.457335889339447,0.5052317380905151,0.5337863564491272,0.4067811369895935,0.6010078191757202,0.33860117197036743]},{"shape":[32,9],"values":[0.5438238382339478,0.24138657748699188,0.16942526400089264,0.4352355897426605,0.5382951498031616,0.07594338059425354,0.6091975569725037,0.3399219512939453,0.17283105850219727,0.3295198380947113,0.45206964015960693,0.5343985557556152,0.15331754088401794,0.6003513336181641,0.7715085744857788,0.7711372971534729,0.6307452917098999,0.29448509216308594,-0.009173238649964333,0.4005834758281708,-0.01194758526980877,-0.2913726568222046,0.02864731475710869,-0.03740304335951805,-0.7600620985031128,-0.3095201849937439,0.22123897075653076,0.17883899807929993,0.19601303339004517,0.6482892632484436,0.7602242827415466,0.10371086001396179,0.3854483366012573,0.7969055771827698,0.30319955945014954,0.3834599554538727,0.5981338620185852,0.2941308915615082,0.6724003553390503,0.599134624004364,0.891176700592041,0.03989069163799286,0.5745089650154114,0.34611189365386963,0.5432421565055847,-0.038549959659576416,-0.02970285341143608,-0.35630521178245544,-0.11872945725917816,-0.06465359777212143,0.09625244140625,0.36646944284439087,-0.1937696486711502,-0.8463326096534729,0.03432990610599518,0.20844022929668427,0.07809984683990479,0.2360983043909073,0.43922126293182373,0.6123138070106506,-0.048454396426677704,0.3588079810142517,0.5791416168212891,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11838390678167343,-0.07355088740587234,0.10456845909357071,-0.6002237200737,-0.5120739936828613,-0.1027841567993164,-0.08785417675971985,-0.5175630450248718,-0.5150960683822632,-0.5912995934486389,-0.34906211495399475,-0.45328110456466675,0.13755661249160767,0.019469967111945152,0.4701797664165497,0.028582187369465828,-0.035799361765384674,0.05650468170642853,-0.4181710481643677,-0.49043869972229004,0.4455335736274719,0.1882132589817047,0.07929201424121857,-0.4254979193210602,0.4581671357154846,-0.3514672815799713,-0.26167526841163635,-0.041150569915771484,-0.3681822121143341,-0.14453014731407166,0.38129934668540955,0.5341725945472717,0.7244551181793213,0.5139551758766174,0.3697774112224579,0.8365986347198486,0.29566943645477295,0.552833080291748,0.7483076453208923,-0.12800432741641998,-0.34101811051368713,-0.2119619995355606,-0.5138140320777893,-0.6395730376243591,-0.6451416611671448,-0.7203174233436584,-0.48638519644737244,-0.8977532982826233,0.9125581383705139,0.7033922076225281,0.6150281429290771,0.4546934962272644,0.6806525588035583,0.25577208399772644,0.2645609378814697,0.543481707572937,0.1622905284166336,0.0470094196498394,-0.5883386135101318,-0.6271300911903381,-0.04501275718212128,-0.17467236518859863,-0.7342445254325867,-0.06859743595123291,-0.02803022414445877,-0.47932663559913635,-0.15019525587558746,-0.3459208011627197,-0.21739086508750916,0.3298495411872864,0.02212507091462612,-0.016383294016122818,0.2231486439704895,-0.261641263961792,-0.027866775169968605,0.8788589239120483,0.8321601152420044,0.5600473284721375,1.0204851627349854,0.5795326232910156,0.6352543234825134,0.9826298356056213,0.49329784512519836,0.5211994647979736,-0.054783646017313004,0.00912685040384531,-0.48470360040664673,-0.6243178844451904,-0.16148097813129425,-0.6706100702285767,-0.3976169526576996,-0.27784597873687744,-0.8157181143760681,1.0277557373046875,0.8131985664367676,0.5165334343910217,0.7843446731567383,0.7791195511817932,0.5382553935050964,0.7901732921600342,0.7481503486633301,0.6212705969810486,0.8266615867614746,0.8494333028793335,0.7967973351478577,0.6984487771987915,0.3814081847667694,0.560478150844574,0.4514763355255127,0.5556464791297913,0.6288242340087891,-0.1955847591161728,0.05642476677894592,0.0221005417406559,0.15531346201896667,-0.015820316970348358,0.007616398390382528,-0.3294857144355774,-0.5311015248298645,-0.5204015374183655,-0.4823913276195526,-0.5841701626777649,-0.5076385140419006,-0.6109881401062012,-0.29697659611701965,-0.32998961210250854,-0.36311075091362,-0.4750474691390991,-0.002435823669657111,0.6171194911003113,0.45779332518577576,0.6443666815757751,0.38778287172317505,0.5170787572860718,0.5051077008247375,0.8936179876327515,0.6729901432991028,0.36934399604797363,0.3379989266395569,0.8078962564468384,0.553926408290863,0.42684102058410645,0.8302116394042969,0.8374063968658447,0.3897566497325897,0.7184144258499146,0.904335081577301,0.7822423577308655,0.9094445705413818,0.530413806438446,0.908334493637085,0.5024820566177368,0.8943030834197998,0.2913644015789032,0.4519442915916443,0.8962644934654236,0.44471943378448486,0.38219499588012695,0.7572565078735352,0.5692035555839539,0.7367731928825378,0.6527702212333679,0.8405593633651733,0.8905859589576721,0.5143152475357056,0.46301209926605225,0.6711764335632324,0.4829295575618744,0.492652028799057,0.7227016687393188,0.7859751582145691,0.8330475091934204,0.6272463202476501,0.7198601365089417,0.3379586935043335,0.4050656259059906,0.2325599044561386,0.24400460720062256,0.21426601707935333,0.6720623970031738,0.3116634488105774,0.5079929828643799,0.7194533348083496,0.2390904277563095,0.6738654971122742,0.5066043138504028,0.470121830701828,0.3721235394477844,0.24949908256530762,0.7199738025665283,0.6037379503250122,0.5338466763496399,0.34869974851608276,0.39447808265686035,0.27243104577064514,0.5482906103134155,0.8574022650718689,0.42395228147506714,0.6405306458473206,1.1101207733154297,0.7155340313911438,0.8265476226806641,0.3705037236213684,0.4192139506340027,0.8007811903953552,0.5918084979057312,0.6828908920288086,0.7246478796005249,0.6444810628890991,0.4011165499687195,0.5590094327926636,0.4419848322868347,0.6361980438232422,0.1837088167667389,0.5502077341079712,0.3917362093925476,0.24633248150348663,0.35954657196998596,0.7218316197395325]},{"shape":[9],"values":[0.36666515469551086,0.0877716988325119,0.02300305664539337,0.37263786792755127,0.051370374858379364,0.09022698551416397,0.2898322343826294,0.41310733556747437,0.41579321026802063]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-101.json new file mode 100644 index 0000000..9698e64 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:25:10.293Z","weights":[{"shape":[20,32],"values":[1.498387098312378,-0.43944698572158813,-0.030846035107970238,1.1060606241226196,0.30546364188194275,1.305098533630371,1.155961275100708,-0.04448562487959862,-0.10950114578008652,1.2524521350860596,-0.19339163601398468,0.28284648060798645,0.8820264935493469,1.1799190044403076,0.8500725030899048,-0.45155271887779236,0.8368843793869019,0.7409919500350952,0.39323511719703674,0.8814688920974731,0.8220713138580322,-0.0779133215546608,-0.16337056457996368,0.4862968921661377,1.0279000997543335,-0.000676836643833667,-0.2564219534397125,0.8893887400627136,1.5366955995559692,0.5830764174461365,-0.29943835735321045,0.7094172835350037,-0.08971409499645233,0.04415147751569748,-0.1337624341249466,0.1050979420542717,-0.03910035267472267,0.08321809023618698,-0.058210428804159164,-0.1474914252758026,-0.2100101113319397,0.06800578534603119,0.13335354626178741,-0.021641690284013748,-0.3316194713115692,0.030887151136994362,-0.057806894183158875,-0.11774057894945145,-0.12427763640880585,0.11363989859819412,0.0402221642434597,-0.05014931783080101,-0.2173880785703659,0.014757377095520496,-0.10491374135017395,0.06232089921832085,0.01196545921266079,-0.03628368675708771,-0.08340886235237122,-0.08451510965824127,0.12147024273872375,0.04214483126997948,-0.09966597706079483,0.029171345755457878,-0.19941216707229614,-0.7257872819900513,-0.4114989936351776,-0.11743228882551193,0.13883745670318604,0.1325448602437973,-0.25680282711982727,-0.3869614005088806,-0.3769432008266449,-0.18766345083713531,0.013860577717423439,0.5315626859664917,0.20503322780132294,-0.029407471418380737,-0.01788218505680561,-0.6039755344390869,-0.0836876705288887,-0.35250741243362427,0.3667098879814148,0.1043035164475441,-0.12420991063117981,1.176239252090454,-0.5412948727607727,0.2701275646686554,-0.18050648272037506,1.0268021821975708,-0.6177193522453308,-0.12368106096982956,-0.05101625248789787,0.018380071967840195,-0.4964410960674286,0.025570446625351906,-0.16837027668952942,1.163528323173523,1.608872890472412,-0.16299130022525787,0.2553126811981201,0.2170383185148239,-0.15333804488182068,1.2727025747299194,0.4815467298030853,-0.28755736351013184,0.7816803455352783,-0.08847813308238983,-0.16874313354492188,-0.28072094917297363,-0.05953151360154152,1.071331262588501,0.13433212041854858,-0.10932030528783798,-0.2593217194080353,0.029590247198939323,-0.1243891566991806,-0.7630659341812134,1.4008324146270752,-0.6097186207771301,0.3709334433078766,-0.6050700545310974,1.230926752090454,0.4048805832862854,0.2202119678258896,-0.1063569039106369,1.1377172470092773,-0.31204286217689514,0.32138684391975403,-0.0470256507396698,-0.10070967674255371,0.01708671636879444,0.3526079058647156,-0.09645137935876846,0.20862577855587006,-0.16698987782001495,0.26688480377197266,0.13560473918914795,0.2452532947063446,-0.22240951657295227,-0.2279077023267746,0.2958183288574219,-0.32427161931991577,0.06509316712617874,-0.09625966846942902,0.052232444286346436,0.15046292543411255,0.3108862340450287,0.02562546357512474,0.07643381506204605,-0.25355514883995056,0.3333166837692261,0.09710259735584259,0.05000537261366844,0.2562176287174225,0.1001371368765831,-0.27209481596946716,0.010418095625936985,0.08555058389902115,0.050526294857263565,0.05853595212101936,0.3534497320652008,0.3035984933376312,0.1838831603527069,0.09754083305597305,-0.12214133143424988,0.3516782820224762,0.28927040100097656,-0.15409135818481445,-0.16330885887145996,0.23616044223308563,0.24029627442359924,-0.18809564411640167,-0.10836324095726013,-0.28282636404037476,-0.21653752028942108,-0.2453317940235138,-0.06844133883714676,-0.10803829878568649,0.4630086123943329,-0.06185125932097435,0.13224738836288452,0.2730550169944763,-0.026661694049835205,-0.3388625383377075,-0.3457699716091156,0.30086225271224976,-0.3305034041404724,-0.25680428743362427,0.15304063260555267,0.3405493199825287,0.23055313527584076,0.2690863609313965,-0.03187192976474762,-0.08402425795793533,0.1325080841779709,-0.381305992603302,-0.344537615776062,0.00403620395809412,0.14157132804393768,0.41203826665878296,0.41109204292297363,-0.0818059965968132,0.08179886639118195,0.3026804029941559,-0.06322372704744339,-0.23073901236057281,0.3166486322879791,-0.34789106249809265,-0.14676328003406525,0.3038547933101654,-0.11216995865106583,0.1375424861907959,0.11518371850252151,0.46605318784713745,0.17920929193496704,-0.47913146018981934,0.07444331049919128,-0.0790582001209259,-0.19642242789268494,-0.3728898763656616,0.3943995535373688,0.011170625686645508,0.411537766456604,0.005456154700368643,0.2665022909641266,0.3997451961040497,0.014988486655056477,-0.4603901505470276,-0.3965960443019867,0.22679023444652557,0.026960313320159912,0.19479700922966003,0.4475814402103424,0.4165683090686798,0.18883246183395386,0.3717356026172638,0.4704192578792572,-0.13166078925132751,-0.02479252591729164,0.14765214920043945,0.43211129307746887,0.3719572126865387,0.19353650510311127,0.47214189171791077,-0.20246344804763794,-0.03674382343888283,0.33591070771217346,-0.1574539691209793,-0.12824304401874542,0.0751480907201767,0.30955377221107483,-0.15462170541286469,0.08156204223632812,0.4202502965927124,0.07730289548635483,-0.26117339730262756,-0.029240237548947334,-0.007801287807524204,-0.6070002913475037,0.3676239848136902,0.01423903089016676,-0.13462771475315094,0.22309811413288116,0.18380199372768402,0.08715982735157013,0.26658517122268677,0.32566216588020325,0.14067333936691284,0.19715538620948792,0.19062571227550507,-0.018206777051091194,0.1143779456615448,-0.058117009699344635,-0.028861267492175102,0.2517561912536621,0.22887365520000458,-0.07049279659986496,-0.012978723272681236,-0.2675818204879761,0.17103685438632965,-0.10730940103530884,0.1505480408668518,0.2466655969619751,0.03365161642432213,0.2778848111629486,-0.17285268008708954,-0.08094921708106995,0.33152011036872864,-0.16438011825084686,0.37673041224479675,-0.39616304636001587,-0.20590174198150635,0.1229771226644516,0.06827306747436523,0.08650875091552734,0.4055522382259369,-0.006809538695961237,-0.47123482823371887,0.27001601457595825,0.06678428500890732,0.04909946024417877,0.03424729034304619,-0.10210089385509491,0.3288303017616272,-0.05371495708823204,-0.13699786365032196,0.3188646733760834,-0.10484998673200607,0.26900312304496765,-0.12848201394081116,0.12123967707157135,0.06635712832212448,0.3023613691329956,-0.1419750154018402,0.4232310354709625,0.37949138879776,-0.21494553983211517,0.11579146981239319,-0.2644939720630646,0.05550504848361015,0.1776043176651001,-0.023753497749567032,0.1563669592142105,0.05537385866045952,0.12552446126937866,-0.10596498101949692,0.31683865189552307,0.25273633003234863,-0.27841416001319885,-0.4441019892692566,0.2158655822277069,-0.12513130903244019,-0.06589894741773605,0.021841619163751602,0.11945141106843948,-0.06145978346467018,0.19012311100959778,0.3360233008861542,0.06933149695396423,0.2403503656387329,-0.13759851455688477,-0.2381024956703186,0.3733648359775543,0.41785410046577454,-0.02004300430417061,0.1548561006784439,0.5244345664978027,0.02664649300277233,0.1693895012140274,-0.02321133017539978,-0.045699264854192734,-0.22077421844005585,0.13733617961406708,-0.21016459167003632,-0.36583802103996277,-0.2915458679199219,0.24471744894981384,-0.28304997086524963,-0.0078525859862566,0.05763690173625946,0.028432833030819893,-0.09624200314283371,0.009126100689172745,-0.05502155050635338,0.10335265845060349,0.11351405084133148,0.3197036683559418,0.11587809026241302,-0.0007353916298598051,-0.3813813030719757,0.174103245139122,-0.07453003525733948,0.17300184071063995,0.08462096005678177,-0.16542823612689972,-0.23100651800632477,-0.3367287218570709,-0.0575510635972023,-0.19736891984939575,0.05720842257142067,-0.3364408016204834,-0.24939662218093872,0.2895921468734741,0.09851137548685074,0.09120672941207886,-0.13878580927848816,-0.6478797793388367,-0.038655783981084824,0.03400798887014389,-0.30868422985076904,-0.09708615392446518,-0.16086022555828094,-0.3898598849773407,0.3261148929595947,-0.08856085687875748,-0.052966877818107605,0.13280589878559113,-0.018047552555799484,-0.08943772315979004,-0.3202317953109741,0.018199261277914047,-0.18395166099071503,-0.14881333708763123,-0.03215490281581879,-0.033795617520809174,-0.15713216364383698,0.1196732148528099,-0.10629604756832123,-0.163906529545784,-0.01729624718427658,0.1758459061384201,0.26894816756248474,-0.03570880740880966,0.19193169474601746,-0.2714139521121979,0.2500744163990021,0.28201431035995483,0.05169185996055603,-0.3534749448299408,0.17775805294513702,-0.14267465472221375,0.3085669279098511,0.002226603915914893,0.08416672050952911,-0.1657295972108841,0.0953066498041153,0.06553380936384201,0.03883166238665581,-0.13726939260959625,0.09087839722633362,-0.05364692583680153,0.018558114767074585,0.27037328481674194,0.15909002721309662,-0.1087505966424942,0.3619081377983093,-0.370592325925827,-0.1755523979663849,0.34706392884254456,0.11379987001419067,0.20221908390522003,0.2474932223558426,0.27459970116615295,0.3263278603553772,-0.01011716015636921,0.06726884841918945,-0.2339685559272766,-0.27040430903434753,0.3253895342350006,-0.2916780114173889,0.5372324585914612,0.058305129408836365,-0.3348436653614044,0.22945405542850494,0.21042898297309875,-0.028736377134919167,-0.20205055177211761,-0.5322213768959045,0.13372772932052612,0.1287374198436737,0.27139490842819214,0.04320590943098068,0.2772895097732544,-0.13189135491847992,-0.053926002234220505,0.1611475646495819,-0.17095988988876343,0.09930218756198883,-0.3525592088699341,0.32658490538597107,-0.08424767106771469,0.016163881868124008,0.2412332445383072,0.4181874990463257,0.088319793343544,0.08160530775785446,0.21528565883636475,-0.43653854727745056,-0.1224537193775177,-0.28636690974235535,0.06120217964053154,0.1437707096338272,0.18488100171089172,-0.32031524181365967,-0.2234824001789093,0.15206830203533173,0.07480234652757645,0.18399114906787872,-0.020083744078874588,-0.33039477467536926,-0.15622608363628387,-0.2725403308868408,0.08369193226099014,-0.24144309759140015,-0.20691268146038055,-0.29246851801872253,-0.10837863385677338,-0.37192094326019287,-0.11501188576221466,-0.1364288032054901,-0.07649252563714981,0.2287774384021759,0.1425514668226242,-0.23871196806430817,-0.3372298777103424,0.06680659204721451,0.022815613076090813,0.15781009197235107,0.021696120500564575,-0.2749923765659332,-0.05362958833575249,-0.31176885962486267,0.17452210187911987,0.15123626589775085,-0.03343496844172478,-0.05644082650542259,0.1711246371269226,-0.47635895013809204,-0.21696150302886963,-0.04152104631066322,-0.34146884083747864,0.42046475410461426,0.42347827553749084,-0.10032150149345398,0.15466465055942535,0.11762300878763199,-0.2236696034669876,-0.049701396375894547,-0.4253143072128296,-0.392930805683136,-0.07759346812963486,-0.11747453361749649,0.0053968834690749645,0.1748015433549881,-0.15745097398757935,-0.08996910601854324,-0.4306578040122986,-0.015278887003660202,0.09882177412509918,-0.1390293538570404,0.08111245185136795,0.07408460974693298,0.32212895154953003,0.0676928237080574,-0.3218754529953003,-0.21644620597362518,-0.3241545557975769,0.19939102232456207,0.24021537601947784,-0.06197409704327583,-0.049748726189136505,-0.16953739523887634,0.30664825439453125,-0.3472432792186737,0.1610773354768753,-0.031722720712423325,0.1943940371274948,0.41659167408943176,0.15879537165164948,0.2574528753757477,0.04413972049951553,-0.1324170082807541,0.07765855640172958,-0.1362943947315216,0.09954824298620224,0.3250378370285034,0.11738436669111252,-0.12276267260313034,-0.20289792120456696,-0.1128089427947998,-0.13296756148338318,0.018807414919137955,0.12511150538921356,0.2807580232620239,0.25533950328826904,0.06972629576921463,0.18929727375507355,-0.5192866921424866,-0.0074022733606398106,0.10729114711284637,0.09148979187011719,0.06031258404254913,0.2585219442844391,-0.6061616539955139,0.09160210937261581,-0.3824789524078369,0.036489080637693405,-0.042983125895261765,0.10828475654125214,0.049576085060834885,0.4315594732761383,0.11796538531780243,0.21006955206394196,0.10200588405132294,-0.12389528006315231,-0.2612402141094208,-0.3859589695930481,-0.2696196436882019,0.1802014261484146,0.05805467069149017,0.18257693946361542,0.36954718828201294,-0.20842419564723969,0.3797198235988617,-0.1253572553396225,-0.3418697118759155,-0.29125460982322693,-0.2356678992509842,0.1687610000371933,-0.20408321917057037,-0.4145525395870209,0.09537675231695175,-0.11349963396787643,-0.40939006209373474,0.37319475412368774,-0.41800400614738464,-0.004167080856859684,0.28246721625328064,0.13286809623241425,0.11605522036552429,0.12269092351198196,-0.29369422793388367,0.1970634162425995,0.2364274114370346,-0.14087437093257904,-0.3218918442726135,-0.11969096958637238,0.04911496117711067,-0.05392783135175705,0.22294235229492188,-0.22987453639507294,0.1612379401922226,0.21301458775997162,0.3078584671020508,-0.052256204187870026,0.1809963583946228,0.07836645096540451,-0.16279979050159454,-0.008719990961253643]},{"shape":[32],"values":[0.6297128200531006,-0.20628942549228668,-0.38329312205314636,0.670512855052948,0.25471729040145874,0.5126753449440002,0.44384312629699707,-0.2273067831993103,-0.34811270236968994,0.44636473059654236,-0.24156560003757477,0.2561696469783783,0.6491586565971375,0.47436487674713135,0.6426079869270325,-0.13065241277217865,0.4288156032562256,0.6213882565498352,0.23904168605804443,0.45997604727745056,0.4503728747367859,0.03589301556348801,-0.20216965675354004,0.284734308719635,0.563835859298706,0.00002037332160398364,-0.2750394642353058,0.5668484568595886,0.591788649559021,0.44330328702926636,-0.33769652247428894,0.3636145293712616]},{"shape":[32,32],"values":[0.14413771033287048,0.6622710824012756,0.07175174355506897,-0.19388701021671295,0.7572807669639587,0.03432217985391617,0.6636002659797668,-0.13546429574489594,-0.07387807965278625,-0.021126553416252136,0.2709650695323944,0.41451990604400635,0.8570579886436462,0.894412100315094,0.510345995426178,0.5001932382583618,0.33982816338539124,0.788311779499054,0.9803943037986755,-0.14483246207237244,0.37951886653900146,0.14544905722141266,0.853119969367981,0.660144567489624,0.559028685092926,0.045034267008304596,-0.07607405632734299,0.6645034551620483,0.4029390215873718,-0.22954457998275757,-0.26889267563819885,0.19839121401309967,-0.1555718183517456,-0.18194468319416046,0.3036104142665863,0.28935110569000244,-0.5811278223991394,0.3493231236934662,-0.22057192027568817,-0.07586746662855148,0.0447545051574707,0.15315331518650055,-0.3005974590778351,0.31699416041374207,-0.5961642861366272,-0.9026769995689392,-0.5395967960357666,0.06288308650255203,-0.24885262548923492,-0.7761045098304749,-0.2603791356086731,0.10534776002168655,0.1822885423898697,0.20686176419258118,0.149614155292511,0.07359090447425842,-0.03901253268122673,-0.26838454604148865,-0.5551100969314575,0.12660956382751465,0.022609621286392212,0.19045811891555786,0.09189194440841675,0.1900629848241806,-0.022800054401159286,-0.8870006799697876,0.15620769560337067,0.36658141016960144,-1.1498594284057617,0.4533242881298065,-0.3155611753463745,0.10624882578849792,0.2636253535747528,-0.3245445489883423,0.18688246607780457,0.04054909199476242,-1.1138243675231934,-1.1036485433578491,-0.7027509212493896,-0.11427433788776398,-0.2702437937259674,-0.8500003814697266,-0.23064996302127838,0.256447970867157,-0.5106127262115479,-0.3135959804058075,-0.25348132848739624,-0.025767169892787933,-0.2925105392932892,0.2149183303117752,-0.012256125919520855,-0.030013948678970337,0.09134849905967712,0.05275512486696243,-0.14764530956745148,0.04197759926319122,-0.020618854090571404,0.8896594643592834,-0.3049560487270355,-0.2478107362985611,0.4573698341846466,-0.22121469676494598,0.3330753445625305,-0.026145176962018013,-0.30180624127388,0.013550925999879837,-0.20035557448863983,-0.0036222191993147135,0.6358418464660645,0.5222750902175903,0.6546900868415833,0.6082000732421875,-0.005133883096277714,0.7681951522827148,0.5755958557128906,0.06966142356395721,0.4251425862312317,0.26799944043159485,1.0001413822174072,0.7466501593589783,0.4435553252696991,0.1560342013835907,0.0183631032705307,0.6325368881225586,0.22510138154029846,-0.370896577835083,0.22374984622001648,-0.3971751928329468,-0.17142267525196075,0.40200936794281006,-0.5314799547195435,0.19412626326084137,0.6080231070518494,-0.11118953675031662,0.3839547634124756,0.20198404788970947,-0.3028251528739929,-0.2521669566631317,0.11962765455245972,-0.3754243552684784,-0.017988376319408417,0.0676174983382225,0.08480679988861084,0.010853993706405163,0.027998553588986397,0.19673818349838257,-0.03981882333755493,-0.3440723121166229,0.4027290642261505,-0.2562062740325928,0.22467221319675446,0.11664427816867828,-0.07923146337270737,-0.28243333101272583,0.21719110012054443,0.1409958451986313,-0.022313769906759262,-0.20176947116851807,-0.06334087252616882,-1.0790069103240967,0.004313657060265541,0.43925389647483826,-0.6060678362846375,0.19844959676265717,0.4561643600463867,-0.20004703104496002,0.7954597473144531,-0.15697471797466278,-0.22908198833465576,0.20139208436012268,0.040604427456855774,-0.28609025478363037,0.2097681164741516,0.8035763502120972,0.3222719430923462,0.13402636349201202,0.1790831834077835,0.17789171636104584,0.5983805656433105,-0.12000248581171036,0.6063919067382812,-0.13855266571044922,0.5464330315589905,0.4868488311767578,0.4436050355434418,0.027157053351402283,0.08227578550577164,0.511583149433136,-0.46612706780433655,-0.18616589903831482,-0.2174285650253296,-0.598432719707489,-0.4379602372646332,0.20241911709308624,0.2128484845161438,0.0976782739162445,0.45613792538642883,0.004719957709312439,0.28263992071151733,-0.17144498229026794,0.016002293676137924,0.19545815885066986,0.15233656764030457,0.2515861988067627,0.2016792744398117,0.27061304450035095,0.5615370273590088,0.10620693862438202,0.3064574897289276,0.47898125648498535,0.3601223826408386,0.25411632657051086,0.42076200246810913,-0.008506642654538155,0.40852996706962585,0.21116919815540314,0.45450079441070557,-0.01127488911151886,-0.33842602372169495,0.2467445433139801,0.22013235092163086,-0.06457269936800003,-0.15235543251037598,0.15913428366184235,-0.35465893149375916,-0.6353332996368408,0.13189169764518738,0.2817532420158386,-0.5663051605224609,-0.05111463740468025,-0.5003055334091187,-0.2148926556110382,0.26455438137054443,-0.31375473737716675,0.01131642796099186,0.4049759805202484,-0.48085838556289673,-0.9616042971611023,-0.1345452517271042,0.08137528598308563,-0.14300262928009033,-0.46923965215682983,-0.020357687026262283,0.07831458002328873,-0.3752502501010895,-0.22247369587421417,-0.2509687840938568,0.07942860573530197,-0.005107699893414974,0.09427135437726974,0.29398313164711,-0.16720396280288696,0.06057555601000786,0.23806987702846527,-0.020295394584536552,-0.10719083249568939,-0.3449884057044983,-0.5398478507995605,-0.1520266979932785,-0.4808245897293091,-0.37135839462280273,0.3062872588634491,-0.0984354019165039,0.2736974060535431,0.2290339171886444,0.10573199391365051,-0.2996727228164673,0.0922100841999054,-0.3921106159687042,-0.4691937267780304,-0.03836528956890106,0.08442042768001556,-0.13225436210632324,-0.5813063383102417,-0.36419859528541565,0.22417311370372772,0.07585787028074265,-0.32891759276390076,-0.35499629378318787,-0.15330776572227478,-0.39382660388946533,-0.14770948886871338,-0.23352336883544922,-0.39222055673599243,0.384574294090271,0.1527106761932373,0.05279574543237686,0.0877700224518776,-0.34178659319877625,0.06788383424282074,-0.07539841532707214,0.21922962367534637,0.15023665130138397,-0.1887062042951584,0.7334977388381958,0.05085264891386032,-0.0035514337942004204,-0.07133403420448303,-0.1532716453075409,0.231231689453125,0.47339320182800293,0.6651299595832825,0.3698734641075134,0.3888246417045593,0.024254167452454567,0.4301378130912781,0.21002471446990967,-0.1480850726366043,0.29234790802001953,-0.1770380437374115,0.7244406342506409,0.16608905792236328,0.12347308546304703,-0.051327284425497055,0.04803726449608803,0.36272165179252625,-0.047454092651605606,-0.2100447416305542,-0.15261894464492798,0.2575323283672333,-0.008091461844742298,-0.4005984663963318,0.2883791923522949,-0.25329044461250305,-0.6616312861442566,0.45790451765060425,-0.24522222578525543,-0.13492044806480408,-0.09256988018751144,-0.21841104328632355,-0.22380775213241577,0.1726323664188385,-0.18337103724479675,-0.5380025506019592,-0.0684078112244606,-0.05788228660821915,-0.30931344628334045,-0.644353449344635,-0.06494192034006119,-0.14334499835968018,0.011728402227163315,0.13760393857955933,-0.393934965133667,-0.03981579840183258,-0.5197170376777649,-0.1986101120710373,-0.025896431878209114,-0.23321771621704102,-0.3156578838825226,0.2347513735294342,-0.0036382542457431555,0.3746066093444824,0.00042175775161013007,0.3963737189769745,0.1409817337989807,-0.18343442678451538,0.2611313462257385,0.03227173909544945,0.48068562150001526,-0.11605539172887802,-0.09606947749853134,0.053529951721429825,-0.025492601096630096,-0.4657459259033203,0.47085124254226685,0.09690455347299576,-0.020138904452323914,0.31891658902168274,-0.04212397336959839,0.4378349184989929,0.48083582520484924,-0.3736497163772583,0.3887261748313904,-0.2066817581653595,0.46590009331703186,-0.06673501431941986,-0.2279394418001175,-0.05826832354068756,0.16407398879528046,0.150324746966362,-0.15602685511112213,-0.27818891406059265,0.004599308129400015,-0.28875741362571716,0.13087472319602966,0.4807334244251251,-0.13254959881305695,0.037614237517118454,0.5615977644920349,0.06672109663486481,0.7035964727401733,-0.24686746299266815,0.35765546560287476,-0.21265462040901184,-0.2764436602592468,-0.07135100662708282,0.36585044860839844,0.5197848081588745,0.595836341381073,0.20634619891643524,0.3264823853969574,0.639345109462738,0.4010339081287384,0.117573581635952,0.6359561085700989,-0.04180648922920227,0.7130937576293945,0.5756337642669678,0.4397532641887665,-0.09771525859832764,0.17452412843704224,0.174980029463768,0.02699931524693966,-0.041539937257766724,0.1269012689590454,-0.4273107647895813,-0.2777778208255768,0.4818086326122284,0.06473824381828308,-0.11760161072015762,0.36429500579833984,0.013893711380660534,0.2413540780544281,0.20590536296367645,0.048620350658893585,-0.02591504529118538,-0.09949731826782227,-0.007927724160254002,0.4059191346168518,0.26946333050727844,0.48628342151641846,-0.035846833139657974,-0.31586459279060364,0.38402318954467773,0.5168647170066833,-0.10848104953765869,0.16028231382369995,0.12273144721984863,0.2550404667854309,0.4485524296760559,0.5427747368812561,-0.2746916115283966,-0.05324610322713852,0.6134793162345886,0.3926915228366852,0.289505273103714,0.15985938906669617,0.21103131771087646,-0.0961894541978836,0.23529168963432312,-0.5853738188743591,-0.010019099339842796,0.07317628711462021,0.19051535427570343,0.5974882245063782,-0.0663992166519165,-0.24782991409301758,-0.1035831868648529,-0.2021632194519043,-0.4544652998447418,0.6179665327072144,0.30084484815597534,0.44081220030784607,0.010311423800885677,-0.009189900010824203,0.5517503023147583,0.6362636685371399,0.028758469969034195,0.12176655977964401,0.06788159161806107,0.6110333800315857,0.3575720489025116,0.07626280188560486,0.07190479338169098,0.17038565874099731,0.0883394256234169,-0.4145106375217438,0.09958568960428238,-0.22010691463947296,-0.33313658833503723,0.0016671752091497183,-0.5480983257293701,-0.00945848599076271,0.05927840620279312,-0.9310342669487,-0.08713424205780029,-0.5224802494049072,-0.1632695496082306,-0.08282671868801117,-0.23134680092334747,0.1651420146226883,-0.17762652039527893,-0.9007300138473511,-0.48275843262672424,-0.3923508822917938,-0.3442326486110687,0.038025885820388794,-0.5360769033432007,-0.07758332043886185,0.3441495895385742,-0.1085335910320282,0.25549179315567017,0.029983796179294586,-0.43563222885131836,-0.48739564418792725,-0.1160651445388794,0.341810941696167,-0.3244064748287201,0.12943845987319946,0.23253606259822845,0.2327745258808136,-0.0494004562497139,-0.050501786172389984,0.6118530631065369,-0.7014105916023254,0.23683702945709229,0.36900562047958374,0.44437557458877563,0.4024351239204407,-0.0284754429012537,0.24174265563488007,-0.14439406991004944,0.20770099759101868,-0.24802710115909576,0.14853231608867645,0.49334514141082764,0.1579180210828781,0.37254148721694946,-0.21938207745552063,0.3630397617816925,0.6069999933242798,0.20923037827014923,0.4564077854156494,-0.25715622305870056,0.42043057084083557,0.33019575476646423,0.019068673253059387,-0.34110793471336365,-0.2702311873435974,0.25670725107192993,0.1925707906484604,0.2744157314300537,0.3548060357570648,0.2115071564912796,0.20150959491729736,0.588138997554779,-0.36220359802246094,-0.05041521042585373,0.43139564990997314,0.29138579964637756,0.5468390583992004,0.07338576018810272,0.08704078197479248,-0.06871063262224197,-0.14723369479179382,0.34287625551223755,0.2535344958305359,0.4123522639274597,0.4345777630805969,0.1758583039045334,-0.1396014541387558,0.2698383331298828,0.7317206263542175,0.16319403052330017,0.5133015513420105,-0.07709343731403351,0.7047479152679443,0.29877474904060364,0.4426906108856201,-0.12152785062789917,0.0032209709752351046,0.4515373408794403,-0.06027630716562271,0.04198873043060303,0.1578114926815033,0.12302745878696442,0.11015693843364716,0.16323962807655334,-0.12136778235435486,-0.40986353158950806,0.21688377857208252,-0.0628213882446289,0.5345568060874939,0.02497105486690998,-0.10151730477809906,0.21622857451438904,0.09057016670703888,-0.11750686913728714,0.6034079790115356,0.6177751421928406,0.09349635243415833,0.031046992167830467,-0.11993032693862915,0.487528532743454,0.6062391400337219,0.28616538643836975,0.21575669944286346,-0.14892695844173431,0.26927700638771057,0.10091836005449295,0.025573503226041794,0.01907465234398842,0.4153657555580139,0.1249530166387558,-0.027324989438056946,-0.9059401154518127,-0.04404405876994133,-0.4966711401939392,-0.393124520778656,0.48427796363830566,0.07274303585290909,-0.09814983606338501,0.6461637616157532,0.06508130580186844,0.515862226486206,-0.3036959171295166,0.13811418414115906,0.1350860297679901,-0.10215815901756287,0.1261807233095169,0.5953551530838013,0.5991374850273132,0.5279098153114319,0.5247871279716492,0.07009682059288025,0.39577147364616394,0.33002451062202454,-0.3377613425254822,0.4272445738315582,-0.3483111560344696,0.7053660750389099,0.07624951750040054,0.47540199756622314,0.13618560135364532,0.05137823894619942,0.5735596418380737,0.41036927700042725,-0.03676215559244156,-0.0577869676053524,-0.23855693638324738,-0.4809473752975464,0.4619496762752533,0.022013520821928978,-0.16719764471054077,0.09196747839450836,0.24584361910820007,0.48489314317703247,-0.23685726523399353,0.05253482609987259,-0.12426566332578659,-0.019907765090465546,-0.10786836594343185,-0.07862547039985657,0.3595869243144989,0.42254912853240967,0.29768863320350647,-0.01647205464541912,0.364473432302475,0.1959799975156784,-0.02102339081466198,0.3859500586986542,0.20173382759094238,0.15754923224449158,0.4584873616695404,0.37403473258018494,-0.21220870316028595,0.138869509100914,0.08508921414613724,0.08722520619630814,-0.027978532016277313,-0.2005467712879181,0.2214307337999344,0.15373411774635315,-0.6329215168952942,0.4613482356071472,-0.06168767809867859,-1.0250506401062012,0.39180484414100647,-0.7116065621376038,0.2332925945520401,0.6331620812416077,-0.24085959792137146,-0.07850594818592072,-0.38398340344429016,-0.584063708782196,-0.6363716125488281,-0.30592986941337585,-0.9729511141777039,0.1726282238960266,-0.8809208273887634,-0.31403249502182007,0.47692447900772095,-0.4990672171115875,-0.202901229262352,-0.8839257955551147,-0.6462914943695068,-0.41491761803627014,0.022371426224708557,0.7314848899841309,-0.49854835867881775,0.06456346064805984,0.2049354910850525,-0.16261683404445648,-0.2789875268936157,-0.20950810611248016,-0.7417841553688049,0.06783297657966614,0.24267417192459106,-0.8147289156913757,0.10297726094722748,-0.2809585928916931,-0.30877432227134705,0.10607331991195679,-0.10209701210260391,-0.22787907719612122,0.3121841251850128,-1.0332422256469727,-1.111707329750061,-0.46065202355384827,-0.35450220108032227,0.076799176633358,-0.5512357354164124,-0.49126219749450684,0.28162434697151184,0.04517986997961998,0.005167174153029919,-0.38165441155433655,-0.18681170046329498,-0.11774158477783203,-0.06901606917381287,-0.2900366187095642,-0.10368631780147552,0.09088757634162903,0.20436330139636993,0.3343349099159241,0.4271855652332306,0.1335718035697937,0.567426323890686,-0.22041864693164825,-0.3054196536540985,0.5402210354804993,0.027449095621705055,0.38437673449516296,0.23019108176231384,0.041680533438920975,-0.14603488147258759,-0.2869158387184143,-0.3054438531398773,0.1496402472257614,0.4714128375053406,0.4065607488155365,0.2546883225440979,-0.07769595831632614,0.19700080156326294,0.3560514748096466,-0.182138592004776,0.4715184271335602,0.015463999472558498,0.691726565361023,-0.036752257496118546,0.2283073365688324,0.12430336326360703,0.1861005425453186,0.07902759313583374,0.03901614621281624,-0.024694204330444336,-0.4761727750301361,-0.5199108719825745,0.09838783740997314,0.30170154571533203,-0.3268182575702667,0.10832498967647552,0.8302351832389832,0.27577143907546997,0.9141344428062439,-0.23744431138038635,-0.525421679019928,-0.3279975652694702,-0.28456830978393555,-0.36893653869628906,0.619880735874176,0.43603843450546265,0.621205747127533,0.21694165468215942,0.17546765506267548,0.9214721322059631,0.4975164830684662,-0.05079798400402069,0.7134057283401489,-0.22165969014167786,0.3596635162830353,0.37495481967926025,0.5314813852310181,-0.15396852791309357,-0.1423824578523636,0.5886533260345459,0.06745398044586182,0.1256462037563324,-0.37141308188438416,-0.9011577367782593,0.4464769959449768,-0.8922994136810303,0.2689782977104187,-0.44557279348373413,-0.8269999027252197,0.35284534096717834,-0.44252026081085205,-0.14142844080924988,0.288888156414032,-0.06322857737541199,0.26385992765426636,-0.2991170287132263,-0.48712214827537537,-0.8822751641273499,-0.7634339332580566,-0.8837873339653015,0.36771878600120544,-0.6735153794288635,-0.7336536049842834,0.3402481973171234,-0.498862624168396,-0.08900202065706253,-0.7110536694526672,-0.13960625231266022,-0.3554868996143341,-0.0646439716219902,0.5216610431671143,-0.3667125403881073,0.3190862536430359,-0.21441000699996948,0.2935744524002075,-0.12434796988964081,-0.0804770439863205,-0.33907368779182434,0.09281176328659058,0.1484636813402176,-0.6977217793464661,0.23868918418884277,0.06984173506498337,0.2542652487754822,0.3543025255203247,0.1541418582201004,0.023710377514362335,0.4121660590171814,-0.7259629368782043,-0.7395834922790527,-0.36899715662002563,0.2422347217798233,0.12466688454151154,-0.6403236389160156,-0.3120521605014801,0.29091987013816833,0.13034847378730774,-0.2523118555545807,-0.1954561024904251,-0.42616569995880127,-0.08486729860305786,-0.1795024573802948,-0.2591260075569153,-0.32016831636428833,0.2848062813282013,-0.27421101927757263,0.3708437979221344,0.13335247337818146,0.06350444257259369,0.6917885541915894,0.0773170217871666,0.37869521975517273,0.7812705636024475,-0.11291863769292831,0.8091896772384644,-0.1601938009262085,0.2857339680194855,0.2687220871448517,-0.13437949120998383,0.10661023110151291,0.4229552149772644,0.645408034324646,0.3561367094516754,0.501634955406189,0.24562965333461761,0.7511323690414429,0.9283548593521118,0.6611213684082031,0.7283958196640015,-0.073356993496418,0.5351126194000244,0.11102932691574097,0.2823896110057831,-0.19688750803470612,-0.09988193958997726,0.6605818867683411,0.20447230339050293,0.30848169326782227,0.23941653966903687,0.24066491425037384,0.05379903316497803,0.37771543860435486,-0.6011529564857483,0.24009470641613007,0.47067850828170776,-0.01712295413017273,0.28067541122436523,-0.19321316480636597,-0.4105570316314697,-0.2229621261358261,-0.09091433882713318,-0.012463296763598919,0.4930276572704315,0.26392191648483276,0.5055370926856995,0.15978354215621948,-0.2234368622303009,0.39674654603004456,0.08320251107215881,0.10144412517547607,0.24133142828941345,-0.28549373149871826,0.4509454071521759,0.27210506796836853,0.3851502239704132,-0.11035281419754028,0.01658509485423565,0.40161994099617004,-0.3459273874759674,0.43431970477104187,0.18375323712825775,-0.14313644170761108,-0.13765491545200348,0.0687926709651947,0.05781784653663635,-0.3080199658870697,0.30675336718559265,-0.25468000769615173,0.3081023097038269,0.019588341936469078,0.19252778589725494,-0.309407502412796,-0.23140422999858856,-0.18997053802013397,0.028286583721637726,0.28107598423957825,0.41759052872657776,0.12225275486707687,-0.1430654376745224,0.3364476263523102,0.49701082706451416,-0.29038694500923157,0.277786523103714,-0.2973843216896057,0.07520610094070435,0.23115397989749908,0.12580880522727966,-0.3742541968822479,-0.13806958496570587,0.18651700019836426,0.07769220322370529,0.13587328791618347,-0.09595417231321335,0.1353696584701538,-0.08432682603597641,-0.12421935796737671,0.42328348755836487,-0.12980888783931732,-0.8384390473365784,0.2904517352581024,-0.39357349276542664,-0.11674364656209946,0.3952411115169525,-0.1585177481174469,0.02619621530175209,0.2864418625831604,-0.4193333387374878,-0.8817586898803711,-0.5451205372810364,0.08153398334980011,-0.4222545027732849,-0.8156814575195312,0.03960496932268143,-0.010039607994258404,0.07723239809274673,-0.14038904011249542,-0.05512559786438942,-0.5220202803611755,-0.36944785714149475,-0.07809332013130188,-0.37692153453826904,0.11058961600065231,0.10970830917358398,0.0019324194872751832,0.11315880715847015,0.4314728379249573,-0.16093787550926208,0.04421573132276535,-0.2506987750530243,-0.24807600677013397,0.4196627736091614,-0.31708288192749023,0.17109782993793488,-0.3031483590602875,0.34764331579208374,-0.09072277694940567,-0.2922012209892273,-0.04454406723380089,-0.06755463778972626,0.30826056003570557,0.26954713463783264,-0.01878553442656994,0.11901074647903442,0.06783626973628998,0.23217609524726868,-0.07201500982046127,0.3721086084842682,-0.2679668068885803,0.455257773399353,-0.007989035919308662,0.1738700419664383,0.007293412461876869,0.14717601239681244,0.35122331976890564,0.45349740982055664,0.24124836921691895,-0.030396446585655212,0.06315106898546219]},{"shape":[32],"values":[0.019271131604909897,0.4104127883911133,0.02622680738568306,0.0011559048434719443,0.4237101376056671,-0.09633620828390121,0.570117712020874,-0.01720014587044716,-0.05412210896611214,-0.04635334759950638,-0.012155622243881226,-0.14906595647335052,0.43597686290740967,0.4293111562728882,0.38311663269996643,0.25119078159332275,-0.02356364019215107,0.4454609453678131,0.5031379461288452,-0.08936206251382828,0.4436416029930115,-0.07532311230897903,0.5726122260093689,0.33210742473602295,0.34600111842155457,-0.14032047986984253,-0.12470526993274689,0.37337836623191833,-0.1064031794667244,0.028165195137262344,-0.0902092382311821,-0.11938062310218811]},{"shape":[32,9],"values":[-0.32106897234916687,-0.4197327792644501,-0.5069965124130249,0.16596034169197083,0.1973934769630432,0.13118970394134521,-0.36992260813713074,0.12730418145656586,0.20467136800289154,0.463385671377182,0.24876883625984192,0.7650949954986572,0.7440157532691956,0.5622563362121582,0.5441957116127014,0.31648677587509155,0.7445077300071716,0.7528196573257446,0.14140839874744415,0.2474300116300583,-0.22512507438659668,0.4098096191883087,0.16946344077587128,-0.44242748618125916,-0.1605624407529831,0.19768784940242767,-0.4172961413860321,-0.03176962584257126,0.4274369776248932,0.26728296279907227,0.42891925573349,0.06058904901146889,-0.0930781289935112,0.614281952381134,-0.34612008929252625,0.13908371329307556,0.47076350450515747,0.8235107064247131,1.032552719116211,0.6349216103553772,0.8762211203575134,0.7414402961730957,0.855457067489624,0.4463772475719452,0.6104446053504944,0.23514239490032196,0.1203489601612091,-0.13770735263824463,-0.15158292651176453,0.07650906592607498,0.07281229645013809,-0.24582721292972565,-0.26358434557914734,-0.46377548575401306,0.6890944838523865,0.550625741481781,0.5115987062454224,0.6627858877182007,0.6043897271156311,0.22203683853149414,0.6849880218505859,0.3576561212539673,0.28769057989120483,-0.26548126339912415,-0.2452162504196167,0.06693582236766815,-0.12350333482027054,-0.22125142812728882,-0.14973360300064087,-0.2612665891647339,0.06947329640388489,0.2676134705543518,-0.25985240936279297,-0.24267609417438507,0.28196579217910767,-0.33589011430740356,-0.2106800377368927,-0.11114142835140228,-0.1848575919866562,-0.2634828984737396,-0.30425211787223816,-0.13995133340358734,-0.2808918356895447,-0.1574021577835083,0.0890192911028862,0.022937363013625145,-0.18024738132953644,0.17185930907726288,0.0684349462389946,-0.26464134454727173,-0.08234100043773651,-0.23082929849624634,0.2587411403656006,-0.07263109087944031,-0.19488248229026794,-0.1834065169095993,0.19054722785949707,-0.06671754270792007,-0.0016255564987659454,-0.5676169395446777,-0.3146404027938843,-0.13902178406715393,-0.20558439195156097,-0.42093050479888916,-0.25711965560913086,0.10782033950090408,-0.19821995496749878,0.0599650964140892,0.49469977617263794,0.6292964816093445,0.8474991917610168,0.4775743782520294,0.5324932932853699,0.2085455358028412,0.8197850584983826,0.7527636885643005,0.6144874691963196,1.1419872045516968,0.6743160486221313,0.6967713236808777,0.5467802286148071,0.944679319858551,1.0072286128997803,0.6356636881828308,0.6412432193756104,0.693224310874939,0.1156267449259758,0.17296208441257477,0.4925449788570404,0.6996002197265625,0.5956257581710815,0.563887357711792,0.6007048487663269,0.4484584629535675,0.1347196400165558,0.6915704607963562,0.17292384803295135,0.36643660068511963,0.3445596396923065,0.20066645741462708,0.2609681487083435,0.03594621643424034,0.2021496295928955,0.6185039281845093,-0.28594711422920227,-0.33576786518096924,-0.11908343434333801,0.15335766971111298,0.04313630238175392,-0.07222012430429459,0.03006766177713871,-0.19321124255657196,0.4660537838935852,0.8267480731010437,0.6202819347381592,0.2686591148376465,0.5567581653594971,0.36280664801597595,0.711052417755127,0.5708490610122681,0.9225108623504639,0.6200404167175293,0.4152128994464874,0.3818240761756897,0.40341711044311523,0.6503140330314636,0.17434222996234894,0.7748916149139404,0.7694892287254333,0.45743468403816223,0.6751084327697754,-0.48379963636398315,-0.48061761260032654,-0.4820697605609894,-0.260051965713501,-0.22910143435001373,-0.11833693087100983,0.10404959321022034,0.054099079221487045,-0.3817339241504669,0.5259004831314087,0.4041617512702942,0.22201141715049744,-0.18217264115810394,0.3784494698047638,0.28052452206611633,0.4568345844745636,0.25640153884887695,0.2734990417957306,-0.3302309811115265,-0.04547278583049774,0.08311700075864792,-0.15315736830234528,-0.11027666181325912,-0.12494860589504242,0.246352419257164,-0.24487735331058502,0.08215074986219406,0.42392978072166443,0.6937727332115173,0.4683375060558319,0.6317211389541626,0.6196507811546326,0.4123440086841583,0.27181175351142883,0.7186881899833679,0.8256571292877197,0.06980499625205994,0.13975857198238373,0.1310529112815857,0.6145870089530945,0.29215186834335327,0.06583213806152344,0.4338065981864929,0.3936055600643158,0.4394451677799225,0.16589567065238953,0.6268143653869629,0.12265235185623169,0.560817301273346,0.18509872257709503,0.42120882868766785,0.06675796210765839,0.4930449426174164,0.6274064779281616,-0.22383233904838562,0.19974040985107422,-0.2804706394672394,-0.235272616147995,0.36704379320144653,-0.1235402524471283,-0.18829751014709473,-0.1801561564207077,0.31881794333457947,-0.18973304331302643,-0.5070573091506958,-0.17775648832321167,-0.1786840707063675,-0.47338712215423584,-0.2549566626548767,-0.43193256855010986,-0.6360205411911011,-0.1756603866815567,0.17212344706058502,0.33859482407569885,0.20883944630622864,-0.004708822350949049,0.6885818243026733,0.7173486948013306,0.5384537577629089,0.5243245959281921,0.12137315422296524,-0.6102820038795471,-0.03931672126054764,0.32832857966423035,-0.46102744340896606,-0.10745645314455032,0.16529667377471924,-0.4612719416618347,-0.17082157731056213,0.2607451379299164,0.6756904125213623,0.24558605253696442,0.21635550260543823,0.1815584897994995,0.00789742823690176,-0.19448663294315338,0.00994886551052332,-0.23068635165691376,-0.20171146094799042,-0.22293472290039062,-0.34190037846565247,0.07796395570039749,0.1709924042224884,-0.31029707193374634,-0.18410493433475494,-0.15027621388435364,-0.4193894565105438,0.12419415265321732,0.010548035614192486,-0.5053033828735352,-0.30825841426849365,-0.35053926706314087,-0.1976493000984192,-0.3119131326675415,-0.2821209132671356,-0.18469354510307312,-0.6274880766868591]},{"shape":[9],"values":[0.3421614170074463,0.25992652773857117,0.28474709391593933,0.20301032066345215,0.18709342181682587,0.14846116304397583,0.22186648845672607,0.413353830575943,0.2278415858745575]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-11.json new file mode 100644 index 0000000..e0060b3 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:22:38.710Z","weights":[{"shape":[20,32],"values":[-0.23443971574306488,-0.5353924036026001,-0.09395778924226761,1.1637780666351318,-0.4584478735923767,1.1695512533187866,1.301221489906311,-0.5937450528144836,0.14206141233444214,1.6678234338760376,0.7850721478462219,-0.36431750655174255,-0.2699926495552063,0.7102009057998657,0.757079005241394,0.949061930179596,-0.3389201760292053,0.47604992985725403,1.2960659265518188,1.0852030515670776,1.4685415029525757,1.3146988153457642,1.2645072937011719,-0.4024706482887268,0.9904674291610718,1.2180681228637695,0.4431515336036682,-0.10092943161725998,1.3598593473434448,-0.2634938955307007,1.3030325174331665,0.17907419800758362,0.11113069951534271,-0.11551539599895477,0.13584524393081665,0.09059478342533112,0.2922099530696869,0.07857422530651093,0.322965145111084,0.11750572174787521,-0.16851875185966492,-0.25375261902809143,0.059548258781433105,-0.004055285360664129,-0.07637739181518555,0.13995981216430664,0.24612250924110413,0.23578767478466034,0.13904745876789093,0.28843221068382263,-0.11072418838739395,0.006202200893312693,-0.05561192333698273,0.159848153591156,-0.10313048213720322,-0.376482754945755,0.12492779642343521,0.0176831241697073,-0.3437974154949188,0.4644553065299988,-0.2723095715045929,0.3829698860645294,0.1979576200246811,0.41158655285835266,0.7052797675132751,-0.4340139627456665,0.5202319622039795,-0.22505655884742737,0.5487766861915588,0.12645460665225983,-0.10337013751268387,-0.5345702171325684,-0.5697848796844482,0.2544185519218445,-0.07469528913497925,-1.0234328508377075,-0.5504044890403748,0.281979501247406,-0.0908079519867897,-0.13799408078193665,0.29095742106437683,-0.32849323749542236,0.13370010256767273,0.021960124373435974,-0.29932910203933716,0.059764936566352844,-0.14167988300323486,-0.23321788012981415,-0.391202837228775,0.24157766997814178,0.011708376929163933,0.27378273010253906,-0.14478863775730133,-0.5346106290817261,-0.019837159663438797,-0.25057339668273926,-0.9991680979728699,1.6525776386260986,-1.2209663391113281,-0.09869308024644852,-0.5802309513092041,-0.03419368341565132,-0.14739198982715607,1.1282973289489746,1.2099875211715698,0.294769823551178,-0.09014913439750671,1.0149165391921997,1.1313135623931885,-0.05022783577442169,0.2952415347099304,0.09449025988578796,-0.9552858471870422,-0.7357794046401978,0.06798307597637177,-0.12552912533283234,-0.19588099420070648,0.14838676154613495,0.19343802332878113,0.5197965502738953,0.10083445906639099,-0.3275231420993805,0.04838547855615616,-0.6254978179931641,0.31395378708839417,-0.019573330879211426,0.22189100086688995,-0.48048028349876404,-0.20011892914772034,-0.12010562419891357,-0.10688027739524841,-0.24543966352939606,-0.3355002999305725,-0.4888920783996582,0.06431788206100464,0.2637035846710205,0.47070395946502686,0.06408262252807617,-0.162489652633667,-0.09684129804372787,0.0421532467007637,0.22711211442947388,-0.37909454107284546,-0.19293421506881714,0.16302891075611115,-0.16255196928977966,0.22937864065170288,0.158155620098114,-0.22959847748279572,0.20395000278949738,-0.3407764434814453,0.25329068303108215,-0.6078063249588013,0.3201342523097992,0.31936749815940857,-0.28399354219436646,0.12131398916244507,0.35521063208580017,-0.5459080338478088,0.022822119295597076,-0.22835223376750946,0.021222930401563644,-0.038947708904743195,-0.020731406286358833,-0.3774805963039398,0.027176950126886368,-0.281348317861557,0.39580798149108887,0.41521403193473816,0.3154725432395935,0.10260028392076492,0.17307300865650177,0.163791686296463,-0.19881775975227356,0.15868434309959412,0.13675175607204437,-0.0672137662768364,0.22155630588531494,0.5643850564956665,-0.0003774390206672251,0.009341944940388203,-0.09273616969585419,-0.10450424253940582,0.5856093168258667,-0.1566118448972702,0.5916911959648132,-0.15339395403862,-0.5829037427902222,0.4039935767650604,-0.10026511549949646,-0.44725993275642395,-0.022203175351023674,0.289174884557724,0.5847201943397522,0.06989556550979614,0.19495120644569397,-0.11401601135730743,-0.4212367534637451,-0.34650686383247375,0.4120261073112488,0.10042545944452286,-0.02155638113617897,-0.3166956603527069,-0.08430410921573639,0.4446585178375244,-0.0956747904419899,-0.4782050549983978,-0.04957913979887962,-0.46928662061691284,-0.044977061450481415,0.2499193698167801,0.3127087354660034,0.11346897482872009,0.11288649588823318,0.004053770564496517,0.1678582727909088,-0.21289236843585968,-0.032174251973629,-0.1449611485004425,0.04811638221144676,0.11228173971176147,0.5056447386741638,-0.5015807151794434,-0.46982020139694214,0.06507193297147751,0.03208516165614128,0.04400622099637985,-0.2073584645986557,0.12975773215293884,0.010125812143087387,0.16989947855472565,0.033334776759147644,-0.14674606919288635,0.452280193567276,-0.2131231129169464,0.30787888169288635,-0.11360543221235275,0.33754804730415344,-0.19970345497131348,0.07432455569505692,-0.6133854389190674,-0.06362435221672058,-0.0068387435749173164,0.36919671297073364,0.17693524062633514,-0.09989245235919952,0.5041226148605347,0.17011365294456482,-0.4796786606311798,0.22997355461120605,0.10605752468109131,-0.3013121485710144,0.00968028325587511,-0.00787716917693615,0.14746727049350739,-0.45131322741508484,-0.10399720072746277,-0.0566038079559803,-0.1168198436498642,-0.1976311355829239,0.08984443545341492,0.00995440874248743,-0.035116955637931824,-0.042778752744197845,0.3944869637489319,0.27329376339912415,0.3275010287761688,0.12514559924602509,0.0640101432800293,0.1273694932460785,-0.022044040262699127,-0.0009538311860524118,-0.11173564940690994,0.287509024143219,0.14311914145946503,-0.13948139548301697,-0.29747503995895386,0.2807038128376007,-0.01350232120603323,0.025313686579465866,-0.27561306953430176,-0.09095171093940735,0.06409221142530441,-0.2840074598789215,0.19103337824344635,0.17521518468856812,0.4199152886867523,-0.18272994458675385,-0.11833800375461578,-0.15025968849658966,-0.28259116411209106,-0.5830762982368469,-0.3374156355857849,0.10488113015890121,0.5641070008277893,-0.3310094475746155,-0.07565195113420486,0.25208383798599243,0.36647269129753113,-0.1297626793384552,0.10144183784723282,-0.012604711577296257,0.3464494049549103,-0.04070142284035683,0.19535237550735474,0.11522907018661499,-0.01635036990046501,0.028770336881279945,-0.05710294097661972,-0.05114319175481796,0.44360601902008057,-0.14614734053611755,0.08204039186239243,0.043713197112083435,0.4122202694416046,0.06678417325019836,0.29533401131629944,0.09264630824327469,0.07017110288143158,-0.3166981637477875,-0.15045739710330963,-0.0009409617632627487,-0.2662503719329834,0.293022096157074,0.047097042202949524,0.10763593763113022,0.4992777109146118,-0.09325375407934189,-0.47214144468307495,0.035651762038469315,0.5109767317771912,-0.14357894659042358,0.2070968896150589,0.20588256418704987,0.2247064858675003,0.07503914833068848,0.3210635185241699,0.15199734270572662,0.2371702939271927,0.17508918046951294,0.5432347059249878,0.3050878643989563,0.08515529334545135,-0.03984004631638527,-0.06226629391312599,0.14045587182044983,0.2600845992565155,0.043884243816137314,0.5733421444892883,-0.03388553857803345,0.1272081583738327,-0.4116443693637848,0.24760226905345917,0.028574461117386818,0.09224883466959,-0.34241944551467896,0.22799907624721527,-0.11234905570745468,-0.13957659900188446,0.18686656653881073,0.08898422867059708,-0.05153066664934158,-0.2603085935115814,-0.012684416957199574,-0.09222870320081711,-0.044822048395872116,-0.04246456176042557,0.13320228457450867,-0.06984735280275345,-0.23972801864147186,0.013706764206290245,0.1984759420156479,0.0754779800772667,0.2601209878921509,-0.4246986508369446,0.2099713236093521,-0.2725604772567749,0.20372116565704346,-0.22354310750961304,0.4261327385902405,-0.10114267468452454,-0.09515176713466644,-0.17489975690841675,-0.03812854737043381,0.1757301539182663,0.1181650459766388,0.0861869752407074,-0.40476325154304504,-0.0946023166179657,-0.23790901899337769,0.28629982471466064,0.3129771053791046,0.06852764636278152,0.1692553460597992,0.14688238501548767,0.009051273576915264,-0.21299812197685242,-0.2594313323497772,-0.32323822379112244,-0.36835774779319763,-0.43762046098709106,-0.13612908124923706,0.13894431293010712,-0.05754447355866432,0.08416672796010971,0.21440301835536957,0.21124008297920227,0.30414754152297974,0.3026081919670105,0.06233241409063339,0.22930128872394562,0.06366405636072159,-0.37629228830337524,0.1584244966506958,0.14037993550300598,-0.054534390568733215,0.11145635694265366,0.27246248722076416,0.24083609879016876,-0.2832184135913849,0.1397891342639923,0.37938961386680603,0.03527436777949333,-0.11639261990785599,-0.02003435231745243,-0.008803213946521282,-0.2599940896034241,0.15614010393619537,0.3059963881969452,0.2957596182823181,0.3949299156665802,0.11468258500099182,0.2572523355484009,0.12748795747756958,-0.21175311505794525,0.10224977880716324,0.060142356902360916,0.07558337599039078,0.08053156733512878,-0.017866604030132294,-0.03376666083931923,-0.11673923581838608,0.2770158350467682,-0.17639963328838348,0.33147528767585754,0.2523571848869324,0.25923582911491394,-0.2535804808139801,-0.2529609799385071,-0.2538624107837677,-0.10280410945415497,0.32950055599212646,-0.18010200560092926,-0.20412947237491608,-0.1306222677230835,-0.18177436292171478,0.19782303273677826,-0.04037202522158623,0.2712610065937042,-0.10777536779642105,-0.24006912112236023,0.2927556037902832,0.3330731689929962,0.3247860372066498,0.4022206962108612,-0.13612104952335358,0.16495157778263092,0.2317323088645935,-0.04110484570264816,-0.03686869144439697,-0.07305023819208145,0.10949554294347763,0.07727713137865067,0.12546642124652863,0.12322772294282913,0.14883936941623688,0.007171730510890484,0.02900695614516735,0.016236161813139915,-0.3245393633842468,-0.21879562735557556,-0.0769149586558342,0.26309776306152344,-0.17122061550617218,0.06714759767055511,-0.021114181727170944,0.1686236709356308,-0.23498912155628204,0.07752715796232224,-0.12955498695373535,-0.3717630207538605,0.13874603807926178,-0.24363751709461212,-0.06391744315624237,0.18692688643932343,0.11131656169891357,-0.048547763377428055,0.19907961785793304,-0.06371963024139404,-0.22710271179676056,0.015071691945195198,0.11188377439975739,-0.07942613214254379,0.28744444251060486,-0.0055426848120987415,0.063262939453125,0.09304580092430115,0.04748667776584625,-0.11618106067180634,-0.031424954533576965,0.23580396175384521,0.46849507093429565,0.1873174011707306,0.2554464638233185,0.37771257758140564,-0.21120132505893707,0.08088196814060211,0.19370900094509125,-0.29864346981048584,0.38189688324928284,-0.2679714560508728,-0.2372896373271942,0.42263293266296387,0.10843247920274734,0.05285332351922989,0.10491340607404709,0.3339097499847412,0.21333682537078857,-0.21589750051498413,0.07472053170204163,0.08358471840620041,0.09618905931711197,-0.13505291938781738,-0.21822886168956757,-0.13912120461463928,-0.2700525224208832,0.13531917333602905,0.17509113252162933,-0.33097583055496216,-0.2524758279323578,0.05150112509727478,-0.30797940492630005,-0.16387581825256348,0.3251506984233856,0.26370203495025635,-0.22219452261924744,-0.1990068405866623,-0.04618510231375694,0.21184390783309937,0.4100421071052551,0.49043917655944824,0.18750643730163574,0.2091585248708725,0.08732572942972183,0.0006435948889702559,-0.2893162965774536,0.1428607702255249,0.14720004796981812,0.08855811506509781,0.1861584633588791,0.47138795256614685,-0.2303180992603302,0.23792733252048492,0.08425699919462204,-0.05421837791800499,-0.06664635241031647,-0.0421178936958313,0.14242348074913025,0.37000077962875366,-0.0018329040613025427,0.27596455812454224,-0.39001840353012085,0.2942471206188202,-0.4298643469810486,-0.10916920751333237,-0.053099021315574646,-0.2702477276325226,-0.062250785529613495,0.1564449965953827,0.04267800226807594,0.21298883855342865,-0.224860280752182,-0.1949111819267273,-0.3532123863697052,-0.017599409446120262,-0.1469210535287857,0.17456483840942383,-0.2645389437675476,-0.3346279263496399,-0.27708742022514343,0.04796155169606209,0.004696694668382406,0.3529582619667053,0.09187953174114227,-0.348213791847229,0.13051192462444305,0.06951162964105606,-0.10646233707666397,0.04637019336223602,0.0916089192032814,-0.26941677927970886,0.041004616767168045,-0.389120876789093,-0.15375030040740967,-0.06729331612586975,-0.11501819640398026,-0.23566748201847076,0.38159850239753723,0.18085220456123352,0.17704984545707703,0.22939379513263702,0.06481824815273285,0.43240588903427124,-0.23633496463298798,0.020350251346826553,-0.040991928428411484,0.06534042209386826,-0.14655523002147675,-0.16223007440567017,-0.2657281756401062,-0.16270655393600464,-0.047720883041620255,0.10967934131622314,-0.2085789442062378,0.059138331562280655,-0.0727340430021286,-0.2015206217765808,0.13467688858509064,-0.17387597262859344,-0.30019432306289673,0.1841180920600891,0.08516817539930344,0.005913454573601484,0.0014611441874876618,-0.1299636960029602,0.21674062311649323,0.165678009390831,0.022199299186468124,0.2317904531955719,0.12335416674613953]},{"shape":[32],"values":[-0.1666194051504135,-0.09302368015050888,-0.04890438914299011,0.6114428043365479,0.03536422550678253,0.5819944143295288,0.5338194370269775,-0.29175588488578796,-0.24164405465126038,0.6738913059234619,0.6314191222190857,-0.3803749978542328,-0.3062976002693176,0.44327548146247864,0.34942060708999634,0.5791617631912231,-0.3465922772884369,-0.20431864261627197,0.6565658450126648,0.5489485263824463,0.636732816696167,0.576507031917572,0.640313446521759,-0.26797351241111755,0.5527504086494446,0.46945732831954956,0.4138689339160919,-0.09084115922451019,0.5582842826843262,-0.15501199662685394,0.5229526162147522,-0.15634600818157196]},{"shape":[32,32],"values":[0.15174107253551483,0.45137906074523926,0.01118484791368246,-0.18993116915225983,0.15544448792934418,0.040557410567998886,0.033001434057950974,0.3964805006980896,-0.07710231840610504,0.2720127999782562,-0.42510586977005005,0.5271115899085999,-0.4086160957813263,-0.02101173996925354,-0.2865521013736725,-0.6629656553268433,-0.5321101546287537,-0.4543464779853821,-0.025494331493973732,-0.3475528061389923,-0.5778170824050903,-0.32426488399505615,-0.15357336401939392,0.07717824727296829,0.38306522369384766,-0.13721488416194916,-0.1294029802083969,-0.4845771789550781,0.24385735392570496,0.3077314496040344,0.25216737389564514,0.11670319736003876,-0.11816477030515671,0.5639623403549194,-0.7960618138313293,-0.7157716751098633,-0.15535488724708557,-0.14123119413852692,-0.18594081699848175,-0.2883058190345764,-0.6798354387283325,0.21373268961906433,-0.49395042657852173,0.17764632403850555,-0.6733524799346924,-0.5690963268280029,-0.16078738868236542,-0.9297009110450745,-1.6085810661315918,-0.19928784668445587,-0.0026637190021574497,-0.7641539573669434,-0.3800400495529175,-0.23022934794425964,-0.2524918019771576,0.18322917819023132,-0.4037129580974579,0.5074281096458435,0.17957283556461334,-0.6516122817993164,0.22601760923862457,0.3942978084087372,0.30272284150123596,0.043001096695661545,0.42447546124458313,0.25940069556236267,-0.567608118057251,-0.5913938283920288,-0.039955105632543564,0.24761231243610382,-0.22635968029499054,0.3812306225299835,0.04510042443871498,0.033764876425266266,-0.7882211804389954,0.551124095916748,-0.40182235836982727,-0.5274930000305176,-0.49465736746788025,-0.32626956701278687,-0.07600731402635574,-0.651592493057251,-0.2896957993507385,-0.5235031247138977,-0.4414920508861542,-0.47364678978919983,-0.27331915497779846,0.3736116290092468,-0.30351394414901733,-0.3531351089477539,-0.2040739357471466,-0.40414321422576904,-0.4451056122779846,0.5559542179107666,0.17920270562171936,0.05391959100961685,-0.34210479259490967,-0.18544137477874756,0.746174156665802,0.6772925853729248,-0.117342010140419,-0.3314220905303955,0.5999846458435059,0.08466120809316635,0.4729837477207184,-0.06251288950443268,0.23604436218738556,-0.19168461859226227,0.87308669090271,0.13022883236408234,0.526256799697876,0.1988556683063507,0.647630512714386,0.5539268255233765,0.3247930109500885,0.652259111404419,0.4849783778190613,0.4735407531261444,-0.36627817153930664,-0.060302916914224625,-0.03108261339366436,0.07436726242303848,-0.2254626452922821,1.023036003112793,-0.27691173553466797,-0.15238219499588013,0.052539244294166565,-0.008344803936779499,0.3405783772468567,0.4476131200790405,-0.2674913704395294,-0.28727126121520996,-0.08709990978240967,-0.13171438872814178,-0.05524352937936783,0.15332099795341492,0.1166919395327568,-0.13955973088741302,-0.41928669810295105,0.41810640692710876,-0.47556978464126587,0.005754212848842144,-0.7135981917381287,-0.06582596153020859,-0.04314883053302765,-0.5841586589813232,-0.1336764097213745,-0.10184686630964279,-0.6592669486999512,-0.2484409362077713,0.04293907806277275,0.11957554519176483,-0.023852452635765076,0.06863914430141449,0.22086617350578308,-0.26191312074661255,-0.4558730721473694,-0.09455227851867676,0.41971418261528015,-0.01507809478789568,-0.22713202238082886,-0.10015492886304855,0.5155105590820312,0.1858089566230774,-0.3035391867160797,-0.4042956531047821,0.4831191897392273,-0.09413258731365204,0.6973400712013245,0.21935482323169708,0.04749201983213425,0.30990082025527954,0.6031380891799927,0.062482576817274094,-0.0030018764082342386,0.5365574955940247,0.662385880947113,0.11575527489185333,0.3670736849308014,0.24007970094680786,0.235224649310112,0.5820090770721436,0.13095664978027344,0.0332343764603138,0.31146955490112305,-0.24876411259174347,0.167228564620018,0.4126463532447815,0.30221813917160034,0.09562645852565765,0.17438527941703796,-0.0594203844666481,0.08965896815061569,0.21840782463550568,0.5617343187332153,0.5938442945480347,-0.06979284435510635,0.10763805359601974,0.6284918785095215,-0.14236454665660858,0.3761346936225891,-0.2462247908115387,0.5912887454032898,0.12096584588289261,0.6969109773635864,0.1806400865316391,0.07356321066617966,0.4351334273815155,0.7713750600814819,0.6379958391189575,0.5927526354789734,0.5091866850852966,0.311479777097702,0.46027109026908875,-0.3148888349533081,0.08050902932882309,0.32228609919548035,0.21312537789344788,-0.008219733834266663,0.5611492991447449,0.37213942408561707,-0.25616219639778137,0.07267927378416061,0.2094782441854477,-0.12321562319993973,0.5109489560127258,-0.6929994225502014,-0.11987843364477158,0.035666659474372864,0.3692174553871155,-0.14648008346557617,-0.6531185507774353,-0.5310764908790588,0.2685648202896118,-0.2344476580619812,0.23150862753391266,-0.5161733627319336,-0.5032923817634583,0.10477335751056671,-0.5776229500770569,-0.6631168723106384,-0.48716744780540466,-0.32562127709388733,-0.680526614189148,-0.37333497405052185,-0.17639485001564026,0.1397494673728943,0.47800078988075256,-0.11304963380098343,0.39595890045166016,-0.015811113640666008,-0.4301334619522095,-0.0851891040802002,0.3663749098777771,0.13663719594478607,0.10671290755271912,0.23311564326286316,0.25588274002075195,-1.0692275762557983,-0.15563547611236572,0.0686226412653923,0.1300692856311798,-0.42301398515701294,-0.16716794669628143,-1.0230180025100708,0.12361568957567215,-0.05452882871031761,-0.05939364433288574,-0.5616909265518188,-0.9704039096832275,-0.195827454328537,-0.3825952708721161,-0.7122750878334045,-0.2568157911300659,-0.0753733441233635,-0.8108533024787903,-0.6092869639396667,-0.4899103343486786,-0.15275061130523682,0.09798353165388107,0.1838434338569641,0.28913551568984985,0.07147330045700073,-0.6176191568374634,0.19590026140213013,0.3319844603538513,0.4143085777759552,-0.16076594591140747,0.13918472826480865,0.11712668091058731,0.7949861288070679,0.7501134276390076,0.015960117802023888,-0.09293963015079498,0.7960034608840942,0.028374996036291122,0.7648558020591736,0.10766290873289108,0.7244879603385925,0.07720765471458435,0.9725267291069031,0.2815764248371124,0.7578872442245483,0.4225596487522125,0.28245773911476135,1.0315299034118652,0.12672536075115204,0.28977543115615845,0.9087128639221191,0.4936406910419464,-0.2727537453174591,-0.3052655756473541,0.20045185089111328,0.2064126878976822,-0.1313418447971344,1.1028010845184326,0.03913723677396774,-0.02942364290356636,-0.21048015356063843,-0.09051570296287537,-0.5741716027259827,-0.1688549667596817,0.7464695572853088,0.4269171357154846,-0.11971388012170792,0.09535251557826996,0.29804500937461853,0.2309240698814392,0.8403249382972717,0.09309656172990799,0.2802087068557739,-0.136675164103508,0.709383487701416,0.500213086605072,0.20734655857086182,0.4471636116504669,0.7904292345046997,0.19803546369075775,0.32642021775245667,0.380237877368927,0.41468915343284607,0.8125790357589722,0.041878096759319305,0.26081860065460205,0.021795976907014847,-0.5079579949378967,-0.18015606701374054,0.6344503164291382,0.1547282636165619,-0.14338617026805878,-0.1572013795375824,0.1680438369512558,0.13096879422664642,0.5213083624839783,-0.9224673509597778,-0.6944855451583862,-0.3399452269077301,0.312254399061203,-0.08731552958488464,-0.45730870962142944,-0.8828490376472473,-0.11543605476617813,-0.6164759993553162,-0.30731523036956787,-0.5828567743301392,-0.9367306232452393,-0.23538853228092194,-1.0230077505111694,-1.1326508522033691,-0.8147518038749695,-0.24041706323623657,-0.5796143412590027,-0.6276701092720032,-0.5084096789360046,-0.13946962356567383,0.4633133113384247,-0.2858406603336334,0.12540046870708466,-0.12661218643188477,-0.6326080560684204,0.03556910529732704,0.5620864629745483,0.494240403175354,0.10466503351926804,-0.018990352749824524,0.4776163697242737,-0.6542132496833801,-0.42820119857788086,-0.0059530590660870075,0.2904405891895294,-0.36042171716690063,-0.3230956196784973,-0.7775890231132507,-0.16837303340435028,-0.11717337369918823,-0.002424458507448435,-0.17510822415351868,-0.31515416502952576,0.03900216147303581,-0.36797547340393066,-0.6052237749099731,-0.36123883724212646,-0.36631637811660767,-0.2693328857421875,-0.2936266362667084,-0.37924280762672424,0.22600974142551422,-0.1400754153728485,-0.3539794385433197,0.1634337306022644,-0.18051844835281372,-0.5575984716415405,0.4083921015262604,0.3349001109600067,0.5380885601043701,0.08108419179916382,-0.10111161321401596,0.18963536620140076,0.3236755132675171,0.48595303297042847,-0.19132058322429657,0.287957102060318,0.1461685299873352,0.44576460123062134,0.3238195478916168,-0.1402386873960495,0.396885484457016,0.0317201130092144,0.37273845076560974,0.08733244240283966,0.34436869621276855,0.15080907940864563,0.20169037580490112,0.28881141543388367,-0.012673728168010712,0.5223672389984131,0.11985501646995544,-0.027448154985904694,-0.22421979904174805,-0.32904621958732605,-0.044066835194826126,-0.18975405395030975,0.0137128084897995,0.25891080498695374,0.18168297410011292,-0.09591449797153473,0.19361063838005066,-0.046809714287519455,0.20709577202796936,-0.47978678345680237,0.5431698560714722,0.3327917754650116,0.061398833990097046,-0.13168787956237793,0.31046539545059204,0.03410518169403076,0.22707444429397583,0.09541966021060944,0.24775435030460358,-0.3183324933052063,0.2984044551849365,0.2769317626953125,0.055018313229084015,0.25025081634521484,0.30896231532096863,0.5349452495574951,0.6615439057350159,0.28538984060287476,0.6715842485427856,0.5455247759819031,-0.25960466265678406,0.1124437153339386,-0.22473736107349396,-0.2267337292432785,-0.10808811336755753,0.1861785650253296,-0.293104350566864,-0.06013139709830284,0.11449872702360153,0.0844002366065979,0.07163577526807785,-0.08568055182695389,0.16056223213672638,0.41675570607185364,0.17079460620880127,-0.05771776661276817,0.5421978831291199,-0.013469649478793144,0.18475642800331116,0.1886909306049347,0.3678652048110962,0.015191322192549706,0.36093655228614807,0.524929940700531,0.1261560320854187,0.29020577669143677,0.534476101398468,0.3866828382015228,0.5629407167434692,0.4886431396007538,0.7457559704780579,0.22111931443214417,-0.20740510523319244,0.15845340490341187,-0.007515741977840662,-0.1668756604194641,-0.06683944165706635,0.6923423409461975,-0.06825897097587585,0.1162005066871643,-0.013320505619049072,0.054941486567258835,0.17766326665878296,-0.47192251682281494,-0.4260416030883789,-0.24870343506336212,-0.06971001625061035,0.5266324281692505,-0.3314070403575897,0.23468121886253357,-0.5810732245445251,-0.15099972486495972,-0.5974851250648499,0.5775850415229797,-0.5502764582633972,-0.22285911440849304,-0.8678573966026306,-0.8447718620300293,-0.45917776226997375,-1.021449089050293,-0.22194945812225342,-0.4748569130897522,-0.8149803876876831,-0.6151803135871887,-0.07246704399585724,0.2351030856370926,-0.27909886837005615,0.12571702897548676,-0.2779408395290375,-0.2304057478904724,0.41381561756134033,0.4717867076396942,0.703200101852417,-0.26395612955093384,0.19410951435565948,0.24833764135837555,-0.12000224739313126,0.1257752925157547,0.13446781039237976,0.017433004453778267,-0.2334391325712204,-0.08453693240880966,-0.48947036266326904,0.10939238965511322,-0.30687615275382996,-0.043408751487731934,-0.33686310052871704,-0.37000852823257446,0.14108724892139435,0.09854992479085922,-0.03498820215463638,-0.12935805320739746,-0.2927757501602173,-0.20416118204593658,-0.060439884662628174,0.08610561490058899,0.13970309495925903,-0.6677225828170776,-0.09267815947532654,-0.4164048433303833,-0.019157424569129944,-0.11591038852930069,0.11135746538639069,-0.15630267560482025,0.06555070728063583,-0.46193593740463257,-0.39241471886634827,-0.1392192542552948,0.5977047085762024,0.540047824382782,-0.17485713958740234,-0.11559730768203735,0.3128032386302948,-0.39361947774887085,0.3066534698009491,0.11094602197408676,0.38717401027679443,0.028217870742082596,0.47822901606559753,0.0844106450676918,0.5838756561279297,0.30473774671554565,0.3739883005619049,0.6665369272232056,0.0015641478821635246,0.3832246661186218,0.8342361450195312,0.46944308280944824,0.2398320585489273,-0.5086128115653992,-0.07134396582841873,0.2186693400144577,0.07076387107372284,0.383489727973938,0.0192599818110466,0.07874719053506851,-0.2651093602180481,0.16239245235919952,0.28068238496780396,0.16352085769176483,0.5250758528709412,0.18619860708713531,-0.06775295734405518,0.1859656721353531,0.07558508217334747,0.11550803482532501,0.2051718384027481,-0.36630070209503174,0.4621526002883911,0.3317905366420746,0.6725212931632996,0.30074650049209595,0.11730572581291199,0.14298322796821594,0.4346175789833069,0.48699328303337097,0.3205719292163849,0.2730165123939514,0.3050566613674164,0.5788183212280273,-0.2038751244544983,-0.19138391315937042,-0.0884595736861229,-0.17888638377189636,-0.17261524498462677,0.6191668510437012,-0.019915154203772545,-0.30505162477493286,0.009522613137960434,-0.2188469022512436,-0.06013289839029312,0.3100845217704773,0.5225269794464111,0.8788204193115234,-0.23078426718711853,0.029912486672401428,0.5596096515655518,0.09357929974794388,0.2514251470565796,-0.24495671689510345,0.7388601899147034,-0.003495807759463787,0.9954295754432678,0.4871445298194885,0.5778830051422119,0.5244787931442261,0.6543222069740295,0.751286506652832,0.35712310671806335,0.6497287154197693,0.9619598984718323,0.8810567259788513,-0.016125982627272606,-0.006447333376854658,0.0031476160511374474,0.11006554961204529,-0.28222301602363586,0.8281353116035461,-0.02925744280219078,-0.04014342278242111,-0.0449659526348114,-0.10772234946489334,0.2237754911184311,-0.34213292598724365,0.4014635384082794,0.4149312376976013,0.0749535784125328,0.15893934667110443,0.546209990978241,-0.07569541037082672,0.42984476685523987,-0.28582683205604553,0.6386956572532654,-0.38654831051826477,0.6245563626289368,0.40181875228881836,0.11031311005353928,0.4871485233306885,0.7896767258644104,0.3724534511566162,0.4484531581401825,0.41228413581848145,0.370699942111969,0.682371973991394,-0.04077944532036781,-0.26616114377975464,0.14612720906734467,0.0526435486972332,-0.007517776917666197,0.8728261590003967,0.012615075334906578,0.08621054142713547,-0.19959883391857147,-0.26974841952323914,-0.15816636383533478,0.3324350118637085,0.2196694314479828,0.3498344123363495,-0.13746345043182373,0.1865222007036209,0.2895728349685669,-0.09353385120630264,0.2767500579357147,0.041852377355098724,0.25102925300598145,0.18029488623142242,0.2521623373031616,0.2902407646179199,0.41973230242729187,0.4360405206680298,0.5417479872703552,0.5760025382041931,0.10176277160644531,0.4311995804309845,0.5568219423294067,0.7763224840164185,0.08184295892715454,0.16113705933094025,-0.17390231788158417,0.15861207246780396,-0.02032969705760479,0.6626036167144775,-0.030915264040231705,0.23715607821941376,0.24173176288604736,0.04356007277965546,0.40839120745658875,0.20464089512825012,-0.3901417553424835,-0.20874644815921783,-0.008480735123157501,-0.3265364170074463,-0.16313239932060242,0.30094677209854126,-0.11059720814228058,-0.29602503776550293,0.20685480535030365,0.0387587696313858,0.03871723636984825,-0.6235999464988708,-0.17257386445999146,-0.4333970248699188,-0.683386504650116,-0.3857376277446747,0.11069449037313461,-0.38896945118904114,-0.32263538241386414,0.09043543040752411,0.2615831792354584,0.3959495425224304,-0.08366784453392029,0.09079128503799438,0.043988216668367386,0.10903067886829376,-0.0760502815246582,0.1354302614927292,0.39787155389785767,-0.3534523546695709,0.07334133982658386,-0.1480427384376526,0.7144196629524231,0.5572415590286255,-0.021254336461424828,0.04440966621041298,0.9301115870475769,-0.3091534674167633,0.8079223036766052,-0.01401288527995348,-0.047662582248449326,-0.25966876745224,0.7296243906021118,0.10422848165035248,-0.2090023159980774,0.4281117916107178,0.752123236656189,0.35644978284835815,0.7803402543067932,0.8686553239822388,0.4564419090747833,0.4244377911090851,-0.18906566500663757,0.04918504133820534,0.3757006525993347,0.021330969408154488,-0.2480190396308899,0.7698301672935486,-0.0817064717411995,-0.18040764331817627,-0.10263309627771378,-0.3561038076877594,0.14915898442268372,-0.25608155131340027,0.3336959183216095,0.5749847888946533,-0.06394214183092117,0.14756330847740173,0.49333110451698303,-0.02869711071252823,-0.031653810292482376,-0.20777852833271027,0.4174857437610626,-0.16615505516529083,0.6193538308143616,-0.023707538843154907,0.19730138778686523,0.36609795689582825,-0.08493747562170029,0.4059408903121948,0.4174270033836365,0.12142333388328552,0.36349043250083923,0.4350450038909912,-0.057435378432273865,-0.36853286623954773,-0.027936166152358055,-0.3884037733078003,-0.0274300966411829,0.6534339189529419,-0.06733526289463043,0.26908522844314575,-0.00011307137901894748,0.13348226249217987,-0.16091139614582062,-0.13578645884990692,0.2559454143047333,0.7304786443710327,-0.16590680181980133,0.07390310615301132,0.23134100437164307,0.09580574929714203,-0.06160161271691322,0.15990257263183594,0.6158416867256165,-0.07852043211460114,0.29993918538093567,0.5490759611129761,0.22194541990756989,0.23823480308055878,0.5798885226249695,0.37185460329055786,0.27177464962005615,0.4781787395477295,0.6561906337738037,0.400106281042099,0.17608642578125,-0.7684371471405029,0.2138749361038208,-0.18413566052913666,0.10730921477079391,0.08751959353685379,0.4022328853607178,0.19145724177360535,0.1305743306875229,0.2786461412906647,-0.2622639536857605,0.014093341305851936,-0.2762415409088135,-0.28348201513290405,0.17063042521476746,0.14698663353919983,-0.19651861488819122,0.26265546679496765,-0.15148063004016876,0.19433963298797607,-0.6033915877342224,-0.13334430754184723,-0.23880985379219055,-0.05120554938912392,-0.8246113061904907,-0.29687920212745667,-0.4347064197063446,-0.49087125062942505,-0.05220773071050644,-0.271914005279541,-0.6278617978096008,0.018914276733994484,0.0717168003320694,0.44957175850868225,0.38226714730262756,-0.17929573357105255,0.1855437010526657,-0.07941731810569763,-0.42046111822128296,0.22313903272151947,0.3605644404888153,-0.10754842311143875,0.19902925193309784,0.11697614192962646,0.3982783257961273,0.3331359922885895,0.13878262042999268,0.13223235309123993,0.4345606863498688,-0.33449867367744446,0.40863731503486633,0.052169978618621826,0.6300260424613953,-0.17966338992118835,0.44913849234580994,0.36259040236473083,0.5714061260223389,0.2910529375076294,0.5315434336662292,0.5819812417030334,0.4085044860839844,0.2113228142261505,0.614964485168457,0.4633268713951111,-0.22018963098526,-0.2131437212228775,-0.24168404936790466,0.2784545421600342,-0.14210329949855804,0.33999842405319214,0.29940521717071533,-0.05546543747186661,0.027373062446713448,-0.22683650255203247,-0.07865945994853973,0.2836248278617859,0.006424050312489271,0.19340577721595764,0.03341341391205788,-0.03211749345064163,-0.1143643856048584,0.23675021529197693,-0.44616004824638367,0.15584726631641388,0.04544270783662796,-0.5341230630874634,0.18580549955368042,-0.0270250141620636,0.08278081566095352,0.018685689195990562,-0.11298632621765137,0.060091156512498856,-0.37048664689064026,-0.18900544941425323,-0.006842342671006918,-0.11460484564304352,-0.09396069496870041,-0.22509151697158813,-0.06130358204245567,-0.32588526606559753,-0.07826696336269379,0.3652608096599579,0.306208997964859,-0.2776491045951843,0.09304080903530121,-0.13369427621364594,0.37395167350769043,-0.2670631408691406,0.38961562514305115,0.5111339092254639,0.0634741485118866,-0.45508792996406555,0.5839635133743286,0.02857436239719391,0.5814197063446045,-0.17667843401432037,0.08915157616138458,-0.23817738890647888,0.5189600586891174,0.3754774034023285,-0.03263382986187935,0.028137261047959328,0.22326558828353882,0.6129965782165527,0.437635213136673,0.5148558020591736,0.12072443217039108,0.4051683247089386,0.12076520174741745,0.10449168086051941,-0.18084260821342468,-0.06185231730341911,-0.1592591106891632,0.4854505956172943,-0.20878180861473083,0.20345112681388855,0.24382102489471436,0.04996445029973984,0.3017987906932831,-0.6186419129371643,-0.4242551326751709,-0.08607462793588638,-0.26763805747032166,-0.19329863786697388,-0.17049099504947662,0.044229283928871155,-0.3805612325668335,-0.15283483266830444,-0.5056824088096619,0.49245911836624146,-0.3562919497489929,-0.6797602772712708,-0.517274022102356,-0.6556255221366882,-0.22982129454612732,-0.8097899556159973,-0.15034407377243042,-0.06450676918029785,-0.20984864234924316,0.05422647297382355,0.016355929896235466,0.5410299897193909,0.3194902837276459,-0.4055406153202057,0.19773025810718536,-0.1325887143611908,-0.3735664486885071,0.34608322381973267,0.24332472681999207,-0.09051897376775742]},{"shape":[32],"values":[0.051604773849248886,-0.05758526921272278,0.5428028702735901,0.6056166887283325,-0.06454239785671234,-0.18435516953468323,0.3352002203464508,0.036337170749902725,0.385708212852478,-0.05358436331152916,0.523074746131897,0.05236918851733208,0.6306336522102356,0.2184542864561081,0.4113551676273346,0.337924987077713,0.5548351407051086,0.38077011704444885,0.17249131202697754,0.4451202154159546,0.6524216532707214,0.5818030834197998,-0.004653383046388626,0.41701847314834595,0.04152914509177208,-0.309109091758728,-0.03360874205827713,0.7096452713012695,-0.26266810297966003,-0.34417209029197693,-0.19019144773483276,-0.13861531019210815]},{"shape":[32,9],"values":[0.6643558144569397,0.4853728711605072,0.3622288703918457,0.03657921776175499,0.10336162894964218,0.3356359004974365,-0.44757911562919617,0.015060439705848694,-0.13313055038452148,-0.6043550968170166,-0.4768633544445038,-0.40395593643188477,-0.3607544004917145,-0.36491572856903076,-0.48492294549942017,-0.4195922613143921,-0.07554174214601517,-0.06292282044887543,0.6115193963050842,0.6895363926887512,0.8001106381416321,0.4261607527732849,0.4911750555038452,0.571632981300354,0.27218732237815857,0.777680516242981,0.5672981142997742,0.35351377725601196,0.3083350360393524,0.4964531362056732,0.1942692995071411,0.6860206723213196,0.5921193361282349,0.4457864463329315,0.5646520256996155,0.6866267919540405,-0.24407443404197693,-0.009186501614749432,-0.16926172375679016,0.09419578313827515,-0.21569257974624634,0.3118104040622711,-0.24415726959705353,0.11003012210130692,-0.038141585886478424,-0.36934712529182434,-0.4388963282108307,-0.12015033513307571,-0.39866188168525696,-0.30755653977394104,0.1745678186416626,-0.2508922219276428,-0.3862265646457672,-0.03694407641887665,0.036816470324993134,0.7134961485862732,0.3617307245731354,0.819129467010498,0.16256628930568695,0.333732545375824,0.7180523872375488,0.15874706208705902,0.16996856033802032,-0.5168421268463135,-0.42232710123062134,-0.1371004730463028,-0.30315640568733215,-0.037177059799432755,0.03871883824467659,-0.4360211193561554,-0.11253887414932251,-0.24893054366111755,0.6366355419158936,0.528278648853302,0.2063518613576889,0.21501414477825165,0.48366087675094604,0.1956915706396103,0.8157158493995667,0.5744951963424683,0.17349374294281006,0.15169021487236023,0.06600838899612427,-0.24093203246593475,-0.3171934485435486,0.32356739044189453,-0.2686373293399811,0.039010077714920044,-0.007185449358075857,0.22451180219650269,0.2646017074584961,0.639115035533905,0.812969982624054,0.09700610488653183,0.503608226776123,0.33832237124443054,0.6384066343307495,0.6823894381523132,0.8698533177375793,-0.24189195036888123,-0.29879891872406006,-0.13100136816501617,-0.2536785304546356,-0.36149996519088745,-0.0013843427877873182,-0.5620893239974976,-0.4207899272441864,0.09635554999113083,0.5984733700752258,0.6270639300346375,0.481067031621933,0.8658295273780823,0.5335882902145386,0.7594502568244934,0.5386110544204712,0.5670472979545593,0.7632291316986084,0.5296936631202698,0.1427754908800125,0.31076177954673767,0.7603450417518616,0.4361532926559448,0.32363948225975037,0.46318069100379944,0.18036998808383942,0.5015779137611389,0.236433744430542,0.046498723328113556,0.4734668731689453,0.31070536375045776,0.3692089319229126,0.5665090680122375,-0.029248837381601334,0.49804481863975525,0.7004717588424683,0.6696995496749878,0.39217403531074524,0.6535030007362366,0.7047964334487915,0.6613025665283203,0.334595263004303,0.45664870738983154,0.5488073825836182,0.747325599193573,0.49104082584381104,0.6750569939613342,0.5860146284103394,0.3951471447944641,0.35248619318008423,0.45233580470085144,0.7425253391265869,0.5890108346939087,0.6153842806816101,0.5619447827339172,0.7403885126113892,0.6860379576683044,0.4622044861316681,0.6822982430458069,0.8169090151786804,0.4282001554965973,0.5664861798286438,0.20862014591693878,0.6191384196281433,0.4372175633907318,0.05763327330350876,0.26098641753196716,0.4575006663799286,0.38576623797416687,0.4393402338027954,0.3452615439891815,-0.0412304550409317,0.8565629124641418,0.2820955812931061,0.5112887024879456,1.0750043392181396,1.0610069036483765,0.2923260033130646,0.41406190395355225,0.8668714761734009,0.7220876216888428,0.5603770017623901,0.8527784943580627,0.7780164480209351,0.4360126256942749,0.7018478512763977,0.8370230197906494,0.6476719975471497,0.6201803088188171,0.7619193196296692,0.6520031094551086,0.05892687290906906,0.5203185081481934,0.6422622203826904,0.6253843903541565,0.638041079044342,0.6155296564102173,0.15384067595005035,0.6368862390518188,-0.13304945826530457,-0.039705757051706314,-0.03416381776332855,0.3602982759475708,-0.15368299186229706,-0.2752053737640381,-0.13701847195625305,0.34332212805747986,0.38653162121772766,-0.3209521770477295,-0.21798375248908997,0.2335372269153595,-0.5166998505592346,-0.008287152275443077,0.4414575695991516,-0.33068159222602844,0.09987522661685944,0.8694145083427429,0.5696841478347778,-0.059263791888952255,-0.14246389269828796,0.24969924986362457,-0.27154505252838135,0.18975386023521423,0.18883906304836273,-0.029624685645103455,-0.05613836646080017,-0.10684748739004135,0.12598146498203278,0.22202946245670319,-0.12574659287929535,-0.17503991723060608,-0.3265121281147003,-0.031510498374700546,0.004907889291644096,-0.8231325745582581,-0.035578180104494095,-0.3083949089050293,-0.005225104745477438,0.3012828826904297,0.14270097017288208,-0.09925679117441177,-0.328427255153656,0.15891487896442413,0.02489631064236164,0.34350740909576416,0.6561190485954285,0.3145635426044464,0.7077913880348206,0.4289322793483734,0.6967290043830872,0.832044780254364,0.8217651844024658,0.555875837802887,0.00920381024479866,-0.030413642525672913,-0.35056859254837036,-0.16706494987010956,-0.29307371377944946,0.06440392136573792,-0.6796393990516663,-0.3699105381965637,0.09669064730405807,-0.04093637689948082,-0.4383503198623657,-0.28926873207092285,-0.017771756276488304,0.08373785763978958,-0.45925864577293396,-0.26794061064720154,-0.48640453815460205,-0.41139233112335205,-0.027416586875915527,-0.4184063971042633,0.10746416449546814,-0.08171554654836655,-0.09515877068042755,-0.555721640586853,-0.045830581337213516,0.020518828183412552,-0.36089280247688293,-0.16229122877120972,0.17860795557498932,-0.18257522583007812,-0.09809979051351547,0.10924650728702545,-0.29042741656303406,-0.18108795583248138,0.17078140377998352,-0.02282598428428173]},{"shape":[9],"values":[0.19367621839046478,0.04505365341901779,0.395439475774765,0.17365464568138123,0.17594203352928162,0.1653302162885666,0.3596550226211548,0.44260087609291077,0.5087404847145081]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-29.json new file mode 100644 index 0000000..0fb3b2f --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:23:10.594Z","weights":[{"shape":[20,32],"values":[-0.2344641089439392,0.6806686520576477,1.345628261566162,1.3685861825942993,-0.2761870324611664,0.901436984539032,-0.4193631708621979,-0.4211486876010895,0.6440257430076599,1.002498984336853,0.549486517906189,-0.13171857595443726,0.950872540473938,1.252063274383545,-0.039996929466724396,0.9939010739326477,-0.4935319423675537,1.2029494047164917,-0.38800305128097534,-0.3300732374191284,1.0667223930358887,1.0713180303573608,0.6064115762710571,1.0492682456970215,-0.25652748346328735,0.2683112621307373,0.17260690033435822,0.5934117436408997,1.187972903251648,0.9006422162055969,0.73017817735672,0.2568669021129608,-0.22967492043972015,-0.13440760970115662,-0.013379632495343685,-0.14607977867126465,-0.3586258292198181,0.06077480688691139,-0.009403939358890057,0.28089118003845215,0.046353332698345184,0.28466370701789856,-0.03136516734957695,-0.009624782018363476,0.2228749543428421,-0.10836378484964371,0.2987740635871887,0.15320822596549988,-0.15355105698108673,0.11843819916248322,-0.17295902967453003,0.0985858216881752,-0.39603185653686523,-0.2122761756181717,0.08027134090662003,-0.004103311337530613,0.39942947030067444,0.08749803155660629,-0.3301752209663391,0.14884398877620697,0.1744588315486908,-0.1076297014951706,-0.09470438957214355,0.026659682393074036,-0.43514564633369446,0.2708722651004791,-0.0039290133863687515,0.18731433153152466,0.3218318223953247,-0.05934298038482666,0.8975405097007751,0.543624758720398,-0.15987063944339752,-0.12004496157169342,0.3352114260196686,-0.6811882853507996,-0.0815325453877449,0.2976696491241455,0.6769307255744934,0.22406868636608124,-0.3633572459220886,-0.061479758471250534,-0.7096144556999207,-0.7719371318817139,-0.49172505736351013,0.281520813703537,-0.0648680105805397,0.06939613819122314,0.9160943031311035,0.022158969193696976,-0.02825089544057846,0.039958059787750244,-0.2913395166397095,0.21515697240829468,-0.38830235600471497,0.13307277858257294,1.179935097694397,-0.40085214376449585,-0.045259881764650345,-0.6488947868347168,0.31097573041915894,-0.21322910487651825,-0.6401798725128174,-0.6003744602203369,0.040092602372169495,-0.13995924592018127,-0.29968371987342834,1.0911858081817627,-0.42692461609840393,-0.1766633689403534,-0.630665123462677,-0.06388689577579498,1.7919375896453857,-0.3496842384338379,1.1078636646270752,0.1998170167207718,0.05176665261387825,-0.5125859975814819,-0.5974467992782593,-0.5617227554321289,-0.43689632415771484,-0.27807527780532837,1.664839506149292,-0.3426588773727417,0.053920913487672806,-0.41309136152267456,0.09507975727319717,-0.4305669665336609,0.3303023874759674,-0.04023151099681854,0.27441200613975525,-0.03777333348989487,0.1824609488248825,0.17822296917438507,0.11640146374702454,0.2151760756969452,0.06032360717654228,-0.4684107005596161,-0.10885731875896454,-0.009674487635493279,0.3156777620315552,0.2533317804336548,-0.4227733612060547,-0.44563034176826477,0.2429792582988739,0.0012961875181645155,-0.10513458400964737,-0.16112226247787476,0.18324165046215057,0.16930018365383148,0.20975172519683838,0.13528142869472504,-0.2143138349056244,-0.1777624487876892,0.20668934285640717,0.04404643177986145,-0.2670547068119049,-0.14132092893123627,-0.07704159617424011,0.49307751655578613,0.26150786876678467,0.32907626032829285,0.1856037825345993,0.19624130427837372,0.28367677330970764,-0.04061450809240341,-0.5859971046447754,-0.5106736421585083,-0.15414175391197205,0.104163758456707,-0.1493554562330246,0.09284596145153046,-0.19735802710056305,-0.19438393414020538,-0.2668200135231018,-0.18104156851768494,0.29051831364631653,-0.03734688460826874,0.35657593607902527,0.06554405391216278,0.3803929388523102,0.2697228491306305,0.21097426116466522,-0.2667413353919983,-0.3656368553638458,-0.2504517734050751,0.07692442834377289,0.34661373496055603,-0.3015023469924927,0.030455121770501137,-0.2586984634399414,0.517725944519043,0.2498573511838913,0.03657665103673935,-0.06627678871154785,-0.030333859845995903,0.5110664963722229,-0.4559612274169922,0.261251300573349,-0.6614233255386353,-0.37222224473953247,-0.10893713682889938,-0.08413471281528473,0.12040700018405914,-0.14715395867824554,0.09850302338600159,-0.4121001362800598,-0.20514258742332458,0.1886179894208908,-0.3573721945285797,0.3555904030799866,0.06838195025920868,0.2909237742424011,0.314307302236557,-0.2594514489173889,0.2970506250858307,-0.2303599715232849,0.07583100348711014,0.25449609756469727,-0.1331300586462021,-0.32853272557258606,-0.14573732018470764,-0.08995012938976288,-0.01597563363611698,0.3289077877998352,0.197882279753685,-0.1754164844751358,0.2308219075202942,0.1747959703207016,-0.33947691321372986,-0.05055626854300499,-0.815160870552063,-0.017672963440418243,-0.3126518130302429,0.3079659938812256,0.3182850778102875,0.28126242756843567,0.148899108171463,0.050722166895866394,0.23899364471435547,0.1790342628955841,-0.21674232184886932,-0.1385210007429123,0.08626027405261993,0.22205081582069397,0.011549632996320724,0.39662280678749084,0.058563344180583954,-0.11054925620555878,0.31113001704216003,0.1891663372516632,0.2948262095451355,0.22300222516059875,0.2957528829574585,0.271068811416626,0.42714717984199524,-0.06637483835220337,0.6611965298652649,-0.06075667962431908,-0.3048701584339142,-0.2677684426307678,0.3554348945617676,0.07510830461978912,0.3204443156719208,-0.7314685583114624,-0.15608513355255127,-0.32167595624923706,-0.031108718365430832,-0.009904530830681324,-0.2522728443145752,0.019151512533426285,0.259270042181015,0.09820026159286499,-0.13218677043914795,-0.04115918651223183,-0.04312506690621376,0.07132574915885925,-0.014749212190508842,-0.1454160064458847,-0.6529780626296997,0.0614958181977272,-0.6620957255363464,-0.09451071172952652,0.33038216829299927,-0.1752098947763443,0.016801517456769943,-0.3689059913158417,-0.038764264434576035,-0.16760241985321045,-0.01671198010444641,0.18964627385139465,0.06441520154476166,0.14934177696704865,0.34671053290367126,-0.15388861298561096,-0.4032804071903229,-0.16294702887535095,0.23368385434150696,-0.0015628873370587826,0.006308339536190033,-0.049481749534606934,-0.06870552897453308,0.07012385129928589,-0.03195418789982796,-0.07598121464252472,-0.029962418600916862,-0.015059668570756912,-0.3091323673725128,0.01777876727283001,0.17291732132434845,0.15026985108852386,-0.5653986930847168,0.1200961023569107,-0.3718096911907196,-0.05172708258032799,0.042793672531843185,-0.027489176020026207,0.33312779664993286,-0.6624734997749329,0.37189778685569763,-0.35071372985839844,0.108218252658844,0.36176440119743347,0.06723739206790924,-0.6648901700973511,0.49015089869499207,-0.31267300248146057,-0.23664461076259613,-0.06773529946804047,-0.05283636599779129,0.3997844457626343,-0.622604250907898,0.21972785890102386,0.08647855371236801,-0.23834538459777832,-0.18879583477973938,0.10586776584386826,0.09860146790742874,0.2308381348848343,0.19211792945861816,0.4469842314720154,-0.09070709347724915,0.00265025463886559,-0.023869050666689873,0.1294131875038147,0.20414124429225922,-0.01776662841439247,0.4421443045139313,0.43519920110702515,0.050775617361068726,-0.06919543445110321,0.37960851192474365,0.09446714073419571,-0.339659184217453,-0.08303453773260117,-0.3589880168437958,-0.2980100214481354,-0.13210640847682953,0.13741813600063324,-0.3232131004333496,0.15680500864982605,0.07840916514396667,-0.23949846625328064,-0.05559110641479492,0.2294003963470459,0.1471298336982727,-0.22113345563411713,-0.03588077425956726,-0.13348402082920074,-0.2587912380695343,0.39035728573799133,0.153241366147995,-0.27264609932899475,0.007415262516587973,-0.26908108592033386,-0.511311948299408,0.07996976375579834,-0.3481093645095825,-0.30937659740448,-0.2594835162162781,0.17865121364593506,-0.05692104250192642,-0.4087693989276886,0.32728350162506104,0.2711559534072876,0.5192170143127441,0.09270548820495605,0.09586910903453827,0.2583042085170746,-0.026352394372224808,-0.2418280392885208,-0.2805900275707245,-0.4058832824230194,-0.127898707985878,0.08187752962112427,-0.08596804738044739,-0.04575059935450554,-0.15905669331550598,-0.05132991820573807,0.18672125041484833,-0.030191725119948387,-0.002876823302358389,0.20074641704559326,-0.16855500638484955,0.28678786754608154,-0.20805135369300842,-0.36393848061561584,-0.35522332787513733,-0.10355547070503235,-0.6123589873313904,0.1442936658859253,-0.1787872165441513,0.30072733759880066,-0.14022032916545868,-0.14832451939582825,0.42598438262939453,0.21224243938922882,-0.04847455024719238,0.009203512221574783,0.04465089738368988,0.2829488515853882,-0.07365547865629196,-0.33333924412727356,0.23666194081306458,-0.05231953039765358,0.29055172204971313,0.292893648147583,0.021038586273789406,0.26203733682632446,-0.2465318888425827,0.014653329737484455,0.013030199334025383,-0.10113225877285004,-0.06617635488510132,-0.16124331951141357,0.3363518714904785,0.15875297784805298,0.3420118987560272,-0.15531784296035767,-0.38631606101989746,0.1617976725101471,-0.5941208600997925,-0.1305830329656601,0.10080957412719727,0.10803335905075073,-0.1562148481607437,-0.34326478838920593,-0.13508541882038116,-0.3095844089984894,-0.11259254068136215,-0.23182959854602814,-0.262239933013916,0.030588138848543167,-0.09172401577234268,0.2364649623632431,0.2084321677684784,0.387651652097702,0.05199268460273743,-0.142723947763443,-0.6670212149620056,0.2780264914035797,0.2608813941478729,0.15404245257377625,-0.03354871645569801,-0.21510477364063263,0.24827608466148376,0.5100544691085815,-0.07732231914997101,-0.3223564028739929,0.32073941826820374,0.2106444388628006,0.3349127769470215,-0.07222720235586166,-0.10999538004398346,-0.038720984011888504,0.028497209772467613,-0.27389591932296753,-0.2694787383079529,0.040315646678209305,-0.037043992429971695,-0.3565053939819336,-0.3516773283481598,-0.09034661203622818,-0.22130322456359863,-0.006741307210177183,0.24992235004901886,0.19848598539829254,-0.2504597306251526,-0.4241078495979309,-0.17810210585594177,0.16761720180511475,-0.10137248784303665,0.04329480603337288,-0.21394386887550354,-0.006552122067660093,-0.09354892373085022,-0.186371311545372,0.06506471335887909,0.30835315585136414,0.17503848671913147,0.1088748350739479,-0.3302839398384094,0.0925007164478302,-0.2906968593597412,-0.1873551607131958,-0.0715050995349884,-0.15292927622795105,0.13468798995018005,0.28203004598617554,-0.17419736087322235,-0.05908536911010742,-0.23656918108463287,-0.19709588587284088,0.2986159324645996,-0.32622602581977844,0.025459736585617065,-0.25550028681755066,0.04848926514387131,0.2586863040924072,-0.04306907206773758,-0.002879074774682522,0.13229860365390778,0.0937671959400177,0.25617310404777527,-0.33315709233283997,0.24300384521484375,-0.17881669104099274,0.20363126695156097,-0.31689074635505676,-0.2232106775045395,-0.08609684556722641,0.24758665263652802,0.09445448964834213,-0.09861114621162415,-0.23942066729068756,0.11713362485170364,-0.05605041980743408,-0.17954015731811523,-0.15133881568908691,0.08994022756814957,-0.0993039458990097,0.058862343430519104,-0.38822343945503235,-0.28719431161880493,0.15090085566043854,0.259897917509079,0.24092572927474976,0.23753033578395844,0.016392530873417854,-0.1062469407916069,0.2634941041469574,0.2850499451160431,-0.3044077157974243,0.052108269184827805,0.03590468317270279,-0.05331183969974518,0.25369906425476074,0.3295574486255646,0.14199332892894745,0.06659606099128723,0.29027166962623596,0.20639458298683167,0.045504357665777206,-0.394164115190506,0.04216403886675835,0.2174953818321228,0.283447802066803,-0.28878819942474365,-0.30687710642814636,-0.23862655460834503,0.2670322358608246,0.015628553926944733,-0.10398001968860626,0.1349121481180191,-0.2902277708053589,-0.008849668316543102,-0.23826050758361816,0.24530579149723053,-0.05909661203622818,0.1735752373933792,-0.663349449634552,-0.3142417371273041,-0.05605953559279442,0.060806479305028915,0.15341635048389435,-0.15055407583713531,0.24033939838409424,-0.2822332978248596,-0.3551263213157654,-0.17330625653266907,0.3980861008167267,-0.24944260716438293,-0.3835284113883972,-0.054584797471761703,0.814414381980896,0.49051395058631897,-0.0010538427159190178,-0.0804864689707756,0.46807852387428284,0.3223826289176941,-0.4187541902065277,-0.12461921572685242,-0.4599186182022095,-0.1463763564825058,-0.19215916097164154,-0.1362249255180359,0.17017781734466553,-0.05548703670501709,-0.1962047517299652,-0.2528463304042816,-0.11971642822027206,0.28515079617500305,-0.3176399767398834,0.1559693068265915,-0.18781255185604095,-0.2644461393356323,-0.383868932723999,-0.17395055294036865,-0.04326193779706955,0.007186556234955788,-0.09464051574468613,-0.05717248097062111,0.045813530683517456,-0.29853931069374084,-0.01349166501313448,-0.052910398691892624,0.4058050215244293,0.35338324308395386,0.3141613304615021,0.1433977484703064,-0.3549768626689911,-0.37240540981292725,-0.266143798828125,-0.06681685149669647,-0.12129908055067062,0.19645947217941284,-0.1808110773563385,0.08571477234363556,-0.3382728397846222,-0.22843827307224274]},{"shape":[32],"values":[-0.43178534507751465,0.611360490322113,0.6099620461463928,0.675638735294342,-0.32222980260849,0.6741039752960205,0.005519820377230644,-0.25357237458229065,0.6998615264892578,0.42115798592567444,0.39965394139289856,-0.33018484711647034,0.5883952379226685,0.5918024778366089,0.11838512122631073,0.6501592397689819,-0.48455744981765747,0.5662047863006592,-0.28625017404556274,-0.18407689034938812,0.4808146357536316,0.5331405401229858,0.5761065483093262,0.621788501739502,-0.11296483874320984,0.37588971853256226,-0.4629880487918854,0.5249316096305847,0.5532510280609131,0.514938473701477,0.7070277333259583,0.45128878951072693]},{"shape":[32,32],"values":[-0.10371840000152588,-0.069504015147686,-0.3583585321903229,-0.19746166467666626,-0.10561612248420715,-0.5747742652893066,0.3524656891822815,0.29089146852493286,-0.6805232167243958,0.10069289058446884,-0.18689458072185516,0.0066311294212937355,0.3241700232028961,-0.14481225609779358,-0.014909178949892521,-0.29370343685150146,0.12899501621723175,0.4351321756839752,-0.2085636705160141,-0.6463881134986877,0.29564476013183594,0.2867465019226074,-0.36089032888412476,-0.4026728570461273,0.1615929901599884,0.12851765751838684,-0.22597762942314148,0.09931723028421402,-0.5985422134399414,0.12977834045886993,-0.9344186186790466,-0.130651593208313,0.07358010858297348,0.7489548325538635,0.2967681288719177,0.2580500841140747,-0.2366119921207428,0.3469458520412445,0.07142679393291473,-0.1940930187702179,0.6947895288467407,0.505179226398468,0.11991456151008606,-0.007467088755220175,0.06983154267072678,0.3696010112762451,0.45539215207099915,0.4659885764122009,0.10416461527347565,-0.06986717134714127,-0.3017563819885254,0.339912474155426,0.3370136618614197,0.10120280832052231,0.24545837938785553,0.46712779998779297,0.4021284580230713,0.068968266248703,-0.22644133865833282,0.39108625054359436,0.39962589740753174,0.13717174530029297,0.18803885579109192,0.7506531476974487,0.3648315668106079,0.9194926619529724,0.846980631351471,0.7874541878700256,0.11426203697919846,0.3259820342063904,-0.13711504638195038,0.3576590120792389,0.959071934223175,0.97805255651474,0.37079405784606934,-0.3707300126552582,0.19692961871623993,0.38139814138412476,0.652928352355957,0.43950167298316956,0.059194788336753845,0.13224850594997406,-0.019718047231435776,0.8424831628799438,0.7448229193687439,-0.16937245428562164,0.36552613973617554,0.739143967628479,-0.5787084698677063,-0.051315728574991226,-0.2692139446735382,0.6176720261573792,0.7418805360794067,0.7571778297424316,0.601919949054718,0.4873366057872772,0.8678190112113953,1.1368205547332764,0.37687981128692627,0.5300931930541992,-0.1465868204832077,0.5941445827484131,-0.24532440304756165,0.0580669604241848,1.0048350095748901,0.8566276431083679,0.7310498952865601,-0.05645933747291565,-0.21547752618789673,0.26685187220573425,0.367196261882782,0.30035021901130676,0.08048323541879654,-0.44091883301734924,0.12389744073152542,0.9120349287986755,0.4647020995616913,-0.2894827723503113,0.48146936297416687,0.7891392707824707,-0.09310662746429443,-0.00018350876052863896,-0.26591894030570984,0.5754315853118896,0.44221746921539307,0.6767977476119995,0.3983127474784851,0.9971357583999634,-0.15567415952682495,-0.3844483196735382,-0.5143424272537231,0.19538727402687073,-0.09090914577245712,-0.1662524938583374,0.13414418697357178,0.1343751847743988,-0.4994491636753082,-0.40083959698677063,-0.24093452095985413,0.01909218356013298,0.09602656960487366,-0.3207038342952728,0.13749383389949799,-0.17971894145011902,0.11648707091808319,-0.10189785808324814,-0.2873374819755554,-0.35408976674079895,-0.2818552553653717,0.07639922201633453,0.03601834923028946,-0.13578422367572784,0.5420085191726685,0.37430891394615173,-0.1017477884888649,-0.4136037528514862,-0.8472369313240051,-0.055608589202165604,-1.4148763418197632,0.06993517279624939,0.6773110628128052,0.8316779732704163,0.6175584197044373,0.43826204538345337,0.06732109189033508,0.7308226823806763,-0.47645077109336853,-0.4741559624671936,1.0109204053878784,0.5587803721427917,0.5568158626556396,-0.128090962767601,0.11029870063066483,0.403756320476532,0.665895938873291,0.7107085585594177,-0.36566033959388733,-0.43931934237480164,-0.2959142029285431,0.7861484289169312,0.49079811573028564,-0.5656126141548157,0.21260692179203033,0.5215482115745544,-0.304790198802948,-0.4681943356990814,-0.07137908786535263,0.32760584354400635,0.5297836661338806,0.5853068828582764,0.4446928799152374,0.6818011403083801,-0.7020628452301025,-0.9304087162017822,-0.4992375075817108,-0.6246474981307983,-0.04639696329832077,-0.513105571269989,0.4026253819465637,0.9892086982727051,-0.4885774850845337,-0.6720065474510193,-0.6332259178161621,0.21801428496837616,0.574975848197937,-0.48086249828338623,-0.4526194632053375,-0.17447808384895325,0.24601615965366364,-0.1458422690629959,-0.007018635980784893,-0.9937684535980225,-0.577645480632782,0.12187600135803223,-0.7176556587219238,-0.2911151051521301,0.4946153163909912,1.024312973022461,-0.20395633578300476,-0.3767031133174896,-1.0794788599014282,-0.9876469373703003,-0.2132927030324936,-0.64041668176651,-0.7644241452217102,-0.6049160361289978,-0.36468255519866943,-0.2528015375137329,-0.17160002887248993,-0.720139741897583,-0.22421474754810333,0.6644238829612732,-0.7258917689323425,-0.4651825428009033,-0.15274254977703094,-0.20208783447742462,0.48819833993911743,-1.1224297285079956,-0.3082299828529358,-0.1810285449028015,0.44292619824409485,-0.03260313346982002,0.010529821738600731,-0.6286980509757996,0.09064498543739319,-0.11149176210165024,-0.4978852868080139,-0.741576611995697,-0.3120254576206207,0.5716176629066467,-0.07858338952064514,-0.2972641885280609,-0.96762615442276,-0.9159600138664246,-0.6447944641113281,-0.6576587557792664,0.7632648944854736,0.770975649356842,0.31229695677757263,0.6455864310264587,-0.09058493375778198,0.5032178163528442,-0.35745900869369507,-0.2393042892217636,0.3525753617286682,0.7614206075668335,0.6744679808616638,-0.07450489699840546,-0.01677272841334343,0.5964179039001465,0.6189481019973755,0.6392554640769958,0.10397984087467194,-0.1865173578262329,-0.30749332904815674,0.5381584763526917,0.6043586134910583,-0.41820162534713745,0.5842345952987671,0.4977791905403137,-0.8916401863098145,0.2157583385705948,0.11587493866682053,0.46333828568458557,0.5779573321342468,0.6888859272003174,0.7939878702163696,0.6694819331169128,0.4274384677410126,0.26928284764289856,0.42333030700683594,0.47211211919784546,0.21845334768295288,0.6430538892745972,0.00039333495078608394,-0.22706258296966553,0.7140616178512573,0.3055388331413269,0.5707671046257019,-0.024034036323428154,0.3681822717189789,0.03141971677541733,0.5568312406539917,0.29962000250816345,-0.12163461744785309,-0.15442785620689392,-0.037740640342235565,0.39830222725868225,0.13171449303627014,-0.011121531017124653,0.5205326676368713,0.22763881087303162,-0.9179713726043701,-0.030460670590400696,0.11548502743244171,0.011532297357916832,0.08122227340936661,0.09205761551856995,0.5154851078987122,0.5591620802879333,0.2438409924507141,0.19302619993686676,-0.05474027991294861,0.1383514404296875,-0.41787901520729065,0.2875388562679291,-0.08233463764190674,0.21315182745456696,0.19771943986415863,0.373420387506485,0.4583367705345154,-0.2152092009782791,0.2592616379261017,0.22770163416862488,0.22733399271965027,0.3568372428417206,-0.3528844118118286,-0.048329826444387436,-0.15188483893871307,0.5471594929695129,0.08108141273260117,-0.07772528380155563,0.3873538076877594,0.3229900002479553,0.4052256643772125,0.26409226655960083,-0.2621930241584778,0.20337602496147156,0.3552934527397156,-0.13503140211105347,-0.10156206041574478,0.6935434937477112,-0.2983529567718506,-0.585769772529602,-0.46154284477233887,-0.398565411567688,-0.08312086760997772,-0.9832570552825928,0.41997140645980835,0.530636191368103,-1.0934795141220093,-0.3934395909309387,-0.6695312857627869,0.06308338046073914,0.3097286522388458,-0.12993140518665314,-0.5598416924476624,-0.1936626434326172,0.1877269744873047,0.3476950526237488,-0.08797004818916321,-1.0079973936080933,-0.15079350769519806,0.520732045173645,-0.648432731628418,-0.6876484751701355,0.027793319895863533,0.19430787861347198,0.20514288544654846,-0.26830390095710754,-0.7852165102958679,-0.0728965699672699,-0.7601671814918518,-0.7126969695091248,0.41993948817253113,0.5157922506332397,0.6547271013259888,0.048976633697748184,0.0018682987429201603,-0.004031370393931866,0.21894286572933197,0.14404819905757904,0.5270096063613892,0.5351045727729797,0.09062691777944565,0.3955382704734802,-0.19412466883659363,0.2902791500091553,0.17023681104183197,-0.07561123371124268,0.2758801579475403,-0.01946857199072838,-0.23448139429092407,0.6032310724258423,0.06136704981327057,0.05603247880935669,0.1507517248392105,0.48487818241119385,-0.0019481710623949766,0.24979937076568604,-0.1292462944984436,0.7246561050415039,0.5335044264793396,0.24091045558452606,-0.06390868127346039,0.831366777420044,0.8711637258529663,0.8885183930397034,0.6228644847869873,0.9664208292961121,-0.37407541275024414,0.762736976146698,-0.1978703886270523,-0.16565380990505219,1.230628252029419,0.6918399930000305,0.7131703495979309,-0.38552284240722656,-0.3174850046634674,0.7164804339408875,0.7707777619361877,0.3055419325828552,-0.4071137309074402,-0.47739797830581665,-0.22134387493133545,0.9544225335121155,0.5724571347236633,0.1570364534854889,0.6462599039077759,0.38577768206596375,-0.013454019092023373,-0.13805319368839264,-0.06197135150432587,0.7033001780509949,0.47289401292800903,0.23033884167671204,0.16670778393745422,1.0356764793395996,-0.2628205716609955,-0.26975277066230774,-0.16178713738918304,-0.5226628184318542,-0.30101579427719116,-0.03389536589384079,0.414122611284256,0.39813998341560364,-0.0969594195485115,-0.15350358188152313,0.20270931720733643,0.09282001107931137,0.4177769720554352,-0.788793683052063,-0.35488754510879517,0.0822002962231636,0.28660669922828674,0.11945748329162598,0.0027428078465163708,-0.014527403749525547,-0.4848586320877075,0.1496012806892395,-0.4834528863430023,-0.47492608428001404,-0.01205742172896862,0.34081020951271057,0.1951214075088501,0.20416496694087982,-0.6824290156364441,-0.537522554397583,0.09000638127326965,-0.32950645685195923,0.5035563707351685,0.8430089354515076,0.3117358386516571,0.47562628984451294,-0.2517859637737274,0.39829692244529724,-0.23987270891666412,-0.021565264090895653,0.6109877824783325,0.18560776114463806,0.19526754319667816,-0.47701868414878845,0.17106464505195618,0.05018991976976395,0.13431476056575775,0.4014565646648407,0.16199110448360443,0.03377955034375191,-0.164015993475914,0.5593505501747131,0.06628935784101486,-0.35223162174224854,0.49973616003990173,0.24075593054294586,-0.19467580318450928,0.2693771421909332,0.22809433937072754,0.741981565952301,0.13109877705574036,0.046328358352184296,0.5395175218582153,0.5188180208206177,-0.05286779627203941,-0.2240348905324936,-0.7249050736427307,-0.12043318897485733,-0.22084306180477142,-0.7180764079093933,0.22749827802181244,0.12337339669466019,-0.9665576815605164,-0.17226526141166687,-0.3366244435310364,0.002420668490231037,0.5283800959587097,0.05235156789422035,-0.009650667198002338,-0.05566631257534027,0.41530582308769226,0.11027593910694122,-0.13344265520572662,-0.44574764370918274,-0.22836925089359283,0.2600953280925751,-0.48108839988708496,-0.23578524589538574,0.025995681062340736,0.584232747554779,0.18495197594165802,-0.35828277468681335,-0.3207895755767822,-0.4638136625289917,-0.6946033835411072,-0.2684025168418884,0.6697508692741394,0.43758922815322876,0.6033174395561218,0.38510918617248535,-0.09759477525949478,0.6970264315605164,0.1122322529554367,0.056907497346401215,0.9750518798828125,0.4831288456916809,0.21492871642112732,-0.09006203711032867,-0.15430369973182678,0.25600293278694153,0.22013287246227264,0.675075352191925,0.16087812185287476,0.07386846095323563,-0.2993769943714142,0.4321216642856598,0.25350815057754517,0.15883728861808777,0.46225008368492126,0.4918833374977112,-0.8162202835083008,-0.0903402715921402,-0.30686983466148376,0.27774128317832947,0.6204456686973572,0.3431336581707001,0.6593348383903503,0.5534634590148926,-0.23057585954666138,-0.3526981770992279,-0.7898896932601929,-0.326419860124588,-0.08811181038618088,-0.5842116475105286,0.676405668258667,0.5315542817115784,-1.228467583656311,-0.42995113134384155,-0.44496026635169983,0.7246586084365845,0.2825934886932373,-0.12834256887435913,-0.5243710875511169,-0.5113218426704407,0.2839879095554352,0.7409474849700928,0.13869747519493103,-0.985281765460968,0.030114931985735893,0.7917444705963135,-0.587978184223175,-0.5246042609214783,0.28025203943252563,0.43062034249305725,-0.07887668907642365,-0.7042917609214783,-0.685156524181366,-0.42702722549438477,-0.7755621075630188,-0.3128269612789154,-0.40757426619529724,-0.23131616413593292,-0.9760600924491882,-0.3561450242996216,0.2171955555677414,-0.8397944569587708,0.22392478585243225,0.14088857173919678,-0.8321948051452637,-0.7098066806793213,-0.5737777352333069,0.26040318608283997,0.22036710381507874,-0.43708744645118713,-0.542482852935791,-0.248277485370636,-0.008876417763531208,0.14969661831855774,-0.27393683791160583,-1.0705585479736328,-0.33613860607147217,0.46214616298675537,-0.3626222014427185,-0.8448114395141602,0.043773114681243896,-0.08153395354747772,0.1489264816045761,-0.3361789584159851,-0.9016552567481995,-0.5799688696861267,-0.7189476490020752,-0.5079858899116516,0.08382897824048996,0.39973777532577515,0.12488839030265808,0.48670831322669983,-0.15453070402145386,0.254397988319397,0.3837924599647522,0.37486377358436584,0.2590751647949219,0.18073977530002594,0.32897600531578064,-0.2819567918777466,-0.1117023453116417,0.2540561258792877,0.2229488492012024,-0.1850702315568924,0.05306728556752205,0.4925040304660797,0.11504567414522171,0.0219004824757576,0.4999399185180664,0.2705789804458618,0.408737450838089,0.18157723546028137,-0.22955380380153656,0.2520127594470978,-0.1727326512336731,0.47007036209106445,0.34100523591041565,0.23857806622982025,-0.0566074438393116,0.40115123987197876,0.646377444267273,0.7424175143241882,0.3440698981285095,0.5531446933746338,-0.01020899135619402,0.24854663014411926,0.20188458263874054,0.05305717885494232,0.6361883878707886,0.7148732542991638,0.6133041381835938,-0.16362419724464417,-0.3002113401889801,0.5361685156822205,0.6269927620887756,0.45394742488861084,-0.1605222523212433,-0.09198107570409775,-0.25874021649360657,0.636629581451416,0.2235030233860016,-0.19612491130828857,0.43812403082847595,0.45277687907218933,0.5324451923370361,0.08871438354253769,0.28752800822257996,0.10612598806619644,0.08545466512441635,0.6097314953804016,-0.07413500547409058,0.29003506898880005,0.2743333876132965,0.34994056820869446,0.5716949701309204,0.5707833766937256,0.15178632736206055,0.32747945189476013,-0.22953613102436066,-0.2788952589035034,0.6151785254478455,0.6132364869117737,0.5736653804779053,0.22400715947151184,0.22384074330329895,0.07701541483402252,0.4731690287590027,0.11880509555339813,-0.2459939569234848,0.10901665687561035,0.10704926401376724,0.06320077925920486,0.6257627010345459,0.28978028893470764,0.623544454574585,0.5713620781898499,0.02786194160580635,0.12714624404907227,0.2381729930639267,0.32923176884651184,0.20912647247314453,0.4747433364391327,0.1559372991323471,0.42726626992225647,0.9117587804794312,1.2859869003295898,0.8272873163223267,0.781251847743988,-0.26931852102279663,0.9565221071243286,-0.2478444129228592,-0.4427970051765442,1.141110897064209,0.9420454502105713,0.9374216198921204,-0.11701463162899017,-0.18951459228992462,0.5363525152206421,0.36032214760780334,0.8442628383636475,0.0019113310845568776,-0.3126850724220276,0.041331928223371506,0.6249836087226868,0.7856969833374023,-0.2622032165527344,0.5368074178695679,0.7904168367385864,-0.24992235004901886,-0.5304117798805237,0.14415355026721954,0.5234917402267456,0.681004524230957,0.494946151971817,0.21740977466106415,1.1227211952209473,-0.2413787692785263,-0.17548367381095886,-0.24893343448638916,-0.17163556814193726,-0.2984844446182251,-0.4079746901988983,-0.0967257171869278,0.6278928518295288,-0.4475991129875183,-0.24656011164188385,-0.016599921509623528,-0.006374990567564964,0.1735406070947647,-1.0296355485916138,-0.4931829869747162,-0.2460595667362213,0.35156938433647156,-0.14459939301013947,-0.07825924456119537,-0.25780388712882996,-0.31362542510032654,-0.1722683161497116,-0.01613321714103222,-0.3696061372756958,-0.2751123607158661,0.3651592433452606,-0.22789514064788818,-0.3644205331802368,-0.3597978353500366,-0.5781061053276062,-0.16139765083789825,-0.4591577351093292,0.25972235202789307,0.11909669637680054,0.5788566470146179,0.5753229260444641,0.06011946126818657,0.4823674261569977,0.042813073843717575,-0.27185213565826416,0.6372011303901672,0.24878829717636108,0.5047710537910461,0.1115221381187439,-0.08689194172620773,0.015858232975006104,0.2223479002714157,0.4147929549217224,0.09108507633209229,-0.18346886336803436,-0.24925029277801514,0.4416794776916504,0.5003880262374878,0.14028407633304596,0.44386518001556396,0.33104100823402405,-0.004565664567053318,-0.1256684809923172,-0.26270410418510437,0.5241497159004211,0.04689145088195801,0.03884522244334221,-0.02270468696951866,0.28086209297180176,-0.21864677965641022,-0.8457725644111633,-1.1099724769592285,-0.6802032589912415,-0.08813261985778809,-1.0497543811798096,0.5122333765029907,0.6252506375312805,-0.6450217366218567,-0.6963716745376587,-0.8944688439369202,-0.20862582325935364,0.21478508412837982,-0.6087972521781921,-0.302068829536438,-0.6003524661064148,0.21824298799037933,0.8158159852027893,-0.001822358462959528,-0.8158396482467651,-0.5509479641914368,0.5111640095710754,-0.6825687885284424,-0.45068714022636414,-0.12977035343647003,0.7202361226081848,-0.34972360730171204,-0.23259001970291138,-1.0071663856506348,-0.6876832842826843,-1.607012391090393,-0.2807176411151886,0.4699335992336273,0.4916253089904785,-0.0795959010720253,0.43082112073898315,-0.3050352931022644,0.3483608663082123,-0.17497222125530243,0.06045710667967796,0.23800541460514069,0.22309260070323944,0.45440205931663513,0.3752446174621582,0.31814777851104736,0.22781091928482056,0.011476650834083557,0.09684286266565323,0.02197987586259842,0.32554391026496887,-0.07181955873966217,0.20739372074604034,0.05200810730457306,0.1064741387963295,0.23678483068943024,0.3880198895931244,0.1299290508031845,-0.3323025703430176,-0.14338280260562897,0.12308447062969208,0.2858927845954895,0.4649568498134613,0.07070755213499069,0.3871086835861206,0.6937681436538696,0.5920395851135254,0.6488094329833984,0.5986545085906982,0.17776119709014893,0.6055141091346741,0.19922417402267456,-0.04235905036330223,0.9481171369552612,0.8028961420059204,0.26788145303726196,0.24975499510765076,0.2267560213804245,0.13368819653987885,0.19194293022155762,0.5192421674728394,0.1957417130470276,0.37822243571281433,0.09372581541538239,0.43775156140327454,0.35635048151016235,0.31136801838874817,0.7511981129646301,0.36634933948516846,-0.2760791778564453,-0.15515291690826416,-0.10730466991662979,0.3944971263408661,0.41923362016677856,0.3441743552684784,0.42917218804359436,0.34189853072166443,0.23772458732128143,0.8789073824882507,0.6361136436462402,0.5431839227676392,0.10493002831935883,0.7552527785301208,-0.3159983456134796,0.21688614785671234,0.7008250951766968,0.3198084831237793,0.4681204557418823,-0.2627366781234741,0.21803921461105347,0.337054967880249,0.1358538120985031,0.4792698323726654,-0.141897052526474,-0.00947821419686079,0.2335144281387329,0.25572848320007324,0.282772034406662,-0.14300104975700378,0.48194169998168945,0.12545445561408997,0.047847528010606766,-0.2585107684135437,-0.2382451891899109,0.4678334891796112,0.522772490978241,0.3487420678138733,-0.0704047679901123,0.33490169048309326,0.608476459980011,0.6226364374160767,0.4736410975456238,0.18039903044700623,-0.3162570297718048,0.5928150415420532,0.39967286586761475,0.2596484124660492,0.3981146514415741,0.5609669089317322,0.4180088937282562,-0.14196865260601044,0.31314218044281006,0.19283568859100342,0.3163434565067291,0.3419008255004883,0.20547431707382202,0.2713451087474823,-0.25929924845695496,0.32501766085624695,0.20646502077579498,-0.07276516407728195,0.1629045605659485,0.4219764173030853,-0.10245753824710846,0.28976142406463623,-0.3134223222732544,0.03842611238360405,0.2045830339193344,0.5287018418312073,0.3013741970062256,0.4388096034526825,0.5095831751823425,0.3948943018913269,0.22640030086040497,0.3286556601524353,-0.1114058718085289,-0.023146435618400574,-0.10952243953943253,0.1193033754825592,0.18107537925243378,0.6070231795310974,0.19444455206394196,-0.05406597629189491,-0.4473525285720825,0.5646032094955444,0.21933886408805847,0.26053401827812195,0.27160847187042236,0.09097976982593536,-0.02600778080523014,0.20777545869350433,0.36697566509246826,-0.3731999397277832,0.4932094216346741,0.3423953652381897,0.19199702143669128,-0.27090829610824585,-0.18958613276481628,0.5818183422088623,-0.0653582215309143,0.5504540205001831,-0.7239493131637573,0.235712468624115]},{"shape":[32],"values":[0.4861922562122345,0.5180537700653076,0.4218980371952057,0.4256823658943176,-0.11726859211921692,0.430083692073822,-0.05704396590590477,-0.2508775293827057,0.5306684970855713,0.5402068495750427,0.5103037357330322,0.26779699325561523,-0.13056761026382446,0.34568166732788086,0.3704506754875183,0.5006850361824036,-0.04410196468234062,0.01644381880760193,-0.05393120273947716,0.36293286085128784,0.448928564786911,0.09904325008392334,0.3799728751182556,0.5280765891075134,0.3700929880142212,-0.17473237216472626,-0.06164170429110527,0.4306355118751526,0.24714656174182892,0.44263583421707153,0.2903503477573395,0.5327779650688171]},{"shape":[32,9],"values":[0.03246579319238663,0.57352215051651,0.20707552134990692,0.0720294788479805,0.6380435228347778,0.46709784865379333,0.6608755588531494,0.42643892765045166,0.5153343677520752,0.6818183660507202,0.5902144312858582,0.17322643101215363,0.6294326782226562,0.5579743981361389,0.5757419466972351,0.7286903262138367,0.5790956020355225,0.5529235005378723,0.3541089594364166,0.5898279547691345,0.3827873468399048,0.5062568187713623,0.5739796757698059,0.7310977578163147,0.37281957268714905,0.5668087601661682,0.5928857922554016,0.46931248903274536,0.3893449902534485,0.4885621964931488,0.1394997537136078,0.4755432605743408,0.4623488783836365,0.3437905013561249,0.17959828674793243,0.39390668272972107,-0.05115225166082382,0.09180240333080292,0.06413765251636505,0.11608292907476425,-0.19280660152435303,0.030752085149288177,-0.32597675919532776,-0.093460813164711,-0.029074206948280334,0.6097627282142639,0.5004491209983826,0.2086409628391266,0.6725727915763855,0.8507170081138611,0.20618200302124023,0.6716156601905823,0.2777409553527832,0.5503599047660828,-0.36190903186798096,-0.08525824546813965,-0.08294913917779922,-0.3895420730113983,-0.3976951837539673,-0.46268823742866516,-0.33339357376098633,-0.4185584783554077,-0.6656703352928162,-0.5588894486427307,-0.5819898247718811,-0.31438514590263367,-0.2605866491794586,-0.13041850924491882,-0.059503622353076935,-0.8812098503112793,-0.6719910502433777,-0.3370378911495209,0.6287165284156799,0.8916768431663513,0.8759070038795471,0.6441314816474915,0.750515878200531,0.6169846653938293,0.6135870218276978,0.6853839755058289,0.6614229083061218,0.3589562475681305,0.10108471661806107,0.5037432312965393,0.5170515179634094,0.6739649772644043,0.8322331309318542,0.7671637535095215,0.4218791723251343,0.6477262377738953,0.4672388732433319,0.6016563773155212,0.2535645365715027,0.05675676465034485,0.26407408714294434,0.03918198123574257,0.4256511330604553,0.6398804187774658,0.4918113648891449,0.5181522369384766,0.1363564431667328,0.07788009196519852,0.23765645921230316,-0.35569921135902405,-0.5201429724693298,-0.6436464786529541,-0.5961748361587524,-0.8815957903862,0.14983247220516205,-0.4001450538635254,-0.6311368942260742,-0.1446123868227005,-0.26251134276390076,-0.12310925871133804,-0.1666162759065628,-0.3031249940395355,-0.5986809134483337,0.48886528611183167,0.34244224429130554,0.2337447553873062,0.22376669943332672,0.7421138286590576,0.5005956888198853,-0.013914862647652626,0.7091213464736938,0.41327688097953796,0.3307743966579437,0.5797303318977356,0.4289688766002655,0.5217167139053345,0.3120366334915161,0.4075922966003418,0.1318911612033844,0.12772850692272186,0.49358847737312317,0.5918347239494324,0.15038105845451355,0.09711761027574539,0.8332945704460144,-0.03198104351758957,0.1431836485862732,0.503225564956665,0.5843043327331543,0.2584892809391022,-0.4969843327999115,-0.43311575055122375,-0.316070556640625,0.03876351937651634,-0.5589126348495483,-0.41697144508361816,0.08392196893692017,-0.4244033992290497,0.21123701333999634,-0.5065293312072754,-0.37909626960754395,-0.27670612931251526,-0.4265771508216858,-0.4011044204235077,-0.6105867624282837,-0.5741763114929199,-0.12489733844995499,-0.3080134987831116,-0.04889954626560211,0.21879535913467407,0.4613696038722992,0.009451202116906643,0.12332147359848022,-0.3767642676830292,-0.21009190380573273,-0.03570738807320595,0.004438458476215601,0.8278147578239441,0.21621057391166687,0.8617385625839233,0.48434215784072876,0.6726398468017578,0.2780302166938782,0.46626782417297363,0.3936863839626312,0.35748159885406494,-0.07206907123327255,0.2355010211467743,0.7558996677398682,0.17029398679733276,0.06616844236850739,0.5399297475814819,0.15965388715267181,0.35209110379219055,0.7918538451194763,0.06224332004785538,-0.10578132420778275,-0.44510209560394287,-0.446483850479126,-0.4087195098400116,-0.7735310196876526,-0.23534487187862396,-0.6576728820800781,-0.35975754261016846,0.48003876209259033,0.558140754699707,0.683037281036377,0.6636634469032288,0.06547539681196213,0.6583057045936584,0.4372195601463318,0.09411770850419998,0.5460519194602966,0.16215325891971588,0.6952632069587708,0.5405880808830261,0.48747339844703674,0.7396515607833862,0.37356460094451904,0.21898645162582397,0.8728141784667969,0.6596555709838867,0.8072410821914673,0.42516130208969116,0.03219280764460564,0.6866982579231262,0.1886153668165207,-0.4790585935115814,0.7532610893249512,0.05862664058804512,-0.4515671133995056,-0.38904067873954773,-0.6334327459335327,-0.456534206867218,-0.4720417261123657,-0.6464255452156067,-0.10273191332817078,-0.5386341214179993,-0.09866073727607727,-0.46466049551963806,0.08991383761167526,-0.19416803121566772,-0.01705075614154339,0.01747979409992695,-0.25026556849479675,-0.22779814898967743,-0.00971928983926773,0.24432893097400665,0.30713096261024475,-0.07060438394546509,0.5100459456443787,0.2538057565689087,0.5528371930122375,0.5081474781036377,0.4842853844165802,0.30860382318496704,0.6391462683677673,0.23196282982826233,0.8175137639045715,0.591876745223999,0.7959816455841064,0.7978631854057312,0.4344770312309265,0.7207871079444885,0.45737823843955994,0.5740735530853271,0.32687410712242126,0.26741158962249756,0.46774134039878845,0.3337025046348572,0.1782635599374771,0.5726236701011658,0.6300392746925354,0.7183313965797424,0.5957629084587097,0.6196549534797668,0.763410747051239,0.46901270747184753,-0.09570784866809845,0.856587827205658,0.6049716472625732,-0.2265958935022354,0.8971582651138306,0.7418850064277649,-0.23728498816490173,0.5156664848327637,0.10600009560585022,0.67613285779953,0.5149522423744202,0.07177414000034332,0.5313413739204407,0.6615811586380005,0.4746686816215515,0.36570242047309875]},{"shape":[9],"values":[0.10376659035682678,0.07284770905971527,0.10952030122280121,0.1844332218170166,0.11880932003259659,0.09203292429447174,0.3933967351913452,0.4839894473552704,0.44369223713874817]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-47.json new file mode 100644 index 0000000..50fdb81 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:23:50.294Z","weights":[{"shape":[20,32],"values":[1.2865041494369507,0.43321114778518677,-0.5584843158721924,1.0985163450241089,1.0582674741744995,-0.8491581678390503,0.08970139175653458,1.1444010734558105,0.9295189380645752,-0.9020388722419739,0.5589075684547424,0.09311414510011673,0.9228157997131348,-0.45385056734085083,0.6768807172775269,1.0343109369277954,0.30374518036842346,0.981320858001709,1.3297539949417114,1.245894193649292,-0.03322411701083183,-0.6066566705703735,0.6886377334594727,0.8626574277877808,0.7344740629196167,1.23225998878479,0.840760350227356,0.9526614546775818,0.38565292954444885,0.7635025978088379,0.7961207032203674,-1.0780324935913086,0.048786602914333344,0.3028597831726074,-0.011793416924774647,-0.012524261139333248,0.051979076117277145,-0.130793035030365,0.2354113906621933,-0.04146266728639603,0.1733432412147522,-0.2686653137207031,0.08082378655672073,-0.030605321750044823,0.08910822868347168,0.2769036293029785,0.11868750303983688,-0.3160434067249298,0.0021255051251500845,-0.08024008572101593,-0.049851495772600174,0.0798068717122078,0.16784577071666718,-0.01116277277469635,-0.08041363209486008,-0.1514107584953308,-0.009368252009153366,-0.1610778421163559,-0.08587110042572021,-0.03587540239095688,-0.007549659814685583,-0.19123950600624084,0.26267510652542114,-0.1904357522726059,0.14049673080444336,-0.2636581063270569,-0.9095979332923889,0.17938926815986633,0.0305084977298975,-1.112046480178833,-0.426291286945343,-0.07403133809566498,-0.044606614857912064,0.06519019603729248,-0.023310218006372452,-0.2962940037250519,0.3449591398239136,-0.052854761481285095,-0.2535856366157532,0.5162407755851746,1.0836434364318848,-0.24889183044433594,-0.015994573011994362,0.0024380236864089966,0.949196457862854,0.6109851002693176,-0.33964893221855164,0.3255975842475891,0.5158547759056091,-0.21774624288082123,0.07771075516939163,-0.5814127326011658,-0.19256246089935303,-0.16264592111110687,-0.1383909285068512,-1.2338165044784546,0.2993695139884949,-0.9222426414489746,0.4597720503807068,-0.1698305606842041,0.05397149175405502,1.4222692251205444,-0.011557722464203835,-0.42524591088294983,0.13736999034881592,0.7737838625907898,0.04973297938704491,0.350635290145874,0.15953224897384644,0.05243673548102379,0.15086252987384796,-0.0030704704113304615,-0.21806514263153076,-0.3939378559589386,0.2734145522117615,0.007066142745316029,-0.6413368582725525,0.6103101372718811,-0.030855625867843628,-0.33064642548561096,-0.6013791561126709,-0.34792500734329224,-0.4118623435497284,0.052767716348171234,0.7423022389411926,0.5280560851097107,0.0674109160900116,1.073146939277649,0.22159743309020996,0.09794529527425766,0.3233315348625183,-0.35191771388053894,0.209873229265213,-0.06486508250236511,0.09033553302288055,-0.22289757430553436,0.314412385225296,0.40570658445358276,0.19034267961978912,0.21485213935375214,0.06323482096195221,-0.07513414323329926,0.11144749075174332,0.27509671449661255,0.3117394745349884,0.2641458511352539,0.2573331296443939,-0.18575631082057953,0.13029851019382477,-0.017298046499490738,0.20829413831233978,-0.00915539637207985,0.11315543204545975,0.03700883314013481,-0.2899131774902344,0.2162073254585266,0.007635443937033415,0.1133868545293808,0.06762883067131042,0.20494471490383148,-0.06162330508232117,-0.40247905254364014,-0.06848964840173721,-0.22657395899295807,-0.038100551813840866,0.3541337847709656,-0.10577737540006638,0.11711385101079941,-0.3503453731536865,0.6430898904800415,-0.030615132302045822,-0.09223765879869461,0.24355272948741913,-0.1994817554950714,0.03181859105825424,0.23836229741573334,0.089476577937603,0.4145941734313965,-0.40572649240493774,-0.25979793071746826,-0.13881371915340424,0.5336735844612122,0.33198025822639465,0.30522245168685913,-0.055821288377046585,-0.013033322989940643,0.21677051484584808,0.09036712348461151,0.00803692638874054,-0.19479259848594666,0.0579831562936306,0.03557867184281349,-0.11667882651090622,-0.18861444294452667,0.04943939298391342,0.42174583673477173,-0.27707213163375854,0.2469453066587448,0.3729610741138458,0.18175797164440155,-0.09541672468185425,0.48550984263420105,-0.34357279539108276,-0.4172595143318176,0.2347007393836975,-0.126359760761261,-0.3673574924468994,0.37412866950035095,-0.29744699597358704,0.373739093542099,-0.052139028906822205,-0.2198522388935089,-0.48686885833740234,0.12705665826797485,-0.2345312386751175,0.375529944896698,0.1896861344575882,0.4369448125362396,0.4161752760410309,0.3454016149044037,-0.46572378277778625,-0.4682391285896301,-0.22693563997745514,0.30716341733932495,-0.0210602767765522,-0.7211004495620728,0.020391803234815598,0.531519889831543,-0.28666505217552185,0.11828362196683884,0.1271565705537796,0.8103821277618408,0.08533798903226852,0.39172637462615967,-0.2556403875350952,-0.40666601061820984,0.44429731369018555,0.432974636554718,-0.4056784212589264,0.34648454189300537,0.034495096653699875,0.18165582418441772,-0.08127984404563904,-0.2129400223493576,-0.022076111286878586,0.49566537141799927,0.4130372703075409,0.5223092436790466,-0.25250399112701416,0.44819438457489014,0.5358911752700806,0.07098688185214996,-0.21888618171215057,-0.2786760926246643,0.07293254882097244,-0.07320702075958252,0.1858978420495987,0.13312740623950958,0.022074278444051743,-0.14450523257255554,0.1261240690946579,-0.024674944579601288,-0.16496972739696503,0.11034969985485077,-0.08899237960577011,0.11418525129556656,-0.1508696973323822,0.18677422404289246,-0.33416858315467834,-0.6271767020225525,0.13056258857250214,0.04516903683543205,0.2667992413043976,0.12064328789710999,-0.014167233370244503,-0.28467562794685364,-0.03915340453386307,0.175432026386261,0.3721845746040344,-0.20507091283798218,-0.0854395255446434,-0.2454393059015274,0.23420202732086182,-0.046597957611083984,0.5739758014678955,0.5517464280128479,0.3890429735183716,-0.11833692342042923,0.4188970923423767,-0.03871576488018036,-0.28660574555397034,0.01912827230989933,0.05476903170347214,-0.09674236178398132,0.14905448257923126,0.17376400530338287,-0.20615917444229126,0.12582960724830627,0.3597947955131531,-0.35384419560432434,0.03989500179886818,-0.25554996728897095,0.37743449211120605,0.011905411258339882,0.11003834754228592,0.15423883497714996,-0.1678241789340973,-0.08600065857172012,0.17593041062355042,-0.6771622896194458,0.33599787950515747,0.2304321974515915,-0.009931761771440506,0.16311165690422058,0.19086042046546936,0.06620444357395172,0.23722229897975922,-0.28531792759895325,0.08267456293106079,-0.21822385489940643,0.2763954997062683,-0.19632308185100555,0.12492701411247253,-0.08586577326059341,0.053216058760881424,-0.024939991533756256,-0.4193899631500244,0.09119176864624023,0.34426867961883545,0.27740010619163513,0.11793487519025803,0.010399021208286285,-0.004984061233699322,-0.44480347633361816,-0.08493246883153915,0.4705899953842163,0.36173272132873535,0.19023862481117249,0.2340763807296753,-0.3414572477340698,0.24877892434597015,-0.05911097303032875,0.2544330060482025,0.31346115469932556,-0.13999716937541962,-0.18491648137569427,-0.12905235588550568,-0.10890103131532669,0.5549490451812744,0.3337099552154541,0.18641521036624908,-0.14616934955120087,-0.0192782673984766,0.3153114318847656,0.19804492592811584,-0.1908247172832489,-0.3520832061767578,0.15960849821567535,0.1331392377614975,-0.018818417564034462,0.031273309141397476,-0.30933743715286255,0.20613697171211243,-0.1846267282962799,-0.09284017980098724,-0.032892338931560516,0.1712976098060608,-0.198410302400589,-0.3370664715766907,0.21026000380516052,-0.14574769139289856,0.09996626526117325,0.09789297729730606,-0.23585230112075806,0.07975712418556213,-0.10065734386444092,-0.01802784577012062,0.040926653891801834,-0.07980813831090927,-0.10909698158502579,-0.21407604217529297,-0.4294775128364563,-0.09731683880090714,0.3016761541366577,0.15922372043132782,0.08720713108778,-0.07664011418819427,-0.1158054918050766,0.6331660747528076,-0.050339337438344955,-0.23501993715763092,0.2636144161224365,-0.16667893528938293,0.07800662517547607,-0.005999217741191387,0.4598504304885864,-0.35972967743873596,-0.5442699790000916,0.31649166345596313,-0.023317445069551468,-0.2510223686695099,0.261081725358963,0.2673070728778839,0.2409030646085739,-0.16551490128040314,-0.17690634727478027,0.1661231815814972,0.19344225525856018,-0.0008023313712328672,0.175768181681633,0.03551396727561951,-0.186971977353096,0.4371865689754486,0.34551113843917847,0.2938059866428375,-0.08126547187566757,0.07788822799921036,0.02675405889749527,0.0954357460141182,-0.1818588227033615,0.1816975474357605,0.07661838829517365,-0.010471226647496223,0.3265761733055115,-0.2037045806646347,0.30517229437828064,-0.04673165827989578,-0.1038886234164238,0.32239237427711487,-0.23965388536453247,0.2123325765132904,0.4521160423755646,0.29919639229774475,0.45992907881736755,-0.11451629549264908,-0.13435307145118713,0.08241363614797592,-0.04325268790125847,0.3820958733558655,0.41127365827560425,0.051672834903001785,0.04909546673297882,0.41247111558914185,0.19126902520656586,0.3048267066478729,-0.39706897735595703,0.16179761290550232,-0.04938580468297005,-0.26783230900764465,-0.41505759954452515,-0.13551102578639984,-0.12206635624170303,0.3189021646976471,-0.27317291498184204,-0.30141693353652954,-0.3034454882144928,0.3596799373626709,0.03613269329071045,0.2480059564113617,0.3248336613178253,0.0824374258518219,-0.03029705211520195,-0.20461520552635193,-0.15986856818199158,0.7301419973373413,0.28061720728874207,-0.230211079120636,0.14848801493644714,0.6321849822998047,0.01306659635156393,-0.15239998698234558,-0.09515906870365143,-0.17593802511692047,-0.33272650837898254,0.1735040843486786,-0.11400803923606873,-0.05718764290213585,0.2901970446109772,0.26298433542251587,0.07259438186883926,-0.21234163641929626,0.32234710454940796,0.2443845570087433,-0.23432767391204834,0.29588091373443604,0.04894251376390457,-0.006075950805097818,-0.11444325000047684,0.07311150431632996,0.23706945776939392,0.10366453230381012,-0.2999766767024994,0.19919012486934662,0.06983139365911484,0.3135649263858795,-0.07240118831396103,-0.31585490703582764,-0.021976672112941742,0.18561863899230957,-0.3498730957508087,0.08909104764461517,-0.09483787417411804,0.08355014026165009,0.18902687728405,0.27573060989379883,-0.09386000782251358,-0.30146273970603943,0.3880417048931122,0.0686924010515213,-0.10756031423807144,0.1862095594406128,0.3870165944099426,-0.20694051682949066,0.005826377309858799,-0.16304564476013184,0.24720163643360138,0.12318095564842224,0.1909751296043396,0.20063623785972595,-0.1280689388513565,-0.07465554028749466,-0.14367134869098663,-0.11899898201227188,0.24868729710578918,-0.4429950714111328,-0.19689010083675385,-0.26902058720588684,-0.18131425976753235,-0.34341758489608765,-0.07559990882873535,0.2735946774482727,0.1489439159631729,-0.2971595525741577,0.11581214517354965,0.22686608135700226,-0.051876332610845566,0.0012285105185583234,0.0649578794836998,0.26127490401268005,-0.2600504755973816,0.1759391874074936,-0.13200940191745758,0.33450931310653687,0.17799030244350433,-0.06052463874220848,-0.0582052581012249,0.2926805913448334,0.2535530924797058,-0.017338821664452553,0.02476596087217331,0.3667728006839752,-0.2143034189939499,-0.26483529806137085,0.19866198301315308,0.23872767388820648,-0.012105729430913925,0.18132859468460083,0.038019973784685135,0.06731965392827988,0.07916532456874847,0.15061786770820618,-0.02596200257539749,-0.07064241915941238,-0.009920619428157806,0.18574954569339752,0.025526361539959908,-0.054181430488824844,0.36128658056259155,0.22023539245128632,-0.014848709106445312,0.33563318848609924,-0.03444920852780342,0.40311452746391296,-0.03946767747402191,-0.056775402277708054,0.23584789037704468,0.051961712539196014,-0.20882926881313324,-0.10866958647966385,-0.3960602283477783,-0.08608657866716385,-0.4066646099090576,-0.2574049234390259,-0.08537548780441284,-0.256303071975708,0.13638688623905182,0.0833229273557663,-0.02256932482123375,0.11023305356502533,-0.27141398191452026,0.13592101633548737,0.039869021624326706,0.3366490602493286,0.024280063807964325,-0.20053628087043762,-0.09342984110116959,-0.10244782269001007,0.12604764103889465,-0.16915760934352875,-0.08278205245733261,-0.14098688960075378,-0.27065509557724,-0.07704966515302658,-0.3552224636077881,0.14659561216831207,-0.1728653609752655,-0.17998157441616058,0.2791108191013336,0.15516334772109985,0.0456206239759922,-0.30992206931114197,0.26642149686813354,-0.36968207359313965,-0.031243041157722473,0.15430037677288055,0.28218308091163635,0.021351851522922516,-0.13366591930389404,0.16321828961372375,0.04349968582391739,-0.16321025788784027,-0.2871682643890381,-0.2128189206123352,0.20421281456947327,0.16157189011573792,-0.18401718139648438,-0.29982107877731323,-0.12196170538663864,-0.09651989489793777,0.09085104614496231,-0.04838985949754715,0.07838395237922668,0.31707704067230225,0.006924954708665609,-0.034449897706508636,-0.19403396546840668,-0.040063995867967606,0.054403431713581085,-0.423454225063324,0.32697659730911255]},{"shape":[32],"values":[0.6724323034286499,-0.18317559361457825,-0.2006969004869461,0.6384677290916443,0.6544521450996399,-0.2678450047969818,0.283770889043808,0.3217047154903412,0.6350758075714111,-0.15207146108150482,0.6512037515640259,0.11943002045154572,0.32420894503593445,0.276235967874527,0.6140943765640259,0.3563840985298157,-0.07403253018856049,0.5370211005210876,0.8954931497573853,0.8366944789886475,-0.06591136753559113,-0.1341373473405838,0.3587440848350525,0.24376417696475983,-0.08787864446640015,0.41868337988853455,0.49935707449913025,0.6047004461288452,0.3088577687740326,0.5121501088142395,0.7212328910827637,-0.2430596798658371]},{"shape":[32,32],"values":[0.0509222075343132,0.5220053791999817,0.009961322881281376,0.5354709625244141,0.4854661524295807,0.5532323718070984,0.4890826642513275,0.19700632989406586,0.5351217985153198,0.5956183075904846,0.08783500641584396,0.1939888447523117,0.012317348271608353,0.4539104998111725,0.26136043667793274,0.4579862952232361,0.023565957322716713,-0.1167372539639473,0.19893556833267212,0.619101345539093,0.14418339729309082,0.9327781796455383,0.008367177098989487,0.09269125759601593,0.13996610045433044,0.09214799851179123,0.7490833401679993,0.0066313957795500755,0.4534277617931366,0.5751113295555115,0.8086315393447876,0.7431480884552002,-0.31966274976730347,-0.09596234560012817,-0.005262092221528292,-0.6642944812774658,-0.10578761249780655,-0.5792194604873657,-0.478372722864151,-0.007729091681540012,-0.8346937298774719,-0.10012637823820114,-0.26994138956069946,0.013785789720714092,0.06146853417158127,-0.44446179270744324,-0.39643222093582153,-0.5462783575057983,0.06837876886129379,-0.09445164352655411,0.5720366835594177,-0.4126307964324951,0.12540966272354126,-0.009272321127355099,0.16888628900051117,0.07025495171546936,-0.0717221051454544,-0.2743971645832062,-0.2204153835773468,0.1824485957622528,-0.04461287334561348,-0.43672531843185425,-0.556092381477356,-0.20593422651290894,-0.7045441269874573,-0.679493248462677,-0.03169713541865349,-0.3292764723300934,-0.13245096802711487,-0.29224303364753723,-0.4317692518234253,-0.2788684666156769,-0.4330598711967468,-0.37559497356414795,-0.24070385098457336,0.25655853748321533,-0.2897656559944153,-0.6669798493385315,-0.3959648311138153,-0.15849386155605316,0.01734383963048458,-0.07841410487890244,0.33622506260871887,0.07813911139965057,0.2941272556781769,-0.4381822645664215,0.15051548182964325,-0.34384727478027344,0.026759885251522064,-0.2632685899734497,-0.26305508613586426,0.2926344573497772,-0.4638960659503937,-0.4821126163005829,-0.12148718535900116,-0.6874029636383057,0.3039427399635315,0.21371279656887054,0.2742207646369934,0.4091070294380188,0.5830599665641785,0.18327926099300385,0.9130865335464478,0.43606626987457275,0.27244284749031067,0.4364035725593567,0.19114159047603607,-0.105902761220932,-0.09936945885419846,0.41626542806625366,0.4388958513736725,0.36847686767578125,0.2466101050376892,0.19791513681411743,-0.323871910572052,0.6371344327926636,0.2726385295391083,0.8159113526344299,-0.04348208010196686,-0.03890249505639076,-0.07518912106752396,0.3750172555446625,0.5356316566467285,-0.24878668785095215,0.6808570623397827,0.6092714667320251,0.7508440017700195,0.4812377095222473,0.018148796632885933,0.15037187933921814,-0.29150786995887756,0.2543485760688782,0.4867638647556305,0.39643555879592896,0.5835189819335938,0.2181636095046997,0.20649296045303345,0.38899150490760803,-0.05594230443239212,0.2958828806877136,0.07359921187162399,0.15240633487701416,-0.09604410827159882,0.04888482019305229,-0.07311024516820908,-0.26523736119270325,0.29707667231559753,0.5003923177719116,0.2600502669811249,0.290397971868515,-0.051624175161123276,-0.12946997582912445,-0.10941703617572784,-0.02504844218492508,0.4853184223175049,-0.21477454900741577,0.4280605912208557,0.1659623682498932,0.1696128249168396,0.6394315361976624,-1.2068337202072144,-1.0704067945480347,-0.15868279337882996,-0.27008363604545593,-0.647680938243866,-0.9499384760856628,-0.971383810043335,-0.3917439877986908,-0.819924533367157,-0.3816179931163788,-0.0017911770846694708,-0.41439956426620483,-0.7770972847938538,-0.9343715906143188,-0.7178281545639038,-0.6781819462776184,-0.1922130435705185,0.12771938741207123,0.787614643573761,-0.3528837561607361,-0.22415508329868317,-0.9482243061065674,0.43668127059936523,-0.3913082182407379,-0.3949534296989441,-0.7189017534255981,-0.8834089636802673,0.6979106664657593,-1.0642765760421753,-0.6310806274414062,-0.7803574800491333,-0.9805367588996887,-0.07416993379592896,0.1303093433380127,0.1012391671538353,0.08317025005817413,0.4668510854244232,0.17332710325717926,0.15828022360801697,-0.15618284046649933,-0.09491459280252457,-0.020943088456988335,-0.5481165051460266,0.40710312128067017,-1.0020238161087036,0.03643190860748291,0.0561518594622612,0.3557892441749573,0.3532663881778717,-0.17453740537166595,-0.30560222268104553,0.30004197359085083,0.09621214866638184,0.28038081526756287,-0.05220431834459305,-0.6709311604499817,-0.15862473845481873,-0.2015722244977951,0.04003532603383064,0.41473954916000366,0.2824316918849945,0.053789105266332626,0.02099161595106125,0.18392163515090942,0.057480499148368835,0.5991438627243042,-0.4695281684398651,0.617741584777832,0.41952085494995117,0.38184839487075806,0.7840959429740906,0.14971193671226501,0.48585841059684753,0.4126923978328705,-0.0697118490934372,0.21437165141105652,0.05889559164643288,0.5779441595077515,0.24900197982788086,0.3081563115119934,0.2096223384141922,-0.12795794010162354,-0.522747278213501,0.5078115463256836,0.37205812335014343,0.5188155770301819,-0.035304851830005646,0.060157809406518936,-0.07933816313743591,0.3124764859676361,0.5090385675430298,-0.1374955028295517,0.6538629531860352,1.0996969938278198,0.6930039525032043,0.5282888412475586,0.06517133116722107,0.38101905584335327,0.30230018496513367,0.6043069362640381,0.2628190219402313,0.3416804373264313,0.760284960269928,0.15470919013023376,-0.14398854970932007,0.5653520226478577,-0.12813708186149597,0.2859514355659485,0.3841513395309448,0.43255487084388733,-0.061878714710474014,0.25215864181518555,0.20925071835517883,0.08338858932256699,-0.09518764913082123,0.1730823814868927,0.18715934455394745,0.32154080271720886,-0.22458039224147797,0.1839250773191452,-0.11408212035894394,0.041524581611156464,0.3376263976097107,-0.050539854913949966,0.3558156192302704,0.6960442066192627,0.6243065595626831,0.07437870651483536,-0.7642832398414612,-0.650794267654419,-0.22492341697216034,-0.35638877749443054,-0.19441309571266174,-0.5690519213676453,-0.48394641280174255,-0.2227267473936081,-0.19769936800003052,-0.3642481565475464,0.39431875944137573,-0.5476852655410767,0.4536554217338562,-0.7784910202026367,-0.2712622284889221,-0.41827476024627686,-0.033769357949495316,0.38319072127342224,0.06179221719503403,-0.3946371078491211,-0.9980981349945068,-0.3528243899345398,0.1623738706111908,0.3186791241168976,0.2676617205142975,-0.4408290684223175,0.026429517194628716,0.07955200225114822,-0.37928956747055054,-0.07311752438545227,-0.005154727026820183,-0.6403402090072632,0.37190085649490356,0.3224984109401703,0.4052044749259949,0.14142242074012756,-0.02622763253748417,0.24606771767139435,0.5006921291351318,-0.12264739722013474,0.21545511484146118,0.30511564016342163,-0.02983224205672741,-0.005471266806125641,0.22141529619693756,0.0037227636203169823,-0.10829074680805206,0.07440729439258575,0.19448217749595642,-0.6436586976051331,-0.21898114681243896,0.22110359370708466,0.2901431620121002,0.5390293002128601,0.17110416293144226,0.45023903250694275,-0.33413246273994446,0.23486429452896118,0.46802765130996704,-0.05285556986927986,0.1307281255722046,0.22543568909168243,0.47089484333992004,0.06273304671049118,0.644940197467804,0.657024085521698,0.006930890493094921,0.6177492141723633,0.7268661260604858,0.7495037913322449,0.3410692811012268,-0.042098019272089005,0.3278217017650604,0.36608946323394775,0.2762639820575714,-0.37911659479141235,-0.2577487826347351,0.2544512450695038,0.3391181230545044,0.6928615570068359,-0.00542205385863781,-0.27725887298583984,-0.5392588376998901,0.6712300777435303,-0.12498840689659119,0.4945843517780304,-0.16533319652080536,0.022907158359885216,-0.1801186203956604,0.03776215389370918,0.4064069092273712,-0.29567140340805054,0.36789265275001526,0.40788525342941284,0.4588352143764496,0.26832249760627747,0.30160412192344666,-0.003965804819017649,-0.2806585431098938,0.28159815073013306,0.349408358335495,-0.13734593987464905,0.371600866317749,-0.059600621461868286,0.14752143621444702,0.4249362647533417,0.4447054862976074,0.10619980096817017,0.45765548944473267,0.3493780791759491,-0.07889188826084137,-0.22698308527469635,0.347922682762146,-0.0009067355422303081,0.2808152735233307,0.15736231207847595,-0.01427544467151165,0.1603524535894394,-0.04590291902422905,0.25099045038223267,0.1655886024236679,-0.07082948833703995,0.37691864371299744,-0.17112691700458527,0.11392119526863098,0.42416831851005554,0.14159250259399414,0.16376818716526031,0.4937981367111206,0.32081735134124756,0.18993598222732544,0.5405396223068237,0.48829635977745056,0.4943329989910126,0.42694973945617676,0.19663992524147034,0.2546180188655853,0.09465985000133514,-0.10923965275287628,-0.023894531652331352,-0.2371414750814438,0.6189281344413757,0.3652733266353607,0.5150982737541199,0.3522655963897705,0.19909265637397766,-0.2722606956958771,0.4852634370326996,-0.24023936688899994,0.4286055862903595,-0.6688047647476196,-0.1787453293800354,0.2969163656234741,0.18268540501594543,0.5403425693511963,-0.1609169840812683,0.7023787498474121,0.41606083512306213,0.6140412092208862,0.5049949288368225,-0.15694953501224518,0.49720117449760437,0.3930211067199707,-0.2852935791015625,0.38105687499046326,-0.009889116510748863,0.5388458967208862,-0.2046298235654831,-0.06784790754318237,-0.09841380268335342,0.14645306766033173,0.19508811831474304,0.00004653985524782911,0.25564253330230713,0.31901511549949646,0.41986218094825745,-0.15259288251399994,-0.5568203330039978,0.0007158301887102425,0.19462735950946808,0.3719574213027954,0.1936630755662918,0.35716933012008667,0.10423285514116287,-0.07589733600616455,-0.248634472489357,0.35855811834335327,0.14643537998199463,-0.06481555104255676,0.6307342052459717,0.4489593207836151,0.05493701621890068,0.1376141458749771,-0.17672207951545715,-0.49044620990753174,0.2699153423309326,0.3236375153064728,-0.09581639617681503,-0.038498494774103165,0.1270258128643036,0.3249739408493042,0.2802952229976654,-0.03596789017319679,-0.3511580228805542,0.4940940737724304,0.33961811661720276,0.3121500313282013,-0.10085529834032059,-0.26250866055488586,0.1298913061618805,-0.08132334798574448,0.39900732040405273,-0.2422260046005249,0.3211943209171295,-0.044916629791259766,0.27829471230506897,0.5218132138252258,0.18706828355789185,0.25273826718330383,-0.348162978887558,0.14570589363574982,0.3307000696659088,0.025928735733032227,0.10816739499568939,-0.6537718772888184,-0.7110018134117126,-0.03866708278656006,-0.6558587551116943,-0.5566455125808716,-0.32010921835899353,-0.7954683303833008,-0.15165449678897858,-1.3546524047851562,-0.26390308141708374,0.37549662590026855,-0.17864394187927246,0.5832096934318542,-0.6124699115753174,-0.4972403943538666,-0.6536787152290344,-0.3397442400455475,0.7608038783073425,0.734813392162323,-0.7160191535949707,-0.00030923853046260774,-0.7292259335517883,0.5255911350250244,0.6212665438652039,0.38720330595970154,-0.05421270430088043,-0.7400168180465698,-0.7678717970848083,-0.7765612006187439,-0.45146018266677856,-0.6543609499931335,-0.5211842060089111,0.3023114502429962,-0.006039567291736603,-0.6665520668029785,0.10611153393983841,0.24536535143852234,0.21527858078479767,0.2713426947593689,-0.06525706499814987,0.34224337339401245,0.39267733693122864,-0.09522832930088043,-0.31870585680007935,-0.3058698773384094,0.12260277569293976,0.36337020993232727,0.3380267918109894,0.08802011609077454,0.10203321278095245,0.0955481305718422,0.33736148476600647,-0.2188374549150467,0.4304136037826538,-0.004383161198347807,0.08247171342372894,0.22387133538722992,0.34753382205963135,0.5156654119491577,0.3001628518104553,-0.3524664640426636,-0.054802022874355316,0.5362885594367981,0.048455603420734406,0.3656129539012909,0.6217093467712402,0.02460131235420704,0.17531336843967438,0.46180984377861023,0.7259630560874939,0.4843529164791107,0.052640918642282486,0.21830283105373383,0.5111377239227295,-0.3226129710674286,-0.054688964039087296,-0.14668285846710205,0.4695170223712921,0.49457088112831116,0.2667815387248993,0.3429243266582489,-0.04353310167789459,-0.20174530148506165,0.45673486590385437,0.2342095673084259,0.9117273092269897,-0.240261048078537,-0.13971421122550964,0.24367974698543549,0.06886779516935349,0.6854949593544006,0.07777062058448792,0.7168511748313904,0.7649597525596619,0.8379683494567871,0.5373374819755554,0.2592112421989441,0.2960553467273712,0.04355139657855034,0.13628508150577545,0.4069425165653229,0.3886527121067047,0.48796215653419495,0.20573961734771729,0.07588560879230499,0.49580997228622437,-0.06044251471757889,-0.1902378648519516,-0.07108836621046066,0.4557245671749115,0.3194608688354492,0.34390658140182495,0.19113993644714355,-0.49444982409477234,0.2863445281982422,0.5493937134742737,0.3299219012260437,0.5769198536872864,-0.03068988025188446,-0.2401513159275055,-0.28133782744407654,0.10156822204589844,0.38758957386016846,-0.2705482840538025,0.5574013590812683,0.33658912777900696,0.5504907965660095,0.34731966257095337,-0.7596802711486816,-0.17138193547725677,-0.228886216878891,-0.6384174227714539,0.016418462619185448,-0.5623425841331482,-0.34945595264434814,0.19009806215763092,-0.6317573189735413,-0.09556300193071365,0.15424062311649323,0.29952770471572876,0.5585439205169678,-0.5027596354484558,0.1555161029100418,-0.010484318248927593,0.15368503332138062,0.02751023694872856,0.597515344619751,-0.04387814551591873,-0.1664343923330307,-0.20340090990066528,0.04792296513915062,0.2867703139781952,-0.12740394473075867,0.2286355048418045,-0.22761434316635132,-0.6170371174812317,-0.4857920706272125,-0.29947349429130554,-0.02782050520181656,-0.38298121094703674,-0.6778897643089294,-0.8810498714447021,0.4544009864330292,-0.33901697397232056,-0.467931866645813,-0.48239460587501526,-0.5532820820808411,-0.38754817843437195,-0.39696943759918213,-0.6448411345481873,0.14927704632282257,-0.048289813101291656,0.6412482857704163,-0.8915765881538391,0.2623864710330963,-0.418443888425827,-0.09877245128154755,0.18641769886016846,0.8418804407119751,-0.6031888723373413,-0.6462196707725525,-0.4371953010559082,0.46670833230018616,0.368076354265213,0.2930551767349243,-0.6312875151634216,-0.09757096320390701,0.18705779314041138,-0.37506648898124695,-0.4954800307750702,-0.4109465479850769,-0.5598886013031006,0.4995283782482147,0.5253663063049316,-0.3676259517669678,0.3444598317146301,0.5522724390029907,0.658721923828125,0.3416600525379181,-0.1913086473941803,0.3057955801486969,0.22535529732704163,-0.0752558633685112,-0.0332496277987957,-0.22180858254432678,0.6231272220611572,-0.11139772087335587,0.5859724283218384,0.1737469583749771,-0.41821107268333435,0.1807752400636673,0.758230447769165,0.14631931483745575,0.606788158416748,0.2856764495372772,-0.16347108781337738,-0.1576932817697525,-0.04861339554190636,0.17962245643138885,0.34760037064552307,0.008699245750904083,0.2504218518733978,0.6909293532371521,0.7794224619865417,0.10447721183300018,0.10125698894262314,-0.11779630929231644,0.46409329771995544,0.16776373982429504,-0.16211673617362976,0.6198164224624634,-0.07969788461923599,0.04515216872096062,0.5112166404724121,0.44014808535575867,-0.007503822911530733,0.10273771733045578,0.28241026401519775,-0.07708581537008286,-0.1116286888718605,-0.05379849672317505,0.12383557111024857,-0.21359828114509583,0.46207424998283386,-0.18368905782699585,0.27449965476989746,-0.30620983242988586,0.1599695086479187,0.40637683868408203,0.325901061296463,0.555933952331543,-0.3646959960460663,0.21530306339263916,0.7135597467422485,0.20414799451828003,0.6138486266136169,-0.42882388830184937,-0.5999717712402344,0.19912201166152954,-0.41057708859443665,-0.3455371856689453,-0.19282928109169006,-0.24502453207969666,0.2079051285982132,-0.23234479129314423,0.02857816591858864,-0.09833504259586334,0.22167089581489563,0.5321424603462219,-0.6079046726226807,-0.28197354078292847,-0.3318946063518524,0.14661675691604614,-0.00962215755134821,0.42658597230911255,-0.12705795466899872,-0.060216207057237625,-0.46768996119499207,-0.24218522012233734,0.06571371853351593,0.2502111792564392,0.04256456345319748,-0.15776008367538452,-0.0204415712505579,-0.25991296768188477,-0.3961537182331085,-0.4384491443634033,0.10296691954135895,0.4516471326351166,0.5784123539924622,-0.26084983348846436,0.1410796344280243,0.4219263195991516,0.560887336730957,0.6053356528282166,0.014817975461483002,0.5084561109542847,0.6221485137939453,0.11648949980735779,0.009375070221722126,-0.5309576392173767,0.19647428393363953,0.033833861351013184,0.313534140586853,0.34741508960723877,-0.23603616654872894,0.09251101315021515,0.17592750489711761,0.16543170809745789,0.7339762449264526,-0.1694325953722,-0.37440648674964905,-0.25622445344924927,0.4775000810623169,0.6382741928100586,0.16814832389354706,0.025888830423355103,0.23429445922374725,0.7016389966011047,0.7149426937103271,0.20250944793224335,0.37850821018218994,-0.42525482177734375,0.28127923607826233,0.47945114970207214,0.31075796484947205,0.4747505486011505,-0.026150932535529137,0.008019158616662025,0.40086793899536133,0.13948103785514832,-0.1734514981508255,0.11819956451654434,0.5423774719238281,0.5133554935455322,0.4637683928012848,-0.008554941043257713,0.10421545058488846,0.22975105047225952,0.408247172832489,0.05247657373547554,0.5875964164733887,0.09348694235086441,0.07502549141645432,0.2657542824745178,0.1510682851076126,0.3178544044494629,0.049531593918800354,0.19211743772029877,0.11981552839279175,0.3954099714756012,0.4265930950641632,0.38106706738471985,-0.17263555526733398,-0.11286290735006332,0.3635845482349396,0.1641295701265335,0.008651882410049438,0.19060055911540985,-0.24573537707328796,0.3629796504974365,0.2538824677467346,-0.38575416803359985,-0.18517069518566132,-0.3635613024234772,-0.030454382300376892,0.10485552996397018,0.09183531999588013,0.19569429755210876,0.13979382812976837,0.06981342285871506,0.5208696722984314,-0.3672483265399933,0.024685561656951904,0.330209881067276,-0.4907950460910797,-0.48611587285995483,0.2848910093307495,0.28062382340431213,0.3234187364578247,-0.19148747622966766,0.15305066108703613,0.4176846742630005,0.34125521779060364,0.3318987190723419,0.30345457792282104,0.150575652718544,0.2501744031906128,0.30938270688056946,0.6347236633300781,0.8346614241600037,0.3357085585594177,0.2648897171020508,0.11050893366336823,-0.020145783200860023,0.24686914682388306,0.1280955970287323,0.5707889199256897,0.13662803173065186,0.4506009817123413,0.046922069042921066,-0.2896595597267151,-0.20353853702545166,0.3575551211833954,0.1577897071838379,0.5026530027389526,0.35772910714149475,-0.2508588135242462,-0.4845776855945587,0.006161103956401348,0.10758591443300247,-0.2224079817533493,0.4458160102367401,0.4047859013080597,0.20020273327827454,0.5133946537971497,0.41343748569488525,0.2813776433467865,0.08807405084371567,0.4565488398075104,0.6409735083580017,0.842643678188324,0.5276133418083191,0.333454430103302,-0.05610007420182228,0.7020031213760376,-0.1605951189994812,-0.41866013407707214,-0.4192406237125397,0.6870570182800293,0.2450048327445984,0.20280234515666962,-0.09396568685770035,0.031128613278269768,-0.28654706478118896,0.22573980689048767,0.18934683501720428,0.5147091746330261,-0.3673737943172455,0.0029982200358062983,-0.0017649992369115353,-0.01214673463255167,0.4050847589969635,-0.037180718034505844,0.17725618183612823,0.7409927845001221,0.74375981092453,0.8894277215003967,0.07237576693296432,0.304379403591156,0.340607225894928,0.5643025636672974,0.33447369933128357,0.5874228477478027,0.47871267795562744,0.37172865867614746,0.25936928391456604,0.5457850098609924,-0.26127657294273376,0.4276672601699829,0.050646647810935974,0.6357846260070801,0.06548216193914413,0.11610457301139832,0.06447189301252365,-0.2571413218975067,0.12912617623806,0.1174149438738823,0.01924332231283188,0.34987685084342957,0.30101925134658813,0.15523965656757355,-0.5438799262046814,-0.013108155690133572,0.4423253536224365,0.30634328722953796,0.14599883556365967,0.7067215442657471,0.534205436706543,0.5246999263763428,-0.7074906229972839,-1.0219824314117432,0.28513115644454956,-0.25012072920799255,-0.27669164538383484,-0.9980496168136597,-0.7571789026260376,-0.4218059480190277,-0.7282407879829407,-0.6452508568763733,-0.42250561714172363,0.18438710272312164,-0.325918585062027,-1.1448451280593872,-0.37552815675735474,-0.550719141960144,-0.43590617179870605,0.22250334918498993,0.8016083836555481,-0.25107893347740173,-0.3828086256980896,-0.6835559010505676,0.15748408436775208,-0.11830613762140274,-0.07013597339391708,-0.4957334101200104,-0.2525249719619751,0.2740669548511505,-1.0446008443832397,-0.4585108458995819,-0.3791273832321167,-0.8692265152931213]},{"shape":[32],"values":[0.3437533378601074,0.2922171354293823,0.342509388923645,0.3837975859642029,0.43581363558769226,0.39540353417396545,0.3889628052711487,0.031038783490657806,0.22641929984092712,0.44570842385292053,0.04822048172354698,-0.2702268362045288,-0.04818761348724365,0.3705839216709137,0.306477814912796,0.4604596793651581,-0.0478830561041832,-0.06197214871644974,-0.15043379366397858,0.4342350363731384,-0.22723165154457092,0.4517681300640106,-0.28152206540107727,0.02460472844541073,0.04390482231974602,0.31003791093826294,0.46006059646606445,-0.19588389992713928,0.2648688554763794,0.45480215549468994,0.45776182413101196,0.5593475699424744]},{"shape":[32,9],"values":[0.9327098727226257,1.1875814199447632,0.7066946625709534,0.3827859163284302,0.7234534621238708,0.48379161953926086,0.5423297882080078,0.49835532903671265,0.6464525461196899,0.6011227369308472,0.2696998417377472,0.8236497044563293,0.2445416897535324,0.5142915844917297,0.426880419254303,0.637142539024353,0.2764379382133484,0.34191691875457764,-0.059304799884557724,0.3582470118999481,0.2807105481624603,-0.08577167242765427,0.008300685323774815,0.3834943175315857,-0.7724131941795349,-0.30187246203422546,0.3350124657154083,0.15591484308242798,0.27141842246055603,0.7999444007873535,0.3499199450016022,0.4861079156398773,0.2009955644607544,0.747482180595398,0.5831392407417297,0.4769015312194824,0.08137395232915878,0.5096715092658997,0.04312272369861603,0.5786906480789185,0.02766038291156292,0.16574160754680634,0.17149411141872406,0.529352068901062,0.5036824345588684,0.6729795932769775,0.24211229383945465,0.2779324948787689,0.45484060049057007,0.4973498582839966,0.7963099479675293,0.7473521828651428,0.584023654460907,0.4199191927909851,0.6458698511123657,0.712939441204071,0.023319218307733536,0.5251485109329224,0.6039915680885315,0.6220198273658752,0.6961838603019714,0.31711310148239136,0.3852813243865967,0.3164120614528656,0.023655425757169724,-0.32230621576309204,0.3135150074958801,0.22618739306926727,-0.089446522295475,0.5320452451705933,0.33355972170829773,-0.0753689855337143,0.665892481803894,0.7162570357322693,0.23776939511299133,0.48938196897506714,0.7284284234046936,0.8561099767684937,0.2664743959903717,0.5908976197242737,0.7434312105178833,0.18826907873153687,0.09153082221746445,-0.02237638086080551,0.29455676674842834,0.4944758117198944,0.3761630058288574,0.28991639614105225,0.6592978239059448,0.5345761775970459,0.07712539285421371,0.002358409110456705,-0.3243963420391083,-0.5012570023536682,-0.5622852444648743,-0.15187911689281464,-0.2962765693664551,-0.6306870579719543,-0.5401796698570251,-0.034302789717912674,-0.45723918080329895,-0.16977207362651825,0.2042469084262848,-0.3961946368217468,-0.3310546576976776,-0.04888695478439331,0.06439410150051117,-0.5748206973075867,-0.4321140646934509,-0.5807973146438599,-0.7788229584693909,-0.22565974295139313,-0.5765947103500366,-0.2567416727542877,-0.5089919567108154,-0.5940753817558289,-0.3632536828517914,0.5770075917243958,0.5670257210731506,0.6860383152961731,0.8386167287826538,0.42152127623558044,0.6052513718605042,0.39932921528816223,0.4473319351673126,0.32478269934654236,0.38786640763282776,0.10570073872804642,0.5878725647926331,0.12378662824630737,-0.0680052787065506,0.0272739939391613,0.5032451152801514,0.33378851413726807,0.22157132625579834,0.21348674595355988,0.6276790499687195,0.48374661803245544,0.37566331028938293,0.37659838795661926,0.18320097029209137,0.37005239725112915,0.44477906823158264,0.7114343643188477,0.18091174960136414,0.23214921355247498,0.3541717231273651,0.06298092007637024,0.21153753995895386,0.09561404585838318,0.03556867688894272,0.26530611515045166,-0.10741515457630157,-0.4188809096813202,-0.22037890553474426,0.23605147004127502,0.001715868478640914,-0.2503463923931122,-0.3963167369365692,-0.2249029278755188,-0.22841988503932953,-0.6107969284057617,-0.2573336362838745,-0.40747418999671936,-0.5001915097236633,-0.5770648121833801,-0.4774927794933319,-0.5541347861289978,-0.288670152425766,-0.6082653403282166,-0.45446494221687317,0.3679986894130707,0.20232011377811432,0.648729681968689,0.20977897942066193,0.35217419266700745,0.5477933883666992,0.25463688373565674,0.15061227977275848,0.5559237599372864,0.20665478706359863,0.31254684925079346,-0.19717486202716827,0.060305047780275345,-0.053226977586746216,-0.5166026949882507,0.45548513531684875,0.16909317672252655,-0.4921910762786865,-0.05714481323957443,0.3192746639251709,0.6439470052719116,0.4141451120376587,0.6745782494544983,0.6067415475845337,0.6793433427810669,0.2596544921398163,0.5213860273361206,-0.19127072393894196,0.013863878324627876,0.21074439585208893,0.19122089445590973,-0.121050626039505,-0.6199252605438232,-0.4144356846809387,0.06180717796087265,-0.4102736711502075,-0.5364725589752197,-0.1138501688838005,0.13630783557891846,-0.4387906789779663,0.029348837211728096,-0.6524055600166321,-0.3416474163532257,-0.3114873766899109,-0.21293970942497253,-0.5758392810821533,-0.2184188961982727,-0.3785196542739868,-0.7610926032066345,-0.1462065428495407,-0.23286546766757965,-0.3880382478237152,-0.5335320234298706,-0.21904624998569489,0.1739940494298935,0.014975437894463539,0.052029360085725784,0.3606736660003662,0.1358494609594345,0.3490852415561676,0.24222055077552795,0.5264007449150085,0.5126479268074036,0.32025089859962463,0.03596391901373863,0.5166829824447632,0.15350966155529022,0.2991357445716858,0.4892650544643402,0.40492865443229675,0.41931289434432983,0.45143941044807434,-0.3478505313396454,-0.14416123926639557,-0.2612372636795044,-0.42710357904434204,-0.4377104341983795,-0.010486466810107231,-0.3761235475540161,-0.6432254910469055,-0.3516879975795746,0.6741279363632202,0.6016104817390442,0.521917462348938,0.7096042633056641,0.39311155676841736,0.11344879120588303,0.3256179690361023,0.12709692120552063,0.25402572751045227,0.7913849353790283,0.793696939945221,0.6040006875991821,0.3543582260608673,0.37903639674186707,0.4689136743545532,0.3969259262084961,0.7924123406410217,0.3212544322013855,0.19987861812114716,0.12156711518764496,0.14270234107971191,0.5204327702522278,0.5432735085487366,0.4741765260696411,0.2480391263961792,0.42323631048202515,0.4658454954624176,0.6740415692329407,0.6151692271232605,0.5561172962188721,0.6001734137535095,0.5021899342536926,0.3177207410335541,0.5256422758102417,0.4452945590019226,0.4844975471496582]},{"shape":[9],"values":[0.18116255104541779,0.10644691437482834,0.18804918229579926,0.20432262122631073,0.07736652344465256,0.14800336956977844,0.20134438574314117,0.28908011317253113,0.4464935064315796]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-73.json new file mode 100644 index 0000000..370bd11 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v2","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v1","observation":"racing-observation-v1","protocol":"racing-q-learning-v2","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:24:28.771Z","weights":[{"shape":[20,32],"values":[0.9679517149925232,-0.15041406452655792,1.6206421852111816,-0.025265241041779518,0.9985446333885193,1.1048933267593384,-0.16527345776557922,1.0817118883132935,-0.46089157462120056,-0.09328048676252365,-0.5325368642807007,-0.3025447726249695,1.2390247583389282,0.1254889816045761,-0.33854883909225464,1.3474867343902588,0.10231780260801315,0.1139579489827156,0.9679829478263855,0.5744583010673523,0.05657661706209183,0.25394734740257263,1.1272658109664917,1.1304974555969238,-0.5919384956359863,1.041966199874878,0.08528691530227661,0.7713789343833923,0.8306230306625366,1.2052041292190552,1.0850586891174316,1.3051191568374634,0.0832860916852951,0.13048213720321655,0.13703809678554535,0.11381373554468155,-0.1484839916229248,0.3475886583328247,0.051675595343112946,0.14295242726802826,0.14902979135513306,-0.2806592285633087,-0.1864396184682846,0.1155351996421814,-0.24214927852153778,-0.12168771773576736,-0.01938033103942871,0.1465548723936081,-0.2570320963859558,-0.14500977098941803,-0.0026955227367579937,-0.2653128504753113,-0.10530278831720352,-0.2612137198448181,-0.09403438121080399,-0.11169732362031937,0.13038764894008636,0.020004520192742348,0.035832177847623825,-0.034463342279195786,-0.27116942405700684,-0.2604658305644989,0.10276544839143753,0.08155704289674759,-0.36457663774490356,0.8259400725364685,-0.0828307494521141,-0.48488089442253113,0.18407532572746277,-0.09365684539079666,-0.2988550662994385,0.18341785669326782,0.20334844291210175,-0.20631268620491028,-0.31124410033226013,1.0085563659667969,0.17107369005680084,-0.3577759265899658,-0.6999208331108093,0.07377415150403976,-0.15846796333789825,-0.3605492413043976,0.07579846680164337,-0.16544857621192932,0.030026458203792572,-0.296021968126297,-0.11931104212999344,-0.1030123308300972,-0.015606689266860485,0.2321534901857376,-0.6184036731719971,0.24317802488803864,0.07975785434246063,-0.004816271364688873,-0.004770904779434204,0.06662260740995407,0.1211017295718193,-1.0269094705581665,-0.16519148647785187,1.0371551513671875,0.0832749605178833,0.09229165315628052,0.36488640308380127,-0.34686243534088135,-0.3735058307647705,1.1708852052688599,1.7902328968048096,-0.6781237721443176,-0.2958816885948181,1.3149042129516602,0.576522707939148,0.03580918163061142,1.5509123802185059,1.8294410705566406,-0.043844740837812424,-0.011142358183860779,0.19363725185394287,1.5904862880706787,0.21955153346061707,0.13081340491771698,-0.8991302847862244,-0.5326914191246033,0.7499995827674866,-0.45563894510269165,0.17790117859840393,-0.10471528023481369,0.029942551627755165,-0.30518385767936707,-0.03216005116701126,0.03204318881034851,-0.16827411949634552,-0.07823065668344498,0.43287143111228943,-0.03618422523140907,0.3775980472564697,0.04611845687031746,0.2760254144668579,0.33988234400749207,-0.08146178722381592,0.02068447321653366,0.3162841498851776,-0.2297656089067459,0.009268072433769703,-0.4331108033657074,-0.23690128326416016,0.18662823736667633,0.27488499879837036,0.031241556629538536,0.15159353613853455,-0.13495777547359467,-0.06701594591140747,0.1338929384946823,0.3034588396549225,0.33681532740592957,0.1898224651813507,0.1962677240371704,0.13031457364559174,0.4841076135635376,-0.09198927879333496,0.07436484843492508,-0.26048743724823,-0.11739324033260345,-0.22843612730503082,0.24173539876937866,0.03212737664580345,-0.11945387721061707,0.15191170573234558,0.3991324305534363,0.2838658392429352,0.1847877949476242,0.3178391754627228,-0.12475273013114929,0.11742901802062988,0.1633831262588501,-0.11559738963842392,-0.2338249385356903,0.3269410729408264,0.1967332810163498,-0.09025728702545166,-0.19348154962062836,0.5384430885314941,0.14275933802127838,0.379954993724823,-0.18654070794582367,0.16281838715076447,0.2917118966579437,0.25295040011405945,-0.05736556276679039,0.16791070997714996,0.15955665707588196,-0.15926803648471832,0.3088614046573639,-0.02237994410097599,-0.14654694497585297,-0.2689874768257141,0.0776052474975586,0.2011595368385315,-0.3215170204639435,0.5161483287811279,0.13664011657238007,0.14722135663032532,0.34488070011138916,0.28385716676712036,0.3530001938343048,-0.07920747250318527,0.2487860471010208,0.1279667317867279,-0.36768049001693726,0.18493254482746124,0.28405845165252686,-0.3360689878463745,-0.18198253214359283,-0.4243599772453308,0.4014158844947815,0.18405815958976746,0.13371504843235016,0.03254039213061333,0.2074052095413208,-0.08780737966299057,0.024173377081751823,0.010042845271527767,0.19339485466480255,-0.24313589930534363,0.047719068825244904,0.4299643039703369,0.10700111836194992,-0.3444553017616272,0.18267588317394257,0.173252671957016,-0.11526269465684891,0.11154020577669144,-0.019286876544356346,-0.2777479290962219,-0.16305309534072876,0.07267265766859055,-0.13838672637939453,0.4139710068702698,0.142272487282753,0.04109887033700943,0.07506819814443588,0.4416157901287079,-0.20533974468708038,0.5309038758277893,0.3054135739803314,-0.45486459136009216,0.025342535227537155,0.24629484117031097,0.025381434708833694,-0.27670472860336304,-0.013419930823147297,0.21908347308635712,0.31289300322532654,-0.22523127496242523,0.3362112045288086,0.5785780549049377,-0.14317570626735687,-0.08069897443056107,-0.27624741196632385,0.14848197996616364,-0.1172071024775505,-0.16231964528560638,-0.14788460731506348,0.10018070787191391,0.3184055984020233,0.5748699307441711,-0.057285331189632416,-0.16569672524929047,0.153660848736763,0.2657957673072815,-0.19633962213993073,-0.047298405319452286,-0.17337357997894287,0.13822507858276367,0.10283466428518295,-0.1207159087061882,-0.1339273601770401,-0.15256616473197937,0.11932247132062912,-0.03624796122312546,-0.09830857813358307,0.17067281901836395,0.18438152968883514,0.14130152761936188,0.34573298692703247,0.5463423132896423,-0.00039914422086440027,-0.5540962815284729,0.18026168644428253,-0.19428585469722748,0.3471273183822632,0.38895726203918457,-0.049395930022001266,0.3796449899673462,0.08128026872873306,-0.013431617058813572,0.34001004695892334,-0.10387185961008072,-0.03342656046152115,-0.11483746021986008,-0.3208032250404358,0.025041798129677773,0.11532144993543625,-0.26978620886802673,0.14987428486347198,0.16458356380462646,0.09757097065448761,0.36188313364982605,0.20549097657203674,0.41098541021347046,0.33767983317375183,-0.2539888620376587,0.026390573009848595,-0.05103207007050514,-0.006494023371487856,-0.13991329073905945,0.1953606903553009,-0.1435118168592453,-0.033839114010334015,-0.2985345721244812,-0.07224301248788834,0.33874428272247314,0.16698598861694336,0.2799419164657593,-0.3701755702495575,0.30817341804504395,0.4874296486377716,-0.024637339636683464,0.3887288570404053,-0.2219884991645813,0.07220722734928131,-0.1787426918745041,-0.09158613532781601,-0.005516674369573593,-0.20240554213523865,-0.1956472545862198,0.14604175090789795,-0.15111082792282104,-0.028234824538230896,0.13663619756698608,0.27543050050735474,-0.027688369154930115,0.10780235379934311,-0.15309540927410126,0.4934210777282715,-0.1395842283964157,0.10382246226072311,-0.5477175116539001,0.22952650487422943,0.5537800192832947,0.4011293053627014,0.38073110580444336,0.10244445502758026,-0.10865146666765213,-0.24749347567558289,0.07398064434528351,-0.19586564600467682,0.1990378499031067,0.2139779031276703,0.24154555797576904,0.09593914449214935,0.3593939244747162,0.22764436900615692,0.21180427074432373,0.21208012104034424,-0.1794119030237198,0.31365591287612915,0.21964310109615326,-0.1252336949110031,-0.06073068827390671,0.04487438499927521,-0.12853403389453888,0.2001146376132965,0.10941115021705627,0.07889335602521896,-0.04744849354028702,-0.019586682319641113,-0.26859772205352783,-0.10300815850496292,-0.19292940199375153,-0.23070178925991058,-0.044587135314941406,0.13364672660827637,-0.48265448212623596,-0.26743778586387634,-0.1905892789363861,-0.06872555613517761,-0.11698444932699203,0.2369183599948883,-0.23521022498607635,-0.08613770455121994,0.08658137917518616,0.12887510657310486,0.24102726578712463,-0.12358888983726501,0.011876370757818222,0.07672341167926788,-0.17507292330265045,0.2961576581001282,0.025293877348303795,0.13955168426036835,0.11103945225477219,-0.20041966438293457,0.01944936253130436,-0.04476814717054367,-0.20232392847537994,-0.12488694489002228,0.06299838423728943,-0.19416320323944092,-0.08138011395931244,-0.3116990029811859,0.18681403994560242,0.5659114718437195,0.18468359112739563,0.278128981590271,-0.3717232048511505,0.1854081153869629,0.1836416870355606,0.29513904452323914,0.3430418372154236,0.17275620996952057,-0.11998343467712402,-0.052206140011548996,0.17271728813648224,-0.2965005934238434,0.19141922891139984,0.23681266605854034,0.21686896681785583,-0.23836492002010345,0.0795724093914032,-0.007086410187184811,0.2680574059486389,0.40318140387535095,-0.16790612041950226,-0.055853571742773056,0.29735198616981506,-0.03136960789561272,0.4158787429332733,-0.23774270713329315,-0.2773379385471344,0.12884658575057983,-0.14800937473773956,0.23369428515434265,0.05087863653898239,-0.31798577308654785,0.2326589971780777,-0.09119632840156555,-0.3636184334754944,-0.009227791801095009,0.014639622531831264,0.06025376915931702,0.15110167860984802,-0.08076167106628418,0.16359451413154602,0.15976674854755402,0.3914211690425873,-0.17116393148899078,0.05498660355806351,0.019452625885605812,0.09973762929439545,-0.14003194868564606,0.1141679659485817,-0.12288122624158859,0.341569721698761,-0.0005958243273198605,-0.27963921427726746,0.43237656354904175,-0.21913348138332367,-0.12399748712778091,-0.0021714239846915007,-0.38362622261047363,0.24531182646751404,0.2597818076610565,0.03759133815765381,0.2040901780128479,-0.23622003197669983,0.366555780172348,-0.0963929146528244,0.1388583779335022,0.11180560290813446,-0.16828575730323792,0.03132720664143562,-0.05025799572467804,0.10928834974765778,0.34647271037101746,0.2549131512641907,-0.01180895697325468,-0.2871032655239105,-0.1627776175737381,-0.014673168770968914,-0.030705058947205544,-0.17653197050094604,0.3726082444190979,0.03211979195475578,0.16703374683856964,-0.049026232212781906,-0.21196377277374268,-0.1145547479391098,-0.07188671827316284,0.10670820623636246,0.04978043586015701,0.24886609613895416,-0.25163885951042175,-0.13311892747879028,-0.06346346437931061,0.22894702851772308,0.17183712124824524,0.29424604773521423,-0.07726939022541046,0.1144355908036232,-0.07878733426332474,-0.13245873153209686,-0.2639419138431549,-0.06110971048474312,-0.11711753904819489,-0.09596174210309982,-0.15072029829025269,-0.225656658411026,0.05098341405391693,-0.24911744892597198,0.03733717277646065,-0.20008838176727295,0.00535742798820138,0.046636320650577545,0.190443754196167,0.09312538057565689,0.25413456559181213,-0.06483455002307892,-0.09185852855443954,0.14419156312942505,-0.26515650749206543,-0.07357897609472275,0.02145073562860489,-0.28222551941871643,-0.17294630408287048,0.0921221598982811,-0.3018961548805237,0.2505147159099579,-0.23611050844192505,-0.2829682230949402,0.12519775331020355,0.06565506756305695,-0.13302657008171082,0.006822055205702782,-0.3204246163368225,-0.03440525010228157,-0.24442626535892487,0.2428361475467682,0.18454262614250183,0.2981516718864441,0.09079466760158539,0.31594914197921753,-0.02866578847169876,0.16512082517147064,-0.13947103917598724,0.05590086430311203,0.14474937319755554,-0.21008427441120148,-0.32335802912712097,0.37776291370391846,0.2028997838497162,-0.22193455696105957,0.1883184164762497,-0.0029778187163174152,0.20100568234920502,0.2419150173664093,0.29056504368782043,0.008191424421966076,-0.1615775227546692,-0.20246919989585876,0.2686871588230133,0.22685690224170685,0.01910744048655033,-0.07397415488958359,0.24078163504600525,-0.3535526692867279,-0.005972540937364101,-0.1539405882358551,-0.4358203411102295,-0.11064288765192032,-0.19924159348011017,-0.034811969846487045,-0.047155991196632385,0.39296650886535645,0.04671719670295715,-0.5460427403450012,0.03955438360571861,0.21889984607696533,-0.18818627297878265,0.0029187281616032124,-0.0072135282680392265,0.7258867621421814,0.3504478633403778,-0.2794920802116394,0.16408224403858185,-0.11112575978040695,-0.10153602063655853,-0.2681291699409485,-0.3394474685192108,-0.2040640413761139,-0.271892786026001,0.2421635389328003,0.056441161781549454,-0.13397128880023956,0.1811428964138031,-0.19234026968479156,0.006373561918735504,0.3727324903011322,0.03830709308385849,0.013209659606218338,-0.1798156499862671,0.007155277766287327,-0.2742704451084137,-0.15396854281425476,-0.2701363265514374,-0.03897814825177193,-0.16169489920139313,0.29594478011131287,-0.17888964712619781,0.18902400135993958,0.03966613486409187,0.10581380128860474,0.2620694041252136,-0.038647204637527466,-0.2748280465602875,0.03596872091293335,0.008083599619567394,-0.1382833570241928,-0.2331707775592804,-0.289707750082016,-0.1789405345916748,-0.14222052693367004,0.08035868406295776,0.3296207785606384,0.00021930134971626103,-0.23545649647712708,-0.13015776872634888,-0.29705893993377686,0.13833555579185486,0.17449738085269928,0.24227619171142578]},{"shape":[32],"values":[0.44874757528305054,-0.09660503268241882,0.5135648250579834,-0.3456425070762634,0.5014882683753967,0.4224758446216583,-0.2986431121826172,0.6222562789916992,0.044847726821899414,-0.34474337100982666,-0.3379581570625305,0.06316334009170532,0.6742282509803772,-0.3767198324203491,-0.2739780843257904,0.45757099986076355,-0.4030097424983978,-0.4099162518978119,0.34559366106987,0.4767906069755554,0.10066064447164536,-0.52028489112854,0.6263782382011414,0.833842933177948,-0.03227296099066734,0.44029733538627625,-0.3162631392478943,0.41596367955207825,0.49897369742393494,0.44751614332199097,0.4327924847602844,0.6824458241462708]},{"shape":[32,32],"values":[0.43181926012039185,0.06708429753780365,0.16349245607852936,0.19134056568145752,0.2572260797023773,0.3823988437652588,0.5380944013595581,0.016952721402049065,0.25394871830940247,0.5096175074577332,0.39907166361808777,0.5282607674598694,-0.16016176342964172,0.17398476600646973,-0.30986523628234863,0.1247498020529747,0.832579493522644,0.4168926477432251,0.8676048517227173,0.022818470373749733,0.32738304138183594,0.5315589308738708,0.4104928970336914,0.549414336681366,0.5260276794433594,0.2683526277542114,0.48779937624931335,0.8216311931610107,0.2865697741508484,0.678022563457489,0.2818301022052765,0.17203402519226074,-0.4457800090312958,-0.5737271308898926,0.12776271998882294,-0.5513916015625,-0.833885908126831,0.2565564513206482,-0.07986893504858017,0.037142038345336914,0.7929243445396423,-0.5022068023681641,-0.5236398577690125,-1.0589053630828857,-0.1797218769788742,-1.018354892730713,-0.2572401165962219,-0.1844017207622528,-0.503065824508667,-0.4389245808124542,-0.8496788740158081,-1.047576665878296,-1.0221704244613647,0.0012370708864182234,-0.5731564164161682,-0.4649723470211029,-0.6640302538871765,0.2556479275226593,-0.6314412355422974,-0.7716726064682007,-0.711256742477417,-0.4145123064517975,-0.769600510597229,-0.9723513722419739,0.5477254390716553,0.5116961598396301,0.024761101230978966,0.4700937867164612,0.7745097279548645,0.18658645451068878,0.2807571291923523,-0.2573133111000061,-0.023981580510735512,0.1311475932598114,0.38527047634124756,0.5761324167251587,-0.16431798040866852,0.9945039749145508,-0.2558245360851288,-0.22905801236629486,0.7928200364112854,-0.19703765213489532,0.8510099053382874,0.7641271948814392,0.44130611419677734,-0.056615669280290604,0.5926494598388672,0.32374274730682373,0.38972175121307373,-0.05859137699007988,0.6777393817901611,0.4742526412010193,0.7713959217071533,0.0049436637200415134,0.6498073935508728,0.5827063322067261,-0.6359114050865173,-0.39874234795570374,-0.24411119520664215,-0.14970241487026215,-0.5136507749557495,-0.03875235468149185,0.09994221478700638,-0.029722845181822777,0.4445893466472626,-0.42112410068511963,-0.420163094997406,-0.38080450892448425,-0.2398190051317215,-0.33452925086021423,-0.23729754984378815,0.15504059195518494,-0.4383776783943176,0.4545052647590637,-0.8387953042984009,-0.1760961413383484,-0.1385401040315628,0.4205958843231201,-0.5446634292602539,-0.3807910680770874,-0.45773354172706604,-0.20540767908096313,-0.2972748279571533,-0.3453236520290375,-0.11465555429458618,-0.4425322115421295,-0.15387113392353058,-0.4327274560928345,0.43591320514678955,0.038685623556375504,-0.09803823381662369,0.3495809733867645,0.4402486979961395,-0.11709755659103394,0.11019632965326309,-0.19979706406593323,-0.027310172095894814,0.28076398372650146,-0.06685306876897812,0.09721929579973221,-0.216175839304924,0.24021296203136444,0.34527623653411865,-0.23663263022899628,0.03548772260546684,-0.06451237201690674,0.0410887636244297,0.34812596440315247,0.23989816009998322,0.09166965633630753,0.313702791929245,0.5454281568527222,0.6060099601745605,-0.0008983935113064945,0.530154824256897,0.12577714025974274,0.5697600245475769,-0.059807125478982925,0.3059423863887787,0.5054383873939514,0.6155757308006287,0.7038301825523376,-0.06454675644636154,0.5662569403648376,0.269765704870224,-0.14849641919136047,0.29848065972328186,-0.13383643329143524,0.15514609217643738,0.22357270121574402,0.20708493888378143,0.6283618211746216,-0.4483509361743927,0.3373108506202698,-0.2550356090068817,-0.22447465360164642,0.659217894077301,-0.22286753356456757,0.22908355295658112,0.37822839617729187,0.12328314781188965,0.3205777704715729,0.3136616349220276,0.2545216977596283,0.13750430941581726,-0.23940014839172363,0.5030102729797363,0.4603613615036011,0.34525105357170105,0.16215774416923523,0.3242703676223755,0.5285331606864929,0.059978604316711426,-0.2739281952381134,-0.1716611534357071,-0.21615806221961975,-0.2989485561847687,-0.5829039812088013,0.020610498264431953,-0.12759239971637726,0.12736079096794128,-0.4630567729473114,0.18715403974056244,-0.24790774285793304,0.03998221829533577,-0.22125791013240814,-0.06626983731985092,0.2637407183647156,-0.4848378896713257,0.31418177485466003,-0.018115166574716568,-0.2330358326435089,-0.6862112879753113,0.3000115156173706,-0.3422769606113434,0.15963736176490784,-0.01040874794125557,-0.18259185552597046,0.10808491706848145,-0.20166000723838806,0.2054084688425064,-0.07554307579994202,-0.3184177577495575,0.02567378431558609,0.7927589416503906,0.7267938852310181,-0.1724657118320465,0.4849906861782074,0.7313984632492065,0.2020004838705063,0.44861799478530884,-0.22372065484523773,0.02875901199877262,-0.10574925690889359,-0.07559336721897125,0.6943670511245728,-0.21574968099594116,0.377901166677475,-0.20542187988758087,-0.32985568046569824,0.1801781952381134,-0.3068382740020752,0.5285268425941467,0.2790195941925049,0.06037157028913498,-0.12040255963802338,0.5739033818244934,0.08799050748348236,0.6539977192878723,-0.02447378635406494,0.6901823282241821,0.006444784812629223,0.5832310318946838,0.5232516527175903,0.7089360356330872,0.47695961594581604,0.4245736598968506,0.3934619426727295,0.052071407437324524,0.07796933501958847,0.011887519620358944,0.357357919216156,-0.35136061906814575,0.05468738079071045,-0.31841611862182617,-0.29662254452705383,0.07644283771514893,0.07145089656114578,0.26025110483169556,0.01599236950278282,-0.17114070057868958,0.24294549226760864,-0.146712988615036,-0.009174171835184097,-0.07871299982070923,0.3427934944629669,0.20730465650558472,-0.014366327784955502,0.010711925104260445,0.2075277715921402,-0.18336354196071625,0.05724380165338516,-0.18242928385734558,-0.5628114938735962,-0.07914729416370392,-0.4178459346294403,0.4617350399494171,0.02226012945175171,-0.22724349796772003,-0.06995708495378494,-0.23254893720149994,-0.22893141210079193,-0.18529514968395233,-0.7004124522209167,0.02655160240828991,-0.08077050000429153,0.17344066500663757,-0.35937416553497314,-0.27944216132164,-0.12461577355861664,-0.38390156626701355,-0.42170122265815735,-0.06905026733875275,-0.2664501368999481,-0.8980900645256042,0.45708775520324707,-0.4494476914405823,-0.2807565927505493,-0.17698411643505096,0.38372984528541565,-0.44907471537590027,-0.28822997212409973,-0.14965426921844482,-0.2645117938518524,-0.3778306543827057,-0.47211453318595886,0.04951488971710205,-0.35448169708251953,-0.19964928925037384,-0.5387786626815796,-0.08265727758407593,-0.09154140949249268,-0.20176228880882263,-0.27923786640167236,-0.6289929747581482,-0.6165483593940735,-0.47629183530807495,-0.08010269701480865,0.2302338182926178,-0.3849334716796875,-0.38537925481796265,-0.6300544738769531,0.10270673036575317,-0.16458886861801147,0.13889078795909882,0.009060551412403584,-1.004353642463684,0.6863626837730408,-0.8177509307861328,-0.18933312594890594,-0.3505047857761383,0.3519565463066101,-0.9588273763656616,-0.5037828087806702,-0.14814843237400055,-0.15119202435016632,-0.22966191172599792,-1.0404765605926514,-0.5625150203704834,-0.3872816860675812,-0.3138733208179474,-0.7398076057434082,-0.12463943660259247,-0.4268020987510681,-0.1299257129430771,-0.23122228682041168,-0.5391316413879395,0.14238785207271576,-0.6226374506950378,-0.15843576192855835,0.3907126784324646,-0.3766953945159912,-0.33982327580451965,-0.8724136352539062,0.32894429564476013,-0.43199992179870605,0.05571360141038895,-0.3208567500114441,-0.4539705514907837,-0.09429701417684555,-0.9564448595046997,-0.2539516091346741,-0.4527119994163513,-0.8656485080718994,-0.7779636979103088,-0.7332478761672974,-0.36631497740745544,-0.08970743417739868,-0.8862664103507996,-0.8366413116455078,-0.39601850509643555,-0.8832501173019409,-0.6187435984611511,-0.2422255426645279,0.35688647627830505,0.7748791575431824,-0.4078630208969116,0.5249553918838501,0.6083725690841675,-0.1310824155807495,0.5428621768951416,-0.25049012899398804,0.04993423819541931,0.23709741234779358,0.10353581607341766,0.37984398007392883,0.1370355188846588,0.5775739550590515,0.05656570568680763,0.16158424317836761,0.3864215314388275,-0.12168528884649277,0.1380610466003418,0.602242112159729,0.011540310457348824,0.3088706135749817,0.5983220934867859,0.34517985582351685,0.6069784164428711,-0.0629158616065979,0.1485014259815216,0.5601809024810791,0.4196067154407501,0.14647886157035828,0.20557387173175812,0.6045692563056946,-0.4523909091949463,-0.4453243911266327,0.2782754600048065,-0.41228851675987244,-0.279862642288208,-0.763192892074585,-0.5855080485343933,-0.059333208948373795,0.5121437907218933,-0.8483366966247559,-0.5420911312103271,-0.23124495148658752,-0.3276176154613495,-0.2729182541370392,0.22936467826366425,-0.4756268858909607,-0.7136638760566711,0.330449640750885,-0.7102287411689758,-0.16920723021030426,-0.35130801796913147,0.36081573367118835,-0.8127104043960571,0.001512929331511259,-0.187998965382576,0.13220296800136566,0.03404322639107704,-0.8176314830780029,-0.5948224067687988,-0.6332212090492249,-0.3396647572517395,-0.4882349967956543,-0.8236032128334045,-0.7215264439582825,0.2530035078525543,-0.41300129890441895,-0.33093228936195374,-0.14800019562244415,-0.6837198734283447,-0.006511173211038113,0.522259533405304,-1.1617791652679443,-0.25622299313545227,-0.7614440321922302,0.06337710469961166,-0.770825207233429,0.2849658131599426,-0.2236095815896988,-0.910431981086731,0.5093544125556946,-0.7149252891540527,-0.5278766751289368,-0.46178606152534485,0.46503037214279175,-0.868683397769928,-0.7047101855278015,-0.6718202233314514,-0.17469701170921326,-0.6152781844139099,-0.6059038043022156,-0.8230041861534119,-0.32426321506500244,-0.49503669142723083,-0.924924373626709,0.8975467085838318,0.3901230990886688,0.015382588841021061,0.4696480631828308,0.8814382553100586,0.47877055406570435,0.33753976225852966,-0.09753675013780594,0.11584573984146118,0.27312013506889343,0.5974707007408142,0.3240959048271179,0.04022379219532013,0.3609756529331207,-0.2366359978914261,-0.341854453086853,0.5852028727531433,0.0018367897719144821,0.666460394859314,0.4875045716762543,0.36389121413230896,-0.2169407159090042,0.9513649344444275,0.6137683391571045,0.49367794394493103,-0.3208155930042267,0.3205288350582123,0.5137318968772888,0.6908422708511353,-0.08697107434272766,0.7960638403892517,0.7392553091049194,-0.4322187304496765,-0.2133929282426834,0.2622814178466797,0.03645243123173714,-0.41640061140060425,-0.8036858439445496,0.029466992244124413,0.07544112205505371,-0.046403918415308,-0.7688810229301453,-0.14197148382663727,-0.482273131608963,-0.15390849113464355,-0.058747559785842896,0.08929593861103058,0.27817368507385254,-0.9011843800544739,0.38983675837516785,-0.8232609033584595,-0.3575488030910492,-0.4710513651371002,0.17836958169937134,-0.7534660696983337,-0.326490193605423,-0.2825562655925751,-0.29161837697029114,-0.581868588924408,-0.4652026891708374,-0.4246373772621155,0.004180217161774635,-0.651084840297699,-0.5709965229034424,-0.3782062828540802,-0.26223668456077576,-0.32191407680511475,-0.3571091890335083,-0.45005694031715393,-1.0942838191986084,0.05321700870990753,-0.06865598261356354,0.5136163234710693,-0.43388718366622925,0.08017948269844055,-0.33469662070274353,-0.7255581021308899,-0.2923327684402466,0.10823933035135269,0.2555423974990845,-0.9031599164009094,0.33027753233909607,-0.8799276947975159,0.031716085970401764,-0.7629660367965698,0.31475457549095154,-0.8461662530899048,-0.011714907363057137,-0.32629629969596863,0.04169788211584091,-0.0925496518611908,-0.4246554374694824,-0.42078274488449097,-0.31333646178245544,-0.3595167100429535,-0.5007867217063904,0.23537860810756683,0.3456764817237854,0.01605050638318062,0.3328705132007599,0.5364781618118286,0.27592524886131287,0.5711460709571838,-0.0036977205891162157,-0.02107108198106289,0.22943127155303955,0.13413241505622864,0.6135043501853943,0.18190830945968628,0.7105339765548706,-0.4242783784866333,-0.17786318063735962,0.40390199422836304,-0.12771791219711304,0.6780519485473633,0.3717667758464813,0.4199839234352112,0.27022460103034973,0.6644443869590759,0.598177969455719,0.41439497470855713,0.058602917939424515,0.24494199454784393,0.5223745703697205,0.6484758853912354,0.2703365385532379,0.44979220628738403,0.39706799387931824,0.640633225440979,0.389361172914505,-0.004502338357269764,0.34918591380119324,0.6064751744270325,-0.03828602656722069,0.1848960518836975,-0.1741623431444168,-0.2064073383808136,0.4095105528831482,0.00821714848279953,0.4930891692638397,0.06379099935293198,0.4352659285068512,-0.04344587400555611,0.18034452199935913,0.48804134130477905,0.2926402986049652,0.6569048762321472,0.5334361791610718,0.03711004555225372,-0.30470457673072815,0.5114889740943909,0.6198853850364685,0.6071154475212097,-0.24619799852371216,0.14937692880630493,0.40425705909729004,0.25197547674179077,0.42773476243019104,0.505183219909668,0.3271985352039337,0.24902985990047455,0.22564488649368286,0.0980428084731102,0.28847283124923706,0.5911445617675781,-0.403384268283844,0.6197702884674072,0.04245242103934288,-0.2600826621055603,0.12859751284122467,-0.04232211410999298,0.7711424827575684,-0.3891848623752594,1.1422423124313354,0.2344363033771515,-0.4838452637195587,-0.1234026625752449,-0.28775593638420105,0.5674054622650146,0.9912834167480469,0.16032074391841888,-0.2123824805021286,0.45634427666664124,0.8243433833122253,0.6048293709754944,-0.0845601037144661,0.6407565474510193,0.022128399461507797,0.1783304065465927,-0.04986889660358429,0.3544485569000244,0.5721207857131958,-0.6541476845741272,-0.3627648949623108,-0.027360839769244194,-0.20909209549427032,-0.6339899897575378,-0.6119219064712524,-0.012698093429207802,-0.013725410215556622,0.5037957429885864,-0.6109259128570557,-0.27945220470428467,-0.6293928623199463,-0.44970589876174927,-0.2870267927646637,0.039651285856962204,-0.24486863613128662,-0.8204537034034729,0.506246030330658,-0.7874794602394104,-0.29787108302116394,-0.12396344542503357,0.616238534450531,-0.9236424565315247,-0.5848026275634766,-0.2801092267036438,0.04154237359762192,-0.4924479126930237,-1.0190907716751099,-0.6374160051345825,-0.3901427388191223,-0.46655359864234924,-0.8522989153862,0.5663557052612305,0.6809678673744202,-0.4670196771621704,0.17711935937404633,0.13175344467163086,-0.15758022665977478,0.29605111479759216,-0.03823733702301979,-0.01906942017376423,0.4332192540168762,0.44304829835891724,0.23072107136249542,0.1442074328660965,0.31307104229927063,0.13742507994174957,-0.24444371461868286,0.5271289348602295,0.043143775314092636,0.4160822629928589,0.29525226354599,0.20562052726745605,0.22612427175045013,0.10226451605558395,0.4055240750312805,0.47010573744773865,0.2001103013753891,0.7709529995918274,0.3174457848072052,0.26138296723365784,0.5467978119850159,0.38920292258262634,0.44464415311813354,0.6493417620658875,0.8098334074020386,0.062333907932043076,0.20082245767116547,0.5137011408805847,0.2610667049884796,0.33897361159324646,0.09614767879247665,0.03740702196955681,0.47508010268211365,0.36118295788764954,0.6971405148506165,-0.35144704580307007,0.5369073152542114,-0.22124053537845612,0.20141707360744476,0.31778666377067566,0.1275818794965744,0.3675064742565155,0.5327764749526978,-0.13198360800743103,0.1630253940820694,0.14817017316818237,0.30733752250671387,0.39185646176338196,0.09363147616386414,0.6687554121017456,0.3359689712524414,0.7710777521133423,0.47020334005355835,0.2538726031780243,0.5276966691017151,0.23828721046447754,-0.30275002121925354,-0.033816903829574585,-0.08907148241996765,-0.10496512055397034,0.4116399586200714,-0.3944264054298401,0.12017405778169632,0.2705804705619812,-0.36098623275756836,-0.002263528062030673,-0.14320364594459534,-0.008664506487548351,-0.34070876240730286,0.350581556558609,0.14360132813453674,-0.658947765827179,-0.26501089334487915,-0.4880719482898712,-0.24596387147903442,-0.15818269550800323,-0.37973105907440186,-0.18887709081172943,-0.5899509787559509,-0.5066409111022949,-0.1703350692987442,-0.5039086937904358,-0.687290608882904,-0.15135453641414642,-0.9095948934555054,-0.07381751388311386,-0.5287910103797913,0.17887093126773834,0.22402721643447876,0.15716956555843353,0.20230793952941895,0.04959661886096001,0.14408044517040253,0.45242321491241455,0.1738538295030594,-0.16088610887527466,0.13406822085380554,-0.06628738343715668,0.45912620425224304,-0.09012211859226227,0.44141390919685364,0.030776573345065117,-0.04113239049911499,0.0932508036494255,0.09936809539794922,0.08501069247722626,0.16331399977207184,0.32827702164649963,-0.19320093095302582,0.21362371742725372,0.0377226360142231,0.574763834476471,-0.12584273517131805,0.13053657114505768,0.11100303381681442,0.3332756757736206,-0.13010293245315552,0.30325305461883545,0.292450875043869,-0.4532089829444885,-0.13560572266578674,-0.20452362298965454,-0.0667988583445549,-0.0909314677119255,-0.060247890651226044,-0.18659836053848267,0.13950954377651215,0.25815537571907043,-0.35764819383621216,0.0006184012745507061,-0.36577022075653076,-0.7298207879066467,-0.5412794947624207,-0.19704973697662354,0.22051958739757538,-0.5052679777145386,0.25915735960006714,-0.8668348789215088,-0.4830770790576935,-0.6073725819587708,0.428715318441391,-0.19371211528778076,-0.12903836369514465,0.04088044911623001,0.30134016275405884,-0.1135200560092926,0.05842700973153114,-0.169117733836174,0.224627286195755,-0.45574456453323364,-0.4070015251636505,0.07007899880409241,0.5620260238647461,-0.07976002246141434,0.4037419855594635,0.17603901028633118,0.3548309803009033,0.16614773869514465,-0.11234994232654572,-0.0713186115026474,0.15101349353790283,0.1255871057510376,0.2517336905002594,0.38522619009017944,0.5217490196228027,-0.10114751011133194,-0.09255062788724899,0.15353552997112274,0.09502077847719193,0.24778200685977936,0.5318016409873962,0.18557722866535187,-0.3276185691356659,0.4678463935852051,0.056749697774648666,0.2892359495162964,-0.07879046350717545,0.5705246925354004,0.5454363822937012,0.22730015218257904,0.039002105593681335,0.13667239248752594,0.5189311504364014,0.517709493637085,0.30136194825172424,0.03556421026587486,0.10751484334468842,0.08055613934993744,0.44508951902389526,0.49507251381874084,-0.1978079229593277,0.18449227511882782,0.3005645275115967,0.16210755705833435,0.18450917303562164,-0.3299354612827301,0.20222057402133942,0.06804122030735016,0.1454995721578598,0.2959114611148834,-0.40749770402908325,0.22399547696113586,0.5269561409950256,0.291838675737381,-0.037910640239715576,0.4511692523956299,0.40758752822875977,0.49167048931121826,-0.321117639541626,0.2509525418281555,0.15393975377082825,0.40766051411628723,0.15954197943210602,0.289912611246109,0.18485510349273682,0.31127938628196716,0.4698677361011505,0.1685722917318344,-0.05431605130434036,0.04853517934679985,-0.10425914824008942,0.2512689232826233,-0.21578191220760345,0.14220170676708221,0.3271081745624542,0.35528749227523804,0.6055265069007874,0.06444622576236725,0.4896273612976074,0.0962887778878212,-0.17659364640712738,0.1246298998594284,-0.08220811188220978,0.037341270595788956,0.037011656910181046,0.17994432151317596,0.018562182784080505,-0.04275945946574211,0.42601895332336426,0.18633435666561127,0.11710704863071442,0.00958673469722271,0.20659738779067993,0.5155865550041199,0.3953697681427002,0.5337117910385132,0.4303705096244812,0.7127902507781982,0.6893762350082397,-0.03452013060450554,0.45723867416381836,0.7826415300369263,0.2573510706424713,0.822898268699646,-0.09541801363229752,-0.21788620948791504,0.45898526906967163,0.46589648723602295,0.4131728410720825,0.49684303998947144,0.31129419803619385,0.22673799097537994,-0.04930897057056427,0.8426216840744019,-0.5068195462226868,0.6317098736763,0.9138802289962769,0.36249077320098877,-0.2263113558292389,0.8232091665267944,0.6478818655014038,0.9963973164558411,-0.058602042496204376,0.43243008852005005,0.8761194348335266,0.6389934420585632,0.552990198135376,0.7748942375183105,0.8597228527069092,0.6980610489845276,0.7009575366973877,-0.10356071591377258,0.24724265933036804,0.809459388256073,-0.20381247997283936,0.7277999520301819,-0.112040214240551,-0.21985186636447906,0.41362521052360535,0.11611906439065933,0.7413091063499451,0.02307172678411007,0.462604284286499,-0.21141205728054047,-0.11405090987682343,0.21680030226707458,-0.278054803609848,0.37384915351867676,0.4144812524318695,0.32166028022766113,-0.030521804466843605,0.7499039769172668,0.5142186880111694,0.5659196376800537,-0.3098595440387726,0.5334948897361755,0.4496367871761322,0.5072250366210938,0.18631725013256073,0.7991466522216797,0.7177545428276062]},{"shape":[32],"values":[0.521530032157898,0.510810136795044,0.013228517957031727,0.3076695501804352,0.4824641942977905,-0.007453421596437693,0.4038918912410736,0,-0.1684461086988449,0.1798575222492218,0.31837183237075806,0.4414699077606201,0.05496547371149063,0.3974416255950928,0.012682116590440273,-0.02835833467543125,0.3786352574825287,-0.09203248471021652,0.5190587043762207,0.48046305775642395,-0.10078996419906616,-0.20910388231277466,0.44029390811920166,0.44320452213287354,0.48348477482795715,-0.06883881986141205,0.4636436700820923,0.4231277406215668,0.5379519462585449,0.22667337954044342,0.47041186690330505,0.3733764588832855]},{"shape":[32,9],"values":[0.4981371760368347,0.310736745595932,0.2125081866979599,0.358836829662323,0.5351284742355347,0.13994909822940826,0.645727813243866,0.3979209065437317,0.2636236548423767,0.29124316573143005,0.353790819644928,0.3663161098957062,0.0907144621014595,0.48451435565948486,0.758602499961853,0.7655372619628906,0.6161641478538513,0.2899794578552246,0.3221631944179535,0.01601766049861908,0.013526244089007378,-0.13945603370666504,0.241500586271286,-0.31180575489997864,-0.31624919176101685,0.15113860368728638,0.06082198768854141,0.08551830798387527,0.11349468678236008,0.6147249937057495,0.588209867477417,0.02604462206363678,0.3802109658718109,0.636991560459137,0.17567279934883118,0.20553584396839142,0.6252754926681519,0.20698435604572296,0.5618614554405212,0.7274090647697449,0.950528621673584,0.09984498471021652,0.4871174693107605,0.44079500436782837,0.5836756825447083,-0.051001809537410736,-0.15930452942848206,-0.6850166916847229,0.2784249186515808,0.16472890973091125,0.08463790267705917,0.5932028293609619,-0.026576055213809013,-0.35937076807022095,0.05285695195198059,0.27379050850868225,0.1797345131635666,0.28790032863616943,0.4873945415019989,0.577416718006134,-0.026426374912261963,0.4103235602378845,0.6472463607788086,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11838390678167343,-0.07355088740587234,0.10456845909357071,-0.6641227602958679,-0.669853150844574,-0.3790375888347626,0.03488029167056084,-0.3759501278400421,-0.2887829542160034,-0.4238226115703583,-0.367012083530426,-0.14996591210365295,0.723756730556488,0.5527113080024719,0.6716280579566956,0.4371874928474426,0.4887540340423584,0.09109631925821304,0.37014085054397583,0.09160194545984268,0.5831368565559387,0.42207351326942444,0.4607694149017334,0.15433308482170105,0.7017253637313843,-0.02555011212825775,0.1818048655986786,0.3586827516555786,0.02708972804248333,0.33005091547966003,0.21753470599651337,0.5246226191520691,0.8062188625335693,0.5633816123008728,0.3857637047767639,0.8104838728904724,0.5424902439117432,0.47656750679016113,0.7938736081123352,0.3632785677909851,0.18485033512115479,-0.39066556096076965,-0.38918814063072205,-0.15379516780376434,-0.6890723705291748,0.0558188334107399,0.2687366008758545,-0.5326951742172241,0.7343806624412537,0.5548096895217896,0.536000669002533,0.3664770722389221,0.470193475484848,0.16234150528907776,0.1869601309299469,0.5726943612098694,0.07070847600698471,0.357088178396225,-0.3485863208770752,-0.4413500130176544,0.07930612564086914,0.0343208834528923,-0.27793020009994507,-0.07140790671110153,0.09811466932296753,-0.2339104861021042,-0.04720894992351532,-0.3217388391494751,-0.22425316274166107,0.4180653989315033,0.01877184398472309,0.04836832731962204,0.22588975727558136,-0.2616094946861267,0.032735105603933334,0.5007060170173645,0.6942263841629028,0.49657967686653137,0.8503305315971375,0.46130526065826416,0.5827057361602783,0.798916757106781,0.5258009433746338,0.5239813327789307,0.1941765546798706,0.10743141174316406,-0.5000020861625671,-0.39222171902656555,-0.06102849170565605,-0.4658176898956299,-0.15599459409713745,-0.17124217748641968,-0.883604884147644,0.8807325959205627,0.7169514298439026,0.4020989239215851,0.7892154455184937,0.7643202543258667,0.6261482834815979,0.7904192805290222,1.016967535018921,0.6139528751373291,0.6611524820327759,0.5492145419120789,0.6212738156318665,0.5799547433853149,0.1898902803659439,0.5432926416397095,0.23701243102550507,0.4387112259864807,0.4735029935836792,0.48033735156059265,0.7068796753883362,0.5234829783439636,0.5076153874397278,0.4176824390888214,0.4726111888885498,0.22699706256389618,0.04590379446744919,-0.007759105414152145,-0.6129297018051147,-0.5973090529441833,0.08678142726421356,-0.6610484719276428,-0.26319560408592224,-0.2912557125091553,-0.3655257523059845,-0.5350905656814575,-0.009173503145575523,0.7755569219589233,0.4563012719154358,0.3960699439048767,0.49236440658569336,0.6537761688232422,0.580162525177002,0.863566517829895,0.7129268050193787,0.33481401205062866,0.17286016047000885,0.6811617612838745,0.39975038170814514,0.24552151560783386,0.5891283750534058,0.704752504825592,0.26711320877075195,0.6150412559509277,0.6673068404197693,0.7008489966392517,0.7208006978034973,0.30049559473991394,0.7814627885818481,0.23890934884548187,0.6959896087646484,0.06268775463104248,0.1794697642326355,0.6894168257713318,-0.14634931087493896,-0.23347768187522888,0.2305295765399933,0.010644380003213882,0.12778158485889435,0.16607584059238434,0.33148816227912903,0.20834870636463165,-0.04747195169329643,0.16032464802265167,0.37643444538116455,0.6073575019836426,0.2717374861240387,0.5558816194534302,0.6756910681724548,0.8336257338523865,0.41417744755744934,0.6044265031814575,0.483790785074234,0.5808776021003723,0.5355152487754822,0.47259268164634705,0.6443495154380798,0.7507280111312866,0.4815295934677124,0.8338739275932312,0.905502200126648,0.1432494819164276,0.7094656229019165,0.4442724287509918,0.45995157957077026,0.3429824709892273,0.26283493638038635,0.7309759259223938,0.6523954272270203,0.5232549905776978,-0.06561904400587082,0.0912226065993309,0.44334113597869873,0.2225174605846405,0.5030034780502319,0.48396679759025574,0.12088358402252197,0.7188522815704346,0.7255805730819702,0.7479056715965271,0.2872072160243988,0.511681079864502,0.6027616262435913,0.5500060319900513,0.6058221459388733,0.6742253303527832,0.5696790218353271,0.3540397584438324,0.6975788474082947,0.5200076103210449,0.6271488666534424,0.2706543505191803,0.6544801592826843,0.3732049763202667,0.30750367045402527,0.4731161594390869,0.7157752513885498]},{"shape":[9],"values":[0.29511791467666626,0.19788245856761932,-0.04686121270060539,0.33059391379356384,0.2001824527978897,0.15813380479812622,0.3375256657600403,0.4091378450393677,0.35839515924453735]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/index.html b/packages/demo-car-circuit/src/public/reports/racing-q-v2/index.html new file mode 100644 index 0000000..7ae54f0 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/index.html @@ -0,0 +1,9 @@ +DQN / Double DQN — Circuit Racing +

Archive — règles incomplètes. Cette V2 utilisait la course V1 : aucune collision avec les limites et remise après cinq secondes hors piste, même en mouvement. Les résultats ne valident pas les règles corrigées. Consulter la campagne V3 avec les règles corrigées.

← Circuit Racing

EXPÉRIENCE REPRODUCTIBLE · RACING Q-LEARNING V2

DQN et Double DQN,
à budget égal.

Cinq graines par méthode · 20 courses figées par pilote · 20 000 transitions d’entraînement · tensorflow, TensorFlow.js 4.22.0

+

DQN

37/100

courses réussies · 49/100 terminées

Réussite par graine : moyenne 37.0 %, écart-type 28.0 points ; 0.0–85.0 %.

Double DQN

37/100

courses réussies · 56/100 terminées

Réussite par graine : moyenne 37.0 %, écart-type 11.2 points ; 15.0–45.0 %.

+

Ces résultats décrivent ce circuit, ce curriculum et ce budget. Ils ne démontrent pas une supériorité générale de l’un des algorithmes. Les graines d’évaluation ne varient que légèrement le cap initial ; ces courses ne constituent pas 200 scénarios indépendants. Tous les checkpoints finaux et tous les échecs sont conservés.

+

Chaque graine, sans sélection

MéthodeGraineRéussiesTerminéesEntraînementÉvaluationCheckpoint
dqn1117/2017/2015.4 s16.6 sPoids
dqn299/209/2015.3 s24.6 sPoids
dqn470/201/2015.1 s24.1 sPoids
dqn735/2012/2014.4 s19.8 sPoids
dqn1016/2010/2021.7 s20.9 sPoids
double-dqn118/2014/2016.0 s20.1 sPoids
double-dqn298/2012/2015.4 s19.5 sPoids
double-dqn473/205/2015.0 s19.7 sPoids
double-dqn739/2011/2015.2 s17.0 sPoids
double-dqn1019/2014/2015.5 s20.8 sPoids
+

Ce qui est identique

  • Réseau 20 → 32 → 32 → 9, ReLU et sorties Q linéaires ; Adam 0,001 ; replay 10 000 ; batch 32 ; gamma 0,99.
  • 20 000 décisions, chacune maintenue six ticks physiques de 1/60 s. Mise à jour toutes les quatre transitions et copie cible toutes les 100 mises à jour. Dernier checkpoint programmé ; aucune sélection sur l’évaluation.
  • Exploration, replay et initialisation pilotés par la graine. Pas de mélange aléatoire supplémentaire dans fit.
  • Entraînement sur Alpine Park : 10 000 décisions solo, puis 10 000 avec trois références figées ; départs variés sur la piste, vitesse initiale 4–12 m/s, épisodes limités à 600 décisions. Les sorties restent récupérables avec les mêmes remises en piste et pénalités que la course. Récompense de progression, checkpoints et pénalités. Aucun label ni remplacement par un pilote à règles.
  • Évaluation complète : cinq caps initiaux par circuit et par condition solo/trafic. Alpine Park et Harbour Test, trois tours, plafond 300 s. Trafic constitué de références à règles figées identiques pour les deux méthodes.
  • Réussite : trois tours, aucune remise en piste, pénalité ≤ 10 s. Une course terminée peut échouer à ce critère.
+

Temps et limites

Temps réels mesurés sur darwin/arm64, Node v22.14.0. Le premier passage inclut davantage de démarrage à froid ; les temps ne servent pas de classement de vitesse. Les départs variés du curriculum d’entraînement diffèrent des départs de course arrêtés : les échecs de transfert restent mesurés.

Les reprises navigateur rechargent les poids et recréent optimiseur, replay et exploration. Ce benchmark utilise uniquement des entraînements neufs. Les poids de cette page sont des résultats expérimentaux ; leur présence ne garantit pas un adversaire compétent.

+

Télécharger les 200 résultats bruts, paramètres, versions et empreintes des sources

Reproduction : pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/compare-racing-q.mts, puis node scripts/report-racing-q.mjs. Le script refuse d’écraser un protocole existant ; déplacer le dossier de résultats avant une nouvelle expérience.

Calcul Double DQN : sélection online, évaluation cible, selon van Hasselt, Guez et Silver.

\ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v2/results.json b/packages/demo-car-circuit/src/public/reports/racing-q-v2/results.json new file mode 100644 index 0000000..3fb0c71 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v2/results.json @@ -0,0 +1,2583 @@ +{ + "manifest": { + "protocol": { + "id": "racing-q-learning-v2", + "seeds": [ + 11, + 29, + 47, + 73, + 101 + ], + "evaluationSeeds": [ + 211, + 307, + 419, + 509, + 601 + ], + "transitions": 20000, + "actionRepeat": 6, + "trafficAfterTransitions": 10000, + "episodeTransitions": 600, + "termination": "finish only; off-road recovery follows RaceWorld", + "truncation": "600 decisions, race time limit, or solo-to-traffic curriculum boundary", + "trainEvery": 4, + "hiddenLayers": [ + 32, + 32 + ], + "learningRate": 0.001, + "batchSize": 32, + "memorySize": 10000, + "gamma": 0.99, + "epsilonDecay": 0.9995, + "minEpsilon": 0.05, + "targetUpdateFrequency": 100, + "evaluation": "5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy", + "selection": "last scheduled checkpoint; all failures retained" + }, + "createdAt": "2026-09-06T17:22:23.324Z", + "node": "v22.14.0", + "tfjs": "4.22.0", + "backend": "tensorflow", + "platform": "darwin", + "arch": "arm64", + "head": "c5777d331613f01591d5461da70cb13a598885e1", + "sourceHashes": { + "packages/demo-car-circuit/src/racing/q-training.ts": "d318d252bab4e4e3a9c98c58c60fa7c0e97f6d94d90c10d577624fb6e34396cc", + "packages/demo-car-circuit/src/racing/q-protocol.ts": "b7cc53db4a810b6fe462f0a92f700b97db4fd5fd8e400c3af5c642e0f8b2f989", + "packages/demo-car-circuit/src/racing/learned-driver.ts": "67dd9890d773d8f1935f6b02da8585da9e09bbb6190af0239e37c71bc548e361", + "packages/demo-car-circuit/src/racing/training.ts": "04e2eb652afd50eb316a812d12f1eac5b9001b9811861f420da54c24cc826ccd", + "packages/demo-car-circuit/src/racing/driving.ts": "59ab36e303859c1abc9b9f07708bf1f2c248132d3bf453667f2e8daffd69dada", + "packages/demo-car-circuit/src/racing/race.ts": "dfb0d0d31ee6fab9015df0e086159e775dad9caee83a51f5b61f665cb6ffe075", + "packages/demo-car-circuit/src/racing/observations.ts": "284640c1e5c00d854013ac724910b4a565596320477f0346dbc7c43f3bb9f9e4", + "packages/demo-car-circuit/src/racing/reference.ts": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "packages/backend-tfjs/src/agents/dqn.ts": "acc73079c7d5c95e59628311517e0a9e3b1e668200e2fd6c84cb1178e2afb648", + "packages/backend-tfjs/src/model/BuildMLP.ts": "f359df8f1ec1544d8c0b5d5b9e1b53f63ef38f8ddd190ddf7997fe5e9375e28e", + "packages/backend-tfjs/src/memory/ReplayBuffer.ts": "09e9b9b839cb3b4c98eba82ec10a735510bde195daa90efdc3aa17f33af43f80" + } + }, + "additionalProvenance": { + "implementationCommit": "2a82dbddff5f34b85afb14f1d05c9f561111f0f3", + "allRecordedSourcesVerifiedAtCommit": true, + "reference": { + "path": "packages/demo-car-circuit/src/racing/reference.ts", + "sha256": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "verifiedIdenticalToRecordedHead": "c5777d331613f01591d5461da70cb13a598885e1", + "capturedAfterRun": true + } + }, + "reports": [ + { + "algorithm": "dqn", + "seed": 11, + "trainingSeconds": 15.366058, + "evaluationSeconds": 16.591042792, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.06666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.18333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 170.08333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 7480 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6470 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 15411 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 169.9, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 8068 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 138.38333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 5814 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.45, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.21666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 47.85, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 49.81666666666666, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.266666666666666, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 168.48333333333332, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 6636 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 212.98333333333332, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 8021 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 278.3, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 13233 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 14125 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15186 + } + ] + }, + { + "algorithm": "dqn", + "seed": 29, + "trainingSeconds": 15.289891499999998, + "evaluationSeconds": 24.586870291999993, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 110, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 120, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 130, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 126, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 106, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 160.46666666666667, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 6402 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 116.23333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4727 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 268.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 13369 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 15216 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 295.23333333333335, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15083 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 112, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 102, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 114, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 94, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 100, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 258.8833333333333, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 11638 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 240.11666666666667, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 11332 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 252.73333333333332, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 11931 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 260.5333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 12351 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 234.53333333333333, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 10809 + } + ] + }, + { + "algorithm": "dqn", + "seed": 47, + "trainingSeconds": 15.110063542000004, + "evaluationSeconds": 24.104026499999993, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 268, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 258, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 300, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 272, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 252, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 161, + "rescues": 1, + "contacts": 2165 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 90, + "rescues": 0, + "contacts": 9681 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 185, + "rescues": 1, + "contacts": 2870 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 151, + "rescues": 1, + "contacts": 3434 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 402, + "penaltySeconds": 124, + "rescues": 2, + "contacts": 3862 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 340, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 300, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 294, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 312, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 278, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 120, + "rescues": 2, + "contacts": 3852 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 71, + "rescues": 1, + "contacts": 7123 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 103, + "rescues": 1, + "contacts": 3962 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 89, + "rescues": 1, + "contacts": 6877 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 129, + "rescues": 3, + "contacts": 4765 + } + ] + }, + { + "algorithm": "dqn", + "seed": 73, + "trainingSeconds": 14.370079417000001, + "evaluationSeconds": 19.830600541000006, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 69.58333333333334, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 51.75, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 75.53333333333333, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 49.71666666666667, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 51.666666666666664, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 256.43333333333334, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 10139 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 251.15, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 10296 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 54, + "rescues": 0, + "contacts": 10451 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 195.11666666666667, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 6633 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 92, + "rescues": 0, + "contacts": 5140 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 90, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 202.81666666666666, + "penaltySeconds": 52, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 181.5, + "penaltySeconds": 42, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 117.36666666666666, + "penaltySeconds": 24, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 119.41666666666667, + "penaltySeconds": 26, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 14565 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 26, + "rescues": 0, + "contacts": 13165 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 34, + "rescues": 0, + "contacts": 12409 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 114, + "rescues": 0, + "contacts": 6490 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 13718 + } + ] + }, + { + "algorithm": "dqn", + "seed": 101, + "trainingSeconds": 21.689501832999987, + "evaluationSeconds": 20.932614083000022, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 78.65, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 64.68333333333334, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.83333333333333, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 76.93333333333334, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 53.15, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 120, + "rescues": 0, + "contacts": 5149 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 110, + "rescues": 0, + "contacts": 5150 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 119, + "rescues": 1, + "contacts": 5143 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 74, + "rescues": 2, + "contacts": 6438 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 114, + "rescues": 0, + "contacts": 5150 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 91.48333333333333, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 45.36666666666667, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 86.41666666666667, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 103.7, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 69.98333333333333, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 56, + "rescues": 0, + "contacts": 9186 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 49, + "rescues": 1, + "contacts": 8713 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 52, + "rescues": 0, + "contacts": 8727 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 87, + "rescues": 1, + "contacts": 5411 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 72, + "rescues": 0, + "contacts": 6709 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 11, + "trainingSeconds": 16.01906687499999, + "evaluationSeconds": 20.065075417000013, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 177.01666666666665, + "penaltySeconds": 48, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 76.81666666666666, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 74.63333333333333, + "penaltySeconds": 24, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 166.98333333333335, + "penaltySeconds": 48, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 68.7, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 225.91666666666666, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 9356 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 153.85, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 6266 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 154.43333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6829 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 195.18333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 9504 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 152.41666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6814 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 150, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 140, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 138, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 140, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 268.6, + "penaltySeconds": 88, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 38, + "rescues": 0, + "contacts": 6958 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 12543 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 293.98333333333335, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 11987 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 259.08333333333337, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 10718 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 268.31666666666666, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 11932 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 29, + "trainingSeconds": 15.42067179200001, + "evaluationSeconds": 19.489070999999996, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 77.18333333333334, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 45.06666666666666, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 55.36666666666667, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 138.86666666666667, + "penaltySeconds": 38, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 81.13333333333333, + "penaltySeconds": 20, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 163.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7436 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 203.01666666666665, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 9383 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 165.1, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7177 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 158.23333333333332, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7231 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 177.13333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 7502 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 98, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 130, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 150, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 124, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 134, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 283.2, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 13831 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 16511 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 14998 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 184.73333333333332, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 7899 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 15391 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 47, + "trainingSeconds": 15.04241837499998, + "evaluationSeconds": 19.702880208000018, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 44.9, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 85.63333333333333, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 93.83333333333333, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 204.41666666666666, + "penaltySeconds": 28, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 71.43333333333334, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 171, + "rescues": 17, + "contacts": 1347 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 142, + "rescues": 14, + "contacts": 4673 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 219, + "rescues": 23, + "contacts": 21 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 214, + "rescues": 22, + "contacts": 25 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 172, + "rescues": 18, + "contacts": 1166 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 64, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 56, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 58, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 64, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 54, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 182, + "rescues": 18, + "contacts": 1945 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 28, + "rescues": 2, + "contacts": 1799 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 192, + "rescues": 24, + "contacts": 1651 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 28, + "rescues": 2, + "contacts": 243 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 33, + "rescues": 1, + "contacts": 797 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 73, + "trainingSeconds": 15.218396166999998, + "evaluationSeconds": 16.97886508399999, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.81666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 34.93333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 33.016666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.75, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.65, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 50, + "rescues": 0, + "contacts": 10545 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 161.48333333333332, + "penaltySeconds": 20, + "rescues": 0, + "contacts": 4386 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 100, + "rescues": 0, + "contacts": 5712 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 72, + "rescues": 0, + "contacts": 7230 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 104, + "rescues": 0, + "contacts": 4850 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 43.25, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 84.66666666666667, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 70.68333333333334, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 41.416666666666664, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 43, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 40, + "rescues": 0, + "contacts": 10253 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 36, + "rescues": 0, + "contacts": 9499 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 47, + "rescues": 1, + "contacts": 10522 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 72, + "rescues": 2, + "contacts": 4932 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 74, + "rescues": 0, + "contacts": 5056 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 101, + "trainingSeconds": 15.517705083000008, + "evaluationSeconds": 20.80336258299998, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 35.81666666666666, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 46.45, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 50.583333333333336, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 48.583333333333336, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 35.75, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 178.55, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 8148 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 290.23333333333335, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 10450 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 189.83333333333334, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 8334 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 242.83333333333334, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 11324 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 11162 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 171.8, + "penaltySeconds": 36, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 98.96666666666667, + "penaltySeconds": 24, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 90.96666666666667, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 80.46666666666667, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 80.25, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 20, + "rescues": 0, + "contacts": 9792 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 40, + "rescues": 0, + "contacts": 7063 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 11102 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 36, + "rescues": 0, + "contacts": 8776 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 12863 + } + ] + } + ] +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-101.json new file mode 100644 index 0000000..a436c0b --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T18:01:03.572Z","weights":[{"shape":[20,32],"values":[1.2007132768630981,-0.20126597583293915,0.022801758721470833,1.189233422279358,0.38093647360801697,1.168943166732788,1.3592231273651123,0.03758712485432625,-0.0397290475666523,1.1232402324676514,-0.39311569929122925,0.005259295925498009,0.5904629230499268,1.0221397876739502,0.40080633759498596,-0.3407917320728302,-0.35291358828544617,0.512441873550415,-0.0061917719431221485,0.7217139601707458,0.923757791519165,-0.735700249671936,0.07754117995500565,0.17089222371578217,0.9071667790412903,0.33396780490875244,0.07228288799524307,0.7463449239730835,1.0512982606887817,0.22863925993442535,-0.15983493626117706,0.3894902765750885,-0.16180379688739777,0.1176690086722374,-0.13194715976715088,0.0600690133869648,0.06897412240505219,0.3792898952960968,-0.23845508694648743,-0.08974719792604446,-0.30202147364616394,-0.010366683825850487,0.371354341506958,-0.01826692931354046,-0.12803976237773895,-0.06412284821271896,0.0680951476097107,-0.16944169998168945,0.17481954395771027,0.020717812702059746,0.008601672016084194,-0.14528797566890717,-0.09744197130203247,0.06825819611549377,-0.04621538519859314,0.056789059191942215,0.13894149661064148,0.034890323877334595,-0.10457014292478561,-0.008577633649110794,0.1521611213684082,-0.10240740329027176,-0.051190223544836044,0.24179376661777496,-0.2071155309677124,-0.4932154715061188,-0.40361469984054565,-0.13950951397418976,-0.09993377327919006,-0.042054932564496994,0.012054269202053547,-0.270266592502594,-0.15535426139831543,0.08385216444730759,0.7333950996398926,0.6839724183082581,0.21422924101352692,-0.05348820984363556,-0.3891340494155884,-0.47774723172187805,-0.0731264129281044,-0.22105763852596283,0.6107457876205444,0.13523060083389282,-0.14860551059246063,1.1959377527236938,-0.3014264702796936,0.5774269700050354,-0.35649141669273376,0.189390167593956,-0.34372568130493164,-0.15078233182430267,-0.2661316990852356,0.0022108620032668114,-0.35096338391304016,0.018951300531625748,-0.4802810549736023,1.3671711683273315,1.8456165790557861,-0.5801653265953064,-0.622298538684845,-0.1853557527065277,-0.6590747237205505,1.6563206911087036,1.2457195520401,-0.9509676098823547,-0.7378482818603516,-0.40391138195991516,-0.8857299089431763,-0.547106921672821,-0.6596943736076355,1.4335521459579468,-1.024714708328247,-0.7780068516731262,-0.37572696805000305,-0.3314439356327057,-0.35652828216552734,-1.257236123085022,1.774098515510559,-1.1383107900619507,-0.16874368488788605,-0.763877809047699,1.5318509340286255,-0.11596990376710892,-0.452671617269516,-0.38765934109687805,1.5147979259490967,0.9977872967720032,0.4155750870704651,-0.1890537589788437,-0.19352978467941284,0.11780690401792526,0.39719489216804504,-0.09018406271934509,0.2847433090209961,-0.2743743658065796,0.07839450985193253,-0.056146133691072464,0.08954396843910217,-0.2063376009464264,-0.31947141885757446,0.2658497095108032,0.059209030121564865,0.0779656246304512,0.5052517056465149,-0.05840842425823212,0.0743497684597969,0.4208942651748657,-0.02189844660460949,-0.06754733622074127,-0.46159979701042175,0.238246887922287,0.1486228108406067,0.3156493008136749,0.13004927337169647,0.2847994267940521,-0.1428535133600235,0.07504324615001678,-0.05470532178878784,0.07776007056236267,0.06032583490014076,0.32227468490600586,0.26349666714668274,0.1879723221063614,0.031024515628814697,-0.010855423286557198,0.4545102119445801,0.330887109041214,-0.18198956549167633,-0.4230935871601105,-0.10873036831617355,0.3103041350841522,-0.3291287124156952,-0.011409436352550983,-0.1092611625790596,-0.17563140392303467,-0.2880122661590576,-0.20689958333969116,-0.24817247688770294,0.5033257603645325,-0.02569486014544964,-0.16558916866779327,0.27456602454185486,-0.15046341717243195,-0.2936227321624756,-0.06703883409500122,0.2814731001853943,-0.2504897117614746,-0.12130244821310043,0.16287893056869507,0.26155057549476624,0.14554767310619354,0.20179517567157745,0.02732137031853199,-0.0472007654607296,-0.02686232328414917,-0.6135511994361877,-0.4016430377960205,-0.012740598060190678,0.2601475715637207,0.493901789188385,0.1413343995809555,-0.578300952911377,0.25695353746414185,0.151694193482399,-0.11609102785587311,-0.4071067273616791,0.44278684258461,-0.4695466458797455,-0.3877451717853546,0.36544838547706604,-0.23833908140659332,0.08924605697393417,-0.2653113603591919,0.5966570973396301,0.15080316364765167,-0.5614057183265686,0.1629028469324112,0.015451844781637192,-0.22616325318813324,-0.4849258065223694,0.25601375102996826,0.0016055266605690122,0.507264256477356,0.0033081143628805876,0.39311683177948,0.4688921570777893,-0.009216470643877983,-0.34511128067970276,-0.3742586672306061,0.19766023755073547,0.1325313150882721,0.3156057298183441,0.3610187768936157,-0.4050503373146057,0.38486620783805847,0.37498584389686584,0.5204170942306519,-0.4247402548789978,0.09631790965795517,-0.6712602376937866,0.25187399983406067,0.43652379512786865,0.173872172832489,0.49851104617118835,-1.0153788328170776,0.10078957676887512,0.4513076841831207,-0.22548475861549377,0.08660873770713806,0.18154336512088776,0.2605758607387543,-0.26040470600128174,0.07956628501415253,0.47429731488227844,0.1560390740633011,-0.5035752058029175,-0.005355606786906719,0.050400953739881516,-0.628023087978363,0.938979983329773,-0.14176425337791443,-0.052515722811222076,0.2509508728981018,0.25063633918762207,0.15921543538570404,0.019581524655222893,0.4142109453678131,0.28541556000709534,0.289592444896698,0.01922830194234848,-0.054859794676303864,0.14592193067073822,0.1906278431415558,0.05322911962866783,0.19117480516433716,0.3762343227863312,-0.10397312045097351,0.08177122473716736,-0.31847095489501953,0.22092770040035248,-0.573866605758667,0.1938921958208084,0.5974602103233337,0.027141837403178215,0.7826024293899536,-0.05249210074543953,0.09827026724815369,0.525933563709259,-0.09510195255279541,0.2385232299566269,-0.13616779446601868,-0.10384486615657806,0.17352251708507538,0.08311545848846436,0.03412315621972084,0.08858797699213028,0.007005719002336264,-0.11417889595031738,0.45258939266204834,0.398539662361145,0.21255679428577423,-0.007280796300619841,-0.24346807599067688,0.18129339814186096,-0.08254668116569519,-0.1766003966331482,0.34912246465682983,0.12927722930908203,0.3196391761302948,-0.135346457362175,0.38142111897468567,0.19306157529354095,0.2653998136520386,-0.17970578372478485,0.32856863737106323,0.4837632179260254,-0.8077226877212524,0.08304791152477264,-0.4601418673992157,0.48606476187705994,-0.028395628556609154,0.12847782671451569,0.21529239416122437,0.09991583973169327,0.26788249611854553,0.21902938187122345,0.15056416392326355,0.2639267146587372,-0.03514903038740158,0.05859462544322014,0.3411968946456909,0.15614651143550873,0.05780497193336487,-0.11358610540628433,-0.30325308442115784,-0.32696545124053955,0.30108290910720825,0.2685403823852539,0.272446870803833,0.5870329141616821,0.2308899313211441,-0.5079437494277954,0.2862994074821472,0.3437369167804718,-0.16557170450687408,-0.05818939581513405,0.6431342363357544,0.15976649522781372,0.559470534324646,0.139898881316185,-0.43295711278915405,-0.2742893099784851,0.08616956323385239,-0.21587727963924408,-0.30674993991851807,-0.36246201395988464,0.18092909455299377,-0.1721378117799759,-0.11046091467142105,0.14150887727737427,0.11122453957796097,-0.19520483911037445,0.0299964789301157,-0.09525186568498611,-0.008345641195774078,0.1663464456796646,0.36179545521736145,0.28046914935112,0.029672589153051376,-0.44980502128601074,0.20590603351593018,-0.13790936768054962,0.1707712560892105,-0.08366192877292633,-0.1285093128681183,-0.17603714764118195,-0.3641095459461212,-0.04536372795701027,-0.25701889395713806,-0.013787364587187767,-0.33904120326042175,-0.27709251642227173,0.31901365518569946,0.17994871735572815,0.06554339826107025,-0.15628255903720856,-0.49661579728126526,0.20125630497932434,-0.05913640931248665,-0.19625335931777954,-0.08257374167442322,-0.0857887789607048,-0.24838994443416595,0.19235551357269287,-0.20392008125782013,-0.08358808606863022,0.2182651162147522,-0.038263026624917984,-0.0807783454656601,-0.4036078453063965,0.055075738579034805,0.034075357019901276,-0.1170087531208992,0.07916851341724396,-0.027182571589946747,-0.01247282512485981,0.09272223711013794,0.012218562886118889,-0.44963544607162476,-0.08816991001367569,0.5042200684547424,0.272443562746048,0.07546786218881607,0.044417139142751694,-0.2886219322681427,0.18452224135398865,0.3126475512981415,0.08403047919273376,-0.3427986800670624,0.1849762499332428,-0.18072101473808289,0.12703898549079895,0.012492865324020386,0.029393263161182404,-0.26133421063423157,0.2579522728919983,0.08610779792070389,0.061127856373786926,-0.21387001872062683,-0.016655433923006058,-0.10160119086503983,-0.11558128148317337,0.09265794605016708,-0.1263067126274109,-0.2364233136177063,0.3238537907600403,-0.1896529495716095,-0.07649315148591995,0.24395421147346497,0.12803632020950317,0.02949761040508747,0.19658780097961426,0.05567231774330139,0.3079255223274231,-0.41663652658462524,0.055409934371709824,-0.29745742678642273,-0.09261283278465271,0.36651182174682617,0.06808317452669144,0.2947430908679962,0.3546484410762787,-0.2700648307800293,0.2602327764034271,0.33080151677131653,0.265627384185791,-0.1716219186782837,-0.07329711318016052,0.2013416290283203,0.35848623514175415,0.2171422690153122,-0.05015532672405243,0.14719170331954956,-0.015915967524051666,-0.00949754100292921,0.028400680050253868,-0.12771739065647125,0.31319621205329895,-0.13231566548347473,0.15248370170593262,-0.23038047552108765,-0.05423205718398094,-0.23211686313152313,0.468485951423645,0.17496727406978607,0.09081190079450607,0.4646470844745636,-0.16876240074634552,-0.20712429285049438,-0.33988189697265625,0.010035570710897446,0.13805805146694183,0.2439693808555603,-0.3912310302257538,-0.28727099299430847,0.26298096776008606,-0.027805987745523453,0.2678631544113159,0.06270799785852432,-0.4293575882911682,-0.13535581529140472,-0.31276947259902954,-0.02800634130835533,-0.18861062824726105,-0.16482189297676086,-0.1278773546218872,-0.0779704600572586,-0.4403446912765503,-0.0832095518708229,-0.19980822503566742,-0.07872303575277328,0.06049448996782303,0.1794704794883728,-0.1837429255247116,-0.3646107017993927,0.07899404317140579,-0.0368344783782959,0.08681430667638779,0.019095497205853462,-0.3026885390281677,-0.02420801669359207,-0.29631543159484863,0.1513558328151703,0.20174874365329742,0.3207821249961853,-0.09707353264093399,0.08243609964847565,-0.22082087397575378,-0.21582426130771637,-0.08489949256181717,-0.2539188861846924,0.18651148676872253,0.19587014615535736,-0.20896093547344208,0.2010776251554489,0.06861315667629242,-0.17173337936401367,-0.06608803570270538,-0.43905559182167053,-0.0672043189406395,-0.035193394869565964,-0.010474414564669132,0.20608928799629211,0.13459838926792145,-0.08724509179592133,-0.12879233062267303,-0.2637178897857666,-0.2115207463502884,0.25709229707717896,-0.13126696646213531,0.22380055487155914,0.01856054551899433,0.19550292193889618,0.07140696793794632,-0.4106373190879822,-0.11215703189373016,-0.2771151661872864,0.12387636303901672,0.25566166639328003,-0.06426820158958435,-0.08013870567083359,-0.24976973235607147,0.27842727303504944,-0.2270018607378006,0.23485785722732544,-0.03365056961774826,0.125336691737175,0.37319710850715637,0.013146953657269478,0.10468294471502304,0.02705865167081356,-0.21254880726337433,0.10109303891658783,-0.049787625670433044,0.35069507360458374,0.23737972974777222,0.13560697436332703,-0.13933487236499786,-0.2784290015697479,-0.1574115753173828,-0.29794782400131226,0.03280322626233101,0.05220292508602142,0.33329522609710693,0.08035782724618912,0.2167288362979889,0.2344207465648651,0.006779697723686695,-0.31946125626564026,0.09511668235063553,-0.19753924012184143,0.08550814539194107,0.40778616070747375,-0.2609754502773285,-0.03171178698539734,0.18410810828208923,0.0011436427012085915,-0.0789865180850029,-0.22661349177360535,-0.22316479682922363,0.44656169414520264,0.5268524885177612,0.2070714831352234,0.14837463200092316,-0.28668996691703796,-0.26363587379455566,0.0845702514052391,-0.42850828170776367,0.10388641804456711,-0.07848872989416122,-0.02449258416891098,0.4932417571544647,-0.2285979688167572,0.16495543718338013,-0.06910920143127441,0.09869001060724258,-0.28744763135910034,-0.2891824245452881,0.11759430915117264,-0.20979587733745575,-0.3554646372795105,0.024461423978209496,-0.17728787660598755,-0.2984783947467804,0.27058643102645874,-0.3341320753097534,0.0786246731877327,0.18350420892238617,0.153738334774971,0.07582489401102066,0.01099243201315403,-0.24086202681064606,0.23915407061576843,0.4010176956653595,-0.11046625673770905,-0.39031559228897095,-0.08788865059614182,-0.01426449790596962,-0.0561581514775753,0.05465938150882721,-0.19295552372932434,0.2162066549062729,0.18563500046730042,0.3200457692146301,-0.11190642416477203,0.11000069230794907,0.07576581835746765,-0.1904969960451126,0.020701531320810318]},{"shape":[32],"values":[0.5057772397994995,-0.2252841591835022,-0.35341885685920715,0.49976640939712524,0.487682580947876,0.49346375465393066,0.48827657103538513,-0.3094891309738159,-0.25280308723449707,0.26814261078834534,-0.2530227303504944,0.015778811648488045,0.5523877739906311,0.4141670763492584,0.5204775929450989,-0.06755007058382034,0.0731259137392044,0.3566611707210541,0.01395889651030302,0.4799964725971222,0.4405837953090668,-0.20752589404582977,-0.3266616761684418,0.024106565862894058,0.43611380457878113,0.38881245255470276,-0.27122780680656433,0.450739324092865,0.6325696110725403,0.464827299118042,-0.2573397755622864,-0.20239758491516113]},{"shape":[32,32],"values":[0.0710117369890213,0.40117916464805603,0.2868465781211853,-0.25576454401016235,0.5948809385299683,0.15124709904193878,0.424614280462265,-0.21758297085762024,-0.07035543769598007,-0.027945028617978096,0.2465413361787796,0.4813651442527771,0.7040649652481079,0.7823841571807861,0.4798579514026642,0.39837580919265747,0.6878158450126648,0.8722479343414307,0.6144271492958069,-0.20992392301559448,0.07237747311592102,0.5532615780830383,0.8204280138015747,0.5081570148468018,0.31267306208610535,0.010277041234076023,-0.07880569994449615,0.6005610227584839,0.27356189489364624,0.05620573088526726,0.008827934972941875,0.18063484132289886,-0.18227489292621613,-0.09208136796951294,0.4273255467414856,0.26205766201019287,-0.5168853998184204,0.33544930815696716,-0.5802674889564514,-0.20538847148418427,0.39358553290367126,0.1555504947900772,-0.3038572669029236,0.2751365900039673,-0.3488677442073822,-0.3220325708389282,-0.7049134969711304,-0.04725557565689087,-0.12846024334430695,-0.4334798753261566,-0.3432394862174988,0.2799685597419739,0.15387500822544098,-0.08347826451063156,-0.04626083746552467,0.2149721086025238,0.1579359769821167,-0.29649826884269714,-0.26028987765312195,-0.09748727828264236,0.181324303150177,0.29684126377105713,0.28269147872924805,0.336191326379776,0.1189076155424118,-0.7729920148849487,0.33759772777557373,0.2546689212322235,-1.1723636388778687,0.4348331391811371,-0.9344482421875,0.10187561810016632,0.5791997313499451,-0.32267117500305176,0.15291303396224976,-0.039348021149635315,-0.6758212447166443,-0.4978453814983368,-0.8883461952209473,-0.23325689136981964,-0.5013926029205322,-0.45630893111228943,-0.3583422303199768,0.4748694896697998,-0.5892382264137268,-0.9818701148033142,-0.3193517327308655,0.09948357939720154,0.1311010718345642,0.2571691572666168,-0.09621400386095047,-0.19322502613067627,0.29434099793434143,0.26290857791900635,0.16750690340995789,0.2334374487400055,-0.23617582023143768,0.5653743147850037,-0.05263737589120865,-0.3002597987651825,0.3167652189731598,0.09651488065719604,0.36844658851623535,0.03549529239535332,-0.15942558646202087,0.023726437240839005,-0.18554508686065674,0.226687952876091,0.6835522055625916,0.3683755695819855,0.6533563733100891,0.4103791117668152,0.666348934173584,0.669110894203186,0.2811616361141205,-0.07688414305448532,0.3524903655052185,0.6700931787490845,0.8419193625450134,0.5339815020561218,-0.06883909553289413,0.3619462847709656,0.04951981082558632,0.4213821589946747,0.2568798363208771,-0.04331256076693535,0.29746970534324646,-0.2156950980424881,-0.2307271808385849,0.450823575258255,-1.263106107711792,0.12029305845499039,0.8730541467666626,-0.3953383266925812,0.8916518688201904,0.42699477076530457,-1.2171553373336792,-0.2440957874059677,0.09086104482412338,-0.48390331864356995,0.3224868178367615,0.5058028101921082,0.39515140652656555,0.10203730314970016,0.6045489311218262,0.6305580139160156,0.28569531440734863,-0.23392170667648315,0.8046543002128601,0.3660019338130951,0.46660399436950684,0.3979348838329315,-0.6505611538887024,-0.2439824491739273,0.19566863775253296,0.46680426597595215,-0.8234241604804993,-0.4933510720729828,-0.9999470710754395,-1.4287234544754028,-0.2314363420009613,0.05639899894595146,-0.2921973466873169,-0.04234530031681061,0.3584766685962677,-0.2088131606578827,0.9850317239761353,0.013230749405920506,-0.24351061880588531,0.21174736320972443,0.04408310726284981,-0.017053764313459396,0.17686399817466736,0.6826115846633911,0.4335133731365204,-0.044384222477674484,0.5315237045288086,0.11655212193727493,0.5771503448486328,0.12040065973997116,0.6483195424079895,0.4793829619884491,0.32390329241752625,0.48404237627983093,-0.07331442832946777,0.12226658314466476,0.17922906577587128,0.5113846659660339,-0.3153418004512787,-0.2731747627258301,-0.28491681814193726,-0.3736972212791443,-0.24921223521232605,0.13017944991588593,0.28417062759399414,-0.010780439712107182,0.437095046043396,0.009533175267279148,0.13468800485134125,-0.3250918686389923,0.08361861109733582,0.1896054744720459,0.10990464687347412,0.2656528949737549,0.5209000706672668,0.338078111410141,0.564031720161438,0.018474141135811806,0.6270151734352112,0.6041109561920166,0.3162349760532379,0.18270784616470337,0.38636693358421326,0.28708845376968384,0.6738669276237488,0.200346902012825,0.2220015972852707,0.08408726751804352,-0.47607311606407166,0.3615705966949463,0.12049872428178787,0.1180654987692833,0.03146738559007645,0.20894499123096466,-0.3045620024204254,-0.6666001081466675,0.3950008749961853,0.0775035172700882,-0.6739906668663025,0.023535698652267456,-1.0242568254470825,-0.09424004703760147,0.7962678670883179,-0.31017929315567017,-0.004016387742012739,0.33620956540107727,-0.2870459258556366,-0.37619563937187195,-0.33855903148651123,-0.23075073957443237,-0.3242834210395813,-0.17050428688526154,-0.24061816930770874,0.35311853885650635,-0.48224371671676636,-0.8944587111473083,-0.621698796749115,0.13196635246276855,0.17577481269836426,0.13340939581394196,-0.18415255844593048,-0.4145891070365906,0.14549249410629272,0.38015446066856384,0.1550292670726776,0.26957860589027405,-0.2688736021518707,-0.45318514108657837,-0.12066301703453064,-0.2749064862728119,-0.33512377738952637,0.22796818614006042,-0.527429461479187,0.331545352935791,0.36245888471603394,0.10440846532583237,-0.3260117173194885,-0.09623841196298599,0.0018129993695765734,0.036689069122076035,-0.1627013236284256,0.09229796379804611,-0.18729931116104126,-0.2253870815038681,-0.4133185148239136,0.3180307149887085,0.1404469758272171,-0.7316682934761047,-0.266257643699646,-0.03883923217654228,-0.17798881232738495,-0.06201639771461487,-0.18683892488479614,-0.484775573015213,0.36375701427459717,0.36932137608528137,0.2591404914855957,0.16583380103111267,-0.2539544701576233,-0.137963205575943,0.11351076513528824,0.22992822527885437,0.19088059663772583,-0.07652681320905685,0.8122570514678955,0.18439245223999023,-0.00280109909363091,-0.07075577229261398,-0.17155037820339203,0.34089407324790955,0.7240158915519714,0.6115118861198425,0.5248011946678162,0.16432558000087738,0.3765011131763458,0.42351603507995605,0.09894736856222153,-0.06443004310131073,0.1844220757484436,0.2852211892604828,0.7291022539138794,0.12526939809322357,-0.03805363178253174,0.03679468110203743,0.04784708842635155,0.26003777980804443,-0.04393722489476204,-0.14091019332408905,-0.07642295211553574,0.25641781091690063,0.20099247992038727,-0.11707890778779984,0.03647208213806152,-0.29928556084632874,-0.7881025671958923,0.4403785765171051,-0.5394002795219421,0.2608151435852051,-0.20834727585315704,-0.21533218026161194,-0.22380775213241577,0.20497839152812958,-0.22926917672157288,-0.6972680687904358,-0.12079150229692459,-0.42774510383605957,-0.7684034109115601,-0.7904924750328064,-0.1275956928730011,0.218715637922287,-0.06324908882379532,-0.2941626310348511,-1.0946720838546753,0.2389240860939026,-0.35894775390625,-0.2949158251285553,0.6285855174064636,-0.7928276658058167,-0.35503560304641724,0.3803507685661316,-0.043347034603357315,0.165490984916687,0.1682584136724472,0.43703964352607727,-0.039037834852933884,-0.20230762660503387,0.7116367220878601,-0.1459694504737854,0.8506057858467102,-0.28155896067619324,-0.40505272150039673,0.05025628209114075,-0.04887542501091957,-0.76579749584198,0.9858644008636475,0.4745672941207886,0.3338751494884491,0.3503088057041168,0.4045078456401825,0.9129124283790588,0.8102695345878601,-0.49598222970962524,0.6579728722572327,0.41250529885292053,0.8728123307228088,0.05486379936337471,-0.3640318214893341,-0.09804649651050568,0.01769423857331276,0.6173627972602844,-0.6815752387046814,-0.49442315101623535,-0.15989112854003906,-0.31791985034942627,0.04705102741718292,0.1074548214673996,-0.18324977159500122,0.036266542971134186,0.5970510840415955,0.05031072348356247,0.648814857006073,-0.026744039729237556,0.3180842101573944,-0.2348313182592392,-0.2804434299468994,-0.05041557922959328,0.3756182789802551,0.4998025894165039,0.7731676697731018,-0.11247141659259796,0.4558686912059784,0.6266523003578186,0.15028858184814453,0.2149232029914856,0.5618683099746704,0.5526891350746155,0.5711124539375305,0.4867033064365387,0.11495579779148102,-0.11927426606416702,0.17118613421916962,0.1877814084291458,-0.11016540974378586,0.3251127600669861,0.1911829262971878,-0.2992889881134033,-0.11475517600774765,0.3535119295120239,0.17718899250030518,-0.18926239013671875,0.2498011440038681,-0.02268044650554657,0.032931216061115265,-0.11261795461177826,0.058097753673791885,-0.023195985704660416,-0.12948469817638397,0.1511695683002472,0.43081021308898926,0.1620326042175293,0.2910049259662628,0.04158756509423256,-0.103400819003582,0.2979269027709961,0.35432273149490356,-0.15435491502285004,0.018684612587094307,0.3723020851612091,0.19216053187847137,0.36977478861808777,0.4717833995819092,-0.19243885576725006,-0.7504678964614868,0.4760637879371643,0.4018852114677429,0.1977750062942505,0.3460439145565033,0.24299822747707367,-0.2480902224779129,-0.01837008260190487,-1.5069530010223389,-0.25692683458328247,0.19065013527870178,-0.0998331680893898,0.6976363658905029,0.08144037425518036,-1.3257423639297485,-0.10132776945829391,-0.2237621545791626,-0.6908099055290222,0.615622341632843,0.5065792798995972,0.346661776304245,0.042782969772815704,0.2635452151298523,0.6532878875732422,0.6226035356521606,-0.2955097258090973,0.19190794229507446,0.3372793197631836,0.5824748277664185,0.09824173897504807,-0.37655773758888245,0.13011562824249268,0.2467629462480545,0.08301058411598206,-0.17322304844856262,-0.26867783069610596,-1.0267155170440674,-1.3320419788360596,0.08135426044464111,-0.38978877663612366,0.006171746179461479,-0.05714650824666023,-0.8926697969436646,-0.18222792446613312,-0.9624236822128296,0.07726037502288818,0.17874114215373993,-0.2670920789241791,0.13810785114765167,-0.4174702763557434,-0.6327841877937317,0.22911383211612701,-0.6444299221038818,-0.37437865138053894,0.01884075067937374,-0.10126213729381561,-0.16529019176959991,0.3236909806728363,-0.10591081529855728,-0.10864034295082092,-0.07479583472013474,-0.3460473418235779,-0.2633267641067505,0.059626419097185135,-0.08844274282455444,-0.599629819393158,0.28193044662475586,0.32263222336769104,0.24697323143482208,0.10348127782344818,-0.023510754108428955,-0.28780069947242737,0.05863003060221672,0.05634986236691475,-0.8702849745750427,0.4052623510360718,-0.38702157139778137,0.4163282811641693,0.4361754059791565,-0.12397497147321701,0.1874256581068039,-0.7424111366271973,-0.8113762736320496,-0.8303745985031128,-0.6250298619270325,-0.250561386346817,-0.9129766821861267,-0.7705673575401306,-0.3454548120498657,0.3311483860015869,-0.36503899097442627,-0.7226693630218506,-0.7547431588172913,-0.26779401302337646,-0.5907763838768005,-0.15315602719783783,0.023167073726654053,-0.7094469666481018,0.5461521148681641,0.43114009499549866,0.037745650857686996,0.3316999077796936,0.1726941615343094,0.20493771135807037,-0.6512187123298645,-0.17394062876701355,0.603107213973999,0.05439003184437752,0.752042829990387,0.09397349506616592,-0.3324069380760193,-0.06871063262224197,-0.16668136417865753,0.08013176918029785,0.6255226731300354,0.5183746218681335,0.6145811080932617,-0.1621672660112381,0.4698231816291809,0.3203325569629669,0.7266657948493958,-0.13515692949295044,0.529362142086029,0.5245602130889893,0.5123223662376404,0.3094657063484192,-0.007821962237358093,-0.12167878448963165,-0.2594471573829651,0.4803291857242584,0.07127637416124344,-0.3703022003173828,-0.17999610304832458,-0.5087937712669373,0.014033595100045204,0.3908022940158844,-0.4107073247432709,-0.003258912591263652,0.6440796256065369,-0.09808114171028137,1.0813158750534058,-0.12535086274147034,-0.7219780683517456,0.21510720252990723,0.09057016670703888,-0.3048497140407562,1.2410809993743896,1.1358379125595093,0.49631941318511963,0.48982688784599304,0.433430939912796,1.18251371383667,1.027437686920166,-0.18512877821922302,0.6952040791511536,0.7088226675987244,0.8385236859321594,0.29240354895591736,-0.08789662271738052,0.0515349805355072,0.08084684610366821,0.5512053966522217,-0.22000004351139069,-0.3931611478328705,-0.4655113220214844,-0.7166255712509155,-0.10774417966604233,0.4212222993373871,0.05774841830134392,-0.14212732017040253,0.7016221284866333,0.1253751963376999,0.4771828055381775,-0.3264518976211548,0.14129459857940674,0.11440817266702652,-0.15260456502437592,0.16745376586914062,0.7936698198318481,0.6665241122245789,0.5667040944099426,0.5348951816558838,0.4139138460159302,0.5740613341331482,0.3589017391204834,-0.291764497756958,0.41886624693870544,-0.03492731228470802,0.8031868934631348,0.0851568877696991,0.2868095636367798,0.1989617943763733,-0.7632598876953125,0.6983751654624939,0.2363269329071045,-0.24850314855575562,0.10565342009067535,-0.15871484577655792,-0.28186604380607605,0.3901832103729248,0.08770325034856796,-0.13292384147644043,0.12760959565639496,0.2597144544124603,0.33383873105049133,-0.8258901834487915,0.22915790975093842,-0.12568359076976776,-0.057806454598903656,-0.010116087272763252,0.11214213073253632,0.4749644696712494,0.40663447976112366,0.1879083663225174,0.06974565237760544,0.404446542263031,0.1098172515630722,0.11644592881202698,0.3177177309989929,0.4802134931087494,0.1367843896150589,0.4148976504802704,0.3434005379676819,-0.29415449500083923,-0.7020664811134338,0.03138940408825874,0.17400765419006348,0.19390244781970978,0.10015494376420975,0.3626662492752075,-0.035596828907728195,-0.20094271004199982,0.16958431899547577,-0.0724414587020874,-1.0726009607315063,0.4895235300064087,-0.7607167363166809,0.7110914587974548,0.2464781552553177,-0.23281824588775635,-0.08387956768274307,-0.2677328884601593,-0.5689552426338196,-0.8878582715988159,-0.3616107702255249,-0.9186505079269409,-0.49737128615379333,-1.1708521842956543,-0.19477005302906036,0.6735826730728149,-0.26147037744522095,-0.6996971368789673,-1.1573036909103394,-0.5110650062561035,-0.5264091491699219,0.0733678862452507,0.9177245497703552,-0.6281588673591614,-0.35913488268852234,0.8163388967514038,-0.46059831976890564,-0.0003650819999165833,-0.16949982941150665,-0.7589606642723083,0.3102591037750244,0.1899145096540451,-0.9022327065467834,0.1767701506614685,-0.9200983643531799,-0.18048343062400818,0.5400546193122864,-0.10928737372159958,-0.24340635538101196,0.34946078062057495,-0.828920841217041,-0.6752386093139648,-0.7792456150054932,-0.5679481029510498,-0.22451549768447876,-0.3559463620185852,-0.7417809367179871,0.5365078449249268,-0.18299372494220734,-0.6434454917907715,-0.6867721676826477,-0.14973193407058716,0.36034488677978516,0.04418983682990074,-0.2099452018737793,-0.46034476161003113,0.4390573501586914,0.49408426880836487,0.6845543384552002,0.6853122115135193,0.23508350551128387,0.6432563662528992,-0.35242223739624023,-0.1107250452041626,0.8737515211105347,-0.13278937339782715,0.76207035779953,0.31924545764923096,-0.2955128252506256,-0.14068257808685303,-0.2964378595352173,-0.5781233906745911,0.6248766183853149,0.7580694556236267,0.7398777604103088,0.34029778838157654,0.32927000522613525,0.6421563029289246,0.6021075248718262,-0.39870065450668335,0.6829647421836853,0.6172319650650024,0.9954794049263,-0.02560367062687874,-0.0874330997467041,0.0963343009352684,0.19817857444286346,0.42464643716812134,-0.5401415824890137,-0.3400953710079193,-0.6842430830001831,-0.567561686038971,-0.010374728590250015,-0.05350010097026825,-0.20387233793735504,-0.05935338884592056,0.9098824262619019,0.09166999906301498,1.0958067178726196,-0.2143951952457428,-0.5922901034355164,-0.32144615054130554,-0.31392714381217957,-0.2498587816953659,0.741969883441925,0.38379496335983276,0.828906774520874,0.048708364367485046,0.6042665839195251,1.0977182388305664,0.41204333305358887,-0.11552928388118744,0.6885480880737305,0.2062564194202423,0.3973722755908966,0.39186617732048035,0.14862431585788727,-0.15374699234962463,-0.31866931915283203,0.8157730102539062,0.10798739641904831,-0.15397220849990845,-0.36034390330314636,-0.7093605399131775,0.0010923334630206227,0.07722466439008713,-0.3205309510231018,-0.2699829936027527,0.5134239196777344,0.12133161723613739,0.7361398935317993,0.12098300457000732,-0.2425394058227539,-0.15928161144256592,0.250465989112854,-0.11416681110858917,0.8642795085906982,0.3070216774940491,0.18421685695648193,0.03769027441740036,0.7925794720649719,0.5397356152534485,0.4233294129371643,-0.006843887269496918,0.6154434680938721,0.38499489426612854,0.42901909351348877,0.5426104068756104,-0.3006575107574463,0.04270961135625839,0.7046093940734863,0.4882946014404297,-0.1891193836927414,0.07768896967172623,-0.10433138906955719,0.13131876289844513,-0.017044564709067345,-0.24437817931175232,0.20087258517742157,0.11163540184497833,-0.5999546051025391,0.277533620595932,-0.30042389035224915,0.41640937328338623,0.6424241065979004,0.15483897924423218,-0.012278631329536438,0.3024161159992218,-0.3600955307483673,-0.2095957249403,-0.5232025384902954,0.19972147047519684,0.165048748254776,-0.3057286739349365,-0.3626679480075836,0.3899672031402588,0.1496562957763672,-0.6691455841064453,-0.15497349202632904,-0.32545846700668335,0.08361639827489853,-0.10777995735406876,-0.14958497881889343,-0.33386313915252686,0.3521374762058258,-0.1125861182808876,0.5821166038513184,0.295038104057312,0.005520894657820463,0.39825037121772766,0.20377019047737122,0.22142614424228668,1.0535521507263184,-0.19188062846660614,0.9443346858024597,-0.47017979621887207,0.07959763705730438,0.26763004064559937,-0.13437949120998383,0.06559896469116211,0.8237937092781067,0.6631532907485962,0.5825297832489014,0.4102686047554016,0.7841709852218628,0.8724363446235657,0.9779123663902283,0.34724316000938416,0.732374906539917,0.5839083194732666,0.6933937072753906,0.10058246552944183,-0.005744855850934982,-0.130817711353302,-0.5599965453147888,0.7835614681243896,0.11279387772083282,0.08176438510417938,0.22328834235668182,-0.0638585016131401,-0.04660972207784653,0.07336073368787766,-0.3652120530605316,0.04964831471443176,0.529074490070343,-0.1329447329044342,0.49996456503868103,-0.0615435391664505,-0.3911800682544708,-0.24824047088623047,-0.11360146850347519,-0.1081516370177269,0.4843551516532898,0.21131648123264313,0.581121563911438,0.0750914067029953,0.019751297309994698,0.4013620615005493,0.13338898122310638,0.3115416169166565,0.31530243158340454,0.17752979695796967,0.298774391412735,0.19638104736804962,-0.07469059526920319,-0.11975181847810745,0.03618817403912544,0.4168057143688202,-0.19236263632774353,0.19892726838588715,-0.08133722096681595,-0.2365177720785141,0.0291200689971447,0.1254691332578659,0.08959094434976578,-0.294126033782959,0.47413530945777893,-0.360156387090683,0.3670119047164917,-0.3233483135700226,0.17563383281230927,-0.30642956495285034,-0.2554333508014679,-0.10231069475412369,0.3003363013267517,0.5147852301597595,0.470890074968338,0.14748652279376984,0.2711237072944641,0.5810688138008118,0.5582091212272644,-0.2893659174442291,0.4415212869644165,0.14775052666664124,0.12491220980882645,0.45363569259643555,-0.11392967402935028,-0.24543768167495728,-0.860805094242096,0.2279675304889679,-0.14193816483020782,0.027549777179956436,-0.022706737741827965,0.15833532810211182,0.11114828288555145,0.007739292923361063,0.506742000579834,-0.17844635248184204,-0.8003605008125305,0.2688773572444916,-0.8135061860084534,-0.1350383460521698,0.6001797914505005,-0.15241684019565582,0.010804178193211555,0.31816428899765015,-0.1066317930817604,-0.3729279041290283,-0.7081473469734192,0.08986154943704605,-0.38534805178642273,-0.48417335748672485,-0.015339973382651806,0.1150667816400528,0.032509397715330124,-0.4062046706676483,-0.17151686549186707,-0.40646952390670776,-0.031604353338479996,0.04150591045618057,-0.08716218918561935,-0.01291479542851448,0.3447169363498688,0.2258327603340149,0.35529351234436035,0.5056439638137817,0.01370701752603054,-0.20349350571632385,-0.03187502920627594,-0.1826714128255844,-0.006722006015479565,-0.3092767596244812,-0.3440656363964081,-0.2770504057407379,0.3095766305923462,-0.08681806921958923,-0.3065257966518402,0.2347324937582016,-0.30639901757240295,0.07281547039747238,-0.24418632686138153,-0.12821337580680847,0.23526093363761902,-0.05185326561331749,-0.140639990568161,0.052249353379011154,0.12988969683647156,-0.32092005014419556,0.18248021602630615,-0.0846705213189125,0.28632286190986633,0.20434869825839996,-0.3181706368923187,-0.08620399981737137,0.5340765118598938,0.11288990080356598,0.11214305460453033,0.1566762626171112]},{"shape":[32],"values":[-0.03588348627090454,0.08387181162834167,-0.11614836752414703,-0.06198654696345329,0.4397343397140503,-0.15069571137428284,0.5211086869239807,0.05887363851070404,-0.0309696476906538,-0.04732386767864227,-0.03672857582569122,-0.1369592398405075,0.4730466604232788,0.4236898422241211,0.30057471990585327,0.08913007378578186,0.3365182876586914,0.45617976784706116,0.3676591217517853,-0.11051812022924423,0.35602885484695435,0.3598121702671051,0.5516089797019958,0.22520235180854797,-0.12204543501138687,-0.003744744695723057,-0.1272418200969696,0.3123372197151184,-0.043166838586330414,-0.1016281396150589,-0.14471910893917084,-0.07728732377290726]},{"shape":[32,9],"values":[-0.13401220738887787,-0.14369329810142517,-0.03664219751954079,0.0750822052359581,0.2517806887626648,0.1183743104338646,-0.17797112464904785,0.16313773393630981,-0.48723888397216797,0.24817226827144623,0.05065913498401642,0.5517677068710327,0.5086948275566101,0.41904211044311523,0.4802038371562958,-0.026620833203196526,0.7171188592910767,0.6901755332946777,-0.2502915561199188,-0.22714178264141083,-0.5615415573120117,0.10268837213516235,-0.0962262898683548,-0.5171342492103577,-0.27039778232574463,-0.18081827461719513,-0.5957748293876648,-0.2895734906196594,0.032562293112277985,0.1886841505765915,0.18585410714149475,-0.24368596076965332,-0.15813486278057098,0.33644065260887146,-0.2174433022737503,0.35065755248069763,0.7505602240562439,1.0314817428588867,1.1470465660095215,0.7117350101470947,0.9342315196990967,0.9190546870231628,0.748878538608551,0.5751786828041077,0.6634634137153625,0.049036428332328796,-0.010398145765066147,-0.15883947908878326,-0.48539289832115173,-0.025759777054190636,0.025915859267115593,-0.2865915596485138,-0.4550218880176544,-0.49997884035110474,1.213579535484314,0.825313925743103,0.6167196035385132,1.045401692390442,0.7623316049575806,0.3862762749195099,0.9071710109710693,0.5917803645133972,0.4130629897117615,-0.39496418833732605,-0.3911316692829132,-0.24688959121704102,-0.23645304143428802,-0.32170724868774414,-0.38290703296661377,-0.8809176087379456,-0.14137691259384155,0.013451701030135155,-0.20449285209178925,-0.39618465304374695,-0.1452818214893341,-0.3836003541946411,-0.4119921028614044,-0.3474518358707428,0.10949273407459259,-0.3966231346130371,-0.8585435152053833,-0.13409598171710968,-0.2768690586090088,-0.14001059532165527,0.08625442534685135,0.022937363013625145,-0.18024738132953644,0.162509486079216,0.057197097688913345,-0.2649894058704376,-0.1135859340429306,-0.1995719075202942,0.2898592948913574,-0.04988094046711922,-0.18724481761455536,-0.1834065169095993,0.18699388206005096,0.019650820642709732,-0.03741900995373726,-0.6841383576393127,-0.4431081712245941,-0.13019032776355743,-0.4142528772354126,-0.2960471510887146,-0.3145594894886017,-0.15560419857501984,-0.20011253654956818,0.08892973512411118,0.6057225465774536,0.6952051520347595,1.0114363431930542,0.44622793793678284,0.5962587594985962,0.43796634674072266,0.7508408427238464,0.8132205009460449,0.662860631942749,0.7682797908782959,0.6371285915374756,0.5404446721076965,0.38732728362083435,0.8196555972099304,1.0502758026123047,0.5455639362335205,0.5859005451202393,0.5602146983146667,0.1706545501947403,0.21372617781162262,0.481006920337677,0.8473206758499146,0.6662915349006653,0.647148072719574,0.6599149703979492,0.5361316800117493,0.295984148979187,0.3671487867832184,0.103131502866745,0.39925506711006165,0.33768388628959656,0.22041136026382446,0.306838721036911,-0.25252872705459595,0.16079077124595642,0.6936913728713989,0.21332630515098572,0.241691455245018,0.6405248641967773,0.751820981502533,0.5550203919410706,0.3705907166004181,0.8931716084480286,0.5799478888511658,0.9204444885253906,0.9008970260620117,0.6589269042015076,0.3518980145454407,0.5444111227989197,0.3695342242717743,0.7627727389335632,0.39070335030555725,0.8681395053863525,0.649325966835022,0.37032219767570496,0.4379498064517975,0.33374249935150146,0.6422319412231445,0.154032900929451,0.6663650274276733,0.6188079118728638,0.4679534137248993,0.6438779234886169,-0.4433436393737793,-0.39553388953208923,-0.5767468810081482,-0.36366525292396545,-0.44131991267204285,-0.2946121394634247,0.1503286063671112,-0.17878039181232452,-0.7579846978187561,0.48563525080680847,0.4591500461101532,0.16856354475021362,-0.07286734879016876,0.35844776034355164,0.2732173502445221,0.5401500463485718,0.2811351716518402,0.3469536006450653,0.3702916204929352,0.6047298312187195,0.5802328586578369,0.5818333029747009,0.6509849429130554,0.6345921158790588,1.0598411560058594,0.7121874094009399,0.8259302973747253,0.6482366919517517,0.979097843170166,0.5996333956718445,0.7952669262886047,0.7290326952934265,0.5007620453834534,0.21497461199760437,0.7816827893257141,0.8677310943603516,-0.11310041695833206,0.022399235516786575,0.11169171333312988,0.563209056854248,0.24466685950756073,0.020698629319667816,0.41603100299835205,0.3161834180355072,0.43011462688446045,-0.5800905823707581,0.08653179556131363,-0.2387167364358902,0.010718491859734058,-0.26078927516937256,-0.027672501280903816,-0.6135719418525696,-0.18339040875434875,0.17131535708904266,-0.17602071166038513,0.30171114206314087,-0.3731599450111389,-0.31896695494651794,0.4696124494075775,-0.061944566667079926,-0.1414864957332611,-0.2437780797481537,0.5136505365371704,-0.4484221339225769,-0.3464854061603546,-0.2446819543838501,-0.5238652229309082,-0.487397700548172,-0.23543953895568848,-0.7469272017478943,-0.7393401265144348,-0.27183255553245544,0.34730806946754456,0.4700634777545929,0.31095612049102783,0.1224764883518219,0.7733330726623535,0.7893320322036743,0.599693775177002,0.553364634513855,0.366083562374115,-0.6106103658676147,-0.23274768888950348,0.10966306179761887,-0.5509545207023621,-0.2203514277935028,-0.06881492584943771,-0.5267431139945984,-0.5256463289260864,0.011607615277171135,-0.05609942972660065,-0.2469979226589203,-0.14699646830558777,-0.4502544403076172,-0.3284889757633209,-0.5825703740119934,-0.45186755061149597,-0.4582374691963196,-0.38591721653938293,-0.3731570243835449,-0.4339110851287842,-0.21269643306732178,-0.03477594256401062,-0.3196766972541809,-0.4329746663570404,-0.14156420528888702,-0.6806936264038086,-0.13010303676128387,0.04884384945034981,-0.5151407718658447,-0.5600834488868713,-0.4074956178665161,-0.37393927574157715,-0.47239547967910767,-0.29618069529533386,-0.31090301275253296,-0.9421627521514893]},{"shape":[9],"values":[0.2654665410518646,0.29401895403862,0.14679580926895142,0.34244516491889954,0.08895581215620041,0.2329448163509369,0.24092863500118256,0.12545904517173767,0.28643056750297546]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-11.json new file mode 100644 index 0000000..d7e2c08 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:58:24.187Z","weights":[{"shape":[20,32],"values":[0.9236801266670227,-0.45815718173980713,0.06784187257289886,0.8177298903465271,-0.54559725522995,-0.2726896107196808,0.9257564544677734,-0.3986617922782898,0.23428235948085785,1.308485984802246,0.4985685348510742,-0.4697045385837555,-0.1564156413078308,-0.714754581451416,0.7036958336830139,0.6856046915054321,-0.13130804896354675,0.47868970036506653,0.7933921813964844,0.6116844415664673,1.2164318561553955,0.8882619738578796,-0.602540135383606,-0.3450617790222168,-0.2956392765045166,0.7479915022850037,0.6041368842124939,-0.012930682860314846,1.1486153602600098,-0.3509785234928131,0.43116557598114014,0.4855373203754425,0.12947224080562592,-0.0672733336687088,0.1507018655538559,0.187655508518219,0.5809435248374939,0.2264830321073532,0.3366697430610657,-0.1487826555967331,-0.371148943901062,-0.3793596625328064,0.025788776576519012,-0.13592331111431122,-0.22002683579921722,-0.05781048908829689,0.19128698110580444,0.3352905213832855,0.19710510969161987,-0.0010218392126262188,-0.12155649065971375,0.15552645921707153,0.21647824347019196,0.18339833617210388,0.14285814762115479,-0.20931388437747955,-0.1121130958199501,-0.11858231574296951,-0.06208808720111847,0.4001239836215973,-0.41360902786254883,-0.05416729301214218,-0.1202595978975296,0.4366181194782257,0.1819518506526947,-0.5484150052070618,0.5047416687011719,-0.31087949872016907,0.6939448714256287,0.8023505806922913,-0.15329745411872864,-0.7538920044898987,-0.63565593957901,0.15059679746627808,-0.10689866542816162,-0.9818708896636963,-0.7971451878547668,0.5230004787445068,-0.308146595954895,-0.1800997406244278,0.6179360747337341,-0.37151068449020386,0.18132437765598297,0.2246866375207901,-0.3047151267528534,0.04828669875860214,0.6239277124404907,-0.4709154963493347,-0.8182485103607178,0.28540730476379395,-0.20080819725990295,0.5509909987449646,-0.15743336081504822,-0.7299880385398865,-0.16009145975112915,0.36299726366996765,-0.5201597809791565,1.9679737091064453,-1.3258439302444458,-0.4113999307155609,-0.942955493927002,-0.9592955112457275,-0.3938480317592621,1.5871115922927856,1.8726900815963745,-0.14461928606033325,-0.33461570739746094,1.7007756233215332,1.701117992401123,-0.629570484161377,-0.15350958704948425,-0.032689571380615234,-1.198279619216919,-1.193388819694519,-0.6980763673782349,-0.6341539025306702,-0.8614976406097412,-0.2568611204624176,-1.0342657566070557,1.4311108589172363,1.744134783744812,-0.8909187912940979,-0.34592205286026,-1.097127079963684,-0.28444090485572815,1.1377732753753662,0.8658314943313599,-0.8105773329734802,-0.2528259754180908,-0.15628476440906525,-0.026563594117760658,-0.4048730134963989,-0.17980068922042847,-0.1236761137843132,-0.07781080901622772,0.29447993636131287,0.28908950090408325,0.18588803708553314,-0.04935900494456291,-0.12432204931974411,-0.07021576911211014,0.12413720786571503,-0.4947190582752228,-0.491242915391922,0.05044090747833252,0.31013303995132446,0.4384727478027344,0.04224829375743866,-0.417327344417572,0.13504742085933685,-0.1427382528781891,0.010970483534038067,-0.2606060802936554,0.3849889039993286,0.3495829999446869,-0.21922867000102997,0.2418173849582672,0.27552399039268494,-0.5109726786613464,0.08660317212343216,0.07302321493625641,-0.07655292749404907,0.006136589217931032,-0.2425154596567154,-0.2678234577178955,-0.10988049954175949,-0.5669095516204834,0.38214075565338135,0.4076698124408722,0.3166390359401703,0.2442583590745926,0.162912517786026,0.10009738057851791,-0.5485520958900452,-0.0014603827148675919,-0.21400311589241028,-0.2490173727273941,0.4920453131198883,0.5459954738616943,-0.20491015911102295,-0.29580944776535034,-0.19885022938251495,-0.5131464600563049,0.3963611423969269,0.2551821172237396,0.5422379970550537,-0.21891547739505768,-0.5010370016098022,0.37263986468315125,-0.2199082374572754,-0.44397538900375366,0.15929341316223145,0.28675898909568787,0.5553368926048279,-0.37793803215026855,0.11688940972089767,-0.19961290061473846,-0.5396175384521484,-0.41391459107398987,0.4039727747440338,0.1609305888414383,0.14491023123264313,0.10845815390348434,-0.005717579275369644,0.455534964799881,-0.08469328284263611,-0.3709026277065277,-0.26475343108177185,-0.6707744002342224,0.14012731611728668,0.3418506383895874,0.27786970138549805,-0.07685677707195282,0.1723358929157257,-0.47702762484550476,0.048523593693971634,0.49774405360221863,0.1299663782119751,-0.05309983715415001,-0.06413676589727402,0.22510021924972534,0.44106313586235046,-0.3304193913936615,-0.2282644659280777,0.3101845979690552,0.001841023680754006,-0.3423498570919037,-0.39796024560928345,0.1688314825296402,-0.15448777377605438,0.04816645756363869,-0.06403694301843643,-0.06959613412618637,0.5518699288368225,0.28784847259521484,0.39006397128105164,-0.07607147097587585,0.25529366731643677,-0.23604457080364227,-0.15940530598163605,-0.5052453875541687,0.2267787605524063,0.05376601591706276,0.4022715389728546,-0.13895896077156067,-0.06452676653862,-0.08160693943500519,0.18614992499351501,-0.010533700697124004,0.4586867094039917,0.23008942604064941,-0.4068312644958496,0.16654326021671295,-0.07798288762569427,0.25078245997428894,-0.2080536186695099,0.052401043474674225,-0.13092388212680817,-0.1042720377445221,-0.12410739809274673,0.1835378110408783,-0.0014792939182370901,0.01848682202398777,-0.2733766436576843,0.11797653138637543,0.19812946021556854,0.637589693069458,0.09020199626684189,-0.044738613069057465,0.1420004516839981,-0.03466513007879257,0.040375757962465286,-0.055729396641254425,-0.00019647329463623464,0.36559632420539856,-0.13404764235019684,-0.37844231724739075,0.39024055004119873,-0.17807085812091827,0.006886966060847044,-0.22211210429668427,-0.13978341221809387,-0.009668180719017982,-0.07621822506189346,0.07400204986333847,0.18249410390853882,0.8221336603164673,-0.012399079278111458,0.3507438898086548,-0.1930621713399887,-0.018794283270835876,-0.5120883584022522,-0.237202987074852,-0.18058845400810242,0.4813114106655121,-0.2681597173213959,-0.0691506564617157,0.19095151126384735,0.2941075265407562,-0.3101804256439209,0.0028892792761325836,-0.444384902715683,0.38906005024909973,0.02038377895951271,0.1318170428276062,0.3324860632419586,-0.06329697370529175,0.013325762934982777,-0.08074025809764862,-0.1681448519229889,0.30622154474258423,-0.2841501235961914,-0.08416283875703812,-0.010801933705806732,0.27945756912231445,-0.10846579074859619,0.30223363637924194,-0.11571153998374939,-0.055131904780864716,-0.2611813545227051,0.4598604440689087,-0.0894666463136673,-0.0770062506198883,0.21796026825904846,-0.15232327580451965,-0.18677692115306854,0.6278461217880249,-0.110945925116539,-0.36368390917778015,0.14701665937900543,0.6793431043624878,-0.26194754242897034,0.07660655677318573,-0.5552570819854736,0.3758333623409271,0.04188809171319008,0.4066166281700134,0.5162320733070374,0.5340904593467712,0.25932392477989197,0.5883395671844482,0.4359883666038513,-0.21283632516860962,-0.1328737437725067,-0.456703245639801,0.20139338076114655,0.39169177412986755,0.15028201043605804,0.6271376609802246,-0.14795619249343872,0.38729310035705566,-0.5017626285552979,0.12277093529701233,-0.060546547174453735,-0.08446945250034332,-0.3536384701728821,0.21680587530136108,-0.06739521026611328,-0.054406728595495224,0.2609778642654419,-0.10317520052194595,0.0018598776077851653,-0.24209952354431152,0.005061310715973377,-0.062186527997255325,0.24890632927417755,-0.007784406654536724,0.11711839586496353,-0.21438419818878174,-0.25867289304733276,-0.23880335688591003,0.2270488440990448,0.027802174910902977,0.20094788074493408,-0.16088484227657318,0.18874157965183258,-0.19030407071113586,0.24894165992736816,-0.1281500607728958,0.4555779993534088,-0.10504969209432602,0.0816459208726883,-0.2933708429336548,-0.25486084818840027,0.24346165359020233,-0.15764611959457397,0.14372631907463074,-0.36202195286750793,0.07610315084457397,-0.11764460057020187,0.2851257026195526,0.05194925516843796,-0.17125865817070007,0.13327144086360931,-0.036864023655653,-0.18487098813056946,-0.1548401117324829,-0.10389111936092377,-0.36608731746673584,-0.3208602964878082,-0.0028889435343444347,-0.6567444801330566,0.20557431876659393,-0.026273779571056366,0.16605247557163239,0.30351772904396057,0.18685732781887054,0.039530061185359955,0.3316904306411743,-0.03877483680844307,0.21444754302501678,0.16032463312149048,-0.4149606227874756,0.08268680423498154,0.1580553948879242,-0.014909936115145683,0.2657751441001892,0.21958506107330322,0.09105073660612106,-0.4115443825721741,0.21331405639648438,0.03488990291953087,-0.028239576146006584,-0.29240867495536804,-0.14657087624073029,-0.11632106453180313,-0.2497664839029312,0.24085505306720734,0.1115773469209671,0.1990530788898468,0.38577738404273987,0.03981678560376167,0.014151775278151035,0.2126985490322113,-0.26234170794487,0.0869554877281189,0.0540739931166172,-0.06672205030918121,-0.13436764478683472,-0.16657355427742004,-0.1885494440793991,-0.170705184340477,0.15783371031284332,0.10317716002464294,0.3428071439266205,0.16353149712085724,0.10254335403442383,-0.1378871351480484,-0.14414332807064056,-0.20567043125629425,0.005919283255934715,0.2439323365688324,0.15072941780090332,-0.20706486701965332,-0.11338724941015244,-0.30774548649787903,0.20118117332458496,-0.10131850093603134,0.2568880021572113,-0.008076882921159267,-0.303483247756958,0.26926493644714355,0.3362194895744324,0.13923940062522888,0.0034581134095788,-0.25302475690841675,0.5136327147483826,0.22968801856040955,-0.11961621791124344,-0.05710449442267418,-0.2786725163459778,0.2658325731754303,-0.10222151130437851,0.10631844401359558,0.07036054879426956,0.5260311365127563,-0.07333993911743164,0.1809307336807251,0.20951218903064728,-0.46791398525238037,-0.3436267077922821,-0.16603612899780273,0.08637906610965729,-0.18244042992591858,0.05595436692237854,0.023839790374040604,0.2537933588027954,-0.16087821125984192,-0.11463212221860886,-0.07616451382637024,-0.353554368019104,0.1564912497997284,-0.2135951668024063,0.22981099784374237,0.22160707414150238,0.09523256868124008,-0.19308485090732574,0.18013419210910797,-0.3162297308444977,-0.1985299289226532,-0.03260409086942673,0.05270968750119209,0.1843881756067276,0.26621460914611816,0.07671382278203964,0.10848268121480942,0.18843893706798553,0.0769319161772728,-0.12008807063102722,0.14537279307842255,0.11733348667621613,0.25176316499710083,0.119139663875103,0.08730416744947433,0.19282624125480652,-0.060165971517562866,0.2513338029384613,0.46344736218452454,-0.1902257800102234,0.330076664686203,-0.3844488263130188,-0.2578420639038086,0.19830261170864105,-0.17866460978984833,0.06061098724603653,0.27939122915267944,0.35461804270744324,0.26982131600379944,-0.01942494511604309,-0.2388359010219574,0.13141079246997833,0.16247709095478058,0.012417661026120186,-0.09433978796005249,0.08632273226976395,-0.2692246735095978,0.13437847793102264,0.12464813143014908,-0.2907649874687195,-0.43934109807014465,0.06931255757808685,-0.36496633291244507,0.07560604810714722,0.5140914916992188,0.30613061785697937,-0.3184747099876404,-0.3522966206073761,-0.15013542771339417,0.24987497925758362,0.11656296998262405,0.37952104210853577,0.08663907647132874,-0.08622859418392181,-0.05185867100954056,-0.07365994900465012,-0.3531583547592163,-0.004082488361746073,0.1527746021747589,0.094292052090168,0.07666242867708206,0.1833929568529129,-0.1257471889257431,0.1287102997303009,0.06790951639413834,-0.10943860560655594,-0.20465782284736633,-0.15935814380645752,0.022650163620710373,0.23563802242279053,-0.04658021405339241,0.19201740622520447,-0.2023085206747055,0.2959963381290436,-0.42312172055244446,-0.2810862362384796,-0.022283032536506653,-0.29195356369018555,0.053899217396974564,0.08445743471384048,0.16063468158245087,0.38799959421157837,-0.16214150190353394,-0.10767430067062378,-0.3341127336025238,-0.13944567739963531,-0.10783049464225769,0.11345797777175903,-0.255906343460083,-0.24215613305568695,-0.09281978011131287,0.08227085322141647,-0.17402462661266327,-0.0172556322067976,-0.1314689815044403,-0.1445099413394928,0.20051006972789764,-0.0017255210550501943,-0.1846621185541153,-0.14663615822792053,0.30905506014823914,-0.24005335569381714,0.07106853276491165,-0.4413876533508301,-0.028610246255993843,-0.16181150078773499,0.19310316443443298,0.05742749944329262,0.006733776070177555,0.056020982563495636,0.08792853355407715,0.05267534777522087,0.05359853059053421,0.4212130606174469,-0.19138062000274658,0.10552038252353668,0.033119529485702515,-0.12681883573532104,-0.09316489100456238,-0.14402200281620026,-0.24798300862312317,-0.13266421854496002,0.2460075467824936,0.14435966312885284,-0.22466279566287994,-0.0853983610868454,-0.09167956560850143,-0.454030841588974,0.163249671459198,-0.2215520292520523,-0.359367311000824,0.44793251156806946,0.06393774598836899,0.08816999942064285,0.04668084532022476,-0.034570660442113876,0.2461860328912735,0.1617707759141922,0.19899685680866241,0.11331997066736221,-0.09337805211544037]},{"shape":[32],"values":[0.7762336730957031,-0.1728624701499939,-0.35988885164260864,0.6549451351165771,0.13396243751049042,-0.39206114411354065,0.5108781456947327,-0.3213410973548889,-0.5295941829681396,0.7151355743408203,0.755484938621521,-0.3577428162097931,-0.43235015869140625,-0.02157016098499298,0.5605034828186035,0.49075400829315186,-0.3064057230949402,0.3223102390766144,0.7256093621253967,0.6340272426605225,0.631966233253479,0.6859168410301208,-0.3627760708332062,-0.31018662452697754,-0.302207350730896,0.5744062066078186,0.7595458626747131,-0.10218463838100433,0.668897807598114,-0.28458526730537415,0.34073692560195923,-0.3437213897705078]},{"shape":[32,32],"values":[0.1580120474100113,0.20568016171455383,0.6456350684165955,0.4603983461856842,0.2216169834136963,0.08189312368631363,0.5185456871986389,0.07426667958498001,0.5639327764511108,0.15003252029418945,0.5230448842048645,0.27873700857162476,0.35092055797576904,0.6555585861206055,0.6299052238464355,-0.2959807217121124,0.04851524904370308,0.5257713794708252,0.2879531979560852,0.1412045657634735,0.32594260573387146,0.22722721099853516,-0.09161437302827835,-0.20283737778663635,0.7303801774978638,-0.18166831135749817,-0.1151064932346344,0.21180841326713562,0.2040959894657135,0.1358075886964798,0.11460113525390625,-0.004024184308946133,0.028402814641594887,0.44636744260787964,-0.44245633482933044,-0.6779757142066956,-0.29541903734207153,0.06360100209712982,0.06151527538895607,-0.25812336802482605,-0.7947869896888733,0.006670113652944565,-1.0590124130249023,0.20953787863254547,-1.231722116470337,-0.6817677021026611,-0.23038536310195923,-0.17387530207633972,-1.1628458499908447,-0.770972490310669,0.39022114872932434,0.04791630432009697,-0.8792038559913635,-0.748968243598938,-0.4773849546909332,-0.2569575011730194,-1.1475788354873657,0.25975480675697327,0.4366322159767151,-1.0940231084823608,0.24503447115421295,0.48287433385849,0.4078367352485657,0.4291805922985077,0.37879472970962524,-0.12872254848480225,-0.8972512483596802,-1.0658971071243286,-0.4230906367301941,0.6496374607086182,-0.4493993818759918,0.19332484900951385,-0.1985163688659668,0.1531217396259308,-0.5627814531326294,0.7074517607688904,-0.8139953017234802,-1.0661848783493042,-0.692092776298523,0.08683046698570251,-0.2525690495967865,-0.8601686954498291,-0.1810021549463272,-0.30006399750709534,-0.6180312037467957,-0.8073278069496155,-0.3271566927433014,0.031944289803504944,-0.28886085748672485,-0.20754608511924744,0.5171253085136414,-0.4820629060268402,-0.6854003667831421,0.628664493560791,0.2920781373977661,0.09328857064247131,-0.1931150108575821,-0.04243859276175499,0.9070926904678345,0.8501706719398499,-0.01906769536435604,-0.5460641384124756,0.43185046315193176,-0.1429595798254013,0.5646116137504578,0.10530301928520203,0.5531121492385864,-0.31500089168548584,1.1775497198104858,0.6443678140640259,0.9678966403007507,-0.34473106265068054,0.750466525554657,0.9717984199523926,0.3001711964607239,0.444256991147995,0.7974311113357544,0.5947346091270447,0.2683834731578827,-0.1541365534067154,0.4407805800437927,-0.04743827134370804,-0.23697437345981598,1.190542459487915,0.011388808488845825,-0.29212355613708496,-0.1876903921365738,-0.5122360587120056,0.6070687770843506,0.2363683134317398,-0.5875645279884338,-0.6709063053131104,-0.8939656615257263,0.3589416444301605,-0.1568269580602646,-0.10318208485841751,-0.049055397510528564,-0.3872162699699402,-0.13184742629528046,0.48626187443733215,-0.78757643699646,-0.3126729428768158,-0.7191848754882812,0.15195518732070923,-0.05221857130527496,-0.5558961629867554,-0.005837788339704275,-0.04645204916596413,-1.017952561378479,-0.5402058959007263,-0.12167274951934814,-0.21339459717273712,-0.21035364270210266,0.2674810588359833,0.6081998348236084,-0.2639766335487366,-0.42954662442207336,0.07333343476057053,0.32521912455558777,0.06254874169826508,-0.31272679567337036,-0.43318650126457214,-0.41383883357048035,-0.8121570944786072,-0.7032133340835571,0.18733195960521698,-0.26628124713897705,-0.1623852401971817,-0.21629886329174042,0.438145250082016,-0.5428596138954163,0.547816276550293,-0.4585787355899811,-0.8435679078102112,-0.7957388162612915,0.2062336653470993,0.06667739152908325,-0.8988257050514221,-0.11502650380134583,-0.19293341040611267,-0.9966419339179993,-0.36465850472450256,0.11453123390674591,-0.06177740916609764,0.14525531232357025,-0.24094320833683014,0.605353057384491,-0.34440624713897705,-0.2743165194988251,0.3831386864185333,0.4003428518772125,-0.11887584626674652,-0.02474985085427761,0.007386339362710714,0.5134073495864868,0.5082296133041382,0.01228517759591341,-0.05303497612476349,0.4492814838886261,-0.07709194719791412,0.48787903785705566,-0.16242559254169464,0.6334479451179504,0.28857266902923584,0.5961700081825256,0.16645145416259766,0.17334270477294922,0.0934283658862114,0.6833257079124451,0.7620267271995544,0.556671142578125,0.3974355161190033,0.23100100457668304,0.4294091463088989,-0.034259721636772156,0.19881051778793335,0.6086932420730591,0.11443021148443222,0.0947379395365715,0.4615095853805542,0.15165670216083527,-0.37109848856925964,-0.045654140412807465,-0.07819057255983353,-0.057873647660017014,0.27716168761253357,-0.27060604095458984,0.037681471556425095,-0.07747533917427063,0.40123802423477173,0.20524117350578308,-0.22591635584831238,-0.41859251260757446,0.35170280933380127,-0.5617101192474365,-0.05002465471625328,-0.8105032444000244,-0.5529454350471497,0.10847210884094238,-0.12422772496938705,-0.3947605788707733,-0.788769006729126,0.03708731755614281,-0.01619565300643444,-0.6022388339042664,-0.4542292654514313,0.1261247843503952,0.0444096177816391,-1.056638479232788,0.18715927004814148,-0.5207110643386841,-0.7044615149497986,-0.1885620504617691,0.2837855815887451,0.017553219571709633,0.3038007318973541,0.2275741696357727,0.2243637591600418,-0.7093269228935242,-0.06908407062292099,0.020697131752967834,0.42036741971969604,-0.2887837290763855,-0.1873452514410019,-1.2694767713546753,0.14899876713752747,-0.5263128876686096,-0.49577540159225464,-1.089971661567688,-1.2215718030929565,-0.251853346824646,0.19776567816734314,-0.8727865815162659,-0.9418256282806396,0.1560813933610916,-0.058193739503622055,-0.9998851418495178,-0.9197134375572205,-0.19308924674987793,-0.24275772273540497,-1.33984375,-0.0011210626689717174,-0.08294038474559784,-0.9764660000801086,0.23869116604328156,0.4167245328426361,0.3535839319229126,-0.058032337576150894,0.22827884554862976,0.08321943879127502,0.8024813532829285,0.8627209067344666,0.2393064796924591,0.015953652560710907,0.4732624590396881,-0.09782299399375916,0.7420597076416016,0.1368454545736313,0.5584861636161804,0.04692959040403366,0.8425076007843018,0.5032088160514832,0.9248000383377075,-0.03822007775306702,0.19456438720226288,0.7967716455459595,-0.011965097859501839,-0.058068178594112396,0.9321017265319824,0.3661981225013733,-0.2174958884716034,-0.28271669149398804,0.4541763365268707,0.09722726047039032,-0.22631996870040894,0.7861678004264832,0.1074594110250473,-0.021527985110878944,-0.009839309379458427,-0.14776192605495453,-0.45336639881134033,-0.2274317741394043,0.914439857006073,0.6088165044784546,-0.02150428667664528,0.044032104313373566,0.21978503465652466,0.05288064479827881,0.9126577973365784,0.11856681108474731,0.35006001591682434,-0.5484318733215332,0.7452433705329895,0.6163004636764526,0.42622891068458557,-0.17929434776306152,0.7737216353416443,0.38116273283958435,0.15604598820209503,-0.10473964363336563,0.6057048439979553,0.7286574244499207,0.25685518980026245,0.25788670778274536,0.4553615152835846,-0.3656952381134033,-0.3196636736392975,0.5402122735977173,0.14540162682533264,-0.11258267611265182,-0.06434627622365952,0.28201571106910706,0.19116699695587158,0.39334261417388916,-0.37628239393234253,-0.598324716091156,-0.5367947220802307,0.41576528549194336,0.2793290913105011,-0.3016119599342346,-1.1632115840911865,-0.26298248767852783,-1.098402976989746,-0.037663836032152176,-1.0813214778900146,-1.126921534538269,-0.23582589626312256,-0.17187510430812836,-0.7901926040649414,-1.4271303415298462,0.04971979930996895,0.2335076928138733,-1.0302278995513916,-0.9861329793930054,-0.29084476828575134,0.0689435824751854,-1.5773204565048218,-0.08176888525485992,-0.10635045170783997,-0.9656537175178528,-0.06889922171831131,0.6316967606544495,0.6001675724983215,0.4176040589809418,-0.2863989770412445,0.3255084156990051,-0.4556081295013428,-0.5283327698707581,-0.0536077544093132,0.5270276069641113,0.1293470859527588,-0.12770429253578186,-0.9455811977386475,-0.141877681016922,-0.7762393951416016,-0.2859341502189636,-0.7824605107307434,-0.833774209022522,-0.2818728983402252,-0.0662887841463089,-0.694322407245636,-0.9815582036972046,0.02102554962038994,0.3410170376300812,-0.7831941246986389,-0.9276319146156311,0.1358148157596588,-0.24541179835796356,-1.1868305206298828,-0.03891546651721001,-0.4718227684497833,-0.9989972114562988,0.1905755251646042,0.559404194355011,0.5796436071395874,0.32417628169059753,0.3458505868911743,0.27893808484077454,-0.5122759342193604,-0.3506525158882141,-0.6839063167572021,0.7376261353492737,-0.5350010395050049,0.26176443696022034,-0.2660228908061981,-0.24410361051559448,-0.22407768666744232,0.6446493864059448,-0.4808226525783539,-0.7394411563873291,-0.5479042530059814,0.014823655597865582,-0.40037667751312256,-0.567296028137207,-0.41063907742500305,0.039497338235378265,-0.9919371008872986,-0.6389601230621338,-0.41266003251075745,-0.14079707860946655,-0.5807132720947266,-0.22326749563217163,0.6721364855766296,-0.4991209805011749,0.15423761308193207,0.15784353017807007,0.3542051315307617,0.019870975986123085,0.16239625215530396,-0.06269834190607071,0.5750522613525391,0.36266300082206726,-0.03957189992070198,-0.2606571912765503,0.2544373571872711,0.11988091468811035,0.3929503262042999,-0.22856204211711884,0.4861771762371063,-0.37528151273727417,0.5404725074768066,0.627666175365448,0.4950760006904602,-0.14631401002407074,0.35507944226264954,0.8944308757781982,0.6686088442802429,0.30274051427841187,0.9024521112442017,0.5957646369934082,0.10126660019159317,-0.09955381602048874,0.1822289377450943,-0.20009620487689972,-0.0872131958603859,0.323502779006958,-0.2869516611099243,-0.00866908859461546,0.09660600125789642,0.04845091328024864,-0.11920981109142303,-0.13723605871200562,0.08191174268722534,0.2910168766975403,0.034185267984867096,-0.1725754290819168,0.6428632140159607,-0.036391958594322205,0.23415382206439972,0.020394038408994675,0.45113155245780945,-0.01757807284593582,0.3847675621509552,0.7148695588111877,0.4621598422527313,0.03856061026453972,0.4854804575443268,0.48451346158981323,0.6552702188491821,0.3806058466434479,0.5824254751205444,0.16454851627349854,0.000013601315004052594,-0.055020928382873535,0.31867605447769165,-0.2970009446144104,-0.009417218156158924,0.7301723957061768,-0.3183871805667877,0.026239657774567604,-0.13589750230312347,-0.033048730343580246,0.10624293237924576,-0.2872500419616699,-0.5578802824020386,-0.49199679493904114,-0.7658312320709229,0.7076709866523743,-0.4311308264732361,0.06363198161125183,-0.7668828368186951,0.059650059789419174,0.06449867784976959,0.5323578119277954,-0.6853879690170288,-0.30787739157676697,-0.453093945980072,-0.28435608744621277,-0.3836393654346466,-0.7387349009513855,0.06924162060022354,-0.10761163383722305,-0.6495203971862793,-0.7587411403656006,-0.04959242418408394,0.09633088856935501,-0.24261276423931122,-0.22316987812519073,0.17302583158016205,-0.08205528557300568,-0.48220887780189514,0.33838582038879395,0.4912295341491699,-0.21504980325698853,0.19062882661819458,-0.01281016506254673,0.39097362756729126,0.5614131093025208,0.3731130063533783,-0.16945487260818481,0.009995776228606701,-0.17449802160263062,-0.24268001317977905,0.4379916191101074,-0.05010576173663139,-0.08734118938446045,-0.0056321448646485806,0.04506524279713631,0.4685341417789459,0.22399820387363434,0.3789568543434143,0.06669700890779495,-0.4490269720554352,-0.060729172080755234,0.4011147618293762,0.3978264629840851,0.5050197243690491,-0.341409295797348,-0.576958417892456,-0.20364005863666534,-0.08861518651247025,0.17820125818252563,-0.07862579077482224,-0.12082307785749435,-0.19293737411499023,-0.36065059900283813,-0.3902509808540344,-0.19791628420352936,0.6452097296714783,0.7247936725616455,0.044600047171115875,-0.17224426567554474,0.20281216502189636,-0.2625126540660858,0.45282667875289917,0.23456235229969025,0.33480891585350037,0.08246038854122162,0.42530471086502075,0.35268235206604004,0.6606400609016418,0.027496114373207092,0.4283250868320465,0.5875938534736633,-0.10884815454483032,0.0005232231342233717,0.9456526041030884,0.48494526743888855,0.4740069806575775,-0.11126770824193954,-0.21309903264045715,0.10487858206033707,-0.030079683288931847,0.376331627368927,-0.05645320564508438,0.007146782241761684,-0.16396181285381317,0.26259538531303406,0.33521315455436707,0.09035378694534302,0.46528366208076477,0.2150144726037979,0.02055376209318638,0.2719327509403229,0.08702517300844193,-0.0682269036769867,0.42167142033576965,-0.41730183362960815,0.41523608565330505,0.40765154361724854,0.6421921849250793,0.5090012550354004,0.08227099478244781,-0.09569434821605682,0.24881188571453094,0.4847903251647949,0.36920779943466187,-0.007338839583098888,0.3187389373779297,0.5669057965278625,-0.13646391034126282,-0.2674964368343353,0.14183957874774933,-0.21491126716136932,0.018976550549268723,0.594386637210846,-0.05801142379641533,-0.1198088526725769,0.09239622950553894,-0.12697120010852814,-0.20939703285694122,0.37472838163375854,0.579974889755249,0.9661952257156372,-0.11091689020395279,-0.12933006882667542,0.2639307379722595,0.03356444835662842,0.3314721882343292,-0.07471121847629547,0.9983381032943726,-0.04332224279642105,1.1758729219436646,0.9236446619033813,0.8583669662475586,0.0331779383122921,0.7377054691314697,0.9427473545074463,0.3720044493675232,0.3837776780128479,1.1023961305618286,0.907302975654602,0.43366217613220215,-0.09335792809724808,0.478937029838562,0.03341866284608841,-0.35094812512397766,0.9251837730407715,0.207918182015419,-0.14741849899291992,-0.1650489717721939,-0.60321444272995,0.06389123201370239,-0.18145039677619934,0.35197827219963074,0.49035966396331787,0.17041727900505066,0.10574471205472946,0.3437803089618683,-0.13187967240810394,0.4186096489429474,-0.1633155643939972,0.5689905881881714,-0.24053439497947693,0.6288039088249207,0.4881199598312378,0.3227241635322571,0.13450676202774048,0.7077857851982117,0.36940401792526245,0.304700642824173,-0.007526696659624577,0.36246201395988464,0.6723393201828003,0.1981971114873886,-0.2703412175178528,0.40973493456840515,-0.06885122507810593,-0.006789913401007652,0.7377647161483765,0.025211526080965996,0.018108200281858444,-0.2197289764881134,-0.5417388081550598,-0.2875152826309204,-0.1735048145055771,-0.7225404977798462,-0.6818994283676147,-0.4910757541656494,0.5177724957466125,-0.37738263607025146,-0.23061802983283997,-0.5600417256355286,0.3215647339820862,-0.336891233921051,0.30925071239471436,-0.80472731590271,-0.49640771746635437,-0.37312352657318115,0.12911628186702728,0.010253138840198517,-0.5076202154159546,-0.25227445363998413,0.04011670872569084,-0.7805739641189575,-0.16290216147899628,0.12142103910446167,-0.110281802713871,-0.33454450964927673,0.05973859876394272,0.3816639482975006,-0.07232707738876343,-0.5902906060218811,0.4149134159088135,0.4071732759475708,0.002778435591608286,0.4347928464412689,0.11307983100414276,-0.2666693329811096,-0.08952424675226212,-0.03843778371810913,-0.19655781984329224,0.07761676609516144,0.017154771834611893,-0.1234845221042633,-0.48878204822540283,-0.24381326138973236,-0.07921646535396576,-0.34983107447624207,-0.7621201276779175,-0.21043823659420013,-0.13786177337169647,-0.7973998785018921,-0.780182421207428,0.4532763957977295,0.05451304093003273,-0.6079309582710266,-0.25591450929641724,0.04690927639603615,0.2861829102039337,-1.4298405647277832,0.024601319804787636,-0.0864655151963234,-0.2242221236228943,-0.0700727254152298,0.1363743096590042,0.3713584244251251,-0.02252650260925293,0.0368194654583931,0.5703846216201782,-0.1444658488035202,-0.15760044753551483,-0.16897118091583252,0.3865579664707184,0.22151774168014526,-0.19498533010482788,-0.5562161207199097,0.10341434925794601,-1.0593554973602295,-0.18671466410160065,-0.8354605436325073,-1.0045316219329834,-0.5420814752578735,0.0925711989402771,-0.3782626688480377,-1.2192342281341553,0.2786713242530823,0.11536683142185211,-0.7977063655853271,-0.9316781759262085,-0.35542288422584534,-0.11993159353733063,-0.42705151438713074,0.10650486499071121,-0.33664703369140625,-0.5582078099250793,0.26323795318603516,0.5029252767562866,0.31650957465171814,-0.09247525036334991,0.25664353370666504,-0.23445932567119598,0.4298765957355499,0.8419879078865051,0.11404340714216232,0.1340983361005783,0.24318939447402954,-0.08275934308767319,0.16760952770709991,-0.11890093982219696,0.3172859251499176,-0.03468913957476616,0.5872541069984436,0.07854786515235901,0.26589256525039673,0.1340404450893402,0.006459166295826435,0.3566058278083801,0.24494381248950958,-0.3110736310482025,0.5134593844413757,0.5050241947174072,0.08602593839168549,-0.09410680830478668,-0.35021114349365234,-0.4730030298233032,0.09921320527791977,0.4429854154586792,0.05706612393260002,0.09613976627588272,0.08236540108919144,0.16505709290504456,-0.30545055866241455,-0.2412044107913971,0.4417288899421692,0.8527218103408813,0.011002035811543465,-0.025820527225732803,0.20997467637062073,-0.2394876927137375,0.047768764197826385,0.31981590390205383,0.5069184899330139,-0.06518808007240295,0.33080336451530457,0.6774252653121948,0.19233325123786926,-0.1792117804288864,0.5552623867988586,0.41524359583854675,0.12244914472103119,0.3021882176399231,0.7772430181503296,0.41711142659187317,0.47583726048469543,-0.1815153807401657,0.29190513491630554,-0.23615485429763794,0.11658884584903717,0.3047419786453247,0.2727077603340149,0.29917120933532715,0.1303873062133789,0.16126872599124908,-0.04042544960975647,-0.21576499938964844,-0.606900155544281,-0.5348323583602905,-0.1525047868490219,0.4877944588661194,-0.21072353422641754,0.06486005336046219,-0.3629354238510132,0.22147072851657867,-0.16287963092327118,-0.03904592618346214,-0.4247569441795349,-0.2721104025840759,-0.47569578886032104,-0.0798523798584938,-0.44111764430999756,-0.346442312002182,0.052811358124017715,-0.1723358929157257,-0.7235158681869507,-0.1121848076581955,0.025084547698497772,0.19259290397167206,0.28127074241638184,0.07083720713853836,0.47195926308631897,-0.023380113765597343,-0.4858618974685669,0.2650558352470398,0.14240364730358124,-0.1480758637189865,0.13348904252052307,0.09265755116939545,0.43892088532447815,0.49487999081611633,0.34398654103279114,0.04882726073265076,0.31339704990386963,-0.18907533586025238,0.4382483661174774,0.07119403779506683,0.4355815351009369,-0.3210865259170532,0.3460124731063843,0.3375706076622009,0.5768575668334961,-0.07287587970495224,0.47775140404701233,0.4113489091396332,0.24690596759319305,-0.154498890042305,0.5947044491767883,0.40070098638534546,-0.02782399207353592,0.1763610988855362,-0.2985709011554718,0.23267610371112823,-0.4334956407546997,0.30354464054107666,0.17760097980499268,0.025638822466135025,0.05872204899787903,-0.1294686496257782,-0.0625041276216507,0.1252780556678772,0.06344831734895706,0.006999081000685692,-0.007814700715243816,0.056873612105846405,0.08958793431520462,0.2188362330198288,-0.4765366315841675,0.18943491578102112,-0.5750368237495422,-0.15094095468521118,-0.4713342785835266,-0.5604313015937805,-0.22448042035102844,0.0038628443144261837,-0.6875429749488831,-0.5344884991645813,-0.1004684716463089,0.08881303668022156,-0.6335511803627014,-0.6908748745918274,-0.08829735219478607,-0.17434360086917877,-0.8661832213401794,-0.2502620220184326,-0.19966383278369904,-0.10796111822128296,0.1638442873954773,-0.09408166259527206,0.19213394820690155,0.16005995869636536,0.16098544001579285,-0.12494513392448425,0.3620052635669708,0.45047998428344727,0.1050259992480278,-0.25503039360046387,0.5508982539176941,-0.03166979178786278,0.624775767326355,-0.28871574997901917,0.3375653326511383,-0.26953163743019104,0.5855798125267029,0.6798551082611084,0.4022536873817444,-0.2404673844575882,0.25335872173309326,0.7061865925788879,0.5133796334266663,0.7235507965087891,0.032767511904239655,0.38230279088020325,0.23811590671539307,-0.18995971977710724,0.285584419965744,-0.2572152614593506,-0.08262321352958679,0.5117345452308655,-0.3191344141960144,0.21731185913085938,0.10784555226564407,-0.06979066133499146,0.09723325818777084,-0.2589966654777527,-0.9413220286369324,-0.541949450969696,-0.8046286106109619,0.24040013551712036,-0.22007013857364655,-0.03762044757604599,-0.624920129776001,-0.32601138949394226,-0.18577583134174347,0.5545606017112732,-0.7963812947273254,-0.8675622940063477,-0.503182053565979,-0.2872515022754669,-0.395146906375885,-0.8313159346580505,0.10084524005651474,0.06401200592517853,-0.40402111411094666,-0.34766337275505066,-0.024725651368498802,0.1713303178548813,0.30605438351631165,-0.3868141770362854,0.5862820148468018,-0.2015259712934494,-0.7931284308433533,0.5135223865509033,0.5487773418426514,0.2504900395870209]},{"shape":[32],"values":[0.1267412304878235,-0.25299015641212463,0.66854327917099,0.7572045922279358,0.04417074844241142,-0.2054082155227661,0.3712509870529175,-0.04487638175487518,0.5509845614433289,0.02044360525906086,0.6697609424591064,-0.027726512402296066,0.7566565275192261,0.6435136198997498,0.6981424689292908,-0.06599493324756622,0.6339516639709473,0.5749635696411133,0.12377986311912537,0.21042956411838531,0.825563371181488,0.6307812929153442,0.3832816779613495,-0.014354558661580086,0.06965956091880798,-0.0638478696346283,0.03548687696456909,0.7553998827934265,-0.2869895398616791,-0.4111666679382324,-0.29552409052848816,0.044006768614053726]},{"shape":[32,9],"values":[0.6259602904319763,0.34126654267311096,0.5792145729064941,0.6071676015853882,0.06668152660131454,0.16129182279109955,-0.4331763684749603,-0.0805128887295723,-0.22153128683567047,-0.36354535818099976,-0.16394686698913574,-0.32108914852142334,-0.4116172790527344,-0.2958071529865265,-0.36131247878074646,-0.29186806082725525,-0.20290885865688324,-0.22171084582805634,0.6851778626441956,0.6943514347076416,0.9062148928642273,0.45957082509994507,0.5151880979537964,0.664252758026123,0.34726884961128235,0.8645964860916138,0.678528904914856,0.5923798680305481,0.5178858041763306,0.5955096483230591,0.22341413795948029,0.792203426361084,0.8017662167549133,0.5476526618003845,0.6578851938247681,0.8437449336051941,-0.3364584743976593,0.2288598269224167,0.47238263487815857,0.041674040257930756,0.00801307987421751,0.5012882947921753,-0.6372814774513245,0.1212589368224144,0.5198318958282471,-0.31994178891181946,-0.3390690088272095,-0.24905814230442047,-0.4654853343963623,-0.6292654275894165,0.12345369905233383,-0.22636283934116364,-0.7381590008735657,-0.3270600140094757,-0.04117968678474426,0.6818408370018005,0.23696008324623108,0.6089245080947876,0.056250497698783875,0.23711292445659637,0.7287569642066956,0.04729701951146126,0.12738172709941864,-0.1757822185754776,-0.1874638795852661,-0.197567418217659,0.11904403567314148,0.21845212578773499,0.2766866385936737,0.05719705671072006,0.08642054349184036,-0.10736578702926636,0.8124949336051941,0.6526974439620972,0.507111132144928,0.38745298981666565,0.6759049296379089,0.4879240393638611,0.8017637729644775,0.7671263813972473,0.3596689701080322,-0.24545323848724365,-0.06511490046977997,-0.1496853083372116,-0.6271594762802124,0.1977681964635849,-0.02896854281425476,-0.03254550322890282,-0.07312765717506409,0.49470916390419006,0.4348306357860565,0.768782913684845,0.8138728141784668,0.41656994819641113,0.5914291739463806,0.28729987144470215,0.8928380012512207,0.7958819270133972,0.8427093625068665,-0.34229719638824463,-0.29503583908081055,-0.33657941222190857,-0.3237435817718506,-0.5884661674499512,-0.0807437002658844,-0.6518583297729492,-0.6091427206993103,-0.15721666812896729,0.9493222832679749,0.7661598920822144,0.8552643656730652,1.1676323413848877,0.7891877293586731,1.0153613090515137,0.7589269280433655,0.8227362632751465,0.9851920008659363,0.6557739973068237,0.48922422528266907,0.646595299243927,1.1001354455947876,0.9665209650993347,0.585396409034729,0.986013650894165,0.6970794796943665,0.7200310826301575,0.6127322912216187,0.18656253814697266,0.4729604125022888,0.7904511094093323,0.6293354034423828,0.6290377974510193,0.5227488279342651,0.7703133821487427,0.7995416522026062,0.2296810746192932,-0.10464070737361908,0.08826029300689697,0.003369271755218506,0.06701527535915375,-0.31267663836479187,-0.14738650619983673,-0.07534463703632355,0.37940514087677,0.5570486783981323,0.7183590531349182,0.6701573729515076,0.1622113138437271,0.4528159499168396,0.5048160552978516,0.5519338846206665,0.7380819320678711,0.7335533499717712,0.8081297278404236,0.9979779124259949,0.8032971620559692,0.8960495591163635,0.7711522579193115,0.8486650586128235,0.7019738554954529,0.783145546913147,0.39828047156333923,0.5055865049362183,0.4373275339603424,-0.025151263922452927,0.31918221712112427,0.4753689765930176,0.192536860704422,0.513988196849823,0.23160117864608765,-0.20794552564620972,0.46096691489219666,-0.20943664014339447,-0.1322726607322693,0.9208252429962158,0.24491724371910095,-0.6542741656303406,0.3613097369670868,0.132323756814003,0.19104059040546417,0.6976630687713623,1.0958280563354492,1.014009952545166,0.5804926753044128,0.9977384805679321,1.1499912738800049,0.602439820766449,0.8714761137962341,1.0867048501968384,0.7137616872787476,0.35489389300346375,0.660861611366272,0.8009361028671265,0.7859535217285156,0.9022740721702576,0.7378929257392883,0.34552109241485596,0.8531279563903809,-0.220056414604187,-0.021879130974411964,0.21827249228954315,0.4448916018009186,0.06256561726331711,0.2258245050907135,0.13860175013542175,0.6022043824195862,0.9593579173088074,-0.04986432567238808,-0.36672645807266235,-0.30524301528930664,-0.2772929072380066,-0.07879655808210373,-0.06104710325598717,0.21969088912010193,0.23889289796352386,0.390555202960968,0.8601224422454834,0.3168754279613495,0.05380834639072418,0.741233229637146,0.2775672972202301,0.03987870737910271,0.5309739708900452,0.2812983989715576,-0.4581874907016754,-0.37848785519599915,0.22858577966690063,0.23753148317337036,-0.16687394678592682,-0.09768841415643692,-0.17074742913246155,-0.2306009829044342,0.13077382743358612,-0.28065890073776245,-0.5393731594085693,-0.5604124665260315,-0.13796654343605042,-0.4199520945549011,-0.4223446249961853,-0.3200540244579315,-0.9476721882820129,-0.40812796354293823,-0.00956338457763195,0.5095537900924683,0.749640166759491,0.3293072283267975,0.5975486636161804,0.420002281665802,0.7779975533485413,0.7448345422744751,0.7576600909233093,0.6948567628860474,0.09243765473365784,0.09050573408603668,-0.14415712654590607,-0.34513208270072937,-0.3711509108543396,0.22209914028644562,-0.4281654357910156,-0.3393365144729614,0.17801819741725922,-0.11985192447900772,-0.4674915671348572,-0.40429234504699707,-0.3725247383117676,0.06457007676362991,-0.3077216148376465,-0.18837212026119232,-0.6223697066307068,-0.47939515113830566,-0.07547898590564728,-0.3100396692752838,-0.071993388235569,-0.34504905343055725,-0.1976631134748459,-0.40217387676239014,-0.08452297002077103,-0.08926834911108017,-0.5512209534645081,0.15567047894001007,0.4973895847797394,0.09013985842466354,0.4331892430782318,0.17549142241477966,-0.3211899399757385,0.3385927975177765,0.4233633577823639,-0.12576745450496674]},{"shape":[9],"values":[0.1383293718099594,0.18505793809890747,0.34604963660240173,0.3344886600971222,0.26252058148384094,0.25615230202674866,0.47544384002685547,0.42426106333732605,0.5359113216400146]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-29.json new file mode 100644 index 0000000..7b3d6b5 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:58:58.601Z","weights":[{"shape":[20,32],"values":[-0.3036796450614929,0.5128394365310669,1.2416197061538696,1.2713279724121094,-0.19824446737766266,0.8397097587585449,-0.30126601457595825,-0.5399326682090759,0.4969373345375061,0.974894106388092,0.49307766556739807,-0.2850487530231476,0.898961067199707,1.2620525360107422,0.90363609790802,-0.756515383720398,-0.45565497875213623,0.7689664363861084,0.06256953626871109,-0.27460819482803345,1.073743462562561,1.0938483476638794,0.5183801651000977,1.0338903665542603,-0.7047306299209595,0.6429685950279236,0.086167111992836,0.7162085771560669,0.30833011865615845,0.9122496247291565,0.6898495554924011,0.3590919077396393,-0.23791755735874176,-0.19794227182865143,-0.08349689841270447,-0.13566720485687256,-0.21648947894573212,0.10756294429302216,0.4150086045265198,0.26898396015167236,-0.05028767138719559,0.1820700764656067,0.10117661952972412,-0.1256241500377655,0.24453406035900116,0.09480748325586319,0.28078073263168335,0.3823554515838623,-0.17336323857307434,0.04777954891324043,-0.04520650580525398,-0.3128092586994171,-0.35139045119285583,-0.12903110682964325,-0.23304280638694763,0.026289328932762146,0.2420990914106369,-0.1640474498271942,-0.2504943311214447,0.10709434747695923,-0.2458459734916687,-0.025198332965373993,-0.22227123379707336,0.0014487660955637693,-0.5899531245231628,0.1921999603509903,-0.13307063281536102,0.2665291130542755,0.14547407627105713,-0.20138469338417053,0.5438433885574341,0.7283332347869873,-0.26071062684059143,-0.2290143072605133,0.15006013214588165,-0.7968448996543884,0.05929122492671013,0.4407517910003662,-0.16229556500911713,1.051950216293335,-0.49573802947998047,-0.3090820014476776,-0.5778002142906189,-0.4788784384727478,-0.3397156596183777,0.36567649245262146,-0.37753644585609436,0.08750627189874649,0.8968765139579773,0.08143060654401779,-0.013537154532968998,0.15998025238513947,-0.6349272727966309,0.11144383996725082,-0.5477102398872375,0.1461404263973236,1.2271560430526733,-0.3533104956150055,-0.3513137698173523,-0.9903959035873413,1.2763569355010986,-0.9155988097190857,-1.0752999782562256,-0.5841518044471741,-0.20954249799251556,-0.33175840973854065,-0.27293846011161804,1.3757202625274658,-1.0008822679519653,-0.5405530333518982,-0.5510432720184326,-0.3198279142379761,1.8799102306365967,-0.2908318042755127,1.1405543088912964,1.460361123085022,0.006390363443642855,-0.957751989364624,-0.9571859836578369,-0.7803276777267456,-0.5509918332099915,-0.5273800492286682,1.732046127319336,-0.6112402081489563,1.8475319147109985,-0.5574547052383423,0.4248226284980774,-0.9637036919593811,0.26099199056625366,0.09467761218547821,0.2824748754501343,0.029339052736759186,0.10853531211614609,0.19479911029338837,0.26932767033576965,0.05919277295470238,0.19979265332221985,-0.2887740135192871,0.12786740064620972,-0.11869153380393982,0.17384807765483856,0.18674921989440918,-0.4917154908180237,-0.35045406222343445,0.17473536729812622,0.164766326546669,-0.06713221967220306,-0.2587570548057556,0.04310298711061478,0.12467926740646362,0.5370126366615295,0.14962954819202423,-0.22535279393196106,-0.01925109699368477,0.0900048092007637,0.007974102161824703,-0.11577947437763214,0.0026240646839141846,-0.16059182584285736,0.5013103485107422,0.31585949659347534,0.31387096643447876,0.046998001635074615,0.11111735552549362,0.43688851594924927,-0.16267964243888855,-0.49908095598220825,-0.6426457166671753,-0.1833634078502655,0.1621861755847931,-0.014469210058450699,0.13776898384094238,-0.5020356178283691,-0.39378467202186584,-0.0596388503909111,-0.42908695340156555,0.3262237310409546,-0.023417962715029716,0.3877114951610565,0.1342470943927765,0.19289350509643555,0.08967893570661545,0.22623446583747864,-0.3398723304271698,-0.45714932680130005,-0.22074098885059357,0.14799551665782928,0.2085278332233429,-0.009368588216602802,0.01792163774371147,-0.43864160776138306,0.37541288137435913,0.3205028772354126,0.12292718142271042,-0.10585286468267441,-0.03739684447646141,0.5630165338516235,-0.5366070866584778,0.017852844670414925,-0.6316888332366943,-0.3686779737472534,0.1030995175242424,0.20696143805980682,0.1563645750284195,-0.33115166425704956,0.01798565313220024,-0.43867334723472595,-0.3336576521396637,0.23885966837406158,-0.4071330428123474,0.4066796600818634,0.31858107447624207,0.30607473850250244,0.2419956475496292,-0.2990129292011261,0.30303722620010376,-0.6522689461708069,0.3010707497596741,0.41050103306770325,-0.08448243886232376,0.15669958293437958,-0.06283274292945862,0.022848140448331833,-0.11031961441040039,0.36780378222465515,0.3899555504322052,-0.0985540896654129,0.33696529269218445,0.04176411032676697,-0.30274316668510437,-0.47533613443374634,-0.7413056492805481,-0.16731742024421692,0.06364661455154419,0.7137764692306519,0.27930423617362976,0.2539920508861542,0.2029077261686325,0.17850343883037567,-0.033539749681949615,0.14524099230766296,-0.43555983901023865,-0.1755383461713791,0.32352742552757263,0.3562421500682831,0.06760229170322418,0.4007434844970703,0.16732218861579895,-0.6853912472724915,0.6100826859474182,0.236510768532753,0.5120360255241394,0.2728257179260254,0.4774390757083893,0.4516627788543701,0.4675180912017822,-0.19171850383281708,0.8376285433769226,0.02966463193297386,-0.2429470419883728,-0.07171916961669922,0.48470214009284973,0.115178681910038,0.023739391937851906,-0.891366183757782,-0.1065145879983902,-0.27915963530540466,-0.05591537430882454,0.12129068374633789,-0.24823087453842163,0.47495386004447937,-0.05979752913117409,0.15584607422351837,-0.4115222990512848,-0.21113015711307526,-0.10093199461698532,0.16314800083637238,0.10844239592552185,-0.03179742395877838,-0.14040109515190125,-0.08423522859811783,-0.33631184697151184,-0.007383190561085939,0.37339919805526733,-0.16564114391803741,0.031944550573825836,-0.01664709486067295,0.039089951664209366,-0.21082299947738647,-0.09552916139364243,0.15057791769504547,0.007757275830954313,0.08748392760753632,0.3473024368286133,-0.09861619025468826,-0.1014784649014473,-0.19064246118068695,0.2352992743253708,-0.020693106576800346,-0.03784623369574547,-0.068357914686203,-0.11738666146993637,0.4795437455177307,-0.11821509152650833,-0.29563894867897034,-0.24174433946609497,-0.057835545390844345,-0.23064781725406647,0.0366048589348793,0.14270751178264618,0.32242831587791443,-0.18807923793792725,0.2682640552520752,-0.14261837303638458,-0.09469453245401382,0.023581255227327347,-0.14872726798057556,0.3389745354652405,-0.12984848022460938,0.419663667678833,-0.3230533003807068,0.1899469792842865,0.48357850313186646,0.1550411432981491,-0.565588116645813,0.6132825016975403,-0.3947537839412689,-0.19761212170124054,-0.0966411679983139,0.03407777473330498,0.513974130153656,-0.6613332033157349,0.34324854612350464,0.18275022506713867,0.1318989098072052,-0.3894474506378174,0.07516789436340332,0.153215691447258,0.03695084527134895,0.020257730036973953,0.5691776275634766,-0.002780894748866558,0.0967051163315773,0.15884844958782196,0.27220261096954346,0.29550084471702576,-0.26436764001846313,0.5352414846420288,0.2593372166156769,0.1536136418581009,-0.16047999262809753,0.3978962302207947,0.04340718686580658,-0.3352201282978058,-0.11053923517465591,-0.41418346762657166,-0.189175084233284,-0.17517536878585815,0.2896953523159027,-0.26812344789505005,0.1732594519853592,0.02282542735338211,-0.2698991894721985,-0.16954436898231506,0.19565826654434204,0.10327137261629105,-0.27383342385292053,0.0440918505191803,0.0175870880484581,-0.26022085547447205,0.306880384683609,0.08660124987363815,-0.3366972506046295,-0.02010180801153183,-0.3484894931316376,-0.28809455037117004,0.06820119917392731,-0.25782936811447144,-0.15349262952804565,-0.31836560368537903,0.051760993897914886,-0.08277004957199097,-0.3192664086818695,0.2630675435066223,0.29151400923728943,0.6683896780014038,0.12143503129482269,0.12244782596826553,0.27885574102401733,0.03502098470926285,-0.36169078946113586,-0.06220673397183418,-0.4472789466381073,-0.20334339141845703,0.12966687977313995,-0.1386873871088028,-0.0296311154961586,-0.21638371050357819,0.40639036893844604,0.08184349536895752,-0.08812082558870316,-0.11533302813768387,0.1962609440088272,-0.08820517361164093,0.23976407945156097,-0.17978478968143463,-0.17946042120456696,-0.21071875095367432,0.06994318217039108,-0.3772834539413452,0.20737485587596893,-0.1916826218366623,0.16627663373947144,-0.0995471328496933,-0.06711188703775406,0.3393230438232422,0.04969272017478943,-0.14534375071525574,-0.00986487790942192,-0.0001650096382945776,0.2690090239048004,-0.06552493572235107,-0.22059524059295654,0.3689709007740021,0.007385200820863247,0.26545894145965576,0.28206124901771545,-0.02605176344513893,0.28825387358665466,-0.2733253836631775,0.24379685521125793,-0.06057076156139374,-0.20998048782348633,-0.1295020878314972,-0.2574719786643982,0.27161991596221924,0.23701980710029602,0.33507734537124634,-0.03430148586630821,-0.022421227768063545,0.2683809995651245,-0.37798377871513367,-0.1735885888338089,0.042650651186704636,0.062442172318696976,-0.17729617655277252,0.13578957319259644,-0.0651029422879219,-0.12331253290176392,-0.1690305471420288,-0.22939401865005493,-0.2755516469478607,0.1876731961965561,-0.10131828486919403,0.2978224754333496,0.24121594429016113,0.23848286271095276,-0.029347987845540047,-0.16555984318256378,-0.5916943550109863,0.27886417508125305,0.25926142930984497,0.08523852378129959,-0.03960544615983963,0.024665433913469315,0.23681795597076416,0.5349536538124084,-0.10750335454940796,-0.3182022273540497,0.28895875811576843,0.10032285749912262,0.18924948573112488,-0.02091226540505886,-0.10314919799566269,-0.040871258825063705,-0.03582455962896347,-0.20840565860271454,-0.2690769135951996,-0.12997709214687347,-0.10179821401834488,-0.40756499767303467,-0.3472382724285126,-0.11785129457712173,-0.27649906277656555,0.10209378600120544,0.2068534791469574,0.3507634103298187,-0.19537042081356049,-0.4076533019542694,-0.23368573188781738,0.13721637427806854,-0.2153254747390747,0.009553295560181141,-0.25780200958251953,-0.05925258249044418,-0.013576243072748184,-0.03530014306306839,0.06363464146852493,0.22487586736679077,0.10839837044477463,0.044823288917541504,-0.3578014671802521,0.013091828674077988,-0.06747940927743912,-0.19912374019622803,0.018773775547742844,0.0029552127234637737,0.0758063942193985,0.15513983368873596,-0.20004676282405853,0.03041668049991131,-0.30078572034835815,-0.2321944683790207,0.3987983167171478,-0.30712735652923584,0.07470796257257462,-0.04752642288804054,0.07753090560436249,0.2619272470474243,0.028850192204117775,-0.09244418144226074,0.026776650920510292,0.10154924541711807,0.49067577719688416,-0.3321980834007263,0.21234279870986938,-0.03193746507167816,0.24619963765144348,-0.435099333524704,-0.1814756989479065,-0.14680702984333038,0.20892931520938873,0.14657507836818695,-0.06014600396156311,0.05976348742842674,0.04101327434182167,0.08693824708461761,-0.05796071141958237,0.03915127366781235,0.0679127424955368,-0.0650104284286499,0.09568813443183899,-0.27554672956466675,-0.22886523604393005,-0.1272524893283844,0.22243234515190125,0.14446932077407837,0.13910841941833496,-0.08427039533853531,-0.18287724256515503,0.4535779058933258,0.24085305631160736,-0.38587719202041626,-0.0538683645427227,-0.0640571340918541,0.005592707544565201,0.17532046139240265,0.27179983258247375,0.13538514077663422,0.1067068874835968,0.1954660713672638,0.05707508325576782,-0.20771639049053192,-0.24452483654022217,-0.05227096751332283,0.14068740606307983,0.24982421100139618,-0.14942790567874908,-0.16058865189552307,-0.15134388208389282,0.23659469187259674,-0.05560687184333801,-0.24551908671855927,0.0810907632112503,-0.35550081729888916,-0.049021050333976746,-0.017315808683633804,0.2381133735179901,-0.1374850869178772,0.10203251242637634,-0.4287496507167816,-0.41327133774757385,0.15186670422554016,-0.01650291495025158,-0.10380879789590836,-0.3367401659488678,0.19120889902114868,-0.12784306704998016,-0.4257385730743408,-0.2403184026479721,0.1775292456150055,-0.12321766465902328,-0.01354016363620758,-0.23199057579040527,0.6605480909347534,0.40395277738571167,-0.07528181374073029,-0.16935962438583374,0.21558909118175507,0.01619712822139263,-0.37854883074760437,-0.24290725588798523,-0.3808869421482086,-0.2558562457561493,-0.012163449078798294,-0.17327217757701874,-0.16891661286354065,-0.15622836351394653,-0.24726447463035583,-0.24840779602527618,-0.14722108840942383,0.22995518147945404,-0.20880503952503204,0.11290032416582108,-0.03553564101457596,-0.20935742557048798,-0.3674142062664032,-0.22953420877456665,-0.0736631453037262,-0.10676651448011398,-0.1283818781375885,-0.1010308787226677,-0.006887017283588648,-0.21856683492660522,0.13757920265197754,-0.0543404296040535,0.322328120470047,0.2867433726787567,0.2501102089881897,0.11588077992200851,-0.43438485264778137,-0.14918780326843262,-0.27791184186935425,0.02346203476190567,0.03458544984459877,0.1375778317451477,-0.3077020049095154,0.059865619987249374,-0.2487701177597046,-0.29265469312667847]},{"shape":[32],"values":[-0.17022880911827087,0.5687617063522339,0.6495413184165955,0.6479902863502502,-0.3643795847892761,0.573860764503479,0.2035141885280609,-0.31216108798980713,0.6433884501457214,0.660060703754425,0.5956297516822815,-0.2010364532470703,0.47571805119514465,0.5175316333770752,0.4460933804512024,0.30126696825027466,-0.2512182891368866,0.3708071708679199,-0.2474803775548935,-0.19634342193603516,0.6521044373512268,0.4975076913833618,0.5139438509941101,0.5668411254882812,-0.3435130715370178,0.38170796632766724,-0.2765381932258606,0.4803704619407654,-0.4849012792110443,0.49470254778862,0.6570460200309753,0.33516499400138855]},{"shape":[32,32],"values":[0.0015278697246685624,0.08960382640361786,-0.0405409075319767,-0.5155639052391052,-0.1286395639181137,-0.5141867399215698,0.2769322693347931,0.10276006162166595,-0.7014847993850708,-0.17359445989131927,0.030088288709521294,-0.06365323066711426,0.40649670362472534,-0.13565531373023987,0.0685863047838211,-0.4900917708873749,-0.030680296942591667,0.3215075135231018,-0.16832517087459564,-0.615062415599823,0.3410889506340027,0.23429885506629944,-0.14855241775512695,-0.31699681282043457,0.061760589480400085,0.07324087619781494,-0.19111847877502441,0.15796375274658203,-0.08437281101942062,0.02887555956840515,-0.811887800693512,-0.06088486313819885,0.0928208976984024,0.69263756275177,0.23822183907032013,0.14375118911266327,-0.16140185296535492,0.2739724814891815,0.031028179451823235,-0.10530318319797516,0.6267366409301758,0.2619425654411316,0.2657969295978546,0.13862989842891693,0.13237620890140533,0.33237335085868835,0.3517805337905884,0.37713924050331116,0.038238275796175,0.21421246230602264,-0.29577064514160156,0.3012760877609253,0.417689710855484,0.06955937296152115,0.19237780570983887,0.4614309072494507,0.05395370349287987,0.001318292343057692,-0.41119545698165894,0.3952226936817169,0.5237164497375488,0.036893438547849655,0.1946050375699997,0.6866187453269958,0.40309759974479675,0.8476387858390808,0.46820273995399475,0.7096773982048035,0.11780852824449539,0.3712450861930847,-0.040819842368364334,0.41508039832115173,0.8131152391433716,0.9480153322219849,0.5576248168945312,-0.2906079590320587,0.20434075593948364,0.09961599856615067,0.5357035994529724,0.5561087131500244,0.03320389613509178,0.23537598550319672,0.03684702143073082,0.8323357701301575,0.6440412402153015,-0.1099867895245552,0.24528613686561584,0.4859941005706787,-0.2940272390842438,0.007200455758720636,-0.2722909450531006,0.5135538578033447,0.5077077746391296,0.48681676387786865,0.5970061421394348,0.3891110122203827,0.9199714064598083,0.9863569140434265,-0.134508416056633,0.5069846510887146,-0.06348259001970291,0.6677051782608032,-0.22003750503063202,0.07099311798810959,0.9790008068084717,0.595200777053833,0.980171263217926,0.049453362822532654,-0.3717893064022064,0.09315869957208633,0.2208685278892517,0.36249858140945435,0.3403061628341675,-0.2535964548587799,0.13753871619701385,0.9937950372695923,0.5154964327812195,-0.2854194641113281,0.40378573536872864,0.7893646359443665,-0.28543007373809814,-0.1168980821967125,-0.004232012666761875,0.4521300196647644,0.47508203983306885,0.5053295493125916,0.43452462553977966,0.9441757798194885,-0.1355980783700943,-0.4306741952896118,-0.5947885513305664,-0.24065014719963074,-0.11024339497089386,-0.3028582036495209,0.1932862251996994,0.12736622989177704,-0.6265197396278381,-1.054760217666626,-0.09279578179121017,-0.053776439279317856,0.23697420954704285,-0.3619717061519623,-0.007005350198596716,-0.5014462471008301,-0.05229457467794418,-0.041105981916189194,-0.24827568233013153,-0.4306938946247101,-0.3292851746082306,0.02054031938314438,0.04450315982103348,-0.2599922716617584,0.20639212429523468,0.4173314571380615,-0.18980661034584045,-0.3902866244316101,-0.4116104543209076,-0.4004940688610077,-0.6316729187965393,0.010411778464913368,0.8436645269393921,0.867427408695221,0.3558562099933624,0.5456348657608032,0.07988359779119492,0.7779983282089233,-0.25333860516548157,-0.6243816614151001,1.0303311347961426,0.7094719409942627,0.7815401554107666,-0.2931789755821228,-0.2710803747177124,-0.049040887504816055,0.6437616944313049,0.7680433988571167,-0.29729750752449036,-0.5706207156181335,-0.292725145816803,0.7435078024864197,0.5022737979888916,-0.435261994600296,0.2895072102546692,0.3168262839317322,-0.2543785274028778,-0.35654619336128235,0.10888305306434631,0.14587391912937164,0.4422173798084259,0.38969239592552185,0.33296409249305725,0.6553014516830444,-0.6569269895553589,-0.6406999230384827,-0.501261830329895,-0.41959792375564575,0.01480948831886053,-0.526096761226654,0.6989933252334595,0.25920239090919495,-0.2147294133901596,-1.0253615379333496,-0.5655723214149475,-0.19501185417175293,0.14410395920276642,-0.021125556901097298,-0.09786424785852432,-0.32301756739616394,0.22051848471164703,-0.21811097860336304,0.026461703702807426,-0.5719811916351318,-1.0447604656219482,-0.04433697089552879,-0.46490293741226196,-0.42600953578948975,0.21600750088691711,0.7915189862251282,0.371179461479187,-0.46627143025398254,-0.9642165303230286,-0.8203015327453613,-0.03028121218085289,-0.4844801723957062,-0.6460472941398621,-0.5373733043670654,-0.4748763144016266,-0.36875081062316895,-0.22624355554580688,-1.0289299488067627,0.5747023224830627,-0.02079685404896736,-0.7583456635475159,-0.7959686517715454,-0.30732259154319763,-0.048669468611478806,0.012730689719319344,-1.0563536882400513,-0.21991337835788727,-0.6606911420822144,0.23595422506332397,-0.4017335772514343,-0.008117414079606533,-0.618172824382782,-0.4028298258781433,-0.17735154926776886,-0.6059322357177734,-0.988236665725708,-0.2613038122653961,0.561164915561676,0.3886253833770752,-0.28609997034072876,-0.9244771003723145,-0.6022454500198364,-0.46725764870643616,-0.8120468258857727,0.6849800944328308,0.7331804037094116,0.12873327732086182,0.6228082180023193,-0.10571426898241043,0.20381805300712585,-0.010264416225254536,-0.7634362578392029,0.32196274399757385,0.6229793429374695,0.5731560587882996,0.07392575591802597,-0.6591355800628662,0.03663664683699608,0.5651339888572693,0.42864635586738586,0.09741006791591644,-0.38197556138038635,-0.23601984977722168,0.4441448152065277,0.3418165445327759,-0.5090258121490479,0.5310324430465698,0.27053526043891907,-0.07082757353782654,0.1902850717306137,0.3408612012863159,0.4287088215351105,0.3606990575790405,0.7147406339645386,0.6915808320045471,0.6110903024673462,0.3823668658733368,0.13564832508563995,0.16691790521144867,0.287476509809494,0.19376088678836823,0.40305379033088684,0.11095356941223145,-0.016492599621415138,0.5086618661880493,0.2015160322189331,0.47479093074798584,0.17431464791297913,0.46953630447387695,-0.04807044565677643,0.4126957058906555,0.12266308069229126,-0.34786906838417053,0.20606809854507446,-0.008216670714318752,0.29371026158332825,0.15387395024299622,0.28292450308799744,0.3702613413333893,0.003573312424123287,-0.2535300850868225,0.15984724462032318,-0.1473444402217865,-0.029165588319301605,-0.11812715232372284,-0.008113588206470013,0.6434570550918579,0.39747318625450134,0.3760129511356354,0.18888287246227264,-0.09140872955322266,0.0702221542596817,-0.24482807517051697,0.2886178493499756,-0.1035185158252716,0.07813806086778641,0.21286727488040924,0.27716654539108276,0.6641126275062561,-0.17237424850463867,0.23484402894973755,0.2897683382034302,0.16089370846748352,0.4091348648071289,-0.47217971086502075,0.30269646644592285,-0.1390758752822876,0.5611255168914795,0.23206651210784912,0.06484939903020859,0.3944992423057556,0.3455978035926819,-0.2654750645160675,0.16706432402133942,-0.5488898754119873,0.25770092010498047,0.5865489840507507,-0.11433713138103485,0.021778643131256104,0.7588956952095032,-0.2665860056877136,-0.425673246383667,-0.05321409925818443,-0.7798586487770081,-0.12990231812000275,-0.8941142559051514,0.437921404838562,0.44550541043281555,-1.0176994800567627,-0.6358034014701843,-0.5326396226882935,0.04104973375797272,0.4435223340988159,-0.15098163485527039,-0.4833025634288788,-0.3934040367603302,-0.020596349611878395,0.2672673165798187,-0.05779329314827919,-0.8951576352119446,-0.12570607662200928,0.5358403325080872,-0.39456409215927124,-0.5939214825630188,0.015004018321633339,0.2370316982269287,0.36307859420776367,-0.12631027400493622,-0.09557484090328217,-0.26728367805480957,-0.8504106402397156,-0.624427318572998,0.5236726403236389,0.764586865901947,0.45289620757102966,0.32661598920822144,0.005249401088804007,0.35289904475212097,-0.0719311311841011,-0.1361498087644577,0.8933066129684448,0.6151984930038452,0.32569625973701477,0.23945195972919464,-0.6603301167488098,0.1388593465089798,0.3178555369377136,0.21044836938381195,0.1494421660900116,-0.3268536627292633,-0.1795152872800827,1.054809331893921,-0.004863547161221504,0.0663362666964531,0.38055962324142456,0.40147852897644043,-0.07298459857702255,0.09184236824512482,-0.00016225033323280513,0.6033158898353577,0.5282818675041199,0.24139709770679474,0.13436363637447357,0.9387982487678528,0.9533941149711609,0.7859227061271667,0.010160006582736969,0.9881551861763,-0.2577454745769501,0.8833190202713013,-0.14408154785633087,-0.24015873670578003,1.260304570198059,0.4109129309654236,0.8603402376174927,-0.29647162556648254,-0.5822301506996155,0.4548933804035187,0.5314199328422546,0.4603525996208191,-0.20456215739250183,-0.37512654066085815,-0.1941528171300888,1.1156589984893799,0.4052426218986511,-0.0293861236423254,0.5241797566413879,0.19875909388065338,-0.08263150602579117,-0.2705901265144348,0.19854459166526794,0.7108526229858398,0.4306913912296295,0.0072376006282866,0.3363352417945862,1.0178358554840088,0.524086594581604,0.4788624048233032,0.13169130682945251,0.44664695858955383,-0.24709199368953705,0.7246249914169312,-0.00899642426520586,-0.01606125570833683,0.9137670397758484,0.4457915127277374,0.7149008512496948,-0.1177166998386383,-0.01973585970699787,-0.5471684336662292,0.4379110336303711,0.4217611849308014,0.17692194879055023,-0.28312405943870544,0.018666550517082214,1.0196659564971924,-0.09421645849943161,-0.19094158709049225,0.29171308875083923,0.08682522922754288,0.04233578220009804,-0.11203362792730331,0.25197210907936096,1.0035028457641602,0.046930838376283646,0.3280307650566101,0.5613905787467957,0.45455044507980347,-0.29136550426483154,0.02436680719256401,-0.4511372447013855,-0.37749409675598145,-0.11310534179210663,-0.6516710519790649,0.28936561942100525,-0.11974123865365982,-0.4140733778476715,-0.811403214931488,-0.6795355081558228,-0.24829992651939392,0.14579890668392181,-0.7335973978042603,-0.2585907280445099,-0.28389230370521545,-0.023865945637226105,-0.008711199276149273,-0.12220977246761322,-0.16733649373054504,-0.9192197918891907,0.15906524658203125,-0.16084347665309906,-0.766849160194397,-0.3027019798755646,0.6088776588439941,0.6004533171653748,0.2373984307050705,-0.49223417043685913,-0.5085015296936035,0.24337980151176453,-0.239293172955513,0.10786060988903046,-0.0368921272456646,-0.3940589129924774,-0.4059179127216339,-0.23387503623962402,-0.6561083793640137,0.2049417644739151,-0.08355753868818283,-0.8914404511451721,-0.5032111406326294,-0.1268286556005478,-0.16573458909988403,0.5641814470291138,0.005727158859372139,0.14386653900146484,-0.29849061369895935,0.1795462816953659,-0.08542273938655853,-0.13344265520572662,-0.29185983538627625,-0.16410177946090698,0.22164884209632874,-0.20109958946704865,-0.2292124330997467,-0.03807176277041435,0.4571628272533417,0.11241728067398071,-0.28491121530532837,0.08998029679059982,-0.5798856019973755,-0.5113763213157654,-0.14191462099552155,0.7193202376365662,0.46880754828453064,0.31897783279418945,0.3830207586288452,-0.08704687654972076,0.6511391401290894,0.06817272305488586,-0.11274341493844986,0.9246402978897095,0.4777899384498596,0.3260212540626526,-0.19596800208091736,-0.5405303239822388,-0.3605911135673523,0.1430845558643341,0.6013384461402893,0.12611573934555054,-0.35160350799560547,-0.25662654638290405,0.45613276958465576,0.1802419126033783,-0.03234122693538666,0.41745907068252563,0.10224239528179169,-0.2887360751628876,-0.055288106203079224,-0.16033531725406647,0.16008155047893524,0.3855660557746887,0.23537176847457886,0.5655097961425781,0.5315916538238525,0.047918643802404404,-0.06422137469053268,-0.09000761806964874,-0.4590383470058441,-0.05526261031627655,-0.33111125230789185,0.509514570236206,0.3437553346157074,-0.903712809085846,-0.39981329441070557,-0.14600877463817596,0.13574954867362976,0.10584274679422379,0.2488553524017334,-0.17058353126049042,-0.751015305519104,-0.01710173860192299,0.3759312331676483,0.1070808470249176,-0.7319626808166504,0.2811324894428253,0.5790007710456848,-0.1209060475230217,-0.3144320547580719,0.07451173663139343,0.24939264357089996,0.15581412613391876,-0.5257003307342529,-0.20265229046344757,-0.4436611831188202,-0.5850821137428284,-0.05771040543913841,-0.41221919655799866,-0.1008269414305687,-0.8501487970352173,-0.8312873244285583,0.12297160178422928,-0.6980864405632019,0.26189327239990234,-0.05044849216938019,-0.8582452535629272,-0.9972416758537292,-0.15896861255168915,0.08312587440013885,0.29916149377822876,-0.2752763628959656,-0.12530992925167084,-0.46857649087905884,-0.10480856895446777,-0.20277446508407593,-0.22246016561985016,-0.8654234409332275,-0.25092723965644836,0.5067843198776245,0.09815122932195663,-0.6947951912879944,-0.21182343363761902,0.06133351847529411,0.2924292981624603,-0.18847833573818207,-0.02547297812998295,-0.5892924070358276,-0.3974267244338989,-0.2542508542537689,0.04946987330913544,0.42681005597114563,0.17628724873065948,0.3358803987503052,-0.13182806968688965,0.23323217034339905,0.3094688951969147,0.45418286323547363,0.22134411334991455,0.011309250257909298,0.3891911506652832,-0.2390652298927307,0.03116558864712715,0.22051620483398438,0.14724689722061157,-0.19897247850894928,-0.07440672069787979,0.5169522762298584,0.13721150159835815,0.042437657713890076,0.3931107223033905,0.24999044835567474,0.4351218342781067,0.0905253142118454,-0.24832957983016968,0.2258114367723465,-0.6892247200012207,0.510491669178009,0.4539337754249573,0.07991009950637817,0.05471077561378479,0.4216965138912201,0.7391717433929443,0.7422452569007874,0.02357548289000988,0.6199138760566711,0.08097360283136368,0.3707485795021057,0.23223876953125,0.013430066406726837,0.719611644744873,0.4687131941318512,0.8099271059036255,-0.18529577553272247,-0.4261767268180847,0.4756380319595337,0.49088653922080994,0.4931640028953552,-0.18811625242233276,-0.024182153865695,-0.22972902655601501,0.779717206954956,0.2251249998807907,-0.4366663098335266,0.3856780230998993,0.4196091294288635,0.2419346123933792,0.0859961062669754,0.589290201663971,0.1509416252374649,0.06122254207730293,0.4663027226924896,0.011049311608076096,0.3020841181278229,0.2974219024181366,0.30484068393707275,0.7371066808700562,0.38839781284332275,0.06298389285802841,0.19318658113479614,-0.22767435014247894,-0.25260668992996216,0.41415634751319885,0.44595175981521606,0.5880162715911865,0.02092975191771984,0.2738736867904663,0.10432259738445282,0.48920226097106934,-0.142561674118042,-0.3670509159564972,0.11888159066438675,0.15571169555187225,-0.09159904718399048,0.6961291432380676,0.27295851707458496,0.64468914270401,0.4749007523059845,-0.26619845628738403,0.13582061231136322,-0.33571305871009827,0.1526743322610855,0.2084730565547943,0.36832883954048157,-0.2607467472553253,0.26388776302337646,0.914167582988739,1.0577417612075806,0.21987111866474152,0.6400878429412842,-0.32213690876960754,0.8823601007461548,-0.17203405499458313,-0.2828217148780823,1.0307667255401611,0.5799200534820557,0.9671006798744202,-0.2201213836669922,-0.31463858485221863,0.25937867164611816,0.10701209306716919,0.7878255844116211,0.04588226228952408,-0.08793199807405472,-0.007894768379628658,0.5529139041900635,0.6704369783401489,-0.3557644784450531,0.30418434739112854,0.6245144605636597,-0.28230857849121094,-0.5423904061317444,0.2868655323982239,0.5149755477905273,0.49933937191963196,0.15513592958450317,0.14953403174877167,0.9225054383277893,-0.3235446512699127,-0.42380237579345703,-0.4213162660598755,-0.30968156456947327,-0.27874305844306946,-0.9408831000328064,0.48589009046554565,-0.060078468173742294,-0.6612762212753296,-0.7321792840957642,-0.3404393196105957,-0.04806116223335266,-0.39330965280532837,-0.9883495569229126,-0.34690576791763306,-0.9199397563934326,0.20712760090827942,-0.5157960653305054,-0.042667094618082047,-0.3738360106945038,-0.7222837209701538,-0.1172596886754036,-0.1790657788515091,-0.61102294921875,-0.2830454707145691,0.4206145703792572,0.2438284158706665,-0.4537128210067749,-0.4842679500579834,-0.4246014952659607,-0.3149697780609131,-0.704788863658905,0.247828409075737,0.0839076042175293,0.3512180745601654,0.4817911982536316,0.05101170018315315,0.3417474925518036,-0.015427547506988049,-0.06258682906627655,0.5591676831245422,-0.0019877220038324594,0.5584691762924194,0.11439216881990433,0.14656370878219604,0.0979958027601242,0.11682514101266861,0.28011733293533325,0.15635335445404053,0.07815800607204437,-0.2807404398918152,0.36419832706451416,0.47633621096611023,0.25854241847991943,0.3784899115562439,0.3179500699043274,-0.3001033365726471,-0.18600034713745117,-0.19410517811775208,0.5633100867271423,0.10627645254135132,-0.09752291440963745,0.17824457585811615,0.248497873544693,0.12685279548168182,-0.47407907247543335,-0.5613793730735779,-0.73240065574646,-0.0851169005036354,-0.7096111178398132,0.2208888828754425,0.33969035744667053,-0.29342120885849,-0.8471007347106934,-0.38473498821258545,-0.23973847925662994,0.04185006767511368,-0.16532939672470093,-0.055334772914648056,-0.5981612801551819,-0.03902121260762215,0.623633086681366,0.009290773421525955,-0.4299277067184448,-0.2613040804862976,0.22845329344272614,-0.2750591039657593,-0.14977598190307617,-0.10209576040506363,0.4477960169315338,-0.5610565543174744,0.0971706286072731,-0.0932287871837616,-0.6458784937858582,-0.9998013377189636,-0.0009185484377667308,0.5596508979797363,0.5592758655548096,-0.03389410302042961,0.4598761200904846,-0.3471114933490753,0.42079630494117737,-0.22666002810001373,0.07531342655420303,0.39483344554901123,0.13194780051708221,0.6276834607124329,0.16515345871448517,0.2379377782344818,0.21832549571990967,-0.00641455315053463,0.14227870106697083,-0.17030780017375946,0.3942547142505646,-0.04258875176310539,0.38437142968177795,0.12769004702568054,0.06697997450828552,0.3107127249240875,0.38335591554641724,-0.2778762876987457,-0.2964966297149658,-0.2174195796251297,0.18717189133167267,0.4309506416320801,0.451381117105484,0.2743474245071411,0.4120931029319763,-0.3072134852409363,-0.6681606769561768,-0.37710434198379517,-1.0785454511642456,0.2582373023033142,-1.2238503694534302,0.6748591065406799,0.6071006059646606,-0.8809025883674622,-0.5102673768997192,-0.8095099925994873,0.16323508322238922,1.0124179124832153,-0.35786423087120056,-0.5657762289047241,-1.141087293624878,0.11571647226810455,0.8458885550498962,0.15104827284812927,-1.3375788927078247,-0.34624621272087097,0.7907857894897461,-0.374936580657959,-0.9188684821128845,0.24614067375659943,0.6856192946434021,-0.03900839015841484,-0.32316794991493225,-0.5258612632751465,-1.0874868631362915,-0.33784475922584534,-0.8425129652023315,0.3746682405471802,0.7835793495178223,0.32128870487213135,0.5618341565132141,0.19160723686218262,0.8153058886528015,-0.29837143421173096,0.18063688278198242,0.7192703485488892,0.22084523737430573,0.6497124433517456,-0.18012353777885437,0.1833706945180893,0.23769401013851166,0.023445719853043556,0.5090644955635071,-0.005712291691452265,0.2598278224468231,0.2457028478384018,0.3582996726036072,0.35893547534942627,-0.0018190465634688735,0.40655580163002014,0.19735366106033325,-0.2441612333059311,-0.35020264983177185,-0.03598747029900551,0.544478714466095,0.5818615555763245,0.35172298550605774,0.10071783512830734,0.3510335087776184,0.532811164855957,0.6050432920455933,0.2675715386867523,-0.02263922616839409,-0.30664753913879395,0.4436441659927368,0.29100674390792847,0.4978979527950287,0.25473591685295105,0.4192134439945221,0.40774643421173096,-0.18689316511154175,0.5861110687255859,0.031710393726825714,0.1502677947282791,0.22719617187976837,0.282481849193573,0.38305312395095825,-0.25853437185287476,0.23510923981666565,-0.049695439636707306,0.0457422100007534,0.058592744171619415,0.30733177065849304,0.14283935725688934,0.23518049716949463,-0.5653338432312012,0.2023802399635315,0.29088953137397766,0.39062461256980896,0.5003995299339294,0.406105637550354,0.6807928085327148,0.5524172782897949,0.6426082849502563,0.3637621998786926,-0.20216143131256104,0.12915955483913422,-0.17118331789970398,-0.07804734259843826,0.42817577719688416,0.5466145873069763,0.5313777327537537,-0.2812667787075043,-0.5772598385810852,0.6970030665397644,0.2668253779411316,0.3892368674278259,0.001030060462653637,0.17803506553173065,0.08158516883850098,0.40171605348587036,0.6138961911201477,-0.3857032060623169,0.6508217453956604,0.4969233572483063,-0.2479703724384308,-0.3353690505027771,0.02002698741853237,0.4788786768913269,0.1123797819018364,0.5840554237365723,-0.6764046549797058,0.28030166029930115]},{"shape":[32],"values":[0.43850177526474,0.5745577216148376,0.15508624911308289,0.36006516218185425,-0.05581982061266899,0.4151150584220886,-0.17563796043395996,-0.26102665066719055,0.5407409071922302,0.3479839861392975,0.5708162784576416,-0.06544499099254608,-0.14323383569717407,0.08589741587638855,0.3052862286567688,0.5163245797157288,0.009729255922138691,-0.1318414956331253,-0.05241275578737259,0.5028618574142456,0.22826367616653442,0.03548699617385864,0.453868567943573,0.3113202154636383,0,-0.18348264694213867,0.043057747185230255,0.40539515018463135,0.38620373606681824,0.36365997791290283,0.5076575875282288,0.5580840706825256]},{"shape":[32,9],"values":[0.04976718872785568,0.5733203291893005,0.24671092629432678,0.09784258157014847,0.6852378249168396,0.5595692992210388,0.6698122620582581,0.4665111005306244,0.5346991419792175,0.7052907347679138,0.5569378733634949,0.1750868409872055,0.6316379308700562,0.6092421412467957,0.5944515466690063,0.6971741318702698,0.5858429670333862,0.6356130242347717,0.29845279455184937,0.4975202977657318,0.6268478631973267,0.46968013048171997,0.6394551992416382,0.6570314764976501,0.13618038594722748,0.42789414525032043,0.5724092125892639,0.5534509420394897,0.5364964008331299,0.542410671710968,0.2978152334690094,0.6261892318725586,0.5554364323616028,0.3856942653656006,0.2699282169342041,0.4422680139541626,-0.08177896589040756,0.0981873944401741,0.09490098804235458,0.31492432951927185,-0.28532952070236206,0.08616086840629578,-0.2509883940219879,-0.14410477876663208,-0.05335802957415581,0.6701298952102661,0.5235480070114136,0.3204825222492218,0.7402715682983398,0.966648280620575,0.45558035373687744,0.8082404732704163,0.4340955317020416,0.6714688539505005,-0.3127598166465759,-0.09949052333831787,0.04319751635193825,-0.2555500268936157,-0.22665277123451233,-0.3008647859096527,-0.23266704380512238,-0.41721299290657043,-0.624454915523529,-0.33122819662094116,-0.4278622567653656,-0.18239301443099976,-0.20065514743328094,0.26575565338134766,-0.14949791133403778,-0.5520676374435425,-0.40272271633148193,-0.3790203630924225,0.6426724791526794,0.873485267162323,0.8680381774902344,0.6641749143600464,0.7178597450256348,0.6747598052024841,0.6949368715286255,0.6917136907577515,0.6716805696487427,0.3735233545303345,0.40660566091537476,0.7408351898193359,0.6568942666053772,0.8854057192802429,0.8739787936210632,0.8964996933937073,0.5022431015968323,0.7880340814590454,0.564184844493866,0.6576168537139893,0.3824816942214966,0.08034011721611023,0.48144254088401794,0.2495434433221817,0.490835964679718,0.7788391709327698,0.5949632525444031,-0.017383525148034096,-0.17777100205421448,0.07273654639720917,0.17631305754184723,0.35296517610549927,0.03429632633924484,-0.29628902673721313,0.17085780203342438,-0.2413877248764038,0.1266213059425354,-0.40371081233024597,-0.45210838317871094,-0.3915659785270691,-0.11815918236970901,-0.538495659828186,-0.10766981542110443,-0.5265978574752808,-0.9150798916816711,0.4093240201473236,0.22949209809303284,0.2785678803920746,0.03388885781168938,0.3930792510509491,0.7404701709747314,-0.6157858967781067,0.36077478528022766,0.38889414072036743,0.21200694143772125,0.5220292806625366,0.35634085536003113,0.492970734834671,0.2569805681705475,0.29159674048423767,0.13196155428886414,-0.018132036551833153,0.40105175971984863,0.7178871631622314,0.3190753757953644,0.2745305895805359,0.9299935698509216,0.17292068898677826,0.23963183164596558,0.7482578158378601,0.809656023979187,0.5107003450393677,-0.4263010323047638,-0.2080794870853424,-0.2363767772912979,0.14440348744392395,-0.29409870505332947,-0.4317671060562134,0.13496646285057068,-0.5324425101280212,0.20477397739887238,-0.4235762655735016,-0.4417891800403595,-0.00964369811117649,-0.4787275493144989,-0.16642461717128754,-0.5144064426422119,-0.5628775358200073,0.0430016927421093,-0.06298692524433136,-0.10281548649072647,0.14639674127101898,0.3766133487224579,-0.04843418672680855,0.15429474413394928,-0.3767642676830292,-0.22548599541187286,0.053284261375665665,-0.03963617607951164,0.9968156814575195,0.28346166014671326,0.8975708484649658,0.6232095956802368,0.8226925730705261,0.4577939510345459,0.6740342974662781,0.5777157545089722,0.5123443007469177,-0.11685919761657715,0.20013967156410217,0.8160588145256042,0.19037774205207825,0.13342152535915375,0.8351547122001648,0.15111126005649567,0.35985323786735535,0.8595818281173706,0.11889755725860596,-0.19212831556797028,-0.24270275235176086,-0.23589004576206207,-0.05658337101340294,-0.8963696956634521,0.17755387723445892,-0.5424947142601013,-0.3519994914531708,0.3110518157482147,0.3985535204410553,0.6424506306648254,0.5799009799957275,-0.0005456203361973166,0.5659866333007812,0.3147243857383728,0.08650144189596176,0.4961143136024475,0.16433535516262054,0.7903826832771301,0.6274586319923401,0.44980087876319885,0.6162711977958679,0.35444867610931396,0.1129007488489151,0.792390763759613,0.7291019558906555,0.05535309389233589,-0.2606797218322754,0.1718757450580597,0.37336328625679016,0.3142111003398895,-0.20520707964897156,0.24975085258483887,-0.16596050560474396,-0.1980413794517517,-0.22913648188114166,-0.45225122570991516,-0.30440789461135864,-0.4500707685947418,-0.3934296667575836,-0.2556076943874359,-0.4492868483066559,-0.08570829033851624,-0.5288968086242676,-0.2608473598957062,-0.49580106139183044,-0.2651912569999695,-0.24749323725700378,-0.4042423963546753,-0.38081714510917664,-0.7271971702575684,-0.29946693778038025,0.09642025828361511,-0.001480823033489287,0.4786514639854431,0.10335694253444672,0.608122706413269,0.48957037925720215,0.5083613395690918,0.3685281276702881,0.6611806154251099,0.15485556423664093,0.4192400872707367,0.2717178463935852,0.41066646575927734,0.6053523421287537,0.21561405062675476,0.7530297636985779,0.2587534487247467,0.3848184049129486,0.39192718267440796,0.379702091217041,0.5802158713340759,0.3552151024341583,0.3899000585079193,0.5929062366485596,0.4941941797733307,0.7285516858100891,0.5626218914985657,0.7286449074745178,0.8761681914329529,0.36500146985054016,-0.09697467088699341,0.8299230933189392,0.3101722300052643,-0.31574684381484985,0.7951943278312683,0.6985124945640564,-0.2768612205982208,0.5463114976882935,0.1295272260904312,0.6692655682563782,0.5571925640106201,0.10490915179252625,0.60503751039505,0.6752927899360657,0.5196837782859802,0.3949209451675415]},{"shape":[9],"values":[0.36945387721061707,0.07356519997119904,0.09187579900026321,0.3432970345020294,0.03263942152261734,0.05128597095608711,0.41231659054756165,0.27475449442863464,0.32545483112335205]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-47.json new file mode 100644 index 0000000..9b99eb2 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:59:35.609Z","weights":[{"shape":[20,32],"values":[1.3937865495681763,-0.07530491054058075,0.2195180356502533,1.263778805732727,0.4433678984642029,-0.24359096586704254,0.5266979932785034,1.2815916538238525,0.9316164255142212,-0.5769478678703308,0.48273664712905884,0.024279868230223656,-0.3962908983230591,0.699975848197937,0.13599753379821777,-0.09606174379587173,-0.12870848178863525,0.6622741222381592,1.5502949953079224,1.3802764415740967,0.7856687903404236,-0.2685856223106384,0.9601867198944092,0.6202363967895508,1.1191821098327637,1.3109087944030762,0.4188520312309265,0.13069798052310944,0.2862730920314789,0.5972967743873596,0.8211873769760132,-0.405253529548645,0.03278689458966255,0.3509753346443176,0.07364954799413681,-0.18069256842136383,0.07156998664140701,-0.25961682200431824,-0.09615977108478546,0.042186424136161804,-0.0047141495160758495,-0.14329567551612854,0.25566330552101135,0.07120880484580994,-0.227787047624588,-0.015809407457709312,0.033854834735393524,-0.25140348076820374,0.18567650020122528,0.16288143396377563,-0.0748065784573555,0.2611144185066223,0.2767792046070099,0.3026156425476074,-0.23727847635746002,-0.03581387549638748,-0.24507588148117065,-0.24522890150547028,-0.13053089380264282,-0.2591468095779419,0.10542556643486023,-0.35028037428855896,0.1848725974559784,-0.19890855252742767,-0.02782914973795414,0.5157739520072937,-0.4999641180038452,0.3446398377418518,-0.3451748490333557,-0.9910971522331238,-0.13085556030273438,0.10386072844266891,0.018995890393853188,-0.7738223075866699,-0.23189209401607513,-0.5500408411026001,0.010086998343467712,-0.0006324771675281227,-0.7784465551376343,-0.12016918510198593,0.8633288741111755,-0.7435466647148132,-0.0000337294623022899,-0.08662857860326767,0.3771425187587738,0.577479898929596,-0.10363884270191193,0.3706379532814026,0.27978798747062683,-0.14230109751224518,-0.44648438692092896,-0.8178039789199829,-0.6646183133125305,-0.4310009777545929,-0.06976579129695892,-1.0497078895568848,0.012386875227093697,-1.1278680562973022,-0.14597167074680328,-0.6915727257728577,-0.20006868243217468,1.6823372840881348,-0.0491567887365818,-0.7864179015159607,-0.17553606629371643,1.0922119617462158,-0.5260288715362549,-0.0939137414097786,1.5132213830947876,-0.3705611228942871,-0.18754686415195465,1.4989376068115234,-1.0368133783340454,0.7834305763244629,-0.04953451827168465,-0.05848374217748642,-0.42387115955352783,-0.8384431004524231,-0.3546288311481476,-0.9550784230232239,-0.8386452198028564,-0.4017781615257263,1.0456337928771973,1.4860992431640625,0.16698378324508667,0.4582313597202301,-0.33491164445877075,1.561816692352295,0.39342695474624634,0.370830774307251,0.21278269588947296,-0.29860568046569824,0.7515023350715637,-0.12361454218626022,0.13295122981071472,-0.3363657593727112,0.2455112487077713,0.1778707206249237,0.18875226378440857,0.4810241162776947,-0.03199648857116699,-0.051109179854393005,0.3341495096683502,0.12649331986904144,0.1550077646970749,0.3433240056037903,0.3041447699069977,-0.37159934639930725,-0.12315617501735687,-0.005397903732955456,0.2639574706554413,0.16564933955669403,0.18499603867530823,-0.060926977545022964,-0.08780976384878159,0.17431919276714325,0.16379188001155853,0.4411918818950653,-0.15591493248939514,0.4148400127887726,0.06008720025420189,-0.2969280779361725,-0.45131903886795044,-0.17269596457481384,0.14789795875549316,0.17326053977012634,-0.023371277377009392,0.13455182313919067,-0.21020497381687164,0.3271794319152832,-0.19459451735019684,-0.040502797812223434,0.3229834735393524,-0.042584143579006195,0.1387292444705963,0.38055408000946045,-0.16845081746578217,0.4261167049407959,-0.3071894645690918,-0.37808316946029663,-0.010596433654427528,0.0792752355337143,0.38426700234413147,0.4405559003353119,0.21134749054908752,0.022565100342035294,0.5083209276199341,0.20892265439033508,-0.061420638114213943,0.07620996981859207,0.044590238481760025,-0.03934171795845032,-0.0736381933093071,-0.2454468458890915,-0.39258497953414917,0.44976186752319336,-0.5058419108390808,0.2121126502752304,0.4292524456977844,0.06043761968612671,-0.020559068769216537,0.257575660943985,-0.6221994757652283,-0.4963233470916748,0.29604479670524597,-0.009660067968070507,-0.4660130739212036,0.4719989001750946,-0.6854742765426636,0.3696464002132416,0.011108657345175743,-0.3928587734699249,-0.14731170237064362,-0.487923264503479,-0.19466961920261383,0.280411034822464,0.44718998670578003,0.383420467376709,0.5074310898780823,0.43210703134536743,-0.7076798677444458,-0.36317476630210876,-0.19194333255290985,0.3297027051448822,0.0721011832356453,-0.8340200185775757,-0.062312833964824677,0.5839632749557495,-0.7546314597129822,0.1791982352733612,0.29827868938446045,0.673853874206543,0.11808954924345016,0.18526999652385712,-0.41520535945892334,-0.49265941977500916,0.21925263106822968,0.5924583077430725,-0.5632996559143066,0.17613659799098969,-0.5569959878921509,-0.08836764097213745,0.03140343725681305,-0.370471715927124,0.6519820094108582,-0.1773136705160141,0.4843643307685852,0.4028075933456421,0.29583674669265747,0.3984079658985138,0.21840521693229675,-0.20841851830482483,-0.4191248416900635,-0.28522393107414246,0.22992677986621857,0.033925868570804596,0.1712689995765686,0.052842993289232254,-0.8193632364273071,-0.09271450340747833,-0.4676617383956909,-0.12858809530735016,-0.4001273214817047,0.2056054025888443,-0.3256909251213074,0.018151115626096725,-0.16083300113677979,-0.17511779069900513,-0.12422484904527664,-0.37591633200645447,0.24851733446121216,0.12125526368618011,0.33046045899391174,0.22507011890411377,0.02552877925336361,-0.017226899042725563,-0.05808184668421745,0.109416663646698,0.24826690554618835,-0.26827555894851685,-0.13277052342891693,-0.2171172797679901,0.06707675755023956,0.16725388169288635,0.7954919934272766,0.28642332553863525,0.2769293487071991,-0.32171571254730225,0.45176613330841064,-0.21455106139183044,-0.5190019607543945,0.13461846113204956,0.10577160865068436,-0.2677806317806244,0.1924322247505188,0.19831041991710663,-0.5717944502830505,0.25660189986228943,0.246767058968544,0.07205694168806076,-0.21936458349227905,-0.21238404512405396,0.31184571981430054,-0.15033839643001556,0.014546683989465237,-0.023685861378908157,-0.1038159728050232,-0.2013082206249237,0.4664754867553711,-0.3488435447216034,0.370978981256485,0.2879069745540619,0.29668691754341125,0.23740412294864655,-0.15424911677837372,-0.11534655839204788,0.27234312891960144,-0.5542086958885193,0.2074153870344162,-0.34301942586898804,0.4777861535549164,-0.34840261936187744,0.43669393658638,0.18686296045780182,-0.050551336258649826,-0.06227676942944527,-0.28876665234565735,0.3409719169139862,0.6711917519569397,0.5038113594055176,0.2657310664653778,-0.4331713616847992,-0.24357622861862183,-0.01829434372484684,-0.06269221752882004,0.14695943892002106,-0.38096141815185547,-0.17389725148677826,0.5236845016479492,0.17560094594955444,0.02882966212928295,-0.35673224925994873,0.40260040760040283,0.3843693733215332,0.2015599012374878,0.0063060675747692585,-0.6164745688438416,-0.5504167675971985,0.3904527425765991,0.42490383982658386,0.27894705533981323,-0.11249997466802597,-0.0578763522207737,0.368558406829834,0.13311707973480225,-0.14983969926834106,-0.39699533581733704,0.33242300152778625,-0.02463800087571144,-0.09645058214664459,-0.04460395127534866,-0.384481281042099,0.21315187215805054,-0.10012397170066833,0.17305710911750793,0.12349801510572433,0.017484424635767937,-0.221981942653656,-0.430870920419693,0.041769709438085556,-0.1325143426656723,0.012916447594761848,0.02590084820985794,-0.2802559435367584,0.049930524080991745,-0.2664225101470947,-0.11981163918972015,-0.040541015565395355,-0.06718334555625916,-0.0784597396850586,-0.1444435864686966,-0.19985371828079224,-0.11506278812885284,0.4029828608036041,0.18840853869915009,0.03908960521221161,-0.5310209393501282,-0.062147676944732666,0.191469207406044,-0.2697928547859192,-0.1266620010137558,0.2870670258998871,0.02287965826690197,-0.35117441415786743,0.005492550320923328,0.1327657699584961,-0.1513538509607315,-0.2500467002391815,0.6037590503692627,-0.04680604487657547,-0.08564816415309906,-0.006440378725528717,0.23728616535663605,0.2959892749786377,-0.30067160725593567,-0.06123999506235123,0.006673878524452448,0.30689242482185364,0.00668643182143569,0.22111891210079193,-0.16380687057971954,-0.2190932184457779,0.3458123803138733,0.105697862803936,0.11638659238815308,-0.27247992157936096,0.1013650894165039,0.016414497047662735,-0.08061586320400238,-0.10887595266103745,-0.03855294734239578,-0.1610693782567978,-0.13118040561676025,0.40366965532302856,-0.4248605966567993,0.19820016622543335,-0.04381658136844635,0.1997411549091339,0.13284781575202942,-0.08602949976921082,0.267469584941864,0.24707560241222382,0.009223143570125103,0.2641076147556305,-0.07432861626148224,-0.1938369870185852,0.11707225441932678,0.09633141756057739,0.40011611580848694,0.4280490577220917,0.07549562305212021,0.04865526780486107,0.19389040768146515,-0.06592219322919846,0.2918579876422882,-0.3901563882827759,0.007322093937546015,-0.018531648442149162,-0.16846634447574615,-0.40125003457069397,-0.13726626336574554,0.003521087346598506,0.09467959403991699,-0.36177846789360046,-0.38364192843437195,-0.19717130064964294,0.5890691876411438,0.014220166951417923,0.37529823184013367,0.017713328823447227,0.2488190084695816,0.21211780607700348,-0.24125923216342926,-0.3452102541923523,0.10971389710903168,0.20773936808109283,-0.07126285880804062,0.574323832988739,0.45576557517051697,-0.6269392967224121,-0.040949027985334396,-0.027432896196842194,-0.10611140727996826,-0.2156200259923935,-0.13667985796928406,-0.47719669342041016,-0.20860546827316284,0.2610374987125397,0.23966491222381592,0.05869261547923088,-0.2509395480155945,0.3755938410758972,0.17945724725723267,-0.1933426558971405,0.2509688138961792,0.22175706923007965,-0.16385285556316376,-0.19207555055618286,-0.0027660720515996218,0.16192559897899628,0.11067984253168106,-0.2154746651649475,0.46508723497390747,0.22622233629226685,0.15975318849086761,-0.0959722176194191,-0.40965935587882996,-0.19046726822853088,0.19885237514972687,-0.43692293763160706,0.017098810523748398,-0.1392413079738617,0.05372348800301552,0.02326148748397827,0.1739473193883896,-0.17532747983932495,-0.28883787989616394,0.41867926716804504,0.13832475244998932,0.12206364423036575,0.1684633493423462,0.4883233606815338,-0.18983855843544006,0.08906366676092148,-0.12714071571826935,0.26348915696144104,-0.07820843905210495,0.05452144518494606,0.16654200851917267,-0.19750548899173737,0.12845508754253387,-0.2663630545139313,-0.09017729759216309,-0.47172653675079346,-0.28807777166366577,-0.20115211606025696,-0.2515130937099457,-0.0005265707732178271,-0.012453567236661911,-0.1251663714647293,0.2396392673254013,0.2343807816505432,-0.25166699290275574,0.3858770728111267,0.04817837104201317,-0.0671253651380539,-0.10281549394130707,-0.03026249259710312,0.2677462697029114,-0.0789308100938797,-0.037946321070194244,-0.18636974692344666,0.28268730640411377,0.03290427476167679,-0.14669014513492584,0.18286122381687164,0.2568919360637665,0.22549128532409668,-0.17802277207374573,-0.0627678781747818,0.168070450425148,-0.317336767911911,-0.3883754312992096,0.047234907746315,0.22311535477638245,0.21303535997867584,0.035112496465444565,0.12852583825588226,-0.11142690479755402,-0.07020522654056549,0.07360982894897461,-0.23489443957805634,-0.07855828106403351,-0.026114333420991898,0.22821353375911713,0.09829235076904297,-0.14149123430252075,0.3139320909976959,0.21533966064453125,-0.13508760929107666,0.18059174716472626,-0.1455642729997635,0.2899458408355713,0.0028192263562232256,-0.19514897465705872,0.26615649461746216,0.02072298526763916,-0.0326511450111866,-0.230078786611557,-0.33146315813064575,-0.19386938214302063,-0.36787286400794983,-0.6351867914199829,-0.20162038505077362,-0.12933865189552307,-0.009920068085193634,0.1983773410320282,-0.15485917031764984,0.5283740162849426,-0.19347022473812103,0.06458155810832977,-0.09811770170927048,-0.0700637698173523,-0.022885838523507118,-0.12244907021522522,0.1955958604812622,-0.32852113246917725,-0.5462175607681274,-0.19763609766960144,-0.2650253176689148,-0.3995782434940338,-0.2651761770248413,-0.11027988791465759,-0.42794784903526306,0.03964243456721306,-0.11520858108997345,-0.11713065952062607,0.30708441138267517,0.1165652871131897,0.09886761009693146,-0.374849408864975,0.3074065148830414,-0.41459420323371887,0.14157140254974365,-0.0034768839832395315,0.20455074310302734,-0.05452556163072586,-0.2088097780942917,0.17023354768753052,0.1280020922422409,0.10268749296665192,-0.13077795505523682,-0.36663225293159485,0.18064148724079132,0.06776715070009232,-0.3525081276893616,-0.28658756613731384,-0.2090112566947937,-0.16851210594177246,0.046447306871414185,-0.07821650058031082,-0.08738148212432861,0.21529217064380646,-0.07454269379377365,-0.021824875846505165,-0.1633961945772171,0.029568759724497795,0.2840282917022705,-0.4412006139755249,0.42828336358070374]},{"shape":[32],"values":[0.8763542175292969,-0.04296797886490822,0.13308686017990112,0.5847503542900085,0.09937917441129684,-0.15603618323802948,0.46762076020240784,0.40553951263427734,0.6986545324325562,-0.44859251379966736,0.57480788230896,-0.06456723809242249,-0.034564096480607986,0.4534261226654053,-0.1383378505706787,-0.2799057960510254,-0.3039047122001648,-0.24859189987182617,0.9526168704032898,0.6734698414802551,0.7977059483528137,-0.11960944533348083,0.5462552309036255,0.23470273613929749,0.33115947246551514,0.4828324615955353,-0.26143884658813477,-0.38137558102607727,0.07571876049041748,0.09002470225095749,0.7648672461509705,-0.18299275636672974]},{"shape":[32,32],"values":[0.16022641956806183,0.854657769203186,-0.19163721799850464,0.11962895840406418,0.5374556183815002,0.8583759069442749,0.4849173128604889,0.5725130438804626,0.19354230165481567,0.5315183401107788,0.0009540442260913551,0.5558492541313171,-0.14217409491539001,-0.019389020279049873,-0.011191245168447495,0.8839568495750427,-0.12179823219776154,0.13498005270957947,0.06958698481321335,0.6259081363677979,0.29336094856262207,0.9371083974838257,-0.04894309863448143,0.03438244014978409,0.39462289214134216,0.514467179775238,0.7115151286125183,0.20064419507980347,0.5733165740966797,0.3589450418949127,0.8642194271087646,0.9613871574401855,-0.3055649399757385,-0.23654884099960327,0.029290320351719856,0.19732677936553955,-0.256471186876297,-0.7136823534965515,-0.7939844727516174,-0.4779323637485504,-0.15585681796073914,-0.2940874397754669,-0.27973389625549316,-0.5855762958526611,0.12342192232608795,0.0722733810544014,-0.09709371626377106,-0.7549276947975159,0.16933800280094147,0.5435416102409363,0.03774435073137283,-0.901779055595398,-0.2808922529220581,-0.23719461262226105,0.1989811807870865,0.12359508872032166,-0.1796712726354599,-0.8346372246742249,-0.3936194181442261,0.3892093300819397,-0.284018337726593,-0.9429308772087097,-0.7445856928825378,-0.46841034293174744,0.48325246572494507,0.6557045578956604,-0.31518271565437317,-0.6596847772598267,0.5016933679580688,0.8116776943206787,0.35327011346817017,0.14677776396274567,0.010768878273665905,0.33646973967552185,-0.04725584387779236,0.3869476020336151,0.09725649654865265,-0.20961876213550568,0.18286198377609253,0.8511001467704773,-0.08441811800003052,-0.7195369005203247,-0.5423970222473145,0.6152805685997009,0.41348201036453247,0.23895597457885742,0.0603068582713604,-0.15296335518360138,-0.16070258617401123,0.2296174168586731,0.3353206515312195,-0.42271918058395386,0.5742772221565247,-0.03531688451766968,0.6604292988777161,0.3485916256904602,-0.11972735077142715,0.4273175597190857,0.49519824981689453,0.0246336217969656,0.41134151816368103,0.228877991437912,0.8874487280845642,0.6141034364700317,-0.1152341291308403,0.2650321424007416,-0.011425700969994068,0.2437036782503128,-0.046918224543333054,-0.04809180647134781,0.34392791986465454,0.5194944739341736,0.20461773872375488,0.09286794066429138,-0.3034251630306244,0.4691563844680786,0.41993820667266846,0.759394645690918,0.006952604744583368,-0.11272712796926498,-0.24055702984333038,0.6869605779647827,0.47465142607688904,-0.21384763717651367,0.6215873956680298,0.4535285234451294,0.7070116996765137,0.4711199104785919,0.3544774353504181,0.3226756751537323,-0.2102903425693512,-0.6123597025871277,0.6229473352432251,0.47897544503211975,0.5535913705825806,0.3886863589286804,0.08547130227088928,0.3974955379962921,0.03191631659865379,0.3751486837863922,0.6124030351638794,-0.2739914059638977,-0.40429168939590454,0.40792524814605713,-0.4048579931259155,-0.7277917861938477,-0.6966305375099182,0.5358136296272278,0.06027556583285332,0.20726054906845093,-0.078254334628582,0.0721416249871254,-0.18991804122924805,-0.20180322229862213,0.46219947934150696,-1.0651371479034424,0.4567861557006836,-0.40558502078056335,0.25027456879615784,0.7944861650466919,-0.4313139319419861,-0.3136661946773529,-0.3515336215496063,0.4482727348804474,-0.3370387852191925,-0.38240286707878113,-1.1185652017593384,-0.6603266000747681,-0.12943372130393982,-0.014804892241954803,0.15811660885810852,-0.5279644131660461,-0.6302515864372253,-0.02240772917866707,-0.18801595270633698,-0.3418577015399933,0.05597047507762909,0.4169260859489441,0.7616827487945557,-0.320393443107605,-0.3779190182685852,-0.7885987758636475,-0.0698203444480896,-0.05928173288702965,0.16242320835590363,-0.8871631026268005,-0.8713297247886658,0.735305905342102,-0.6747792363166809,-0.6711066961288452,-0.551514744758606,-0.5996752977371216,0.04028305411338806,0.28703948855400085,0.2536642551422119,0.02326093427836895,0.3499303460121155,0.1970590204000473,0.02562185749411583,-0.30682891607284546,-0.25666263699531555,-0.08757404237985611,-0.26904597878456116,0.4376068413257599,-0.6754318475723267,-0.23459312319755554,-0.02891531027853489,0.3568650484085083,0.07329729944467545,0.14215493202209473,-0.040258172899484634,0.29558810591697693,-0.1581752449274063,0.2451128512620926,-0.11181885749101639,-0.32961124181747437,0.4026789963245392,-0.19666603207588196,-0.08545389026403427,0.5823531746864319,0.33953070640563965,-0.019495118409395218,-0.05274662747979164,0.1629774421453476,-0.30404233932495117,0.8327004313468933,-0.02459188550710678,0.1807926893234253,0.09675858914852142,0.48958277702331543,0.7762836217880249,0.48657095432281494,0.0076995063573122025,0.18474702537059784,-0.23348619043827057,0.544329822063446,0.07570269703865051,0.054473042488098145,0.04748101904988289,0.46664467453956604,-0.0353885255753994,-0.1233111023902893,-0.36137956380844116,0.3330515921115875,0.5143318772315979,0.4205407500267029,-0.42322251200675964,0.08692105114459991,0.019798923283815384,0.5892423987388611,0.3723776638507843,-0.04199789837002754,0.7024306058883667,0.7500895857810974,0.6410267949104309,0.5117456912994385,0.2665843367576599,0.6433670520782471,-0.04793635010719299,0.019878296181559563,0.4648946225643158,0.46269145607948303,0.6864154934883118,0.2812974452972412,-0.39131805300712585,0.6700787544250488,-0.17137804627418518,0.46161413192749023,0.3268498480319977,0.0458906926214695,-0.09853729605674744,0.6985834240913391,0.13106536865234375,-0.09789541363716125,-0.43511146306991577,0.22318777441978455,0.17473353445529938,0.22254814207553864,-0.12511596083641052,0.3311617374420166,-0.03217282518744469,0.2772279977798462,0.3521423041820526,-0.15730483829975128,0.6172043085098267,0.8061627745628357,0.731808602809906,0.31937873363494873,-0.4945526421070099,-0.26746851205825806,-0.4178546071052551,0.013747163116931915,-0.12792469561100006,-0.32405921816825867,-0.823116660118103,-0.4930786192417145,0.12243126332759857,-0.2553434371948242,0.19002670049667358,-0.09062808007001877,-0.19272373616695404,-0.16884176433086395,0.007024555467069149,-0.38157978653907776,0.18668103218078613,0.44974666833877563,0.20843230187892914,-0.5635449290275574,-0.679053783416748,-0.42549869418144226,-0.004095971118658781,-0.08683351427316666,0.21086782217025757,-0.6518018245697021,-0.09348385035991669,0.3326375484466553,-0.37345340847969055,-0.2962287366390228,0.024024825543165207,-0.5682770013809204,0.46616703271865845,0.4737975299358368,0.08442185819149017,-0.2771894037723541,-0.03389332816004753,0.3770943284034729,0.53864985704422,0.18207909166812897,0.1207302063703537,0.1663752794265747,-0.0377623587846756,0.0979471504688263,0.4291977286338806,-0.139637291431427,-0.07852138578891754,0.18873929977416992,0.24570049345493317,-0.6831116676330566,-0.9408719539642334,0.00548533396795392,0.43225088715553284,0.4952411949634552,0.38483521342277527,0.4084859788417816,-1.0187153816223145,0.02494889684021473,0.3734085261821747,-0.5758472681045532,0.16606366634368896,-0.1198965460062027,0.453533798456192,0.16909100115299225,0.604525089263916,0.7690355181694031,-0.26721885800361633,-0.24011705815792084,0.6242326498031616,0.959088921546936,0.4273136854171753,0.6142389178276062,-0.18868878483772278,0.3191157579421997,0.21694190800189972,0.32176998257637024,0.21512176096439362,-0.5049551129341125,-0.1418856531381607,0.7305822372436523,0.19524027407169342,-0.6727238297462463,-1.0505610704421997,0.468934565782547,0.457864373922348,0.49142786860466003,0.3694855868816376,-0.26885831356048584,-0.39789915084838867,-0.32951298356056213,0.3155032992362976,-0.37120625376701355,0.339925616979599,-0.063400037586689,0.5537692308425903,0.3538702428340912,-0.2263796329498291,-0.2067241072654724,0.2485942542552948,0.2101748138666153,-0.06215343251824379,-0.48739492893218994,-0.4001695513725281,-0.45822280645370483,-0.04475438967347145,-0.07248527556657791,0.2527324855327606,0.028546350076794624,1.0287189483642578,0.03800158575177193,-0.06292925029993057,-0.5350714325904846,0.5250132083892822,-0.0807667002081871,0.23547688126564026,-0.32225432991981506,-0.9942095279693604,-0.41041046380996704,0.0024607214145362377,0.20988580584526062,-0.05079900100827217,-0.6949703097343445,-0.18264362215995789,-0.16265824437141418,-0.3994291126728058,-0.5355512499809265,-0.330322802066803,-0.19013497233390808,0.4265994131565094,0.28198063373565674,0.34974220395088196,0.1135035827755928,0.36014047265052795,0.4163791835308075,0.06201061233878136,0.07910319417715073,-0.1479446142911911,0.084670789539814,-0.19765089452266693,0.3694034814834595,0.04637720808386803,-0.08071829378604889,-0.21816612780094147,0.7112629413604736,-0.13588008284568787,0.15037688612937927,0.060624200850725174,0.31141960620880127,-0.07120618224143982,0.32227465510368347,-0.21669280529022217,0.10249896347522736,0.6185996532440186,0.33094358444213867,0.32768183946609497,0.10453259199857712,0.406459778547287,0.14466069638729095,0.5638421773910522,0.46067291498184204,0.22986888885498047,0.8998101949691772,0.13254322111606598,-0.5030867457389832,0.5335243940353394,0.41886889934539795,0.7831522226333618,0.2946634888648987,-0.0583401620388031,0.04566534608602524,0.1942695826292038,0.4905187785625458,0.2493310123682022,0.03883916512131691,0.31889745593070984,0.714718759059906,-0.08938371390104294,-0.3034016788005829,-0.5985406041145325,0.27425065636634827,0.6287050843238831,0.37233370542526245,0.25112447142601013,-0.1354924738407135,0.20875118672847748,-0.4818422794342041,0.5693091750144958,-0.23682357370853424,0.15782798826694489,0.23721148073673248,0.7264116406440735,0.36678749322891235,-0.38739603757858276,-0.37427985668182373,-0.4178366959095001,0.3070082366466522,0.045079465955495834,-0.39537322521209717,-0.7056016325950623,-0.29374760389328003,0.20910657942295074,-0.06689854711294174,-0.2989499866962433,-0.10829602926969528,0.46099135279655457,0.27035245299339294,0.35491880774497986,-0.34725746512413025,-0.1896115243434906,0.15338920056819916,0.1575094312429428,0.0029684873297810555,-0.7375965714454651,-0.0720159262418747,-0.05136837810277939,0.08596229553222656,0.33515414595603943,-0.28223976492881775,-0.16654489934444427,-0.050169024616479874,-0.32024356722831726,-0.30713531374931335,-0.39570748805999756,-0.205994114279747,-0.2803763449192047,-0.7477351427078247,0.46800264716148376,-0.04306245967745781,-0.5764632225036621,-0.38492676615715027,-0.9113306999206543,-0.7766381502151489,-0.3202415704727173,-0.4027359187602997,0.06685573607683182,-0.7727208137512207,0.7229432463645935,0.20553012192249298,-0.3779085874557495,-0.6451388597488403,-0.5583559274673462,0.09197422116994858,-0.005552482325583696,-0.9788418412208557,-0.4966740608215332,-0.8728921413421631,0.541793704032898,0.6854422688484192,-0.5097922086715698,-0.46098875999450684,-0.9263613820075989,-0.3119168281555176,-0.7780334949493408,-0.7474839687347412,-0.7564572691917419,-0.619189441204071,0.15646837651729584,-0.16946855187416077,-0.4371911287307739,0.038046881556510925,-0.05071477219462395,-0.029809242114424706,-0.28078606724739075,-0.37827569246292114,0.1047353744506836,0.10965698212385178,0.017593108117580414,-0.30247682332992554,-0.341045081615448,-0.06979069113731384,0.1653575301170349,0.021447928622364998,-0.14437639713287354,0.4368204176425934,0.5001651048660278,-0.03060852363705635,-0.7002377510070801,0.051166798919439316,-0.0833338052034378,0.27158376574516296,0.5769093632698059,-0.13241222500801086,0.08055593073368073,0.4835107922554016,-0.6276082396507263,-0.5328134298324585,0.1708410382270813,-0.24905627965927124,0.31708618998527527,0.8631600737571716,-0.2164783477783203,-0.3169191777706146,0.5541484951972961,0.9196986556053162,0.4892357885837555,0.5283675789833069,-0.04262063652276993,0.4521019160747528,-0.26004940271377563,0.42198446393013,-0.19576893746852875,0.013991300016641617,0.3449651896953583,0.5755515098571777,0.23985013365745544,0.07955930382013321,-0.4663318991661072,0.4073431193828583,0.4367828667163849,0.8852542042732239,-0.2191002070903778,-0.12427103519439697,0.23414333164691925,0.3645731508731842,0.6704533100128174,0.05268748849630356,0.685282289981842,0.653945803642273,0.912120521068573,0.6903823614120483,0.2364824116230011,0.501756489276886,-0.5112768411636353,-0.4586813747882843,0.6017113327980042,0.6020616292953491,0.5870887041091919,0.6149667501449585,-0.10629281401634216,0.5715745091438293,0.08711979538202286,0.15782572329044342,-0.08190149068832397,0.21030554175376892,0.4338781237602234,0.6271800994873047,0.22751474380493164,-0.2651577591896057,-0.12711089849472046,0.4059290885925293,0.6642615795135498,0.5801715850830078,0.08097462356090546,-0.2836880683898926,-0.23798836767673492,0.36737966537475586,0.4784536063671112,-0.3100590109825134,0.5328258275985718,0.5103839635848999,0.6869837045669556,0.5124779939651489,-0.3019636273384094,0.6802204251289368,-0.12987397611141205,-0.32605311274528503,0.380070298910141,0.10858170688152313,0.4749140441417694,0.6469082236289978,-0.15080174803733826,0.2695735991001129,-0.05851532891392708,0.4664144217967987,0.45136284828186035,-0.11654510349035263,0.5155206918716431,0.6040700674057007,0.28804811835289,-0.43163013458251953,0.056227535009384155,0.38173601031303406,0.28705576062202454,0.43884965777397156,-0.013876567594707012,0.0903688445687294,-0.24405422806739807,0.7101377844810486,0.4072449207305908,-0.20730040967464447,0.21437977254390717,0.41790130734443665,0.49231603741645813,0.3348558247089386,-0.4090028405189514,-0.5831738710403442,0.5645623803138733,0.36648696660995483,-0.4225110113620758,-0.3248249292373657,-0.46217694878578186,-0.6897346377372742,0.14890369772911072,-0.44177350401878357,-0.25692567229270935,-0.24266108870506287,0.5807081460952759,-0.13424161076545715,0.4020628333091736,-0.28277474641799927,-0.16800612211227417,-0.20206940174102783,0.2927408814430237,-0.9698628187179565,-0.35358935594558716,-0.40726423263549805,0.3167845904827118,0.09552508592605591,-0.3496190011501312,-0.7874332070350647,-0.05020058527588844,0.24489916861057281,-0.20379281044006348,-0.7544647455215454,-0.2199246734380722,-0.6237694025039673,0.43272146582603455,1.079620122909546,-0.3504262864589691,0.10858575254678726,0.6872739195823669,1.1424981355667114,0.6036586761474609,0.3772304654121399,-0.06762506067752838,0.41502127051353455,0.08796559274196625,0.6264886856079102,-0.1953657865524292,0.24380744993686676,-0.3192005753517151,0.9941933155059814,-0.06845999509096146,-0.0346214734017849,0.21629726886749268,0.791007399559021,0.295498251914978,0.7466297149658203,-0.053626351058483124,0.12856698036193848,0.17631790041923523,0.15734456479549408,0.29879316687583923,0.2085941582918167,0.18776148557662964,0.2302936315536499,0.95022052526474,1.16584050655365,0.07748010754585266,0.4677940607070923,0.003109743120148778,0.14070488512516022,0.11173427850008011,0.2516392469406128,0.5312643647193909,0.3431500196456909,-0.23615095019340515,0.514180064201355,0.17155994474887848,0.5509507060050964,-0.16778109967708588,-0.25831347703933716,-0.442084401845932,0.36615461111068726,-0.25588858127593994,0.00622649397701025,-0.33282580971717834,0.5753000974655151,-0.2401868849992752,0.376923143863678,-0.6140614151954651,-0.14507551491260529,0.3454754650592804,0.7211452126502991,0.6159524321556091,-0.09450830519199371,0.40627288818359375,0.4838695228099823,0.24297358095645905,0.8209400177001953,-0.02870648168027401,0.569503664970398,0.2796578109264374,-0.20725864171981812,0.21026769280433655,0.9828900694847107,0.5529472231864929,0.7428097724914551,0.09531157463788986,0.5699194073677063,-0.19195355474948883,0.5966756343841553,0.09180905669927597,-0.25075408816337585,-0.22150225937366486,0.6253668069839478,0.22463682293891907,-0.10403569042682648,-0.3767921030521393,0.6435326933860779,0.07588453590869904,0.32686206698417664,-0.43132010102272034,-0.08903269469738007,0.19309143722057343,0.650327205657959,0.6072595119476318,0.0898490771651268,0.4780551493167877,0.19642141461372375,0.3287839889526367,1.124851942062378,0.05362416058778763,0.7474050521850586,0.26074862480163574,-0.12152571231126785,0.2640487849712372,0.553128719329834,0.5299094915390015,0.23234739899635315,0.17243540287017822,0.5039532780647278,0.24643708765506744,0.49296310544013977,-0.5817819833755493,-0.30957287549972534,-0.11072515696287155,0.2720319330692291,0.17442642152309418,0.031501319259405136,0.38468214869499207,0.09978801012039185,0.3708534836769104,0.6623268127441406,-0.6911007165908813,-0.341162770986557,0.2299397885799408,0.5739120841026306,0.5057809352874756,0.3715876042842865,0.04676765576004982,0.18894803524017334,0.5627807974815369,0.7582530379295349,-0.3915194869041443,0.022303881123661995,-0.2882241904735565,0.20366361737251282,0.045994833111763,-0.28702273964881897,-0.27408504486083984,-0.5682311058044434,-0.29905441403388977,-0.006611615885049105,0.05246108025312424,-0.24799844622612,0.11589635908603668,0.14765794575214386,0.266961008310318,0.038145411759614944,-0.19403529167175293,0.3930412530899048,0.6443065404891968,-0.037768058478832245,-0.5960808992385864,0.09852094948291779,-0.13781405985355377,0.20920734107494354,0.45240721106529236,-0.353594571352005,-0.19301053881645203,0.3038065433502197,-0.35451334714889526,-0.6411550045013428,-0.07895956933498383,-0.17368893325328827,-0.13792908191680908,-0.5800110101699829,0.10570970177650452,0.4380832612514496,-0.33543089032173157,-0.49627089500427246,-0.7139180898666382,-0.9311426877975464,0.17528246343135834,-0.23477007448673248,-0.10417642444372177,-0.5092422962188721,-0.5221841335296631,-0.24883699417114258,0.10114747285842896,-0.5388343334197998,0.0656040608882904,0.6154801845550537,0.565963089466095,-0.08208656311035156,-0.7785953283309937,-0.6601457595825195,-0.03770985081791878,-0.1458112746477127,0.033752866089344025,-0.6398571133613586,-0.39184245467185974,0.587060809135437,-0.8568119406700134,-0.763758659362793,-0.13975867629051208,-0.30177924036979675,0.45884743332862854,0.5390070676803589,0.12583161890506744,0.019196921959519386,0.226891428232193,0.8283373713493347,0.9122319221496582,0.6046659350395203,0.15790259838104248,-0.006839325651526451,-0.07308506220579147,0.4047670364379883,0.37830567359924316,0.2572815716266632,0.05393524840474129,0.616581916809082,0.0029817104805260897,-0.1386415660381317,-0.7045116424560547,0.25068238377571106,0.2509967088699341,0.5914319753646851,0.33701109886169434,-0.3111763000488281,-0.5134665369987488,-0.2667190432548523,0.12794780731201172,-0.6392350196838379,0.45499885082244873,-0.19371692836284637,0.26707723736763,0.6119071245193481,0.42412257194519043,0.2689414322376251,-0.20781919360160828,0.09086337685585022,0.5503193736076355,0.8032277822494507,0.205045685172081,0.3698997497558594,-0.221094012260437,0.5044869184494019,-0.27262118458747864,-0.09170345962047577,-0.22927391529083252,0.15993738174438477,0.09654873609542847,0.2600504159927368,-0.1678607165813446,0.21144047379493713,-0.23227426409721375,0.008050745353102684,0.4428741931915283,0.27968594431877136,-0.24021832644939423,0.07612980902194977,0.539852499961853,-0.5112061500549316,0.1887429803609848,0.12042102962732315,-0.12333136796951294,-0.013256960548460484,0.677639365196228,0.7841829061508179,0.034602727741003036,0.44947054982185364,0.09666619449853897,0.25526049733161926,0.4066452383995056,0.6356446743011475,0.5065490007400513,0.5424416661262512,0.00805589184165001,0.547558605670929,-0.01487671583890915,0.601977527141571,0.13058041036128998,0.3840027451515198,0.09779419749975204,0.292548269033432,0.06591280549764633,-0.0007304830942302942,0.13759414851665497,0.06707914173603058,0.21411743760108948,0.2780472934246063,0.2591533958911896,0.32849669456481934,-0.0811447724699974,0.253219336271286,0.5132640600204468,0.15781018137931824,0.19626407325267792,0.7883633375167847,0.580927848815918,0.6134584546089172,-0.0414898581802845,-0.5525950193405151,0.002299722284078598,0.2747964859008789,-0.08612635731697083,-0.5606898069381714,-1.0186821222305298,-0.7569765448570251,-0.17624714970588684,-0.4288962185382843,-0.2758995294570923,0.0405050627887249,0.14813722670078278,-0.6045549511909485,-0.03419634327292442,-0.3553621470928192,-0.21030089259147644,0.4965827763080597,0.8914544582366943,-0.2805648744106293,-0.6486536860466003,-0.7222838401794434,0.15898928046226501,0.15636451542377472,0.20802804827690125,-0.6370881199836731,-0.35124847292900085,0.4106961190700531,-0.8242846727371216,-0.41642630100250244,-0.27629661560058594,-0.6443560123443604]},{"shape":[32],"values":[0.27930113673210144,0.47817254066467285,0.2132846713066101,-0.07213011384010315,0.3845962584018707,0.5777895450592041,0.39155489206314087,0.4286949634552002,-0.07934575527906418,0.39742815494537354,-0.03331535682082176,0.43941929936408997,-0.059114500880241394,0.03175676241517067,0.13256332278251648,0.5757395029067993,0.054088298231363297,-0.19061392545700073,-0.058326855301856995,0.23504377901554108,0.295766144990921,0.4463326036930084,0.11169275641441345,-0.14698252081871033,-0.1548539251089096,0.47198694944381714,0.35069113969802856,-0.1278497278690338,0.31110140681266785,0.5115275382995605,0.37508875131607056,0.6335458755493164]},{"shape":[32,9],"values":[0.8390786647796631,0.7383930683135986,0.2888757884502411,0.6814686059951782,0.5162526369094849,0.26091015338897705,0.3501499891281128,0.36166077852249146,0.5373196601867676,0.6257516145706177,0.3977784216403961,0.9347167611122131,0.24019977450370789,0.5057922601699829,0.5029029846191406,0.607519268989563,0.3359524607658386,0.4561212956905365,0.3324785530567169,-0.2627871036529541,-0.023655405268073082,-0.0673549696803093,0.08127638697624207,-0.220833420753479,-0.2529325783252716,-0.820407509803772,-0.5087738633155823,-0.13589973747730255,-0.4274234175682068,0.03826677426695824,-0.07393927872180939,0.016170155256986618,-0.6256205439567566,0.2602098286151886,-0.11548291146755219,-0.4898160398006439,0.09027466177940369,0.5009576082229614,0.023369301110506058,0.5507357716560364,0.012529797852039337,0.18502695858478546,0.16607993841171265,0.5422028303146362,0.505887508392334,0.7056760191917419,0.21656708419322968,0.37811052799224854,0.4762219190597534,0.4689520299434662,0.9484732747077942,0.699885368347168,0.6148955225944519,0.5868741273880005,0.8054057359695435,0.8128760457038879,0.15882281959056854,0.6620902419090271,0.7773083448410034,0.7149645090103149,0.7883874177932739,0.4324660301208496,0.495393842458725,0.60843825340271,0.6499191522598267,0.20040689408779144,0.40342283248901367,0.5644875168800354,0.47071903944015503,0.6417250633239746,0.8284903764724731,0.22810716927051544,0.3354584872722626,0.08319162577390671,-0.32892629504203796,-0.06950237601995468,0.3213484585285187,0.12517549097537994,-0.03229425475001335,-0.2410449981689453,0.11193589866161346,0.19206085801124573,0.09696390479803085,-0.013318686746060848,0.24485480785369873,0.38675054907798767,0.35448649525642395,0.20707093179225922,0.6337454915046692,0.5348168611526489,0.16056770086288452,0.3498433828353882,-0.30978965759277344,-0.08495895564556122,-0.13486334681510925,0.3236727714538574,-0.2244376242160797,-0.3362791836261749,-0.046475108712911606,0.11385130137205124,0.38699862360954285,0.7098864912986755,0.4274638295173645,0.2203921377658844,0.5556937456130981,0.1889367699623108,0.5811027884483337,0.1500205248594284,-0.07375869154930115,-0.509378969669342,-0.7761333584785461,-0.3171740472316742,-0.6826220154762268,-0.36485013365745544,-0.2622489631175995,-0.7179852724075317,-0.5637539029121399,0.11305302381515503,-0.27974939346313477,0.15378865599632263,0.40056005120277405,-0.16204756498336792,-0.21124686300754547,-0.2877463698387146,0.1262272298336029,0.11098627746105194,0.22489820420742035,-0.24504826962947845,0.1433534175157547,0.10966772586107254,-0.3347192108631134,-0.5717038512229919,0.628815233707428,0.160085067152977,-0.11825785785913467,0.2509506344795227,0.6833970546722412,0.5853130221366882,0.4480765163898468,0.5381275415420532,0.28880757093429565,0.4959007501602173,0.4434402287006378,0.9012230634689331,0.17056740820407867,0.23954366147518158,0.1603071242570877,0.036699771881103516,0.22609563171863556,-0.02099725976586342,0.137751504778862,0.25800663232803345,-0.1686442792415619,-0.41584137082099915,-0.2473893016576767,-0.08185374736785889,0.027841903269290924,-0.33829519152641296,-0.4833233654499054,-0.3716270923614502,-0.11190386116504669,-0.7749225497245789,0.1381312608718872,-0.4075760543346405,-0.6741385459899902,-0.32886767387390137,-0.6168212890625,-0.6604913473129272,-0.16252529621124268,-0.5802180171012878,-0.7357532382011414,0.4736316502094269,0.31272372603416443,0.8373849391937256,0.24164417386054993,0.44611114263534546,0.8288416266441345,0.2676623463630676,0.279925137758255,0.6264932155609131,0.6357600688934326,0.7611004114151001,0.1274113804101944,0.5398513674736023,0.47035908699035645,-0.17296893894672394,0.9536532163619995,0.7456732988357544,-0.2859034240245819,0.022623879835009575,0.3951236605644226,0.7042026519775391,0.41341567039489746,0.6491425037384033,0.5658594369888306,0.6689363718032837,0.2775304317474365,0.5058536529541016,-0.4013522267341614,0.2074868232011795,0.523039698600769,0.02426765114068985,-0.11472219228744507,-0.138255313038826,-0.7193697690963745,0.172395721077919,-0.01208912581205368,-0.3733629882335663,0.33862555027008057,0.19566498696804047,-0.4567548632621765,-0.053078677505254745,-0.40509966015815735,-0.3532947599887848,-0.4101097881793976,-0.051061999052762985,-0.4544241428375244,-0.10772756487131119,-0.2638492286205292,-0.675571620464325,-0.1734706312417984,0.07365995645523071,-0.6000446081161499,-0.2643817961215973,-0.022670933976769447,0.4130142033100128,0.5199425220489502,0.32554975152015686,0.7658556699752808,0.5800723433494568,0.6632484793663025,0.7476590275764465,0.8474270105361938,0.9568418860435486,0.4156295657157898,0.11309487372636795,0.5256416201591492,0.1734963208436966,0.3349834978580475,0.5444734692573547,0.4432009756565094,0.4551648795604706,0.4662380814552307,-0.3731781244277954,-0.3186156749725342,-0.4943781793117523,-0.4976949393749237,-0.40501827001571655,-0.06572610884904861,-0.30869022011756897,-0.6093319654464722,-0.27499908208847046,0.7217366695404053,0.6659673452377319,0.6293286681175232,0.7481521964073181,0.4766094982624054,0.18333104252815247,0.2789768874645233,0.1902206838130951,0.3768449127674103,1.0550516843795776,0.8291181325912476,0.8048427104949951,0.9500543475151062,0.782384991645813,0.5141786932945251,0.723913311958313,0.9887439608573914,0.7882611155509949,0.24069468677043915,0.12753623723983765,0.12566755712032318,0.5289159417152405,0.552391529083252,0.49382129311561584,0.2683596909046173,0.46418601274490356,0.48108646273612976,0.7936151027679443,0.6818702220916748,0.7674610018730164,0.6539810299873352,0.5334827899932861,0.42972543835639954,0.5027881860733032,0.4774005711078644,0.562362790107727]},{"shape":[9],"values":[0.05433466285467148,0.20843015611171722,0.11075402051210403,0.18902990221977234,0.0925920382142067,0.03559710457921028,0.33537691831588745,0.32442256808280945,0.21438509225845337]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-73.json new file mode 100644 index 0000000..507153d --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/double-dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"double-dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T18:00:18.554Z","weights":[{"shape":[20,32],"values":[0.9264450669288635,0.27527573704719543,1.2297918796539307,0.43230822682380676,0.6985042095184326,0.8770681619644165,-0.1224837377667427,0.7602881193161011,-0.17945818603038788,-0.04388635605573654,-0.4085492193698883,-0.4720633924007416,0.9415498375892639,0.521451473236084,-0.09540212899446487,0.8709494471549988,-0.25307899713516235,0.25463783740997314,-0.4717966318130493,0.15965139865875244,1.0195605754852295,0.19034668803215027,0.976772665977478,-0.2640669345855713,-0.05404079705476761,0.7068336606025696,0.14850609004497528,0.41959643363952637,0.5324432253837585,1.0494714975357056,0.8379485011100769,1.1957188844680786,0.10150044411420822,-0.11745430529117584,0.25411465764045715,0.3289973735809326,-0.11906906962394714,0.19698229432106018,-0.0969700887799263,-0.03297535330057144,0.12731529772281647,-0.29206910729408264,-0.0647137463092804,0.17807167768478394,-0.15737877786159515,-0.002924149390310049,-0.010146613232791424,0.24151238799095154,-0.23744677007198334,0.006103077903389931,0.45792335271835327,-0.23215244710445404,-0.013188936747610569,-0.13296112418174744,0.08254573494195938,0.06631173193454742,-0.34050220251083374,-0.1669277399778366,-0.09288686513900757,0.030079666525125504,-0.18482547998428345,-0.28596529364585876,0.03244340047240257,0.030618321150541306,-0.5683023929595947,-0.2626395523548126,-0.3988445997238159,-0.38827839493751526,0.358511745929718,-0.2954826056957245,-0.4574786424636841,0.22499370574951172,0.20015312731266022,-0.4620427191257477,-0.4520461857318878,0.9340311884880066,0.15509916841983795,-0.4014574885368347,-0.7313165068626404,-0.19259335100650787,-0.4916312098503113,-0.5796629190444946,0.78924959897995,-0.009642960503697395,-0.22574608027935028,-0.5462596416473389,0.035438358783721924,0.48510196805000305,-0.019850298762321472,0.2848893702030182,-0.47051000595092773,0.3479209244251251,-0.11315903067588806,0.21538753807544708,0.09537903219461441,-0.06296870857477188,-0.16749541461467743,1.4792250394821167,-0.3151680827140808,1.0096521377563477,-0.16465283930301666,-0.10290011763572693,1.2014025449752808,-0.6349643468856812,-0.6590891480445862,1.4954841136932373,1.721682071685791,-1.1784449815750122,-0.5547767877578735,0.08950026333332062,1.3374958038330078,0.284467875957489,1.6739392280578613,1.788283109664917,-1.047613501548767,-0.6473836898803711,-0.05441732332110405,1.6364542245864868,-0.07603903114795685,-1.0071065425872803,1.1749849319458008,-0.744190514087677,1.2534626722335815,-0.9326608180999756,-0.3355174958705902,-0.4769350588321686,0.008642777800559998,-0.49770620465278625,-0.07152917236089706,-0.11044763773679733,-0.2641633152961731,-0.22217018902301788,0.45411428809165955,-0.18715231120586395,0.1423119157552719,0.22022239863872528,0.3214177191257477,0.2524217367172241,-0.21945111453533173,0.15519514679908752,0.3833008408546448,-0.39498427510261536,-0.05877062305808067,-0.28076037764549255,-0.21224337816238403,0.1042589545249939,0.260507732629776,0.17461323738098145,-0.09801451116800308,-0.2509123384952545,-0.49139323830604553,0.251191645860672,-0.0750620886683464,0.4390401542186737,-0.031575873494148254,0.3321640193462372,0.2359054535627365,0.4843524992465973,-0.37092113494873047,0.07896219938993454,-0.31107404828071594,0.16573698818683624,-0.36252933740615845,0.16231900453567505,0.05237851291894913,-0.30330610275268555,0.10620571672916412,0.5408719778060913,0.3694917559623718,0.19577938318252563,0.3044678270816803,-0.05709629878401756,0.1628439724445343,-0.10039472579956055,-0.09840479493141174,-0.20609450340270996,0.448217511177063,0.1720428764820099,-0.3487321436405182,-0.06655515730381012,0.3048829734325409,0.23559026420116425,0.0006093428237363696,-0.48306676745414734,0.2500000298023224,0.34483852982521057,0.15353748202323914,0.17752809822559357,0.25296586751937866,0.15644264221191406,-0.3413413166999817,0.2636340260505676,-0.07043302804231644,0.08953589200973511,-0.3309544324874878,0.14639912545681,0.2649892568588257,-0.4216359555721283,0.5829342603683472,0.30762162804603577,0.09125147759914398,0.402462899684906,0.38304153084754944,0.19761446118354797,-0.008270861580967903,-0.34570661187171936,0.21377108991146088,-0.35826575756073,0.23272138833999634,0.29467809200286865,-0.6831920146942139,-0.06964970380067825,-0.30620190501213074,0.5467384457588196,-0.029134470969438553,-0.11867349594831467,0.4984370172023773,0.2801671326160431,-0.10764972120523453,0.20789138972759247,0.08341260254383087,0.1957547962665558,-0.2669060230255127,0.03434615954756737,0.37915048003196716,0.21852411329746246,-0.2233172506093979,0.3215445876121521,0.27658677101135254,-0.11619120091199875,0.2307286262512207,0.14177900552749634,-0.24737845361232758,0.0014110519550740719,0.20049308240413666,-0.4353867173194885,0.4893867075443268,-0.0395636186003685,0.21826893091201782,-0.03453302010893822,0.4565122723579407,-0.1403481513261795,-0.35559919476509094,0.3435797691345215,0.1794404536485672,0.13474403321743011,0.1893935203552246,-0.6479573249816895,0.10031209886074066,0.1039295494556427,0.333562970161438,0.3683009445667267,-0.20169112086296082,0.3294963836669922,0.6202069520950317,-0.12694063782691956,-0.11856955289840698,-0.272205114364624,0.09878278523683548,-0.12384216487407684,-0.23204593360424042,-0.15938478708267212,0.26622337102890015,0.06617096811532974,0.3798193633556366,0.07226398587226868,-0.25878623127937317,0.03457217290997505,0.1234130784869194,-0.21320313215255737,0.11651580035686493,-0.3256247937679291,0.08748065680265427,0.1483946591615677,0.02173175849020481,-0.34018218517303467,-0.19817957282066345,0.09485369175672531,0.1984964907169342,0.005676592700183392,0.2757507264614105,-0.050743285566568375,0.05203782767057419,0.15502910315990448,0.8071041703224182,-0.10691112279891968,-0.4037546217441559,0.07475191354751587,-0.1791030466556549,0.22475847601890564,0.3960323929786682,-0.024622943252325058,0.39550501108169556,0.11398320645093918,0.005296712275594473,0.46699225902557373,-0.013962159864604473,-0.15388046205043793,-0.15560351312160492,-0.26806652545928955,0.07378906011581421,0.32354527711868286,-0.37677499651908875,-0.0580194890499115,0.02492176927626133,-0.06360550224781036,0.18381573259830475,0.28296729922294617,0.25485366582870483,0.17774465680122375,-0.17471516132354736,0.10998614877462387,-0.0617954358458519,0.01934903860092163,-0.4969964027404785,-0.13798217475414276,-0.17997042834758759,0.0013955365866422653,-0.09097243845462799,-0.07121327519416809,0.4094718396663666,0.16119198501110077,0.28914207220077515,-0.16716130077838898,0.34131839871406555,0.4779818058013916,0.2006153166294098,0.28342995047569275,-0.06002114340662956,0.16151942312717438,-0.3306472599506378,-0.24904553592205048,-0.0774303525686264,0.17596392333507538,-0.002195088192820549,0.1450132131576538,-0.20464667677879333,0.2831133306026459,-0.2760947048664093,0.28831028938293457,0.10962069034576416,-0.018208937719464302,-0.11250703781843185,-0.04975728318095207,-0.07822401821613312,0.13652200996875763,-0.022929338738322258,0.18516892194747925,0.5291817784309387,0.47456493973731995,0.3393162190914154,0.18487317860126495,-0.13537298142910004,-0.1762281358242035,0.110488660633564,-0.27326250076293945,0.24721086025238037,0.21351386606693268,0.27432799339294434,0.07927827537059784,0.08260374516248703,0.22481539845466614,0.17192836105823517,0.25689467787742615,-0.254405677318573,0.2808108329772949,0.17408844828605652,-0.10284541547298431,-0.06063160300254822,0.07423310726881027,-0.1813037246465683,0.16406267881393433,0.10302466154098511,0.12836532294750214,0.049302611500024796,0.26297345757484436,-0.2537919878959656,-0.08375494927167892,-0.23310217261314392,-0.18417614698410034,-0.19081346690654755,0.1551928073167801,-0.3647910952568054,-0.2744947373867035,-0.17337505519390106,0.025217099115252495,-0.11712350696325302,0.2204170823097229,-0.24079902470111847,-0.04474451392889023,-0.05465632677078247,0.043693169951438904,0.07167407125234604,-0.19793304800987244,0.0738651305437088,0.1455879956483841,-0.20308499038219452,0.2985426187515259,-0.10995802283287048,0.09281893819570541,-0.10049159079790115,-0.22674083709716797,0.05738639831542969,-0.06926483660936356,-0.17087103426456451,0.12866438925266266,0.2343520075082779,-0.13821355998516083,-0.29110413789749146,-0.39841228723526,0.046835195273160934,0.027476202696561813,0.2279384285211563,0.23973871767520905,-0.3569309413433075,0.26104217767715454,0.2278645932674408,0.2793809175491333,0.37666988372802734,0.10299881547689438,-0.07829268276691437,-0.016408646479249,0.190995454788208,-0.31097838282585144,0.013325459323823452,0.08629660308361053,0.08773151785135269,-0.28092700242996216,0.04968772828578949,0.09474434703588486,0.28037065267562866,0.3399912714958191,-0.2119087278842926,-0.08232297748327255,0.044783610850572586,-0.0430540107190609,0.3279217779636383,-0.3343275487422943,-0.15335746109485626,0.14979645609855652,-0.17933878302574158,0.28507113456726074,-0.4414161145687103,-0.6861856579780579,0.1839970350265503,0.0052003622986376286,-0.1817856878042221,0.0441734716296196,-0.03518088161945343,0.1225862056016922,0.07548101991415024,-0.20454877614974976,0.13529358804225922,0.05744669586420059,0.3377019464969635,-0.18509824573993683,0.26823607087135315,-0.03391079604625702,-0.2900364100933075,-0.11590658128261566,0.10744250565767288,-0.15683625638484955,0.27360445261001587,-0.11309832334518433,-0.2962862551212311,0.5439488887786865,-0.3194264769554138,-0.1463952362537384,0.011200993321835995,-0.5647246837615967,0.3085358738899231,0.25344666838645935,-0.1380167454481125,0.17562733590602875,0.05327686294913292,0.361375093460083,-0.04400934278964996,0.11460217833518982,0.06231426075100899,-0.2168481945991516,0.004605552647262812,0.021007787436246872,0.14579616487026215,0.2690751552581787,0.3030858039855957,-0.012273230589926243,-0.25432175397872925,-0.1794382482767105,-0.2914634048938751,-0.03353377431631088,-0.2164078801870346,0.41742387413978577,-0.042873889207839966,0.1341879665851593,-0.09458141028881073,-0.1895751804113388,-0.11445608735084534,-0.0425279401242733,0.05393872410058975,0.013728796504437923,0.24248020350933075,-0.2021665871143341,-0.036367591470479965,0.21909672021865845,0.24375180900096893,0.19108982384204865,0.2540735900402069,-0.030744075775146484,-0.03179097920656204,-0.05724197253584862,-0.014594393782317638,-0.2709990441799164,-0.0723305344581604,-0.05485674738883972,-0.07378404587507248,-0.16748541593551636,-0.16213232278823853,0.12515074014663696,-0.48922020196914673,-0.01736600510776043,0.041578080505132675,0.17151714861392975,0.45785170793533325,0.27586546540260315,0.07109897583723068,0.07795080542564392,-0.028359277173876762,-0.1596912145614624,0.2117614895105362,-0.16685354709625244,-0.043184105306863785,0.10198185592889786,-0.3402749300003052,0.05539307743310928,0.06911876052618027,-0.3645394742488861,0.17054496705532074,-0.17487776279449463,-0.38870275020599365,-0.16676568984985352,-0.12598197162151337,-0.1570073366165161,0.001144512090831995,-0.2585294246673584,-0.056124839931726456,-0.27330654859542847,0.2337547391653061,0.11909874528646469,0.29735782742500305,0.07866907119750977,0.3076666593551636,-0.05915067717432976,-0.17777739465236664,-0.2602517902851105,0.04944075271487236,0.14408789575099945,-0.29096075892448425,-0.03290468826889992,0.2552429437637329,0.11657098680734634,-0.2222769558429718,0.12111179530620575,-0.2368623912334442,0.14805330336093903,0.3064027726650238,0.2833262085914612,0.05762190371751785,-0.206529900431633,-0.14554408192634583,0.3121868073940277,-0.2514890134334564,-0.08103867620229721,-0.20513206720352173,0.311739444732666,-0.22694642841815948,-0.019405707716941833,-0.2317260056734085,-0.3651634156703949,-0.13820268213748932,-0.31851497292518616,-0.017103297635912895,-0.13563062250614166,0.3570181131362915,0.07180246710777283,-0.40715619921684265,-0.017330270260572433,-0.13655902445316315,-0.011016597039997578,-0.02661278285086155,-0.31216922402381897,0.5501285791397095,0.4550715386867523,-0.02864340879023075,0.23317278921604156,-0.11185036599636078,-0.16015079617500305,-0.34864458441734314,-0.425167441368103,-0.17802681028842926,0.06063888967037201,-0.03846919536590576,0.026537220925092697,0.17547351121902466,0.10324922204017639,-0.22121921181678772,-0.04449191689491272,0.29345908761024475,-0.010376259684562683,-0.013512050732970238,-0.10854985564947128,0.04366336017847061,-0.35166794061660767,-0.10579657554626465,-0.2705991268157959,-0.006195689085870981,-0.17835552990436554,0.019153635948896408,-0.18171897530555725,0.149148091673851,0.0844808891415596,0.030820263549685478,0.2292238175868988,-0.08420240879058838,-0.25244009494781494,0.036067746579647064,0.03744227811694145,-0.1910531371831894,-0.26922258734703064,-0.2960941791534424,-0.12946884334087372,-0.04546915367245674,0.3629189431667328,0.34442630410194397,0.019472526386380196,-0.27562984824180603,-0.08363258093595505,-0.4432845413684845,0.1598816066980362,0.2923608422279358,0.23521952331066132]},{"shape":[32],"values":[0.644752562046051,-0.4384055733680725,0.49137812852859497,-0.33509913086891174,0.503915548324585,0.5471792221069336,-0.25803861021995544,0.47218745946884155,0.16904044151306152,-0.40152406692504883,-0.32935860753059387,0.062437959015369415,0.506437361240387,0.3984607458114624,-0.3886489272117615,0.35461902618408203,-0.36722803115844727,-0.40227293968200684,-0.33909568190574646,0.18415258824825287,0.5940154194831848,-0.47997748851776123,0.3854033946990967,-0.054654575884342194,-0.1785466969013214,0.33724379539489746,-0.4262779653072357,0.43564969301223755,0.5131370425224304,0.346378892660141,0.3498576283454895,0.70529705286026]},{"shape":[32,32],"values":[0.4628916084766388,0.17126989364624023,0.08080769330263138,-0.03673744946718216,0.3290526866912842,0.31106239557266235,0.6990647912025452,0.016952721402049065,0.32094040513038635,0.5137838125228882,0.18147969245910645,0.5903934240341187,-0.22219760715961456,0.12131048738956451,-0.07721035182476044,0.15959832072257996,1.1404780149459839,0.385375440120697,0.17999888956546783,0.6509817838668823,0.12473056465387344,0.40049606561660767,0.5741122364997864,0.7695204019546509,0.7106374502182007,1.034837007522583,0.6526345610618591,0.7325614094734192,0.2580324113368988,0.23958425223827362,0.25656700134277344,0.3820796012878418,-0.25461545586586,-0.9968180656433105,0.4556316137313843,-0.8809564113616943,-0.8530925512313843,0.45527446269989014,0.00904246885329485,0.037142038345336914,0.5234474539756775,-0.23548118770122528,0.2254916876554489,-0.8453661799430847,-0.2160678505897522,-1.0759918689727783,0.18484821915626526,0.19059915840625763,-0.7081626653671265,0.24904410541057587,-0.2019966095685959,-1.0279330015182495,0.06866088509559631,0.6655322909355164,-1.0484222173690796,-0.5909181833267212,-0.459343820810318,-0.4992668330669403,-0.8029249906539917,-0.7716184258460999,-0.9262171387672424,0.22986218333244324,-1.023179054260254,-0.8991371393203735,0.3904096484184265,0.39798977971076965,0.045807935297489166,0.32814979553222656,0.6405218243598938,0.1868991255760193,-0.02062540501356125,-0.2573133111000061,-0.36849287152290344,-0.043241411447525024,0.07486095279455185,0.1087835356593132,0.23368529975414276,0.6977346539497375,-0.35313066840171814,0.28455519676208496,1.033024787902832,-0.24068096280097961,0.15799617767333984,0.6623440980911255,0.13707326352596283,-0.3200431764125824,0.5812074542045593,0.22634245455265045,0.34053805470466614,0.5529277324676514,0.7464901208877563,0.4017121493816376,0.5275614857673645,-0.09884621202945709,0.7168181538581848,0.15696290135383606,-0.5742366909980774,-0.5051265954971313,-0.13837923109531403,-0.2478027641773224,-0.5000511407852173,0.1956222802400589,0.4137270748615265,-0.029722845181822777,0.444938600063324,-0.02135835960507393,-0.06112097576260567,-0.20534665882587433,-0.06938052922487259,-0.6610153913497925,0.18594613671302795,0.2879931926727295,-0.08575613051652908,0.3996838927268982,-0.32400834560394287,-0.04050680622458458,0.2093777358531952,0.5439748764038086,-0.4751725196838379,-0.31866660714149475,-0.34873366355895996,-0.19636760652065277,-0.30464816093444824,-0.09850988537073135,-0.1312231719493866,-0.19104957580566406,-0.2596040666103363,-0.33352750539779663,0.5203955769538879,0.0026411088183522224,-0.21914298832416534,0.2828522026538849,0.42353925108909607,0.015426567755639553,0.07776916027069092,-0.19979706406593323,-0.07552385330200195,0.2566749155521393,-0.08596695214509964,0.09675975888967514,-0.30641451478004456,0.2523196041584015,0.215553879737854,-0.29403454065322876,0.1278182566165924,-0.11586380004882812,-0.3163799047470093,0.20742130279541016,0.17704641819000244,0.07374053448438644,0.34221795201301575,0.5697066187858582,0.6365483403205872,0.16322609782218933,0.429291307926178,0.011805134825408459,0.49627554416656494,-0.28025344014167786,0.3644116222858429,0.5265873074531555,0.5171212553977966,0.7414964437484741,-0.009494036436080933,0.4275141656398773,0.44003233313560486,-0.31875714659690857,0.2769812345504761,-0.13383643329143524,0.13154134154319763,0.28419017791748047,-0.26140472292900085,0.4730828106403351,-0.3151127099990845,0.46020734310150146,-0.3198164701461792,0.03768058493733406,0.9283294677734375,-0.23673726618289948,-0.20160110294818878,0.7789267897605896,-0.18172554671764374,0.36494988203048706,0.4854346513748169,0.3711051046848297,0.29687684774398804,0.4389314353466034,0.6297146081924438,0.6846373677253723,0.27083709836006165,-0.08788716793060303,0.462982177734375,0.5972329378128052,0.17147698998451233,-0.44388049840927124,0.057566553354263306,-0.2534942030906677,-0.40336722135543823,-0.07390028983354568,0.057477135211229324,-0.12759239971637726,0.08683924376964569,-0.3229691684246063,0.3255923092365265,-0.18817444145679474,-0.035649511963129044,-0.47679293155670166,0.1598091721534729,0.3209078907966614,-0.41100361943244934,0.28699037432670593,0.24832673370838165,-0.472007155418396,-0.2012355774641037,0.2944187521934509,-0.3899137079715729,0.10456444323062897,-0.01213484350591898,-0.462089478969574,-0.04835963994264603,-0.1878940314054489,0.06019686907529831,-0.13306042551994324,-0.44466686248779297,0.05540326237678528,0.6417098641395569,0.6177822947502136,-0.2659003436565399,0.3368762731552124,0.5923546552658081,-0.10488899797201157,0.5519393086433411,-0.22372065484523773,-0.06179233640432358,-0.22387878596782684,-0.4094862937927246,0.6606250405311584,-0.14831684529781342,0.15556120872497559,-0.23042188584804535,-0.44474664330482483,0.02481056936085224,-0.3463032841682434,0.25047340989112854,-0.013022171333432198,-0.18494205176830292,-0.12639807164669037,0.4753536283969879,0.21041074395179749,0.6532187461853027,0.12522536516189575,0.5012263655662537,-0.023696595802903175,0.5332163572311401,0.06962444633245468,0.666151762008667,0.4413064122200012,0.5390207767486572,0.5137214660644531,-0.19400683045387268,0.3442801535129547,0.20871295034885406,-0.032647259533405304,-0.024990759789943695,0.05468738079071045,-0.537231981754303,0.014573388732969761,-0.2889939546585083,0.4277745187282562,0.006667580455541611,-0.26992976665496826,-0.22037042677402496,0.13036666810512543,0.1380085051059723,-0.11781767755746841,-0.11339566856622696,0.2905178666114807,-0.09644824266433716,-0.0814107209444046,0.17683559656143188,0.5674552321434021,0.01877264864742756,0.17407171428203583,0.06060374528169632,0.09885261952877045,0.08966554701328278,-0.22749541699886322,0.5506798028945923,0.31758105754852295,-0.021949490532279015,-0.40004783868789673,0.0842905193567276,-0.43219372630119324,-0.34513452649116516,0.2994367480278015,0.03235562890768051,-0.08077050000429153,0.13009615242481232,-0.20766526460647583,0.09792030602693558,-0.1964254081249237,-0.2670486867427826,-0.7370262145996094,0.1740509420633316,-0.10004681348800659,-0.8908201456069946,0.43088269233703613,-0.026906851679086685,-0.609135627746582,0.3860023021697998,0.28765758872032166,-0.535382091999054,-0.5214405059814453,-0.1391192376613617,-0.7558826804161072,-0.5135893225669861,-0.5488545298576355,-0.24494841694831848,-0.19999058544635773,-0.4820486307144165,-0.5128617286682129,0.05560147762298584,-0.26880496740341187,0.13078154623508453,-0.4049311876296997,-0.7391275763511658,0.08324885368347168,-0.22415511310100555,-0.08010269701480865,0.1165018156170845,0.031036850064992905,0.02960367128252983,-0.43604663014411926,0.1864584982395172,-0.34278756380081177,0.45788779854774475,0.12366596609354019,-0.7987580299377441,0.521503746509552,-0.0843762680888176,-0.41289928555488586,0.3841523826122284,0.36230525374412537,-0.8674361705780029,-0.5860883593559265,-0.015167439356446266,-0.7444518804550171,-0.46283653378486633,-0.559985339641571,-0.6526390314102173,-0.07043179124593735,-0.4847145974636078,-0.5483151078224182,-0.2816396951675415,-0.637320339679718,0.14266744256019592,-0.1792829930782318,-0.8021790385246277,0.319092720746994,-1.18990957736969,-0.15843576192855835,-0.39300355315208435,-0.20108449459075928,-0.5096752047538757,-1.1032156944274902,0.4469870626926422,-0.3843475580215454,-0.13619007170200348,-0.07722846418619156,-0.42210736870765686,-0.7215592861175537,-0.18763472139835358,-0.5241082906723022,-0.04696045070886612,0.22054126858711243,-0.9471325874328613,-0.779979407787323,-0.6474800705909729,-0.7419012188911438,-0.982600748538971,-0.7425763607025146,-0.5419315695762634,-0.19601458311080933,-0.7155706286430359,-0.6360977292060852,0.4922506511211395,0.719692051410675,-0.7950071096420288,0.4963141977787018,0.5140846371650696,-0.1623866707086563,0.60246741771698,-0.25049012899398804,-0.0021323126275092363,0.20458419620990753,-0.07417146116495132,0.3428279459476471,0.17726042866706848,0.31200075149536133,-0.10659820586442947,0.26979732513427734,0.41290247440338135,-0.13420961797237396,-0.2866423428058624,0.38342204689979553,-0.20925527811050415,0.14483337104320526,0.5361214280128479,0.41366109251976013,0.6701697111129761,0.25218600034713745,0.1609761267900467,0.41749313473701477,0.37040531635284424,-0.11315370351076126,0.41808781027793884,0.6067091226577759,0.374826043844223,0.14853185415267944,0.11752218008041382,0.1600162535905838,0.5520959496498108,-0.2304682731628418,-0.3858921229839325,-0.059333208948373795,0.09903696179389954,-0.12174979597330093,-0.17227670550346375,0.28576186299324036,-0.24357733130455017,0.3989996612071991,-0.04187970608472824,-0.05622623488306999,0.6137990355491638,-0.150864839553833,-0.15379613637924194,0.8005315661430359,-0.06418564915657043,0.0054224333725869656,0.14706778526306152,0.45893701910972595,0.45286592841148376,0.5640413761138916,0.7906606197357178,0.1044398844242096,-0.07860337942838669,-0.2287871539592743,0.4868151545524597,0.3369136452674866,-0.6623310446739197,-0.9979458451271057,0.5171493291854858,-0.5257109999656677,-0.5047460198402405,0.4928421080112457,-0.5397230386734009,-0.006511173211038113,0.4799474775791168,-0.7058593034744263,0.44141989946365356,-0.6291734576225281,0.22480416297912598,-1.0879130363464355,0.6357309818267822,-0.032636962831020355,-0.5085614323616028,0.3959573805332184,0.18873654305934906,-0.5386672019958496,0.41493263840675354,0.5709633827209473,-0.952016294002533,-0.8739551305770874,-0.4344540238380432,-0.7669376730918884,-0.8510735034942627,-0.45058250427246094,-0.955405592918396,0.02240564674139023,-0.7376229166984558,-0.7914025783538818,0.637356162071228,0.2095360904932022,0.17022885382175446,0.2235141396522522,0.630588948726654,0.1999378353357315,-0.0011775565799325705,-0.09753675013780594,-0.2032618224620819,0.0809348076581955,0.07517316937446594,-0.15523502230644226,0.16711007058620453,0.09286688268184662,-0.11634331196546555,0.08236876875162125,0.42915573716163635,-0.06478117406368256,-0.041943930089473724,0.3836815357208252,0.15354889631271362,-0.17019078135490417,0.8473172187805176,0.3794838786125183,0.33334481716156006,0.28611108660697937,0.18045267462730408,0.3122187554836273,0.3474067747592926,-0.3012212812900543,0.6010943651199341,0.22217249870300293,-0.05385667458176613,-0.45383965969085693,0.24929501116275787,0.07128971070051193,-0.4935747981071472,0.23014618456363678,-0.0093617495149374,0.07544112205505371,-0.15943147242069244,-0.4820924699306488,0.37252378463745117,-0.476214200258255,-0.10465162247419357,-0.25993213057518005,0.5209779739379883,0.41057145595550537,-0.771234929561615,0.4088892638683319,0.04086500406265259,-0.8071727752685547,0.04020247980952263,-0.02414807118475437,-0.6232173442840576,-0.5720400810241699,-0.3185761570930481,-0.8705905079841614,-0.9145907163619995,-0.31707823276519775,-0.5822494029998779,0.2980223596096039,-0.8710776567459106,-0.5824702978134155,-0.3087504506111145,-0.6473480463027954,0.006848117336630821,-0.6063921451568604,-0.7757188081741333,0.19413058459758759,-0.031313441693782806,-0.06865598261356354,0.5545067191123962,-0.2798854112625122,0.6082067489624023,-0.4184500277042389,-0.4996795952320099,-0.5135612487792969,0.49715012311935425,0.49545159935951233,-0.7369100451469421,0.33614563941955566,-0.30148187279701233,-0.2237558364868164,0.03289775922894478,0.3603595793247223,-1.014535665512085,-0.3233714699745178,-0.4416431188583374,-0.5861064791679382,-0.42582350969314575,-0.5520754456520081,-0.7289724349975586,-0.18547919392585754,-0.7095410227775574,-0.5529253482818604,-0.9126219749450684,-0.9448062777519226,0.39582109451293945,-0.22614315152168274,-0.6779695749282837,0.598971962928772,-0.3837093710899353,-0.0036977205891162157,-0.2957601845264435,-0.25986915826797485,-0.228736013174057,-0.5576117634773254,0.3387655019760132,-0.12926001846790314,-0.4710666835308075,0.30557361245155334,-0.6901403069496155,-0.1483258455991745,0.1257506012916565,-0.7123190760612488,-0.2317289263010025,0.7222998738288879,-0.4074523150920868,-0.5746127963066101,-0.8113996982574463,-0.4550063908100128,-0.8524529933929443,-0.5423852801322937,-0.5235734581947327,0.053630344569683075,-0.8604028820991516,-0.9572659730911255,0.5186775922775269,0.16570764780044556,-0.34933266043663025,0.2052617222070694,0.2857779264450073,-0.22026483714580536,0.3407246172428131,-0.1741623431444168,-0.21964310109615326,0.43186521530151367,-0.49088868498802185,0.5623840689659119,0.1570156216621399,0.20732930302619934,-0.5326504111289978,0.09261021763086319,0.13929374516010284,-0.0825500562787056,0.10201974213123322,0.30610373616218567,-0.21213789284229279,-0.10054327547550201,0.1473558396100998,0.6027863025665283,0.4855126142501831,-0.09936212003231049,0.04011871665716171,0.20741711556911469,0.08083746582269669,0.29890552163124084,0.3813539445400238,0.38049590587615967,0.39310795068740845,0.32397228479385376,-0.06617391109466553,0.3014107644557953,0.5501798987388611,0.01033177599310875,0.6196460723876953,0.04245242103934288,-0.1266438066959381,-0.11286459118127823,0.006596647668629885,0.5877528786659241,-0.17018993198871613,0.6246803998947144,0.11650429666042328,-0.06654775142669678,0.5358171463012695,0.2451944202184677,0.031231438741087914,0.9787129163742065,-0.09684162586927414,0.07441326230764389,0.39729052782058716,0.7770757079124451,0.6248547434806824,0.5350849628448486,0.9152229428291321,0.3415924608707428,0.2685982882976532,-0.05526081472635269,0.5353260040283203,0.2074105590581894,-0.3854479491710663,-0.5267267823219299,0.19096286594867706,-0.305695116519928,-0.6797496676445007,0.3650239109992981,0.09691314399242401,-0.013725410215556622,0.3489925265312195,-0.21487268805503845,0.37939023971557617,-0.5355895757675171,-0.09627386927604675,-0.2806568145751953,0.4257604479789734,-0.020947111770510674,-0.6899642944335938,0.444957971572876,0.08320210129022598,-0.4713921546936035,0.40299803018569946,0.4933322072029114,-0.7634392380714417,-0.8004034757614136,-0.21431773900985718,-0.5697386860847473,-0.7310569882392883,-0.7967976927757263,-0.7578186392784119,-0.008192608132958412,-0.6092614531517029,-0.6632922887802124,0.5382970571517944,0.539219081401825,-0.2636035084724426,0.010029825381934643,0.16707654297351837,0.007217222824692726,-0.11517951637506485,-0.03823733702301979,0.24796272814273834,0.2489101141691208,0.25072652101516724,-0.054589711129665375,0.19191357493400574,0.246375173330307,0.16030354797840118,0.17655548453330994,0.6123063564300537,0.20022675395011902,-0.1693374514579773,0.3749266564846039,0.2520748972892761,0.27177876234054565,0.32457998394966125,0.33591634035110474,0.29715368151664734,0.6509076356887817,0.6906054019927979,-0.09179992973804474,0.1414002925157547,0.19124427437782288,0.5474017858505249,0.18176361918449402,-0.4563332796096802,-0.3009026050567627,0.28629618883132935,-0.34400612115859985,-0.4436211585998535,0.49701863527297974,-0.7602131366729736,0.09614767879247665,-0.15945477783679962,0.07032483071088791,0.4657869040966034,-0.3756662905216217,-0.04955022782087326,-0.017762821167707443,-0.27987322211265564,0.464266836643219,-0.4635729491710663,0.44886085391044617,-0.35725706815719604,-0.302998811006546,-0.37205347418785095,0.47892501950263977,-0.7710493206977844,-0.674062967300415,-0.5941365957260132,-0.2487422376871109,-0.2776830792427063,-0.555479109287262,-0.309458464384079,0.33310389518737793,-0.6279813051223755,-0.5996774435043335,0.2593177556991577,-0.5219768285751343,0.2265361100435257,-0.047330092638731,-0.22142262756824493,-0.006440500263124704,0.006904267705976963,0.12017405778169632,0.3322954773902893,-0.004713341593742371,0.3818376958370209,0.18897512555122375,-0.3047321140766144,-0.5910122394561768,0.4686185121536255,0.1439265012741089,-0.7684001326560974,-0.06432885676622391,-0.09877795726060867,-0.4439046084880829,0.09358260035514832,-0.16443297266960144,-0.5544418096542358,-0.3407823145389557,-0.2139086127281189,-0.6466014385223389,-0.5799815654754639,-0.17971186339855194,-0.1738005429506302,-0.23337435722351074,-0.2190120965242386,-0.34311944246292114,0.169155091047287,0.20983971655368805,0.08839385956525803,0.11923254281282425,0.1295018345117569,0.12428627908229828,0.5888170003890991,0.1738538295030594,-0.26115304231643677,0.1458967626094818,-0.11444710940122604,0.6182526350021362,-0.15423902869224548,0.42941761016845703,-0.07373858243227005,-0.20738115906715393,0.13079054653644562,-0.028513915836811066,-0.08974037319421768,-0.07155726850032806,0.28011807799339294,-0.2804626226425171,0.21949727833271027,0.29191866517066956,0.7334412932395935,-0.03202994912862778,0.20540080964565277,0.1568189561367035,0.36378976702690125,-0.2936672866344452,0.4959375560283661,0.37426257133483887,-0.3579152226448059,-0.512347400188446,-0.06059771776199341,-0.2334500402212143,-0.32348936796188354,0.1671636700630188,-0.2264145165681839,0.13950954377651215,0.42037028074264526,-0.21808569133281708,0.36502212285995483,-0.42549440264701843,-0.11221086978912354,-0.8878746628761292,0.18148173391819,0.40624746680259705,-0.22839979827404022,0.3876887261867523,-0.3163922429084778,-0.6235865354537964,-0.16620738804340363,0.3932061791419983,-0.37117767333984375,-0.41748717427253723,-0.07380930334329605,0.02711755409836769,-0.4700138568878174,0.0568658746778965,-0.47738781571388245,0.2761420011520386,-0.8343688249588013,-0.5302873849868774,0.1285971701145172,0.5220809578895569,-0.22342367470264435,0.42472222447395325,0.31225958466529846,-0.04980340972542763,0.4302251935005188,-0.11234994232654572,0.03366171196103096,0.2136789709329605,-0.07140100747346878,0.4182320535182953,0.3396001160144806,0.17788971960544586,-0.05542190745472908,-0.2004174292087555,0.1730632781982422,0.18223100900650024,-0.1746916025876999,0.4765623211860657,-0.1568811684846878,-0.35433638095855713,0.4694920778274536,0.24928966164588928,0.4573182761669159,0.24125395715236664,0.5802101492881775,0.6640528440475464,0.2616020739078522,-0.1672421246767044,0.20985954999923706,0.6280588507652283,0.8273031115531921,0.3451937735080719,-0.08978879451751709,0.3231448233127594,0.3142082393169403,0.10674823820590973,0.6479107141494751,-0.1978079229593277,0.12694743275642395,0.5845503211021423,-0.030152752995491028,0.3329169452190399,-0.24593114852905273,0.09993595629930496,-0.02107556164264679,0.1638980209827423,0.5130419135093689,-0.39455217123031616,-0.1299305558204651,0.7005060911178589,-0.18258348107337952,-0.30647143721580505,0.6880755424499512,0.5487444996833801,0.6972261667251587,0.20184652507305145,0.563795804977417,0.28929388523101807,0.47467970848083496,0.04391970857977867,0.3660958707332611,0.4310802221298218,0.36151283979415894,0.3894486427307129,-0.027657929807901382,-0.1965390294790268,0.05321558192372322,-0.10306341201066971,0.3110986351966858,-0.21578191220760345,0.22759880125522614,0.3275119662284851,0.3289174735546112,0.7571841478347778,-0.07927961647510529,0.4354037046432495,-0.03653154894709587,-0.16638939082622528,0.22498148679733276,-0.18037250638008118,-0.16750729084014893,0.042367130517959595,0.05836442485451698,-0.01769213005900383,-0.024865956977009773,0.5103821158409119,0.3066829741001129,0.31195303797721863,0.0447862483561039,0.10055262595415115,0.42458221316337585,0.171744242310524,0.6522882580757141,0.5087366104125977,0.5719871520996094,0.4148118793964386,0.08559465408325195,0.30729347467422485,0.43713971972465515,0.1389128714799881,0.475198358297348,-0.09541801363229752,0.018408944830298424,0.22564874589443207,0.022680552676320076,0.11030521243810654,0.4806714355945587,-0.06963568180799484,0.15154580771923065,0.3842930495738983,0.7556707859039307,-0.01259730476886034,-0.01870780996978283,0.6545526385307312,0.10400423407554626,0.06638464331626892,0.5944176316261292,0.4925151467323303,0.6863902807235718,0.5062796473503113,0.3211441934108734,0.6311190128326416,0.3981154263019562,0.09877528995275497,0.46305373311042786,0.36689692735671997,0.6835610866546631,0.5920574069023132,-0.10205379873514175,0.08237122744321823,0.7008622884750366,-0.3436282277107239,0.6025557518005371,-0.112040214240551,-0.39437398314476013,0.4392693340778351,-0.2265324890613556,0.4894862473011017,0.16723494231700897,0.14660975337028503,-0.17312923073768616,0.040838636457920074,0.3607567250728607,-0.40090471506118774,-0.11415593326091766,0.31920361518859863,-0.035936612635850906,-0.22399303317070007,0.7920690774917603,0.5696739554405212,0.611419677734375,0.15189340710639954,0.6179484128952026,0.42433375120162964,0.3702743947505951,-0.1956060826778412,0.8433330059051514,0.7177333831787109]},{"shape":[32],"values":[0.6119678616523743,0.4649655222892761,0.1437448114156723,0.3304522931575775,0.5011929273605347,-0.31318360567092896,0.3623638451099396,0,-0.30429115891456604,0.2288954257965088,-0.16764497756958008,0.32620206475257874,-0.11331284791231155,0.28715577721595764,-0.09257161617279053,-0.20345842838287354,0.5419352054595947,-0.18654009699821472,-0.08178345859050751,0.5198256373405457,-0.3324010372161865,-0.10159730911254883,0.44694724678993225,0.5623053312301636,0.5750042200088501,0.4839630126953125,0.6260335445404053,0.4021604359149933,0.40615522861480713,-0.0070341480895876884,0.5245862007141113,0.41396358609199524]},{"shape":[32,9],"values":[0.560139000415802,0.3073369562625885,0.4468461275100708,0.31957241892814636,0.591524600982666,0.22672127187252045,0.6956366896629333,0.4461895525455475,0.33038192987442017,0.34614214301109314,0.5328860282897949,0.6190961599349976,0.32049283385276794,0.7236923575401306,0.8795104622840881,0.897631824016571,0.8829638957977295,0.5146151185035706,0.21250024437904358,0.3247449994087219,0.21754354238510132,-0.16529862582683563,-0.024107828736305237,0.14523345232009888,-0.6714376211166382,0.1158047690987587,0.37681564688682556,0.17383208870887756,0.3103479743003845,0.65520840883255,0.5524395704269409,0.04728098586201668,0.28335389494895935,0.6602109670639038,0.3212108910083771,0.3323008716106415,0.7447909712791443,0.26691654324531555,0.6809647083282471,0.7997543811798096,0.9363221526145935,0.25103700160980225,0.722061812877655,0.4855865240097046,0.5713135004043579,-0.4192655384540558,-0.19381891191005707,-0.26405325531959534,-0.3268115520477295,-0.14703212678432465,0.1565350890159607,-0.07699933648109436,-0.5636463761329651,-0.4464101791381836,-0.020010052248835564,0.2958206534385681,0.5823010206222534,0.16933885216712952,0.6404239535331726,0.681178867816925,-0.09453541785478592,0.5300664901733398,0.8228939771652222,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11838390678167343,-0.07355088740587234,0.10456845909357071,-0.5819902420043945,-0.5438615679740906,0.1314142644405365,0.13263417780399323,-0.3951662480831146,-0.40294313430786133,-0.17902222275733948,-0.36888623237609863,-0.35485753417015076,0.5031952857971191,0.2889584004878998,0.4438484311103821,0.308965802192688,0.29934388399124146,0.005688290111720562,0.18578392267227173,0.037346139550209045,0.6508100032806396,0.1947624534368515,0.13286592066287994,-0.19769561290740967,0.2781544625759125,-0.3171462416648865,-0.3815067410469055,0.1288752555847168,-0.5907872915267944,-0.6776719093322754,0.14363013207912445,0.5006165504455566,0.8767367005348206,0.5332015752792358,0.26660239696502686,0.99476158618927,0.34782105684280396,0.516947865486145,0.9064565300941467,0.000053121962992008775,-0.15181522071361542,-0.6998817324638367,-0.3771597743034363,-0.5098366141319275,-0.45618075132369995,-0.3990567922592163,0.0017931656911969185,-0.45877641439437866,0.8640212416648865,0.7662310600280762,0.5337501168251038,0.41073039174079895,0.4626699388027191,0.15003110468387604,0.1170969307422638,0.46481040120124817,-0.14862078428268433,0.3482346534729004,-0.42082837224006653,-0.33189475536346436,-0.050274066627025604,-0.17251011729240417,-0.6617448329925537,0.5312056541442871,0.0029167868196964264,-0.6255380511283875,-0.2814396917819977,-0.6112197041511536,-0.4512748122215271,0.250304639339447,-0.19637128710746765,-0.19428151845932007,0.14953716099262238,-0.42609158158302307,-0.26812347769737244,1.0269663333892822,0.9987826943397522,0.5585336685180664,1.012750506401062,0.8588477373123169,0.6251031160354614,0.9989414811134338,0.7265421152114868,0.7039093971252441,0.0967101901769638,-0.11233601719141006,-0.33749905228614807,-0.43897736072540283,-0.14397728443145752,-0.48371583223342896,0.16482152044773102,-0.17519667744636536,-0.8840141296386719,0.23671706020832062,0.14387786388397217,-0.2102152407169342,0.18613260984420776,-0.11992207169532776,-0.035799767822027206,0.03661050274968147,0.004582391120493412,-0.18873059749603271,0.9641724228858948,0.8882234692573547,0.6910622715950012,0.8647385239601135,0.47795242071151733,0.6594483256340027,0.7951699495315552,0.7634930610656738,0.8071099519729614,-0.0012287748977541924,0.3187166154384613,0.21361064910888672,0.03926260396838188,-0.011321796104311943,0.17944958806037903,-0.5387142896652222,-0.4326223134994507,-0.42848140001296997,-0.7098643183708191,-0.6400365829467773,-0.12478216737508774,-0.5861298441886902,-0.34034106135368347,-0.35230764746665955,-0.43653297424316406,-0.4841405749320984,-0.0737433061003685,0.753574013710022,0.5155075788497925,0.40350812673568726,0.6932596564292908,0.6656957864761353,0.564843475818634,0.9170158505439758,0.8075801730155945,0.4043184220790863,0.3219544589519501,0.9484541416168213,0.6231099963188171,0.580267608165741,0.8488485217094421,0.9041892290115356,0.5795620679855347,0.9035905599594116,0.9982291460037231,0.8343170881271362,0.806322455406189,0.5772098898887634,0.8675779700279236,0.45071977376937866,0.9116721153259277,0.22665774822235107,0.4955415427684784,0.8413411378860474,0.4864792227745056,0.613811731338501,0.5097532868385315,0.756628155708313,0.7000181078910828,0.45138946175575256,0.8798661231994629,1.0004687309265137,0.44015997648239136,0.5092748999595642,0.7558961510658264,0.6900940537452698,0.6405553817749023,0.9350753426551819,0.8767826557159424,1.0512032508850098,0.6654852032661438,0.8316090106964111,0.5344766974449158,0.4868054986000061,0.20321202278137207,0.6319750547409058,0.6347526907920837,0.7699386477470398,0.34454628825187683,0.6565690636634827,0.8834746479988098,0.1274411529302597,0.7039008736610413,0.7381627559661865,0.5170093774795532,0.4409555196762085,0.4384024739265442,0.7358121275901794,0.7316067814826965,0.6300420761108398,-0.09759961813688278,-0.14697571098804474,-0.20766513049602509,-0.1344100832939148,0.08968733251094818,0.027863463386893272,-0.42952004075050354,0.27240148186683655,0.151370108127594,0.8845226168632507,0.4350808262825012,0.7353404760360718,0.760261595249176,0.635992705821991,0.9506782293319702,0.6735655069351196,0.7310154438018799,0.5626679062843323,0.6980551481246948,0.401557594537735,0.72088223695755,0.2676457464694977,0.6073365211486816,0.4718724191188812,0.2909843325614929,0.5310699343681335,0.7847510576248169]},{"shape":[9],"values":[0.31068918108940125,0.01922178454697132,0.18057765066623688,0.17712654173374176,0.09527882933616638,0.1878153681755066,0.21694515645503998,0.3462110459804535,0.35861697793006897]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-101.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-101.json new file mode 100644 index 0000000..d9f4bcd --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-101.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":101,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:57:44.922Z","weights":[{"shape":[20,32],"values":[1.3238204717636108,-0.20206274092197418,0.24477437138557434,0.9820855855941772,0.46447136998176575,1.1662566661834717,1.1588354110717773,0.07437524944543839,0.0024846133310347795,0.9157300591468811,0.04358932003378868,0.23746071755886078,0.7501375079154968,0.8408046960830688,0.5424575209617615,-0.20715011656284332,0.27567556500434875,-0.20700761675834656,0.10374850034713745,0.6475643515586853,0.6309140920639038,-0.025372358039021492,0.0280362069606781,0.2598208785057068,0.8039484024047852,-0.02226637676358223,0.16359949111938477,0.7704382538795471,1.291998028755188,0.20621393620967865,0.06698083877563477,0.27250391244888306,-0.14426840841770172,0.003569382941350341,-0.18418912589550018,0.13102461397647858,-0.003567401086911559,0.2078227400779724,-0.19724369049072266,-0.23217982053756714,-0.21353460848331451,0.15781784057617188,-0.07121842354536057,0.11184358596801758,-0.33391425013542175,-0.04260749742388725,0.11146226525306702,-0.07898230850696564,-0.02924266830086708,-0.014994673430919647,0.07433256506919861,-0.13851690292358398,-0.40475308895111084,0.12219733744859695,-0.0470963716506958,0.032434966415166855,0.009695645421743393,0.14620238542556763,-0.11876404285430908,-0.03150321543216705,0.20046383142471313,0.03317292034626007,-0.1462932974100113,0.3753150999546051,0.05917069688439369,-0.511908769607544,-0.370028018951416,-0.011289910413324833,-0.303716778755188,-0.12650637328624725,0.1378197968006134,-0.34179049730300903,-0.18757866322994232,0.2776169180870056,0.29596588015556335,0.7508004903793335,0.015478981658816338,0.06619925051927567,-0.45156973600387573,-0.5019000768661499,0.24167102575302124,-0.44550734758377075,0.5026465058326721,0.2907232940196991,0.011610398069024086,0.8455241322517395,-0.5095932483673096,0.6491169333457947,-0.49157050251960754,0.6432022452354431,-0.42658141255378723,0.04136267676949501,-0.22331230342388153,0.06580623239278793,-0.3237625062465668,0.21640180051326752,-0.452637255191803,1.1304349899291992,1.3622092008590698,-0.4236955940723419,0.0712132379412651,0.19918251037597656,-0.7018053531646729,1.3903871774673462,0.8946834802627563,-0.8254225254058838,-0.47215133905410767,-0.46602576971054077,-0.4478786885738373,-0.6026235818862915,-0.30175313353538513,1.13548743724823,-0.6928918361663818,-0.4088062047958374,-0.19643129408359528,-0.29788556694984436,-0.37293457984924316,-0.9365675449371338,1.4009175300598145,-0.9120855331420898,0.2562500834465027,-0.899675190448761,1.3435286283493042,-0.11327904462814331,-0.03398218750953674,-0.5724171996116638,1.2458356618881226,-0.7375630736351013,0.2922578752040863,-0.06250336766242981,-0.012124186381697655,0.11678225547075272,0.5269792079925537,0.021471286192536354,0.26560544967651367,-0.047607481479644775,0.2948887050151825,-0.044522903859615326,0.1483839750289917,-0.20316287875175476,-0.022199545055627823,0.31955429911613464,-0.029140355065464973,0.2112904191017151,-0.012898536399006844,0.17428812384605408,0.2555847764015198,0.3543746769428253,0.0807659700512886,-0.11705586314201355,-0.2051486223936081,0.26022255420684814,0.26764222979545593,-0.004963625688105822,0.3023456931114197,0.2309710532426834,-0.1670471429824829,0.21341004967689514,0.11072594672441483,-0.12787236273288727,-0.007943183183670044,0.4361005127429962,0.4330286681652069,0.17429490387439728,0.06342002004384995,-0.07418417185544968,0.35660266876220703,0.5083800554275513,0.02767731249332428,-0.4262116253376007,0.09522279351949692,0.25213348865509033,-0.12092810869216919,-0.13229280710220337,-0.1862555742263794,-0.011465172283351421,-0.4290565252304077,-0.12497474253177643,-0.08900556713342667,0.4424094259738922,-0.08127222955226898,-0.1561802327632904,0.4356228709220886,-0.120089590549469,-0.277429461479187,-0.5817232728004456,0.4480814039707184,-0.3264313340187073,-0.25194045901298523,0.1500294953584671,0.43869614601135254,-0.25778451561927795,0.3117017149925232,0.03296643868088722,-0.012476978823542595,0.024505674839019775,-0.586642861366272,-0.3908804953098297,0.045557670295238495,0.32192665338516235,0.581691563129425,0.28183847665786743,-0.2798280417919159,0.15650279819965363,0.3356165587902069,-0.06858043372631073,-0.3408195674419403,0.48590272665023804,-0.48631972074508667,-0.2619163691997528,0.3334980905056,-0.11522090435028076,0.18872644007205963,-0.20424801111221313,0.5769129991531372,0.15992729365825653,-0.4563533365726471,-0.21815350651741028,0.04722602292895317,-0.12352347373962402,-0.442535400390625,0.31869691610336304,0.07913431525230408,-0.10112348198890686,0.10919605195522308,0.29075944423675537,0.3619484305381775,-0.02646675892174244,-0.5032373070716858,-0.48761555552482605,0.2781483829021454,0.06748193502426147,0.2550564110279083,0.4467405378818512,0.42915570735931396,0.26282328367233276,0.4450988173484802,0.5482116937637329,-0.3986893594264984,0.0428842157125473,-0.2378462255001068,0.2120128720998764,0.28610190749168396,0.320919930934906,0.536205530166626,-0.5792048573493958,-0.05160586163401604,0.42258477210998535,-0.2841704785823822,-0.39402472972869873,0.09408218413591385,0.3265855014324188,-0.24316932260990143,0.0631318911910057,0.40453070402145386,-0.3098001480102539,-0.4024859666824341,-0.08330867439508438,-0.04667401686310768,-0.5125139951705933,0.1748620569705963,-0.03193376958370209,0.04788820818066597,0.18589307367801666,0.2088552564382553,0.2599201500415802,0.16012820601463318,0.30079206824302673,0.023673923686146736,0.24352850019931793,0.1253892034292221,-0.020099086686968803,0.2798260450363159,0.21763625741004944,0.17070816457271576,0.10630258172750473,0.0026297171134501696,-0.11780904233455658,-0.04643434286117554,-0.323329895734787,0.36124950647354126,-0.03205587714910507,0.16381925344467163,0.373527467250824,-0.00202737282961607,0.5321051478385925,-0.16649889945983887,0.13956612348556519,0.3603794574737549,-0.14760345220565796,0.17666789889335632,-0.10496625304222107,-0.5301851034164429,0.10349573940038681,0.023985758423805237,0.09926670789718628,0.2836516797542572,-0.11588836461305618,-0.3489481508731842,0.23224619030952454,0.11140245944261551,0.033762603998184204,-0.060255296528339386,-0.11824935674667358,0.25032010674476624,-0.17132006585597992,-0.3649386465549469,0.252334326505661,-0.09913215041160583,0.39200732111930847,-0.10947049409151077,0.1173969954252243,0.05574748292565346,0.2639475464820862,-0.12739835679531097,0.2827247381210327,0.3104756474494934,-0.46504122018814087,0.08735384792089462,-0.15401868522167206,0.13444946706295013,-0.31567060947418213,-0.28964871168136597,0.07042720168828964,-0.048163920640945435,0.06696528196334839,-0.1313750147819519,0.011648230254650116,0.10644657164812088,-0.26420238614082336,0.008136903867125511,0.08283969759941101,-0.22912515699863434,-0.21594516932964325,-0.22175143659114838,-0.5012193322181702,-0.08784867823123932,0.05495389550924301,0.18231414258480072,-0.011731032282114029,0.19513745605945587,0.22003528475761414,-0.37853169441223145,0.15523485839366913,0.16718438267707825,0.1953737586736679,-0.39328378438949585,0.45999675989151,-0.006942508742213249,0.24146892130374908,-0.3103790879249573,-0.3762483298778534,-0.14138568937778473,0.09576798975467682,-0.1996314823627472,-0.18443267047405243,-0.46088266372680664,0.24084509909152985,-0.13939866423606873,-0.13429448008537292,0.052688270807266235,0.11123931407928467,0.01705401949584484,0.09770059585571289,-0.06475535780191422,0.14617103338241577,0.1900733858346939,0.30142760276794434,0.11009002476930618,0.1444457769393921,-0.3300408124923706,0.19857771694660187,0.03379145637154579,0.19716677069664001,-0.10702066123485565,-0.09924355149269104,-0.18439088761806488,-0.32631680369377136,-0.08951342850923538,-0.09209565818309784,0.09104033559560776,-0.37845003604888916,-0.18358126282691956,0.23450766503810883,0.08164200186729431,0.05000924691557884,-0.15800364315509796,-0.3144252300262451,-0.15608622133731842,0.11075805872678757,-0.09821118414402008,-0.056961819529533386,-0.0638723149895668,-0.24891728162765503,0.3087269067764282,-0.11284540593624115,-0.0777650699019432,0.19166357815265656,-0.06654839962720871,-0.06186596676707268,-0.19985347986221313,0.1569506824016571,0.09862581640481949,-0.19692794978618622,-0.15127436816692352,-0.015151961706578732,-0.1452159434556961,0.11720975488424301,-0.03420849144458771,-0.06174391135573387,-0.027908246964216232,0.31071802973747253,0.2297130674123764,0.026473211124539375,0.13993129134178162,-0.09761620312929153,0.2100055068731308,0.268036425113678,0.021070057526230812,-0.24224750697612762,0.008480885066092014,-0.17691294848918915,0.2100711613893509,0.03764734044671059,0.13290011882781982,-0.2539522051811218,0.2516442537307739,0.06991371512413025,0.06108737364411354,-0.20725136995315552,0.028733709827065468,-0.030548399314284325,-0.055321648716926575,0.19216388463974,-0.08542703837156296,-0.17446647584438324,0.2774829566478729,-0.15722884237766266,-0.19901005923748016,0.23668107390403748,0.09584648162126541,0.2977210581302643,0.2567026913166046,0.068804070353508,0.24788887798786163,-0.2791895568370819,0.01521753054112196,-0.2648845613002777,-0.2834196984767914,0.006491874810308218,-0.4059547483921051,0.23661914467811584,0.3609670400619507,-0.29907041788101196,0.09822831302881241,-0.038802504539489746,0.013479934073984623,-0.1941186636686325,-0.3105420768260956,0.10580650717020035,-0.012770986184477806,0.17054633796215057,-0.03886785730719566,-0.20557360351085663,-0.30420541763305664,-0.04184792563319206,-0.04582484811544418,-0.18517062067985535,-0.041163962334394455,-0.3442637622356415,0.17311279475688934,-0.15100455284118652,-0.016003858298063278,-0.030122868716716766,-0.023440467193722725,0.09653148800134659,0.11497028917074203,0.30921265482902527,-0.5620469450950623,-0.3027131259441376,-0.20697930455207825,0.01963399164378643,0.15430381894111633,0.36628714203834534,-0.4896518290042877,-0.22735442221164703,0.29572027921676636,-0.05163940414786339,0.17904207110404968,0.06272284686565399,-0.21709850430488586,-0.06765183806419373,-0.28227394819259644,0.12651029229164124,-0.16488368809223175,-0.22518980503082275,-0.29825761914253235,0.03680238500237465,-0.32058045268058777,-0.09053730964660645,-0.028107529506087303,-0.05232683941721916,0.037135642021894455,0.20873674750328064,-0.19209668040275574,-0.32681789994239807,0.03484394773840904,0.12808865308761597,0.19164226949214935,-0.020313479006290436,-0.20917722582817078,-0.10871370881795883,-0.24864773452281952,0.18996265530586243,0.24825523793697357,0.33111077547073364,-0.06760870665311813,0.11473557353019714,-0.23936611413955688,-0.4060322642326355,-0.07362130284309387,-0.25338318943977356,0.2968989312648773,0.36795079708099365,-0.1179252564907074,0.1743161976337433,0.06646518409252167,-0.2544221878051758,0.09619900584220886,-0.3124232292175293,-0.11307092010974884,-0.12495723366737366,-0.12458823621273041,0.19272340834140778,0.23663069307804108,-0.21621696650981903,-0.0925748273730278,-0.10368622839450836,-0.1925373673439026,0.2087678462266922,-0.14798524975776672,0.04307156801223755,-0.009238988161087036,0.45790308713912964,0.10933809727430344,-0.3229236304759979,-0.26378217339515686,-0.18263933062553406,-0.16936944425106049,0.27086102962493896,0.012376254424452782,-0.050200656056404114,-0.29038676619529724,0.2898915410041809,-0.24379785358905792,0.25423720479011536,0.04924165457487106,0.1486305296421051,0.3705762028694153,0.1808222085237503,0.030044423416256905,0.1003665030002594,-0.3820439875125885,0.09396761655807495,-0.03142906352877617,0.21419894695281982,0.19263961911201477,0.07233529537916183,-0.1201709657907486,-0.2660267949104309,-0.042870793491601944,-0.33823612332344055,-0.026263859122991562,0.03726421296596527,0.18296390771865845,0.018039368093013763,-0.04473376274108887,0.24318766593933105,-0.30272144079208374,-0.2905234098434448,0.1466464102268219,-0.033450301736593246,-0.11868910491466522,0.1990613341331482,-0.37034016847610474,-0.005593711975961924,-0.08190654218196869,-0.04379463940858841,-0.4081881642341614,-0.11019552499055862,-0.13696162402629852,0.3293251395225525,-0.37861669063568115,0.2880619168281555,0.07647288590669632,-0.34013041853904724,-0.48558005690574646,-0.5473198294639587,-0.23954595625400543,0.03848269581794739,0.054464757442474365,-0.09484926611185074,0.32724520564079285,-0.17765004932880402,0.27136707305908203,-0.11404486745595932,-0.1771525889635086,-0.41470810770988464,-0.15627950429916382,0.1271926611661911,-0.19355008006095886,-0.23314706981182098,-0.07395944744348526,-0.11737166345119476,-0.2657386064529419,0.2467535138130188,-0.4229525327682495,0.07863950729370117,0.3957638442516327,0.22144293785095215,0.10632139444351196,0.16550907492637634,-0.21713511645793915,0.17878693342208862,0.23063857853412628,0.004306836519390345,-0.27055150270462036,-0.09521639347076416,0.15743602812290192,-0.029762065038084984,0.031300608068704605,-0.1636892557144165,0.2078530341386795,0.22342802584171295,0.2758961319923401,0.05301680043339729,0.21482853591442108,0.036356907337903976,-0.09698484092950821,-0.0638042539358139]},{"shape":[32],"values":[0.45855557918548584,-0.15625327825546265,-0.2713991403579712,0.5305363535881042,0.48409223556518555,0.5125814080238342,0.30857837200164795,-0.269837349653244,-0.28752848505973816,0.11248268932104111,0.374053955078125,0.06412321329116821,0.4862746000289917,0.3635658323764801,0.44817665219306946,-0.05713117495179176,0.02360660582780838,0.31905797123908997,0.010230946354568005,0.33076727390289307,0.32448655366897583,0.07347104698419571,-0.24085140228271484,0.0596088282763958,0.3424205183982849,0.03547779098153114,-0.22005711495876312,0.4127238690853119,0.61485755443573,0.3542327880859375,-0.19301897287368774,-0.029547622427344322]},{"shape":[32,32],"values":[0.4641364812850952,0.4764527380466461,0.42838820815086365,-0.22302189469337463,0.5564783215522766,0.1864892691373825,0.44953179359436035,-0.1388532668352127,-0.012953517958521843,-0.025642238557338715,0.25628435611724854,0.39684632420539856,0.7176918983459473,0.7496954202651978,0.48243337869644165,0.37800145149230957,0.351688027381897,0.7123938798904419,0.6661925911903381,-0.1814708560705185,0.0470232293009758,0.2775188982486725,0.7169977426528931,0.6080250144004822,0.21785326302051544,0.020705191418528557,-0.36850157380104065,0.33336949348449707,0.37167036533355713,0.05788315087556839,-0.19118741154670715,0.23018716275691986,-0.37740424275398254,0.13990962505340576,0.14080458879470825,0.2491791546344757,-0.30531540513038635,0.39622169733047485,-0.5066587924957275,-0.08270435780286789,0.2301379144191742,0.15558545291423798,-0.3005974590778351,-0.05890049785375595,-0.2925046384334564,-0.6637349128723145,-0.4600561559200287,0.06546150892972946,-0.052913058549165726,-0.3708604872226715,-0.2878255844116211,0.15470662713050842,0.20965129137039185,0.1722826510667801,-0.2685959041118622,0.10994137078523636,0.0463709719479084,-0.35117974877357483,-0.09740732610225677,-0.07629884034395218,0.12337306886911392,0.23587197065353394,0.2489439696073532,0.19946876168251038,-0.3327196538448334,-0.39434000849723816,-0.1638568788766861,0.2284853160381317,-0.9931530952453613,0.3855285346508026,-0.7144184708595276,0.10580959171056747,0.297979474067688,-0.3218767046928406,0.18688246607780457,-0.6101489663124084,-0.6929733157157898,-0.9708216786384583,-0.5768178105354309,0.02026776783168316,-0.1671762764453888,-0.32873114943504333,-0.22926601767539978,0.23518125712871552,-0.43319693207740784,-0.3801007568836212,-0.7385173439979553,0.07163909822702408,0.009111867286264896,0.2157077044248581,-0.24894964694976807,-0.14179754257202148,0.23989711701869965,0.1698550581932068,0.07563643902540207,0.023767409846186638,0.0031150670256465673,0.637984573841095,0.22523660957813263,-0.2947555482387543,0.3337218165397644,0.128029003739357,0.23333880305290222,-0.04679089039564133,-0.05812184140086174,0.02325701341032982,-0.20029111206531525,0.18547102808952332,0.34758132696151733,0.43292436003685,0.6168094873428345,0.2581115961074829,-0.10348518937826157,0.520825982093811,0.24752946197986603,0.04234842583537102,0.09423866868019104,0.2753360867500305,0.6592351794242859,0.45887377858161926,-0.1678209900856018,0.1647966057062149,0.20808373391628265,0.28720495104789734,0.2602855861186981,0.0329604409635067,0.29655149579048157,-0.06529512256383896,0.6322547197341919,0.8703659176826477,0.34721487760543823,0.11907994747161865,0.7699723839759827,-0.5660786628723145,0.8069189786911011,0.18128442764282227,-0.09183592349290848,-0.26056990027427673,0.08428499847650528,0.707819938659668,0.2640678882598877,0.5564837455749512,0.4445838928222656,0.034789375960826874,-0.11764766275882721,0.6576623916625977,0.43396586179733276,-0.10685176402330399,0.7625486254692078,0.1997758448123932,0.6887195110321045,0.6346538662910461,-0.06957729160785675,-0.2549452781677246,-0.04376618564128876,0.5915027856826782,-0.5556804537773132,-0.47182080149650574,-0.5797671675682068,-0.2976970970630646,0.3426613509654999,0.4228953719139099,0.4167735278606415,-0.005308743100613356,0.2589212656021118,-0.5545774102210999,0.8701009154319763,-0.1764359176158905,-0.26840493083000183,0.21080224215984344,0.005297267809510231,0.27429819107055664,0.007683788426220417,0.7740716934204102,0.27606844902038574,0.05108915641903877,0.10715875029563904,0.03311363607645035,0.6639862656593323,-0.38137370347976685,0.5095899701118469,-0.23667781054973602,0.574549674987793,0.5784063339233398,0.202156201004982,0.07377075403928757,0.20380760729312897,0.40653079748153687,-0.33524060249328613,-0.37171289324760437,-0.5294860601425171,-0.13527095317840576,0.041406650096178055,0.23597633838653564,0.4336674213409424,-0.012498565018177032,0.3905411958694458,0.0548587441444397,0.10170858353376389,-0.17154663801193237,-0.02170870453119278,0.19291290640830994,0.11892738193273544,0.29935333132743835,0.3158855736255646,0.258188396692276,0.6054742336273193,0.03552572429180145,0.32266896963119507,0.5827218294143677,0.243704155087471,0.2359818071126938,0.32479751110076904,0.14328426122665405,0.4886226952075958,0.23425865173339844,0.20935039222240448,-0.026197247207164764,-0.33315181732177734,0.13533125817775726,0.15237538516521454,0.1567354053258896,-0.11413437873125076,0.14239738881587982,-0.690843403339386,-0.299845427274704,-0.127223402261734,0.05051203444600105,-0.5065449476242065,0.07615306973457336,-0.8871959447860718,-0.21538971364498138,0.500070333480835,-0.3110145628452301,0.01131642796099186,-0.03703521937131882,-0.2025250494480133,-1.0124554634094238,-0.04306207597255707,0.010763561353087425,-0.10577844828367233,-0.05466340482234955,-0.14606285095214844,0.15075205266475677,-0.35719141364097595,-0.33976277709007263,-0.9508015513420105,0.05295732989907265,0.019548524171113968,0.08405819535255432,-0.13441777229309082,-0.44320690631866455,0.09897738695144653,0.27344200015068054,0.10386698693037033,0.009792524389922619,-0.43613365292549133,-0.21138840913772583,-0.3797392249107361,-0.3200876712799072,-0.1613728106021881,0.2721739113330841,-0.3589179515838623,0.2730850875377655,0.22902095317840576,0.10596078634262085,-0.2996727228164673,-0.3323492109775543,0.009727166034281254,-0.3118935823440552,0.15678507089614868,0.1752120554447174,-0.07021765410900116,-0.1602659374475479,-0.27902451157569885,0.24348168075084686,0.2418563812971115,-0.4350472092628479,-0.6713589429855347,-0.039183687418699265,-0.3311312794685364,-0.14550310373306274,-0.37800484895706177,-0.46137183904647827,0.3028371036052704,0.3161230981349945,0.19341270625591278,0.041107192635536194,0.09520825743675232,-0.06452281773090363,0.08541106432676315,0.21910852193832397,0.3370508849620819,-0.22915281355381012,0.7163563370704651,0.05041283741593361,-0.11833000928163528,-0.06646694242954254,-0.1532716453075409,0.27250954508781433,0.6450124979019165,0.7969865798950195,0.4834095239639282,0.15596352517604828,0.14666089415550232,0.37700456380844116,0.12057779729366302,0.002443184843286872,0.2438420206308365,0.04292105883359909,0.6316271424293518,0.17410452663898468,-0.06342469155788422,-0.05111448094248772,0.2332361340522766,0.16004805266857147,-0.011943351477384567,-0.2655762732028961,-0.07543589174747467,0.21814115345478058,0.4117870628833771,0.2605653703212738,0.11354374140501022,-0.27232789993286133,0.2803046405315399,0.15874744951725006,0.05841568112373352,-0.1364234834909439,-0.20834560692310333,-0.22103047370910645,-0.22380775213241577,0.35418057441711426,0.5535339117050171,0.40984123945236206,0.3032985329627991,0.23146826028823853,-0.2763756215572357,-0.005022560711950064,0.43007469177246094,-0.15646585822105408,0.3775542974472046,0.3213939666748047,0.04379918426275253,0.4063379466533661,-0.17596472799777985,-0.16578876972198486,0.33668702840805054,-0.07015015184879303,-0.0361805185675621,-0.015401342883706093,0.2730639576911926,0.14256036281585693,0.6676234006881714,0.4818947911262512,0.2441842257976532,-0.16041970252990723,0.5912457704544067,0.024772822856903076,0.6863963603973389,-0.11605516821146011,-0.3273703157901764,0.05132197588682175,-0.025492601096630096,-0.26470449566841125,0.7836641073226929,0.47481274604797363,0.26279738545417786,0.22237202525138855,0.1389269232749939,0.6165549755096436,0.7869303226470947,-0.4486224949359894,0.6242170929908752,-0.044344767928123474,0.6494508385658264,0.05809841677546501,-0.35127437114715576,-0.025029975920915604,-0.09163954108953476,0.24992309510707855,-0.2521277964115143,-0.4540623426437378,0.12100854516029358,-0.4191238284111023,0.5227962732315063,0.2550297677516937,0.10769023001194,0.044668491929769516,0.5150853395462036,0.05544343963265419,0.5483958721160889,-0.24686746299266815,0.2712613046169281,-0.22134312987327576,-0.3048739433288574,0.1384703814983368,0.29025888442993164,0.4224083721637726,0.6705004572868347,0.04608020558953285,0.14816220104694366,0.5548250675201416,0.24122659862041473,0.06484640389680862,0.5204139947891235,0.30534374713897705,0.5239405035972595,0.5897425413131714,0.16898612678050995,-0.10694293677806854,-0.216673344373703,0.07951446622610092,0.12347985804080963,0.09844019263982773,0.2531657814979553,-0.2688957750797272,0.1676701456308365,0.36731913685798645,0.23679380118846893,-0.19084008038043976,0.3767169415950775,-0.03815222159028053,0.05676926672458649,0.20424257218837738,0.03330475836992264,-0.0335339717566967,-0.09949731826782227,0.04982281103730202,0.4272686541080475,0.2474541962146759,0.46647030115127563,-0.10947339981794357,-0.2461969256401062,0.26803362369537354,0.41861996054649353,-0.053540442138910294,0.1476627141237259,0.27145621180534363,0.023026350885629654,0.46935752034187317,0.34484201669692993,-0.26597878336906433,-0.133180171251297,0.4330490827560425,0.3643631041049957,0.15953807532787323,0.269837886095047,0.1716274619102478,0.09101518988609314,0.24734923243522644,-0.1283521056175232,-0.23623129725456238,0.01156572811305523,-0.4188584089279175,0.6194841861724854,-0.08666086941957474,-0.6461952328681946,-0.11616609990596771,-0.23537936806678772,0.18456514179706573,0.5003575086593628,0.3498682677745819,0.30675336718559265,0.04789583384990692,-0.09571520239114761,0.4555264711380005,0.6988641023635864,-0.4016270935535431,0.1799725443124771,0.45244917273521423,0.6629514098167419,0.3214956521987915,-0.01634213887155056,0.10783617198467255,0.40656596422195435,0.044825971126556396,-0.17065922915935516,-0.20344258844852448,-0.9012830257415771,-0.3208620250225067,-0.22894471883773804,-0.16998371481895447,-0.2783385217189789,-0.06961363554000854,-0.787449061870575,-0.12136868387460709,-0.9081281423568726,-0.18398934602737427,0.03215990960597992,-0.287169486284256,0.1651420146226883,-0.6027535796165466,-0.588485598564148,-0.33223891258239746,-0.35083773732185364,-0.3005041480064392,0.12015672773122787,-0.08190009742975235,-0.13241040706634521,0.3259219229221344,-0.013711600564420223,0.28744858503341675,-0.4378211200237274,-0.4277883768081665,-0.38106945157051086,-0.17107045650482178,0.4491437077522278,-0.5334097743034363,0.18900997936725616,0.30186283588409424,0.3003235161304474,0.013964626006782055,-0.3892996609210968,0.09902330487966537,-0.5391864776611328,0.07448891550302505,-0.45161426067352295,0.4320620000362396,-0.11629748344421387,-0.0284754429012537,0.24520133435726166,-0.08396454900503159,0.17605260014533997,-0.44710367918014526,-0.5434910655021667,-0.40438875555992126,-0.47525298595428467,-0.14297319948673248,-0.19565488398075104,-0.4915753901004791,0.0021328097209334373,0.11372193694114685,-0.13986358046531677,-0.2939275801181793,-0.28540387749671936,0.14495669305324554,-0.6555885672569275,-0.31213346123695374,-0.27907794713974,-0.08587664365768433,0.18861693143844604,0.0950540229678154,0.3323662579059601,0.4612278342247009,0.5412544012069702,0.37108463048934937,-0.09280642122030258,-0.16945573687553406,0.562997579574585,-0.1099005714058876,0.23708273470401764,0.052640728652477264,-0.12465813755989075,-0.06871063262224197,-0.14539918303489685,0.42329713702201843,0.25317704677581787,0.4469379186630249,0.39886462688446045,-0.19653300940990448,-0.7314162254333496,0.07484529912471771,0.5088458061218262,-0.33313414454460144,0.518406867980957,0.03808276727795601,0.4009954333305359,0.19805045425891876,-0.155619278550148,-0.12865027785301208,0.4847719073295593,0.24552665650844574,-0.43353140354156494,-0.5846371054649353,-0.2996194660663605,-0.36408376693725586,0.41883257031440735,0.0641111209988594,0.11578212678432465,0.012436187826097012,0.33083951473236084,0.0893576517701149,0.6227706670761108,0.024971868842840195,-0.26090580224990845,0.2065816968679428,0.09057016670703888,0.12537208199501038,0.8285953402519226,0.8790253400802612,0.21795204281806946,0.02243592031300068,-0.22800569236278534,0.5974282622337341,0.6797294020652771,0.19064365327358246,0.30889812111854553,-0.13635452091693878,0.3579244911670685,0.04829879477620125,-0.1759912222623825,-0.017973724752664566,0.14419418573379517,0.02762690745294094,-0.13798286020755768,-0.042964689433574677,-0.27802762389183044,-0.2858189344406128,0.26475897431373596,0.5002028942108154,0.3105933666229248,-0.15985709428787231,0.7277392148971558,0.16778114438056946,0.4264412224292755,-0.3210456967353821,0.08240177482366562,0.12118745595216751,-0.10209918022155762,0.2216857671737671,0.6970309019088745,0.6714469194412231,0.7052427530288696,0.4637223780155182,0.13928097486495972,0.4851720333099365,0.30538544058799744,-0.20949013531208038,0.4006369411945343,-0.2177414745092392,0.5950911045074463,0.2283111959695816,0.24880260229110718,0.11356797069311142,-0.3327270448207855,0.3839160203933716,0.1972665786743164,-0.15651202201843262,0.06196378543972969,-0.2920854985713959,-0.10377351194620132,0.45855841040611267,0.09155825525522232,-0.16150905191898346,0.11568084359169006,0.2260461300611496,0.3079058825969696,-0.23707619309425354,-0.04428520053625107,-0.12584838271141052,-0.04335934668779373,-0.0937984436750412,-0.015133551321923733,0.348924458026886,0.4704258441925049,0.1779748797416687,-0.1471286565065384,0.4379338324069977,0.13012130558490753,-0.02981448732316494,0.35566914081573486,0.4224245250225067,-0.0006747548468410969,0.46253684163093567,0.18234364688396454,-0.2610081434249878,-0.256698340177536,-0.015693997964262962,0.05904538556933403,0.034721631556749344,-0.09962040185928345,0.13854935765266418,-0.5097413659095764,-0.16762270033359528,0.05419260635972023,-0.05961548164486885,-0.7610620260238647,0.34976664185523987,-0.5703476667404175,0.2332925945520401,0.22816577553749084,-0.23746483027935028,-0.10932144522666931,-0.5948939919471741,-0.4519864618778229,-0.674400269985199,-0.38506019115448,-0.6296214461326599,0.1096818670630455,-0.7697076797485352,-0.029007159173488617,0.42948105931282043,-0.2799721360206604,-0.5111402869224548,-0.8064361810684204,-0.36220574378967285,-0.5827416181564331,0.11997544020414352,0.23136547207832336,-0.07051688432693481,-0.35159632563591003,0.24969816207885742,0.046042852103710175,0.30115893483161926,-0.5817956924438477,-0.39484789967536926,-0.21432822942733765,0.1896241158246994,-0.7146607041358948,0.1491285264492035,-0.6617744565010071,-0.30877456068992615,0.29843825101852417,-0.10192544013261795,-0.22796736657619476,-0.24712885916233063,-0.7351110577583313,-1.0502729415893555,-0.43933579325675964,-0.31713613867759705,0.1817867010831833,-0.14268526434898376,-0.5922957062721252,0.33879369497299194,0.04088596999645233,-0.05977233871817589,-0.9477192759513855,-0.1835566610097885,0.07383076101541519,-0.05230898782610893,-0.2605656087398529,-0.3860372006893158,0.22622783482074738,0.3705684542655945,0.5807494521141052,0.524548351764679,0.6609998941421509,0.6400862336158752,0.09400663524866104,-0.09273280203342438,0.8428089618682861,-0.013117846101522446,0.560221791267395,0.23019134998321533,-0.20052585005760193,-0.15093034505844116,-0.2869158387184143,0.07946377247571945,0.490980327129364,0.7949444055557251,0.7897956967353821,0.20842814445495605,0.010474423877894878,0.41504499316215515,0.621189296245575,-0.14677783846855164,0.6087212562561035,0.1666470170021057,0.813574492931366,0.22572048008441925,0.048934925347566605,0.11205463856458664,-0.46065524220466614,0.13308872282505035,-0.29646939039230347,-0.25154078006744385,-0.4411863088607788,-0.5946704745292664,0.4726015031337738,0.1438719779253006,0.14994971454143524,-0.03797762095928192,0.5555145144462585,-0.33141523599624634,0.9171093702316284,-0.2581540048122406,-0.3940962255001068,-0.3108442723751068,-0.3182156980037689,0.1839546114206314,0.4858643114566803,0.4733991026878357,0.5663071274757385,0.11642073094844818,0.060692641884088516,0.7450987100601196,0.3972904682159424,-0.29908037185668945,0.7091231346130371,-0.1115640178322792,0.31118157505989075,0.5031107068061829,0.3301917016506195,-0.13900436460971832,0.0447053387761116,0.48431554436683655,-0.16167254745960236,-0.05028340965509415,-0.7901850938796997,-0.3950372040271759,-0.5176576375961304,-0.5108767747879028,-0.1958400458097458,-0.2734748423099518,-0.6639806628227234,0.5278826951980591,-0.35372447967529297,-0.14142844080924988,-0.17336422204971313,-0.06322857737541199,0.23629416525363922,-0.27048319578170776,-0.4861786961555481,-0.949467122554779,-0.8674625754356384,-0.5483951568603516,0.2836487591266632,-0.8988459706306458,-0.5616008043289185,0.17778389155864716,-0.3513262867927551,-0.17832089960575104,-0.9946175813674927,0.09642830491065979,-0.37224915623664856,0.049973390996456146,0.09168707579374313,-0.02964768186211586,-0.39335739612579346,0.12429316341876984,-0.17285077273845673,0.5497092604637146,-0.29109856486320496,-0.0662819966673851,-0.1630295068025589,0.09493857622146606,-0.6046285629272461,0.2940102219581604,-0.24117335677146912,0.25223731994628906,0.47885164618492126,0.1592763364315033,0.023694660514593124,0.07204503566026688,-0.47255346179008484,-0.6917819976806641,-0.319758802652359,0.2921527624130249,0.24803860485553741,-0.30753687024116516,-0.35653629899024963,0.36101123690605164,0.22431381046772003,-0.31879928708076477,-0.6443844437599182,-0.38668131828308105,-0.016620201990008354,-0.18932053446769714,0.2310296595096588,-0.44522690773010254,0.2897067070007324,-0.13517066836357117,0.528417706489563,0.12188368290662766,0.5591402053833008,0.45764997601509094,0.44217008352279663,0.20928910374641418,0.6767903566360474,-0.24557922780513763,0.6249725222587585,-0.1726977825164795,0.2695554196834564,0.23466265201568604,-0.16070619225502014,-0.013870584778487682,0.483099102973938,0.5677682161331177,0.3010096848011017,0.23598653078079224,0.20941169559955597,0.5390041470527649,0.7226080298423767,0.47109514474868774,0.5107033252716064,0.206234410405159,0.4093347191810608,0.14002971351146698,0.005985855124890804,-0.10833867639303207,0.03968101739883423,0.39802685379981995,0.31977370381355286,0.31424808502197266,0.2006150186061859,0.0870189443230629,0.31485041975975037,0.3242911100387573,0.23163379728794098,0.048676710575819016,0.4010707139968872,-0.25790056586265564,0.29700353741645813,-0.19321316480636597,-0.39107275009155273,-0.2229621261358261,-0.1263805627822876,0.3214280903339386,0.3669673800468445,0.26824209094047546,0.4786650240421295,0.09640399366617203,-0.2308276742696762,0.2701107859611511,0.15878216922283173,0.035482343286275864,0.24992793798446655,-0.27889397740364075,0.4195100665092468,0.27648958563804626,0.09346825629472733,-0.08246137201786041,0.10856214165687561,0.3471854031085968,-0.2782907485961914,0.12731511890888214,-0.11943627148866653,0.03671376407146454,0.28955045342445374,0.14101941883563995,0.27096372842788696,-0.2522484064102173,0.5287509560585022,-0.22880154848098755,0.179128959774971,0.017400966957211494,0.15790799260139465,-0.3147459626197815,-0.23140422999858856,-0.000527377356775105,0.12546418607234955,0.5729131102561951,0.40576550364494324,0.004564622417092323,-0.16606058180332184,0.4739413857460022,0.4286268949508667,-0.09136389940977097,0.2000146061182022,-0.15556032955646515,0.1138816848397255,0.2751309275627136,0.04409793019294739,-0.3763478398323059,-0.8849093317985535,0.15627381205558777,0.0696333795785904,0.012625012546777725,-0.03830210119485855,0.17232833802700043,-0.21302390098571777,0.1730143427848816,0.13254056870937347,-0.12949681282043457,-0.7265626788139343,0.26396071910858154,-0.7966406941413879,-0.119439497590065,0.40733134746551514,-0.15285569429397583,0.02619621530175209,-0.2370997816324234,-0.16803421080112457,-0.7622358202934265,-0.4844271242618561,0.12686018645763397,-0.12993723154067993,-0.4300704002380371,-0.007812353782355785,0.007495708763599396,0.12491777539253235,-0.1352352499961853,-0.5090940594673157,-0.4742036759853363,-0.2175803780555725,-0.05967675521969795,-0.3646644055843353,-0.0676678791642189,0.2247375249862671,0.135409414768219,0.26942047476768494,0.3613613247871399,-0.17425325512886047,-0.26311567425727844,-0.18165121972560883,-0.1404874175786972,-0.08508837223052979,-0.2503953278064728,-0.10864891111850739,-0.3034535348415375,0.09934558719396591,-0.08472490310668945,-0.28629353642463684,-0.5535614490509033,-0.47644996643066406,-0.1474630981683731,-0.09476985037326813,-0.6140060424804688,0.15040910243988037,-0.38219910860061646,-0.06411975622177124,0.03709764778614044,0.07662957906723022,-0.659715473651886,-0.17887826263904572,-0.1470785140991211,-0.3708942234516144,0.10520627349615097,0.5475696921348572,0.049003977328538895,0.03504772484302521,0.09191251546144485,-0.2483038455247879,0.1508946418762207]},{"shape":[32],"values":[0.2991494834423065,0.3235742449760437,0.16627873480319977,-0.04978680983185768,0.4254615306854248,-0.10624580830335617,0.3541221618652344,-0.018331846222281456,-0.04154965281486511,-0.044545795768499374,-0.043361227959394455,0.20900006592273712,0.33673977851867676,0.3932473361492157,0.3404141068458557,0.0291200652718544,-0.23060238361358643,0.35681602358818054,0.385629802942276,-0.09759772568941116,0.31882986426353455,0.08381486684083939,0.4020719528198242,0.25182145833969116,-0.07547471672296524,-0.1297927051782608,0.0440090037882328,0.2511889934539795,-0.08326666057109833,-0.16167134046554565,-0.049600765109062195,-0.13378077745437622]},{"shape":[32,9],"values":[0.3971734344959259,0.3695600628852844,0.7714395523071289,0.46449604630470276,0.8715822100639343,0.7080507278442383,0.6246547102928162,0.8449203968048096,0.3303753733634949,0.30428794026374817,0.1140228733420372,0.6731187701225281,0.5453042387962341,0.4027085602283478,0.5184852480888367,0.03094201534986496,0.5252110958099365,0.6448543667793274,0.1723288893699646,0.3436369299888611,0.1781771034002304,0.493850439786911,0.4588891267776489,-0.014156143181025982,-0.09180697053670883,0.3647903800010681,0.24272814393043518,-0.2684713304042816,0.0630219578742981,0.15467606484889984,0.13953547179698944,-0.2249605357646942,-0.09077320247888565,0.24980145692825317,-0.018351364880800247,0.44541969895362854,0.49025654792785645,0.8157803416252136,0.8338378071784973,0.7147285342216492,0.7991952300071716,0.796514093875885,0.8188206553459167,0.4646640419960022,0.588624894618988,0.23987920582294464,0.06130402535200119,-0.1787227988243103,-0.2877732515335083,-0.021206598728895187,0.0489313043653965,-0.18707489967346191,-0.2883342206478119,-0.4923103451728821,0.905573844909668,0.6725131273269653,0.44479432702064514,0.8877082467079163,0.6223337650299072,0.2864128351211548,0.8457104563713074,0.5300214886665344,0.4121831953525543,-0.26548126339912415,-0.24521476030349731,0.06693582236766815,-0.12350214272737503,-0.22125142812728882,-0.14973360300064087,-0.24333061277866364,0.06947329640388489,0.2676134705543518,-0.13116370141506195,-0.26669424772262573,-0.00031968645635060966,-0.42666417360305786,-0.22925306856632233,-0.23645439743995667,0.03688085824251175,-0.143153116106987,-0.5772286057472229,-0.13409598171710968,-0.2842896580696106,-0.1574021577835083,0.08589262515306473,0.022937363013625145,-0.18024738132953644,0.162509486079216,0.057197097688913345,-0.26499029994010925,-0.11352486163377762,-0.23082929849624634,0.22251571714878082,-0.07263109087944031,-0.19468025863170624,-0.1834065169095993,0.1628962755203247,-0.07797156274318695,-0.0022833598777651787,0.5003397464752197,0.31557050347328186,0.7682756781578064,0.19015352427959442,0.34374088048934937,0.3715806007385254,0.5856723785400391,0.4069402515888214,0.7001286745071411,0.49216580390930176,0.7104694843292236,0.8020882606506348,0.3836955428123474,0.5411202907562256,0.357291579246521,0.7909017205238342,0.7014610767364502,0.7023008465766907,1.0790948867797852,0.7618942856788635,0.9366324543952942,0.7256944179534912,0.8583285212516785,0.867814302444458,0.9587767124176025,0.8240762948989868,0.6705005764961243,0.18316097557544708,0.2165033370256424,0.5117424130439758,0.7713053822517395,0.6480117440223694,0.6346396207809448,0.652800977230072,0.4299675524234772,0.34674274921417236,0.474001407623291,0.08172589540481567,0.4061117172241211,0.19784873723983765,0.14224551618099213,0.16157843172550201,-0.18756888806819916,0.02866148017346859,0.5551006197929382,-0.23027800023555756,-0.2955961525440216,0.04381946101784706,0.12123022973537445,-0.15049949288368225,-0.2388073205947876,0.04896686598658562,-0.48877236247062683,0.34700992703437805,0.8146162629127502,0.5872491002082825,0.22002699971199036,0.3733307421207428,0.3456193208694458,0.7177347540855408,0.38340553641319275,0.8473824858665466,0.6883453130722046,0.44977229833602905,0.5496031045913696,0.40564918518066406,0.6980805993080139,0.22131533920764923,0.8040604591369629,0.6783658862113953,0.4356386959552765,0.6979867219924927,-0.43640074133872986,-0.3293554484844208,-0.47732090950012207,-0.2758313715457916,-0.2785588502883911,-0.1449441909790039,0.06228179112076759,-0.017125293612480164,-0.4650370478630066,0.5237609148025513,0.4538217782974243,0.20914067327976227,-0.16073039174079895,0.3430940806865692,0.28496283292770386,0.45893511176109314,0.21704785525798798,0.2710283696651459,-0.019006889313459396,0.5329142808914185,0.3469536006450653,-0.35195013880729675,0.2804147005081177,0.39422377943992615,0.5375875234603882,0.3138904869556427,0.7087815999984741,0.7558851838111877,0.9457575678825378,0.4837574064731598,1.0116033554077148,0.7464850544929504,0.5663471221923828,0.5626358389854431,0.9057676196098328,0.7990789413452148,0.07824810594320297,0.1719290018081665,0.24150539934635162,0.6610473990440369,0.28118428587913513,0.05109767988324165,0.3381473422050476,0.33911311626434326,0.48882007598876953,-0.23888418078422546,0.45419231057167053,0.020510416477918625,0.12591081857681274,0.037101902067661285,0.16025598347187042,-0.3972914218902588,0.04462215676903725,0.5784401893615723,-0.24673210084438324,0.200299933552742,-0.2827535569667816,-0.27391162514686584,0.40550053119659424,-0.15684756636619568,-0.1599343866109848,-0.11628226190805435,0.3109116554260254,-0.06176885589957237,-0.11479957401752472,0.3236550986766815,-0.22950239479541779,-0.4882306754589081,-0.19593974947929382,-0.46194228529930115,-0.748616099357605,-0.11007431149482727,0.28539687395095825,0.3315083980560303,0.01155251543968916,0.15556451678276062,0.6226945519447327,0.6270331740379333,0.4332139194011688,0.509321391582489,0.14727231860160828,-0.5705397725105286,-0.13175317645072937,-0.11554484069347382,-0.5881523489952087,-0.13162535429000854,-0.14746564626693726,-0.35039740800857544,-0.2757212519645691,-0.1263953000307083,0.07844215631484985,-0.06800524145364761,0.036158185452222824,-0.25203022360801697,-0.13885825872421265,-0.46152400970458984,-0.30743271112442017,-0.28071966767311096,-0.21012365818023682,-0.3750993311405182,-0.3680877089500427,-0.3837575912475586,0.001124985166825354,-0.4621345102787018,-0.4010525047779083,-0.09291217476129532,-0.5687746405601501,-0.2091953158378601,-0.1145835593342781,-0.37773218750953674,-0.5226430296897888,-0.2932237684726715,-0.32191941142082214,-0.4155671000480652,-0.45644718408584595,-0.11966612190008163,-0.5858600735664368]},{"shape":[9],"values":[0.2713072597980499,0.312870055437088,0.2359524518251419,0.165573850274086,0.15937499701976776,0.2917787432670593,0.17442800104618073,0.26669183373451233,0.19312430918216705]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-11.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-11.json new file mode 100644 index 0000000..dafc1d1 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-11.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":11,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:54:41.584Z","weights":[{"shape":[20,32],"values":[1.1226370334625244,-0.5988151431083679,0.16447627544403076,0.7708017230033875,-0.5303939580917358,0.9868821501731873,0.8200470805168152,-0.4244415760040283,0.028428860008716583,1.3200807571411133,0.6590309739112854,-0.5654184222221375,-0.1167115792632103,0.3874472379684448,0.3928731083869934,0.8158964514732361,-0.30538225173950195,0.10088475048542023,0.7950860857963562,0.8280472159385681,1.152074933052063,1.1092740297317505,0.9901089668273926,-0.21187758445739746,-0.361388236284256,1.0097050666809082,-0.0009411232313141227,1.0494654178619385,1.0387624502182007,-0.16766181588172913,0.8451983332633972,0.07111919671297073,0.13743431866168976,-0.1115727424621582,0.18135128915309906,0.044736720621585846,0.21065956354141235,-0.05281097814440727,0.20120342075824738,-0.14803220331668854,-0.2959083020687103,-0.3554989993572235,0.03790251538157463,0.0047921668738126755,-0.21903535723686218,-0.0374717116355896,0.03256326541304588,0.2035711258649826,0.3373003304004669,0.16465534269809723,-0.1490660458803177,0.08190781623125076,-0.10612529516220093,0.062125787138938904,-0.07334673404693604,-0.32384762167930603,-0.12423142045736313,-0.09697268158197403,-0.31619757413864136,0.24906350672245026,-0.5120108723640442,-0.12290799617767334,0.24086834490299225,0.4836907982826233,-0.05258786305785179,-0.6595638990402222,0.8400359153747559,-0.33167704939842224,0.5387511253356934,-0.026992401108145714,-0.383819043636322,-0.7281635403633118,-0.6321322321891785,-0.011047471314668655,-0.1445683240890503,-0.881897509098053,-0.8913458585739136,0.10616691410541534,-0.5333988666534424,-0.40645328164100647,0.7426184415817261,-0.33872371912002563,0.2121618241071701,-0.022182630375027657,-0.4595651924610138,-0.09128886461257935,-0.28042662143707275,-0.2937066853046417,-0.6982685327529907,0.10739445686340332,-0.6494737863540649,-0.27929428219795227,-0.3920353651046753,-0.5179511904716492,-0.24903258681297302,0.672304630279541,-0.26227104663848877,1.7780678272247314,-1.4715392589569092,-0.10395392775535583,-0.694327175617218,-0.06499460339546204,-0.3202613294124603,1.3849667310714722,1.6658035516738892,0.08928418159484863,-0.22229783236980438,1.4109967947006226,1.4756664037704468,-0.7853546142578125,1.2351078987121582,-0.05920102819800377,-1.2541645765304565,-1.0047281980514526,-0.6974227428436279,-0.4365387558937073,-0.4996423125267029,-0.09645651280879974,-0.06298624724149704,1.0655231475830078,1.442603349685669,-0.6053981184959412,1.512225866317749,0.07942621409893036,-0.03704959154129028,0.7742180228233337,0.14674100279808044,-1.0761274099349976,-0.2261848747730255,-0.15058819949626923,0.20100438594818115,-0.5312950015068054,-0.17329560220241547,-0.3630283772945404,-0.05178668349981308,0.1671549379825592,0.2519439160823822,0.25876307487487793,-0.22704705595970154,-0.2576073110103607,-0.10614778101444244,0.6981186270713806,-0.12440340220928192,-0.5290172100067139,0.09181241691112518,0.2939952611923218,0.4372141659259796,0.053015291690826416,-0.217720627784729,0.1950923204421997,-0.368496835231781,-0.01496216095983982,-0.3774429261684418,0.32554876804351807,0.23571568727493286,-0.47530096769332886,0.24456274509429932,0.21639728546142578,-0.5982273817062378,-0.0019368098583072424,0.1514478176832199,0.0038682790473103523,-0.023652372881770134,-0.374919593334198,-0.23502321541309357,0.17040063440799713,-0.5462619662284851,0.2943165600299835,0.43372610211372375,0.3425498604774475,0.1449710726737976,0.16789332032203674,0.08424460142850876,-0.04182758554816246,0.34963953495025635,-0.21710264682769775,-0.24219910800457,0.39842474460601807,0.4431154727935791,-0.1686377376317978,-0.06527809798717499,-0.11105004698038101,-0.161875918507576,0.46969059109687805,0.20639972388744354,0.48756134510040283,-0.05169785022735596,-0.30613574385643005,0.35291048884391785,-0.19678279757499695,-0.5295098423957825,-0.191471666097641,0.312928706407547,0.6595438122749329,-0.3524097502231598,0.06723272055387497,-0.22883924841880798,-0.11793158948421478,-0.4368986189365387,0.427784264087677,0.23821131885051727,0.09243245422840118,0.034382712095975876,0.11675608158111572,0.5287520289421082,0.06444855034351349,0.0686904639005661,-0.3321288526058197,-0.8225698471069336,-0.04061063006520271,0.18069127202033997,0.28434720635414124,0.18599587678909302,0.23289673030376434,0.05792186036705971,0.24517503380775452,0.5770396590232849,0.026681672781705856,0.27528709173202515,0.04126522317528725,0.17145098745822906,0.5254896879196167,-0.39954665303230286,-0.71302729845047,0.28002768754959106,0.030795777216553688,-0.3563271164894104,-0.3727663457393646,-0.021518219262361526,0.3653685450553894,0.03393758088350296,-0.0805371031165123,-0.14485780894756317,0.5014195442199707,0.18098223209381104,0.4752626121044159,-0.09834802150726318,0.40927964448928833,-0.009785618633031845,-0.30681297183036804,-0.8564668893814087,0.07390666007995605,-0.08203005790710449,0.3494308888912201,0.22352495789527893,-0.0218370221555233,0.5626082420349121,0.2814162075519562,0.03239196911454201,0.3595421314239502,0.19430780410766602,-0.24962033331394196,0.05611279606819153,-0.1488930881023407,0.24620555341243744,-0.49084100127220154,0.024568164721131325,0.039144646376371384,-0.31741097569465637,0.13635475933551788,-0.013911006040871143,0.06394865363836288,-0.07533267885446548,-0.23575299978256226,0.2774810791015625,0.19670146703720093,0.9508188366889954,0.17498956620693207,0.11961676925420761,0.16507947444915771,0.024426832795143127,0.17340201139450073,-0.055592164397239685,-0.24889829754829407,0.5199899673461914,-0.15350836515426636,-0.3047042787075043,0.23043681681156158,-0.018838703632354736,0.0410660021007061,-0.31008991599082947,-0.1354743093252182,-0.027351005002856255,-0.26986590027809143,0.11504555493593216,0.40008604526519775,0.3650168776512146,-0.27963942289352417,0.295722097158432,-0.06180702894926071,0.012471649795770645,-0.7737084627151489,-0.37332645058631897,0.026131844148039818,0.4691044092178345,-0.18203890323638916,0.15278217196464539,0.20259296894073486,0.18172436952590942,-0.26855215430259705,0.1218186542391777,-0.18421632051467896,-0.06742630153894424,-0.048430319875478745,0.28638583421707153,0.4640219211578369,-0.10348052531480789,-0.005787960719317198,-0.041871655732393265,-0.02724476344883442,0.44275370240211487,-0.2921884059906006,-0.18095265328884125,0.02606940269470215,0.09583142399787903,-0.01096395030617714,0.27242469787597656,0.028205949813127518,0.11490543931722641,-0.07504665106534958,0.3621130585670471,0.22454291582107544,-0.3364819586277008,0.17728106677532196,0.17829279601573944,0.1201094314455986,0.4911045730113983,-0.02699144557118416,-0.25535428524017334,0.045047271996736526,0.7027716040611267,-0.07633715867996216,0.3384407162666321,0.06947536021471024,-0.2857583165168762,0.010882308706641197,0.23916186392307281,0.27158138155937195,0.28479310870170593,0.17251896858215332,0.5584527254104614,0.312241792678833,0.1183873787522316,-0.2555592358112335,-0.6271980404853821,0.08204957097768784,-0.0019736471585929394,0.5884546041488647,0.5761622786521912,-0.14399367570877075,0.169145405292511,-0.1786613017320633,0.13967454433441162,-0.04969453066587448,0.11015308648347855,-0.39226144552230835,0.17090313136577606,-0.0511307530105114,-0.03366858884692192,0.2091660350561142,-0.13682310283184052,0.01653795689344406,-0.225450336933136,0.046216633170843124,-0.08081509172916412,0.03004264272749424,-0.0059560793451964855,0.09906498342752457,-0.24506555497646332,-0.2465042769908905,-0.0988948717713356,0.2372252345085144,0.09268538653850555,0.2823941707611084,-0.42858296632766724,0.2681448757648468,-0.135740727186203,0.234166219830513,-0.27039656043052673,0.3168003261089325,-0.11493431031703949,0.1380547732114792,-0.1805032342672348,-0.4122687578201294,0.2391570657491684,-0.10336726158857346,0.22631031274795532,-0.16842339932918549,-0.21093611419200897,-0.1727851927280426,0.266031414270401,0.09918303787708282,-0.2596103847026825,0.2271975874900818,0.28549593687057495,-0.1002853587269783,-0.20740091800689697,-0.11791109293699265,-0.29485729336738586,-0.1515895128250122,0.03251959756016731,-0.6115674376487732,0.35683444142341614,-0.022952938452363014,0.1273820549249649,0.21195048093795776,0.30143433809280396,-0.11723009496927261,0.3836435079574585,0.018589919432997704,0.20724010467529297,0.07135633379220963,-0.3668324649333954,0.18605171144008636,0.12389574944972992,0.11502230912446976,0.1951778382062912,0.21128182113170624,0.20579120516777039,-0.6412836909294128,0.25663644075393677,0.2756458520889282,-0.07576974481344223,-0.12853415310382843,-0.10897476226091385,-0.12097049504518509,-0.28010520339012146,0.2523071765899658,0.18268074095249176,0.13249188661575317,0.020885657519102097,0.07626880705356598,0.12963713705539703,0.393635630607605,-0.25773003697395325,0.05500716716051102,0.04346717149019241,0.03968400880694389,0.00605398416519165,-0.24292662739753723,-0.2177354097366333,-0.17439275979995728,-0.02205592952668667,0.05527696758508682,0.2889147996902466,0.1282447874546051,0.2134656459093094,0.061028867959976196,-0.15181320905685425,-0.2582171857357025,-0.2219674438238144,0.17878827452659607,0.2127227783203125,-0.21381041407585144,-0.16600258648395538,-0.16871805489063263,0.15776750445365906,-0.06043163686990738,0.3719365894794464,0.12629136443138123,-0.30660325288772583,0.0924786925315857,0.23503424227237701,0.24278509616851807,-0.14164157211780548,-0.24234895408153534,0.3554401695728302,0.20929129421710968,-0.054256487637758255,-0.060104094445705414,-0.11735642701387405,-0.06187226623296738,-0.21126587688922882,0.10429912060499191,0.07209227234125137,0.2167229950428009,0.004189700353890657,-0.014539186842739582,-0.025645283982157707,-0.1938721388578415,-0.3267229497432709,-0.15518434345722198,0.28100138902664185,-0.2210635244846344,0.01005157083272934,0.04010429605841637,0.2745320796966553,-0.2126895636320114,-0.14828011393547058,-0.061486467719078064,-0.3369053304195404,0.19764657318592072,-0.23222362995147705,0.01094725076109171,0.22343595325946808,0.07717937976121902,-0.22376649081707,0.192302867770195,-0.1763211041688919,-0.18835315108299255,0.03227955475449562,0.13415680825710297,-0.08330956846475601,0.3456183075904846,0.13127662241458893,0.09370695054531097,0.04619242250919342,-0.061844583600759506,-0.12997281551361084,0.20178158581256866,0.23020115494728088,0.09435539692640305,0.02352718450129032,0.20218481123447418,0.3875308334827423,-0.12389390915632248,-0.09472164511680603,0.25442808866500854,-0.3819376230239868,0.2966732680797577,-0.15456706285476685,-0.29634442925453186,0.34873345494270325,0.024428820237517357,0.07042259722948074,0.08061372488737106,0.3606448173522949,0.32631048560142517,0.03612959757447243,-0.20431214570999146,-0.050145331770181656,0.06759009510278702,-0.19792373478412628,-0.28227755427360535,-0.19081734120845795,-0.06523071229457855,0.25138944387435913,0.03436950221657753,-0.1422569900751114,-0.177491694688797,-0.010609163902699947,-0.23610186576843262,-0.14405789971351624,0.3123180866241455,0.2740197777748108,-0.32805171608924866,-0.22387933731079102,-0.15725989639759064,0.1887056827545166,0.30240780115127563,0.3752671182155609,0.25883787870407104,0.021289857104420662,-0.020516397431492805,-0.12656131386756897,-0.293204665184021,0.012513570487499237,-0.07420437783002853,-0.12722279131412506,0.12417387217283249,0.1979270875453949,-0.17402641475200653,0.19430232048034668,0.06987025588750839,-0.05756886303424835,-0.09797506779432297,-0.10208354145288467,0.05130915343761444,0.2817828357219696,-0.06197753921151161,0.013077246025204659,-0.19180890917778015,0.23153334856033325,-0.5021492838859558,-0.1469285935163498,-0.015873337164521217,-0.337729275226593,0.03453964367508888,0.006667084060609341,-0.07684039324522018,0.40693479776382446,-0.19462242722511292,-0.1914481520652771,-0.24527192115783691,-0.05967172980308533,-0.10925647616386414,0.2790742516517639,0.01004007551819086,-0.1922483891248703,-0.4700194001197815,0.14573197066783905,-0.09465239942073822,-0.12115152925252914,-0.08923816680908203,-0.28848159313201904,0.1254829466342926,0.0407976359128952,-0.12636561691761017,0.0033609350211918354,0.07075068354606628,-0.3213408291339874,0.032069507986307144,-0.24500741064548492,-0.3526557683944702,-0.11184079945087433,0.09384646266698837,-0.25879743695259094,0.19813627004623413,0.0729241892695427,0.098780557513237,0.24729765951633453,0.014975777827203274,0.375310480594635,-0.1751168668270111,0.12625816464424133,-0.018692055717110634,-0.16046690940856934,-0.07848676294088364,-0.12737271189689636,-0.20682768523693085,-0.15129274129867554,0.02714390866458416,0.14618785679340363,-0.24271634221076965,-0.1160801574587822,-0.07951068133115768,-0.3141223192214966,0.17342644929885864,-0.15666814148426056,-0.2779214382171631,0.18023474514484406,0.1433417946100235,0.14273303747177124,0.031905561685562134,-0.1768171489238739,0.10740970820188522,0.15188610553741455,0.2554055452346802,0.22618769109249115,-0.2507862448692322]},{"shape":[32],"values":[0.6977015137672424,-0.11806422472000122,-0.3149832785129547,0.6378427743911743,-0.10772504657506943,0.708263099193573,0.5327174663543701,-0.3907032012939453,-0.46867623925209045,0.6173030138015747,0.7490128874778748,-0.22498250007629395,-0.3821414113044739,0.2302739918231964,-0.2305816113948822,0.45832154154777527,-0.5004231333732605,0.11159142851829529,0.50002521276474,0.6723153591156006,0.7502168416976929,0.6921593546867371,0.7582795023918152,-0.08617831766605377,-0.13849277794361115,0.557174026966095,-0.49744486808776855,0.4597820043563843,0.5794398188591003,-0.29276326298713684,0.5469148755073547,-0.4283771514892578]},{"shape":[32,32],"values":[0.38828492164611816,0.22168616950511932,0.7116663455963135,0.43453484773635864,0.10445050895214081,0.032469380646944046,0.5034531950950623,0.0595199353992939,0.4326210021972656,0.5303337574005127,0.560566246509552,0.3456091582775116,0.28745582699775696,0.1836605817079544,0.34160441160202026,-0.1084389016032219,0.05529516935348511,0.6071853041648865,0.15504033863544464,0.18511927127838135,0.2858044505119324,0.28754669427871704,-0.00947986263781786,-0.25244396924972534,0.6084060072898865,0.027265381067991257,-0.1483161598443985,0.18428203463554382,0.2674024701118469,0.08940067142248154,0.10399843007326126,0.05383722484111786,-0.4494042992591858,0.5005741119384766,-0.39924806356430054,-1.0546014308929443,-0.06588428467512131,-0.02252553403377533,-0.0666094496846199,-0.23240534961223602,-0.8483707904815674,-0.6433781385421753,-0.35143932700157166,-0.23290306329727173,-1.2078280448913574,0.23174457252025604,-0.4210033118724823,-0.5458574295043945,-1.096530556678772,-0.028769178315997124,0.4864647090435028,-0.8659036755561829,-0.8444706201553345,-0.15250052511692047,-0.5343432426452637,-0.24541392922401428,-0.7780967354774475,0.5862252116203308,0.18190167844295502,-1.2160606384277344,0.2123408168554306,0.41216570138931274,0.19032655656337738,0.021074697375297546,-0.4036869406700134,-0.27805471420288086,-1.1184418201446533,-0.7361992001533508,-0.15567554533481598,0.5793730616569519,-0.4851903021335602,0.14582479000091553,-0.14652356505393982,-0.501029908657074,-0.5505492687225342,0.6909154653549194,-0.8419903516769409,-0.30241650342941284,-0.5537357330322266,-0.5016302466392517,-0.10384643077850342,-0.6732226014137268,-0.02777251973748207,-0.6565611362457275,-0.629283607006073,-0.836534857749939,-0.5950939059257507,0.007505222223699093,-0.6486362218856812,-0.47992846369743347,-0.23476141691207886,-0.4936993718147278,-0.8517398238182068,0.6735436320304871,0.3115440011024475,0.4544188678264618,-0.3380168080329895,0.09564973413944244,0.7904683351516724,0.8415314555168152,0.11574191600084305,-0.3428456783294678,0.49370718002319336,-0.15341751277446747,0.5699400901794434,0.5852348804473877,0.5106137990951538,-0.42088019847869873,0.8615198731422424,-0.2856749892234802,0.7193034291267395,-0.10398731380701065,0.8265394568443298,0.8118695020675659,0.2813238203525543,0.7439575791358948,0.37435412406921387,0.5690432190895081,0.06662324070930481,-0.17895792424678802,0.7278165817260742,0.2451171725988388,-0.19544990360736847,1.1688228845596313,-0.11878886073827744,-0.34989070892333984,-0.14348088204860687,-0.05571713671088219,-0.41434380412101746,0.46603068709373474,-0.3915063142776489,-0.07148664444684982,0.26845070719718933,-0.026219461113214493,-0.2515937387943268,-0.1027468889951706,-0.0965149998664856,-0.4360577464103699,-0.018648989498615265,0.5742020606994629,-0.5045163035392761,0.04939696937799454,-0.9486761689186096,-0.22864748537540436,-0.029589742422103882,-0.31054171919822693,-0.1883263736963272,-0.1558656543493271,-0.996494472026825,-0.27449238300323486,-0.17018790543079376,-0.2346014529466629,-0.3822280168533325,0.3048016428947449,0.21793773770332336,-0.15876100957393646,-0.3408275544643402,-0.10360797494649887,0.1544688493013382,-0.1124781146645546,-0.184355691075325,0.00779726030305028,0.5087325572967529,0.11972486227750778,-0.4000973403453827,-0.15697038173675537,0.268937885761261,-0.20123226940631866,0.5983512997627258,0.4957827627658844,0.07534811645746231,0.37040799856185913,0.44425612688064575,-0.32569295167922974,-0.032636404037475586,0.3366610109806061,0.5901646614074707,0.24496763944625854,0.18649907410144806,0.16246739029884338,0.026796208694577217,0.5198903679847717,0.15808920562267303,-0.09962909668684006,0.6197075247764587,-0.1981000006198883,0.1365417093038559,0.25618892908096313,0.17232349514961243,0.14405889809131622,0.23437391221523285,-0.04526745155453682,0.2735742926597595,-0.14275845885276794,0.6000427603721619,0.6613125205039978,0.03014451079070568,0.020784815773367882,0.5529100298881531,-0.08516968786716461,0.3527371883392334,0.21144570410251617,0.7019742131233215,0.23730674386024475,0.5295296311378479,-0.2912001609802246,0.3400905132293701,0.5686526298522949,0.792416512966156,0.6398739814758301,0.42417868971824646,0.4467841386795044,0.36007821559906006,0.39738786220550537,-0.010982506908476353,0.19375978410243988,0.6273951530456543,-0.03518546000123024,-0.00802303571254015,0.48647111654281616,-0.014011847786605358,-0.4005819261074066,-0.1529049277305603,0.37522709369659424,-0.3698350489139557,0.3782559335231781,-0.27005043625831604,-0.43017101287841797,0.06974521279335022,0.2875308692455292,0.042749594897031784,-0.22591635584831238,-0.487949013710022,-0.28869813680648804,-0.07057163864374161,-0.22370295226573944,-0.8972142338752747,0.06125916168093681,-0.1320456564426422,-0.2986062467098236,-0.5032324194908142,-0.2658687233924866,0.027311833575367928,-0.5471636056900024,-0.6560564637184143,-0.10242871195077896,-0.01379071082919836,0.05101960152387619,-0.7090802192687988,0.3252001106739044,-0.008348094299435616,-0.8367393016815186,-0.21634377539157867,0.28804513812065125,0.027840854600071907,0.08053214848041534,-0.20312535762786865,0.23345373570919037,-0.6228107213973999,-0.48698174953460693,0.17004235088825226,0.1890331208705902,-0.33701711893081665,-0.1669212430715561,-1.2862575054168701,-0.7557255625724792,0.04101479426026344,-0.5700797438621521,-1.0548079013824463,-0.236300989985466,-0.39089900255203247,-0.05931558087468147,-0.9049535393714905,-0.10571788251399994,0.2277108132839203,-0.7393904328346252,-0.9411686658859253,-0.46544620394706726,-0.445170521736145,-0.2361770123243332,-0.8266808390617371,0.2608509659767151,0.11054782569408417,-1.1015409231185913,0.16841311752796173,0.3201233446598053,0.3432773947715759,-0.26311489939689636,0.6077141761779785,0.10492187738418579,0.8836688995361328,0.714601993560791,-0.10268101096153259,-0.09042710065841675,0.504408597946167,-0.13310551643371582,0.6238968968391418,0.47329261898994446,0.6486246585845947,0.08230235427618027,0.8164297342300415,-0.04393329843878746,0.6837903261184692,0.3801704943180084,0.21444611251354218,1.0160883665084839,-0.31513896584510803,0.124687559902668,0.6910641193389893,0.5001417398452759,-0.11581133306026459,-0.29536348581314087,0.474033385515213,0.16430003941059113,-0.11614900827407837,0.8683847188949585,0.129853293299675,-0.15788596868515015,-0.08419857919216156,-0.25699642300605774,0.17249779403209686,-0.16532759368419647,1.0713303089141846,0.6565094590187073,-0.012400676496326923,0.09221073240041733,0.21291066706180573,0.023851141333580017,0.9380896091461182,0.7307542562484741,0.5441221594810486,-0.6166728734970093,0.9128604531288147,-0.03494608774781227,0.37442561984062195,0.24841801822185516,0.9295322299003601,0.5970404148101807,-0.16364066302776337,0.411605566740036,0.5488944053649902,1.0404154062271118,0.5232760310173035,0.23012886941432953,0.6721245050430298,-0.2824142873287201,-0.18167279660701752,0.8030806183815002,0.23575207591056824,-0.16018573939800262,-0.22908635437488556,0.03425276651978493,-0.21349355578422546,0.4857606887817383,-0.3460897207260132,-0.9816973805427551,-0.3995567858219147,0.28847822546958923,0.02420082502067089,-0.29156509041786194,-1.080009937286377,-0.899165689945221,-0.33327555656433105,0.29737964272499084,-1.0011482238769531,-0.16340240836143494,-0.42046499252319336,-0.4149840176105499,-0.6877346634864807,-0.6390802264213562,0.08186861127614975,-0.4220077395439148,-0.939437985420227,-0.3932684063911438,-0.4072677195072174,0.06875930726528168,-0.8050670623779297,0.12727908790111542,-0.1419021487236023,-1.1131659746170044,-0.043837644159793854,0.5823701024055481,0.35437944531440735,0.06786089390516281,-0.6801602840423584,0.40097349882125854,-0.5292927026748657,-1.029760479927063,0.09343919157981873,0.47133705019950867,-0.1778034269809723,-0.12770429253578186,-1.144337773323059,-1.0965644121170044,-0.2602385878562927,-0.11306319385766983,-0.8617711067199707,0.0714559331536293,-0.5343269109725952,-0.411337673664093,-0.7143901586532593,-0.30006855726242065,0.1636182814836502,-0.48969051241874695,-0.8740981221199036,-0.5341712236404419,-0.1544061005115509,-0.25529807806015015,-1.2025035619735718,0.2966459095478058,-0.17528758943080902,-1.2530865669250488,0.2937193512916565,0.5853071808815002,0.5857598185539246,-0.053008608520030975,0.40423068404197693,0.29749560356140137,0.5047220587730408,0.5825476050376892,-0.19404780864715576,0.2747383415699005,-0.15424342453479767,0.2590878903865814,-0.028268862515687943,-0.09266786277294159,0.3562098443508148,0.36939796805381775,0.35954657196998596,-0.14311717450618744,0.3188396096229553,0.3607425391674042,0.14768116176128387,0.14305227994918823,-0.6358509659767151,0.1384325474500656,0.3146977126598358,-0.029900193214416504,-0.014783049002289772,-0.14694395661354065,-0.34582892060279846,-0.2674921154975891,-0.008268674835562706,0.07860317826271057,0.19377271831035614,-0.2833526134490967,0.11338486522436142,-0.06944596022367477,-0.2576458752155304,0.4414221942424774,0.16299806535243988,-0.05632854998111725,0.1851663887500763,0.22806820273399353,-0.24272681772708893,0.14855363965034485,-0.6250096559524536,-0.08020851016044617,-0.01455005444586277,-0.3548419773578644,-0.27643054723739624,0.04304942861199379,-0.5054671764373779,-0.30606183409690857,-0.19473972916603088,0.14284643530845642,0.07916629314422607,-0.129008948802948,0.21256239712238312,0.24961666762828827,-0.389932245016098,-0.11943357437849045,-0.45914608240127563,0.4857117831707001,-0.0771276131272316,-0.46751269698143005,0.08790519088506699,0.34650400280952454,0.2609495520591736,-0.33333730697631836,-0.20650501549243927,-0.6544435620307922,0.21271449327468872,0.5354506373405457,0.17501817643642426,-0.1785496175289154,0.7639866471290588,-0.0468921922147274,0.3886916935443878,0.6867312788963318,0.5606944561004639,-0.08541546016931534,0.3922332525253296,0.19236266613006592,0.40946948528289795,0.13318482041358948,0.6705957651138306,0.7185351252555847,0.8757043480873108,0.5599337816238403,0.7167362570762634,0.3638033866882324,-0.04852788895368576,-0.07034668326377869,0.5768913626670837,-0.32276251912117004,-0.06733296066522598,0.9287989735603333,-0.4141777455806732,-0.19943644106388092,-0.26304593682289124,0.05887399986386299,-0.6225889921188354,-0.8514173626899719,-0.8933131098747253,-0.21725839376449585,-0.3074309527873993,0.6525081396102905,-0.7467984557151794,0.016138337552547455,-0.9995177984237671,-0.8405417799949646,-0.0562690831720829,0.6430943608283997,-1.0252108573913574,0.18108296394348145,-0.5290941596031189,-0.8785280585289001,-0.4948335886001587,-1.0540286302566528,-0.21841087937355042,-0.6777230501174927,-0.86738520860672,-1.0782383680343628,-0.2634256184101105,0.06732959300279617,-0.8483586311340332,-0.42304521799087524,-0.2779408395290375,-0.32700595259666443,-0.4057105481624603,0.5101906061172485,0.5931128859519958,0.3424845039844513,0.4583027958869934,0.023569656535983086,0.41082799434661865,0.48853161931037903,0.28776639699935913,-0.25337445735931396,0.06358408182859421,-0.18346837162971497,-0.007710497826337814,0.37574878334999084,0.17889006435871124,-0.523730993270874,0.015613535419106483,-0.2414071261882782,0.4156041145324707,0.6040384769439697,0.1595003753900528,0.16483156383037567,-0.48523154854774475,0.32904496788978577,0.44569137692451477,0.4621533453464508,0.387837290763855,-0.3355880081653595,0.2941698133945465,-0.16557231545448303,-0.029221633449196815,0.17924514412879944,-0.27054470777511597,-0.1701042354106903,-0.29223141074180603,-0.45755627751350403,0.2226957231760025,0.0008561042486689985,0.6103076934814453,0.4785069525241852,-0.15397170186042786,-0.22813796997070312,0.0558362677693367,-0.2876811623573303,0.2220483273267746,0.39515408873558044,0.35751742124557495,0.002198721282184124,0.32089024782180786,-0.06591883301734924,0.5061690807342529,0.3576362431049347,0.258310467004776,0.5155845880508423,-0.47589313983917236,0.16439466178417206,0.7890228629112244,0.42196035385131836,0.47729960083961487,-0.11728084832429886,0.016216034069657326,0.10737133026123047,0.09837488830089569,0.24852778017520905,0.07204312831163406,-0.00158476282376796,-0.1584797352552414,0.012343844398856163,0.40194982290267944,0.15538278222084045,0.4582458734512329,0.10237517952919006,-0.07127481698989868,0.21620090305805206,0.060103654861450195,-0.11409728974103928,0.3319547772407532,-0.028038498014211655,0.4039560556411743,0.3992545008659363,0.5448399186134338,0.08040985465049744,-0.05788386985659599,0.1745084971189499,0.28714561462402344,0.5023506879806519,0.33951136469841003,0.16230013966560364,0.2151736617088318,0.5686785578727722,-0.09539523720741272,-0.2820962369441986,0.24669727683067322,-0.23595477640628815,-0.17527329921722412,0.543897271156311,-0.05889560654759407,-0.1792275309562683,0.047905437648296356,-0.1441190242767334,0.1621861606836319,0.40790218114852905,0.6045753359794617,0.8674393892288208,-0.19520609080791473,-0.07485026866197586,0.30523109436035156,0.04079824686050415,0.2726460099220276,0.35667240619659424,0.816618025302887,-0.17752784490585327,0.8961771726608276,0.03190004825592041,0.4725446105003357,0.346885621547699,0.6018996238708496,0.8036476969718933,0.0678502693772316,0.5987005829811096,0.7198649048805237,0.9467855095863342,0.17791444063186646,-0.09774640947580338,0.6455481052398682,0.1388133317232132,-0.30558347702026367,0.749090850353241,0.13471254706382751,-0.10210735350847244,-0.1644028276205063,-0.14194732904434204,0.499124139547348,-0.12589579820632935,0.5339152216911316,0.5331344604492188,0.12122706323862076,0.10249948501586914,0.33015164732933044,-0.12673357129096985,0.3367161452770233,0.11452225595712662,0.6557145118713379,-0.24864093959331512,0.6312198638916016,-0.08550512045621872,0.15517199039459229,0.4972964823246002,0.8071199655532837,0.41897523403167725,0.09888336062431335,0.25850382447242737,0.5139679312705994,0.7427111268043518,0.16996456682682037,-0.2912463843822479,0.3362940549850464,-0.009885814972221851,0.002230684505775571,0.7991288304328918,0.028244905173778534,0.0027055623941123486,-0.23929306864738464,-0.26265954971313477,-0.0014897744404152036,0.25276100635528564,0.2863383889198303,0.3211787939071655,-0.23431400954723358,0.25649455189704895,0.18465286493301392,-0.2429593801498413,0.3000184893608093,0.4488798975944519,0.3079257905483246,0.08729878813028336,0.1492757797241211,-0.05990975722670555,0.2883867919445038,0.3022953271865845,0.5349621772766113,0.6565046906471252,-0.057280171662569046,0.4648051857948303,0.2817792594432831,0.825098991394043,0.26416653394699097,-0.12103424966335297,0.2096959352493286,0.1723758727312088,-0.01676126942038536,0.5497779846191406,0.000004917412297800183,0.2492598295211792,0.1857394576072693,-0.04399971663951874,0.20310913026332855,0.17711161077022552,-0.13388261198997498,-0.3073112964630127,0.1267070323228836,-0.2755308747291565,-0.1510789543390274,0.017154771834611893,-0.23260168731212616,-0.6593317985534668,0.3018783628940582,0.3046126663684845,-0.19453853368759155,-0.21967966854572296,-0.27202102541923523,-0.18248355388641357,-0.5116384029388428,-0.23967285454273224,0.23429569602012634,-0.4562317132949829,-0.4068978726863861,0.19357053935527802,0.1289386749267578,0.2809346616268158,-0.7067099809646606,0.025077346712350845,0.06014154106378555,-0.1681605875492096,0.0023418026976287365,0.10920661687850952,0.26582303643226624,-0.47581714391708374,-0.3628614842891693,0.7267270088195801,-0.13793060183525085,-0.7124916911125183,-0.0015848168404772878,0.22764302790164948,-0.10972842574119568,-0.21588003635406494,-0.6049384474754333,-0.7247254252433777,-0.6197136044502258,0.24565207958221436,-0.950607180595398,-0.2937743663787842,-0.7659347057342529,-0.2066149115562439,-0.6193616390228271,-0.658589243888855,0.19406715035438538,-0.5285636186599731,-1.1103931665420532,-0.6522888541221619,-0.42867809534072876,-0.10772423446178436,-0.5898029804229736,0.4236149787902832,-0.21681511402130127,-0.8928486108779907,0.32010698318481445,0.5465916991233826,0.3479367792606354,-0.8575465679168701,0.47655317187309265,-0.07064247876405716,0.42315250635147095,0.6523698568344116,-0.0061550261452794075,0.14883416891098022,0.25328531861305237,-0.11395218223333359,-0.0002572837402112782,0.008092657662928104,0.33797580003738403,0.05618242546916008,0.49964848160743713,-0.3352537155151367,0.07487502694129944,0.4861365556716919,-0.030140556395053864,0.38835325837135315,0.18103504180908203,-0.20641909539699554,0.3744356632232666,0.439804345369339,0.06306738406419754,-0.15038186311721802,0.04377023130655289,-0.4081219434738159,0.00019036416779272258,0.5145583152770996,-0.05363890528678894,0.11229945719242096,0.20528574287891388,0.22949960827827454,-0.7228226661682129,0.06068607047200203,-0.37122419476509094,-0.4392816126346588,-0.15108713507652283,0.14715377986431122,-0.19024528563022614,-0.17365172505378723,-1.2004644870758057,-0.661217212677002,-0.05581304058432579,-0.2278793901205063,-0.9051968455314636,0.2789064347743988,-0.6944984197616577,-0.4074777364730835,-0.9517579078674316,-0.14292950928211212,0.2103080153465271,-0.5450630187988281,-0.4423920214176178,-0.23241998255252838,-0.1092424988746643,-0.15379825234413147,-0.8757449388504028,0.060977354645729065,0.15521204471588135,-1.1713141202926636,0.3818410336971283,0.7222078442573547,0.44698193669319153,0.05328876152634621,-0.2924095690250397,0.15854884684085846,0.24590860307216644,0.3573583662509918,0.2887875437736511,0.18919001519680023,0.2359181046485901,0.0596407912671566,0.3799419403076172,0.5635766386985779,0.3857737183570862,-0.2929622530937195,0.37381482124328613,0.039952293038368225,-0.0020614503882825375,0.013891583308577538,0.16162973642349243,0.6856468319892883,0.41951727867126465,0.29256001114845276,0.24626556038856506,0.5940057635307312,0.19040139019489288,0.1668485552072525,0.851767361164093,0.2621811032295227,0.18599961698055267,0.6347411870956421,-0.003285463433712721,0.12126582860946655,0.0247917789965868,-0.0797569751739502,0.3924749195575714,0.1592494398355484,0.3515450358390808,0.18072667717933655,0.11573152989149094,-0.11587284505367279,0.36270231008529663,-0.16018900275230408,0.40198761224746704,0.29806673526763916,0.5831875205039978,-0.530573308467865,0.19318735599517822,0.03647410124540329,0.43990573287010193,0.18320223689079285,0.27209821343421936,0.5792679786682129,0.2095695585012436,0.013584468513727188,0.4485352337360382,0.42550382018089294,-0.09901273250579834,0.1728915423154831,0.08015849441289902,0.242481991648674,-0.16552670300006866,0.134212464094162,0.20473794639110565,-0.06086373329162598,-0.02393203228712082,-0.6113536357879639,-0.371273934841156,0.3417300283908844,0.08239558339118958,-0.3968316912651062,0.16848768293857574,0.07309882342815399,-0.24783340096473694,0.21583932638168335,-0.8143670558929443,-0.35176774859428406,-0.069155752658844,-0.041580621153116226,-0.4505230188369751,0.019420862197875977,-0.3858574330806732,0.01653205417096615,-0.7223514914512634,-0.04057347774505615,-0.38036873936653137,-0.48741376399993896,-0.535913348197937,-0.32698267698287964,-0.1533222496509552,-0.17332713305950165,-0.7490075826644897,-0.12936685979366302,-0.058974698185920715,-0.3789413869380951,0.29311403632164,-0.01951216720044613,0.10318802297115326,-0.3286644220352173,0.09805140644311905,-0.15202879905700684,0.3348648250102997,0.5346753597259521,-0.035635367035865784,-0.19246305525302887,0.4293650686740875,-0.07309217005968094,0.502447247505188,0.14484751224517822,0.25288036465644836,-0.15483270585536957,0.4324236214160919,0.08237950503826141,0.1461247056722641,0.01083116140216589,0.2770944833755493,0.6820033192634583,0.3483075499534607,0.5705966949462891,-0.01814395934343338,0.37764647603034973,0.32570376992225647,-0.21460972726345062,0.10960402339696884,-0.09913308173418045,-0.1588231772184372,0.4396946430206299,-0.14858680963516235,0.22596962749958038,0.1225481927394867,0.051474813371896744,-0.7622888684272766,-0.709527313709259,-1.1076023578643799,-0.17270918190479279,-0.5381325483322144,0.16352882981300354,-0.4434452950954437,-0.08939242362976074,-0.6809533834457397,-0.7888254523277283,-0.15403009951114655,0.5189940929412842,-0.9328414797782898,-0.24250002205371857,-0.4366101622581482,-1.0921657085418701,-0.32863423228263855,-0.9916302561759949,-0.09289217740297318,-0.2616056203842163,-0.5760465860366821,-0.3900715112686157,-0.17945073544979095,0.15154798328876495,-0.25339141488075256,-0.49557217955589294,0.22891704738140106,-0.30158355832099915,-0.8614620566368103,0.5654265284538269,0.5120763182640076,0.43339070677757263]},{"shape":[32],"values":[0.21919339895248413,-0.10249694436788559,0.568369448184967,0.6049888134002686,0.0519711971282959,-0.362578809261322,0.2630295753479004,-0.07169731706380844,0.48113828897476196,0.5395187139511108,0.7122080326080322,-0.14896391332149506,0.508154571056366,-0.06194695830345154,0.490094929933548,0.40267375111579895,0.652286171913147,0.5389350652694702,-0.010417511686682701,0.5293937921524048,0.5993936657905579,0.6294465065002441,0.4132310450077057,-0.02200954593718052,0.4566795527935028,-0.378778874874115,-0.03685186058282852,0.7084262371063232,-0.21060636639595032,-0.3560291826725006,-0.3606792092323303,-0.278179794549942]},{"shape":[32,9],"values":[0.3641533851623535,0.7310516834259033,0.6407957077026367,-0.044673603028059006,0.38470208644866943,0.925404965877533,-0.15208719670772552,0.43270018696784973,0.54764723777771,-0.5564109086990356,-0.2849873900413513,-0.39079955220222473,-0.5829553008079529,-0.4592958092689514,-0.3027748465538025,-0.41135650873184204,-0.10826947540044785,-0.024993455037474632,0.4898318648338318,0.6874399781227112,0.9387798309326172,0.3795669376850128,0.5514939427375793,0.6018689274787903,0.24551136791706085,0.802689254283905,0.6798158288002014,0.40053650736808777,0.4034668207168579,0.6545307636260986,0.29843437671661377,0.771727442741394,0.681475818157196,0.4565068781375885,0.6372896432876587,0.7987529039382935,-0.21867801249027252,0.044638291001319885,0.0922626331448555,0.27098068594932556,-0.1336139440536499,0.3395359218120575,-0.6239767670631409,0.16376493871212006,0.10774160921573639,-0.40843403339385986,-0.4691997766494751,-0.2700364291667938,-0.35331276059150696,-0.566749632358551,0.03289671242237091,-0.44716036319732666,-0.4072486460208893,-0.30069422721862793,0.05404409393668175,0.8040064573287964,0.35433363914489746,0.8710806965827942,0.2520095109939575,0.2749992609024048,0.7565789818763733,0.11976831406354904,0.11806550621986389,-0.1822815239429474,-0.22055895626544952,-0.20615749061107635,0.03721962869167328,0.2759886682033539,0.27254679799079895,0.041170310229063034,0.0999346375465393,-0.07296203076839447,0.8073883056640625,0.6455700993537903,0.4149426519870758,0.4463661313056946,0.618667483329773,0.30988460779190063,0.8916029930114746,0.7065041661262512,0.26202142238616943,0.7773838639259338,0.806437075138092,0.3905321955680847,0.4657531678676605,0.970177948474884,0.3871460556983948,0.7870164513587952,0.6136988997459412,0.6554522514343262,0.3189270496368408,0.530480146408081,0.6447769999504089,0.28319400548934937,0.486283540725708,0.1175139769911766,0.7791959643363953,0.6731661558151245,0.6760013699531555,0.051586899906396866,-0.15921208262443542,-0.18242758512496948,-0.008090773597359657,-0.5410674214363098,-0.18915146589279175,-0.7624163627624512,-0.828812837600708,-0.28182095289230347,0.6418114900588989,0.6620689630508423,0.7414806485176086,0.9498817920684814,0.6525905728340149,0.8989046216011047,0.5730395913124084,0.6168408989906311,0.8918060660362244,-0.18604706227779388,-0.18208599090576172,-0.05392850935459137,0.21112170815467834,0.07074978202581406,-0.09181153029203415,0.1582680344581604,-0.016531189903616905,0.20296472311019897,0.4882938861846924,0.08533882349729538,0.42073625326156616,0.6389100551605225,0.5343791842460632,0.6119181513786316,0.4034842848777771,0.7721085548400879,0.7753140926361084,0.3146841526031494,0.5156132578849792,0.8013254404067993,0.14143504202365875,0.6291961073875427,0.31818029284477234,0.10288044810295105,0.3225407600402832,0.8595895171165466,0.5217965841293335,0.6412633657455444,0.6795371770858765,0.3989151418209076,0.2870354950428009,0.38451144099235535,0.6996096968650818,0.6914824843406677,0.5999492406845093,0.597813069820404,0.8172938823699951,0.6063147187232971,0.6127247214317322,0.6768333315849304,0.7254940271377563,0.5326071381568909,0.585157036781311,0.17651650309562683,0.8574517369270325,0.3291713297367096,-0.26341867446899414,0.5035127401351929,0.3675059974193573,-0.05384642258286476,0.38349756598472595,0.1348130702972412,-0.4510918855667114,1.1275655031204224,0.3033396303653717,0.30802249908447266,1.2046411037445068,0.8636036515235901,0.09616674482822418,0.6884185075759888,0.6192253828048706,0.6189900636672974,0.5950209498405457,0.8310036063194275,0.8549676537513733,0.5262817740440369,0.7947623133659363,1.0963941812515259,0.7364097237586975,0.7209961414337158,1.0434321165084839,0.6509935855865479,0.1756696254014969,0.5050225853919983,0.7462502717971802,0.7440832853317261,0.7420404553413391,0.7370889782905579,0.23330169916152954,0.6931804418563843,0.06450383365154266,0.25292447209358215,0.15820986032485962,0.5797831416130066,0.13692624866962433,0.081702321767807,0.3178946375846863,0.5617690086364746,0.7268853783607483,-0.005837139207869768,-0.3241218626499176,-0.31502091884613037,-0.23596839606761932,-0.13759900629520416,-0.059599827975034714,0.20913629233837128,0.23380233347415924,0.35259297490119934,1.0751500129699707,0.4396812915802002,0.41926097869873047,0.8609522581100464,0.4772529900074005,0.7257702946662903,0.7272934913635254,0.6127157807350159,0.25223633646965027,-0.07875560224056244,0.11351701617240906,-0.15511512756347656,-0.20580275356769562,-0.395530641078949,-0.2929766774177551,-0.017150260508060455,0.08870314061641693,-0.7092863321304321,-0.02871045097708702,-0.3043056130409241,-0.0017800714122131467,0.31008344888687134,0.14301824569702148,-0.09736969321966171,-0.3264084458351135,0.1482057422399521,0.0376153364777565,0.4900056719779968,0.7712980508804321,0.4936841130256653,0.8878844976425171,0.5663173198699951,0.8030573725700378,0.8928873538970947,0.8940949440002441,0.7180966138839722,-0.2185465693473816,-0.1382567286491394,-0.29685598611831665,-0.3606671690940857,-0.5614076852798462,0.13122235238552094,-0.46774163842201233,-0.29813143610954285,0.09151320159435272,-0.10551126301288605,-0.6715636849403381,-0.5311263203620911,-0.22191616892814636,-0.13447995483875275,-0.36061760783195496,-0.42401978373527527,-0.5591594576835632,-0.5361083745956421,-0.08665232360363007,-0.40823090076446533,-0.11932417750358582,-0.25102537870407104,-0.2946665287017822,-0.37893688678741455,-0.36060214042663574,-0.012577956542372704,-0.46275952458381653,-0.23186960816383362,-0.10165375471115112,-0.20836865901947021,-0.22498510777950287,0.02672448568046093,-0.17453594505786896,-0.6764604449272156,0.017883846536278725,0.06389732658863068]},{"shape":[9],"values":[0.35473164916038513,0.13111959397792816,0.18145690858364105,0.32269424200057983,0.32351312041282654,0.16061542928218842,0.4322856664657593,0.3743796944618225,0.53509521484375]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-29.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-29.json new file mode 100644 index 0000000..2ff787f --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-29.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":29,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:55:19.228Z","weights":[{"shape":[20,32],"values":[-0.16594074666500092,0.698454737663269,1.0872085094451904,1.203958511352539,-0.3171209692955017,0.719709038734436,-0.468317449092865,-0.3073737621307373,-0.5326842069625854,1.0185000896453857,0.5420811772346497,-0.3725733458995819,0.9498190879821777,1.13953697681427,0.8951736688613892,0.8128076791763306,-0.45172595977783203,-0.30960777401924133,0.16394205391407013,-1.006558895111084,0.9025669097900391,1.0608919858932495,0.499072402715683,0.9433213472366333,1.0094128847122192,0.9195327162742615,0.2973180413246155,0.7726230025291443,0.8632062673568726,0.8166739344596863,0.4821910262107849,0.30469775199890137,-0.35016781091690063,-0.18668876588344574,-0.04564320296049118,-0.2519393265247345,-0.2618495225906372,0.07776544988155365,0.23319795727729797,0.3736245632171631,0.08272437751293182,0.040760841220617294,-0.01523200236260891,-0.14274248480796814,0.03562154248356819,-0.0012525051133707166,0.222794771194458,0.31211423873901367,-0.1003694012761116,0.2772985100746155,-0.17013958096504211,0.05412213131785393,-0.08869463205337524,-0.20261679589748383,0.14916615188121796,0.020651288330554962,0.37258395552635193,-0.274303138256073,-0.3906010091304779,0.045969147235155106,0.1860654056072235,-0.024667488411068916,-0.0327145978808403,-0.1770724505186081,-0.6748384237289429,0.17498822510242462,0.035746604204177856,0.20477695763111115,-0.16040214896202087,-0.1330725997686386,0.8995414972305298,0.7816430926322937,0.6105921864509583,-0.49011579155921936,0.25504496693611145,-0.9467814564704895,-0.0139255216345191,0.3353962302207947,-0.29825228452682495,-0.09751079976558685,-0.5953033566474915,0.5756801962852478,-0.5898270606994629,0.5343949198722839,0.032720960676670074,0.20530158281326294,-0.1728372722864151,0.09896624088287354,0.02546750195324421,-0.15464384853839874,-0.24195776879787445,0.09945586323738098,-0.4069983959197998,0.15580059587955475,-0.3454131782054901,0.12562450766563416,1.512000322341919,-0.8523674607276917,-0.618932843208313,-1.1483805179595947,1.4556444883346558,-1.1526352167129517,-1.020811915397644,-1.0158077478408813,-0.8676356673240662,1.2685861587524414,-0.8224933743476868,1.6689454317092896,-1.0928679704666138,-0.6394854187965393,-0.448391854763031,0.1539630889892578,2.0775716304779053,-1.0356018543243408,1.4991403818130493,-1.2850911617279053,-1.1744325160980225,-1.0207741260528564,-1.0152308940887451,-1.1088898181915283,-0.38792991638183594,1.1329840421676636,1.9524749517440796,-0.8729718923568726,0.1671156883239746,-0.8378862142562866,0.14970581233501434,-1.3406357765197754,0.21825064718723297,0.19489994645118713,0.29778677225112915,0.048386309295892715,0.1757974624633789,0.2315952032804489,0.09471341222524643,-0.02415907382965088,0.10929654538631439,-0.1648675799369812,0.15993782877922058,-0.04753206670284271,0.38324522972106934,0.2934814989566803,-0.4753381907939911,-0.6070443391799927,0.1953505575656891,0.201227605342865,-0.13373400270938873,-0.2614688277244568,0.024689296260476112,0.31337690353393555,0.28226596117019653,0.1441030353307724,-0.47275832295417786,-0.01542800571769476,0.14052234590053558,0.09647146612405777,-0.25804322957992554,-0.03488771989941597,-0.21461614966392517,0.6671572923660278,0.29849544167518616,0.4293295443058014,0.10769454389810562,0.17820818722248077,0.4665044844150543,-0.11138874292373657,-0.6655194759368896,-0.8691627383232117,-0.5833013653755188,0.45910531282424927,-0.06941709667444229,0.20105163753032684,-0.267112135887146,-0.27251654863357544,0.08877455443143845,-0.2140672504901886,0.3934025764465332,-0.36373206973075867,0.4576842784881592,-0.6556828618049622,0.05791748687624931,0.3035256266593933,0.19745245575904846,-0.3379981517791748,-0.13780386745929718,-0.07339034229516983,0.18984882533550262,0.2866397798061371,-0.3783767819404602,0.011707144789397717,-0.384108304977417,0.4405810236930847,0.28271615505218506,0.047768015414476395,-0.14850270748138428,-0.1022569090127945,0.5306410789489746,-0.5646416544914246,0.21574902534484863,-0.5719646215438843,-0.641640305519104,0.5314194560050964,-0.05318502336740494,0.18458428978919983,-0.23761747777462006,0.018313203006982803,-0.49307847023010254,-0.29041773080825806,0.2743602395057678,-0.6135233640670776,0.4752578139305115,-0.41703566908836365,0.010123144835233688,0.3120023310184479,-0.27200499176979065,0.22232775390148163,-0.2266935259103775,0.5750586986541748,0.3394291400909424,-0.2049204558134079,-0.43798497319221497,-0.1733701080083847,-0.14250704646110535,-0.21405963599681854,0.26489269733428955,0.28261542320251465,-0.13209138810634613,0.23702839016914368,0.02307841181755066,-0.2611536979675293,0.01062205620110035,-0.48151084780693054,-0.535481870174408,0.0905049666762352,0.39935773611068726,0.27896174788475037,0.30471330881118774,0.16970838606357574,-0.00824001058936119,0.08236473053693771,0.1186947301030159,-0.6935931444168091,-0.14792580902576447,-0.04864029958844185,0.0947265699505806,0.0709359347820282,0.5085601806640625,0.06204168498516083,0.01045818068087101,0.47005781531333923,0.1425236463546753,0.3320918083190918,0.1319381594657898,0.33890971541404724,0.2408238649368286,0.24236856400966644,-0.3174019455909729,0.6544086933135986,0.011414656415581703,-0.2746361196041107,-0.12314116209745407,0.3222905099391937,0.1094880923628807,0.05834072828292847,-0.2812906801700592,0.05176452174782753,-0.33790329098701477,-0.22218048572540283,0.07567112147808075,-0.3169812262058258,0.3865199685096741,0.3453042507171631,0.20362284779548645,-0.1179925799369812,-0.16164958477020264,-0.311847060918808,0.12973769009113312,0.06662753969430923,-0.24623654782772064,0.0981820672750473,0.1383904367685318,0.09379520267248154,-0.22566890716552734,0.34003767371177673,-0.20397089421749115,0.038145314902067184,-0.3915184736251831,0.030987083911895752,-0.013412720523774624,0.00838184542953968,0.17754799127578735,0.037966981530189514,-0.05956423655152321,0.3844773769378662,-0.12653999030590057,-0.02522984892129898,0.024053098633885384,-0.26111888885498047,-0.11227522790431976,0.028445282950997353,-0.07504700869321823,-0.17972515523433685,0.5085766315460205,0.003589092753827572,-0.385888010263443,0.019063575193285942,-0.21151956915855408,0.06991306692361832,0.021663520485162735,0.14676588773727417,0.13777652382850647,-0.8208221197128296,0.2494886964559555,-0.4776357114315033,-0.11448261886835098,0.02050158940255642,-0.07568778842687607,0.3092785179615021,-0.2881726324558258,0.47709745168685913,-0.17193102836608887,0.1891183704137802,0.42020097374916077,0.1297181397676468,-0.29002103209495544,0.5409061312675476,-0.38347750902175903,-0.25083428621292114,-0.33898288011550903,-0.40965256094932556,0.46408331394195557,-0.3688836693763733,0.2828739881515503,0.17764613032341003,0.06946556270122528,-0.14079217612743378,0.057381246238946915,-0.06778430193662643,-0.0643356665968895,0.32667139172554016,0.5050902366638184,-0.08682071417570114,-0.1145419105887413,0.23275455832481384,0.42029523849487305,-0.17111167311668396,0.06378989666700363,0.48088663816452026,0.4782467782497406,0.09781704097986221,-0.16215220093727112,0.3037581145763397,0.035062965005636215,-0.30448365211486816,-0.11444778740406036,-0.38611575961112976,-0.40560978651046753,-0.1657485067844391,0.21251045167446136,-0.36380118131637573,0.31274181604385376,0.08289036899805069,-0.2878316044807434,-0.19539861381053925,0.18773972988128662,0.07208602130413055,-0.3074365556240082,-0.03171272203326225,0.15311256051063538,-0.1685747653245926,0.4043007791042328,0.07740415632724762,-0.36931687593460083,-0.007620622869580984,-0.44014325737953186,-0.39820045232772827,0.10667809098958969,-0.21496619284152985,-0.2730320394039154,-0.3282589316368103,0.15657132863998413,-0.07308609038591385,-0.3755960762500763,0.2302602231502533,0.22740884125232697,0.28096213936805725,-0.003873363370075822,-0.01634274609386921,0.20494897663593292,-0.11054957658052444,-0.1204633042216301,-0.08911769092082977,-0.06231840327382088,-0.1529119908809662,0.074552521109581,0.00177407031878829,-0.15306255221366882,-0.33324095606803894,0.2575336694717407,0.13124898076057434,-0.0350160114467144,-0.1035342738032341,0.19833604991436005,0.021575916558504105,0.09417355060577393,-0.31225499510765076,-0.6599007248878479,-0.011535543948411942,-0.0347718708217144,-0.11668282747268677,0.165640190243721,-0.33920949697494507,0.1554429680109024,-0.22376899421215057,-0.574425995349884,0.2855986952781677,0.022618260234594345,-0.158515065908432,0.06718703359365463,0.056328948587179184,-0.07386819273233414,-0.055411968380212784,-0.21252667903900146,0.297469824552536,0.1049947738647461,0.1539040207862854,0.2942107915878296,-0.029821278527379036,0.29569610953330994,-0.29620054364204407,0.31200259923934937,0.08813215792179108,-0.34847089648246765,-0.09377957135438919,-0.299238920211792,0.25152117013931274,0.2556036114692688,0.3212548494338989,-0.25669899582862854,-0.2910069227218628,0.3113161027431488,-0.2074396014213562,-0.3085988461971283,0.07148463279008865,0.13271483778953552,-0.11268240958452225,0.04475834220647812,-0.0009510322706773877,-0.1091112494468689,-0.08395102620124817,-0.12676580250263214,-0.20189858973026276,0.3573172688484192,-0.06982506066560745,0.058915041387081146,0.09972269833087921,0.23715589940547943,-0.1402634084224701,-0.06439962238073349,-0.43248483538627625,0.3504280149936676,0.34810805320739746,0.1550014317035675,0.004662816412746906,-0.05174785479903221,0.4284760355949402,0.3429091274738312,0.01976480893790722,-0.2543471157550812,0.3570898771286011,0.08230654150247574,0.4768069386482239,0.08580657094717026,-0.31603091955184937,0.08647279441356659,0.04037334397435188,-0.22117502987384796,-0.20544418692588806,-0.009426473639905453,-0.024582961574196815,-0.41590964794158936,-0.31650179624557495,-0.12175984680652618,-0.24843132495880127,-0.11434119194746017,0.21628040075302124,0.2735786736011505,-0.29104840755462646,-0.2681708335876465,-0.17362062633037567,0.11928418278694153,-0.2411794513463974,0.0016340194270014763,-0.28898748755455017,-0.09285534918308258,-0.08938072621822357,0.10022523999214172,0.15528078377246857,0.3222965896129608,0.09920135885477066,0.012203123420476913,-0.3453194797039032,-0.07856191694736481,-0.1775851845741272,-0.16064731776714325,0.06163816899061203,-0.116584412753582,0.06591306626796722,0.25995030999183655,-0.1903626024723053,-0.025912610813975334,-0.33359286189079285,-0.17560714483261108,0.3152737617492676,-0.2977384030818939,0.039522845298051834,-0.14427682757377625,0.11546672135591507,0.4186699390411377,-0.08733195811510086,0.2307567596435547,0.14835858345031738,0.12763658165931702,0.2947935163974762,-0.3463886082172394,0.2258303165435791,0.03508913889527321,0.23317326605319977,-0.2669838070869446,-0.18636168539524078,-0.12849541008472443,0.2097475528717041,0.12322138994932175,-0.07413250207901001,-0.17642010748386383,0.21539118885993958,-0.06621156632900238,0.21497656404972076,-0.008414391428232193,0.04487442597746849,-0.029416797682642937,0.07744421809911728,-0.23792891204357147,-0.14564836025238037,-0.1331261843442917,0.15209709107875824,0.16455374658107758,0.15262912213802338,-0.33695921301841736,-0.16729530692100525,0.32216379046440125,0.17099222540855408,-0.263794481754303,0.09262903779745102,-0.0636499673128128,-0.08866076171398163,0.1492518037557602,0.23892003297805786,0.17405568063259125,0.05732361227273941,0.11635984480381012,0.08348530530929565,-0.0684724748134613,-0.21489492058753967,-0.05131327360868454,0.07860308885574341,0.048083044588565826,-0.23887719213962555,-0.16145013272762299,0.18409739434719086,0.13218079507350922,-0.07981778681278229,-0.16303151845932007,0.08756975084543228,-0.3897561728954315,-0.061983101069927216,0.02651788853108883,0.35200563073158264,0.03190534934401512,0.24534961581230164,-0.303864061832428,-0.29978957772254944,-0.30773070454597473,-0.2428927719593048,-0.016487115994095802,-0.31345969438552856,0.352988600730896,-0.07381819933652878,-0.28376397490501404,-0.09266210347414017,0.303842693567276,-0.14856718480587006,0.13373953104019165,0.2990334928035736,0.5545973777770996,0.4372861385345459,0.049803026020526886,-0.02824389934539795,0.39549049735069275,0.3608182370662689,-0.19433628022670746,-0.4099867641925812,-0.30960676074028015,-0.1431390643119812,-0.14125190675258636,-0.05752885341644287,0.07892119884490967,-0.09788370132446289,-0.2556091845035553,-0.21767069399356842,-0.15112999081611633,0.25802305340766907,-0.4252399206161499,0.12232720851898193,-0.11272019147872925,-0.3050351142883301,-0.22793155908584595,-0.16946907341480255,-0.0915948897600174,-0.13262121379375458,-0.13630139827728271,-0.13221636414527893,-0.040489617735147476,-0.29437020421028137,0.27310454845428467,0.03730560839176178,0.4197487533092499,0.2775457203388214,0.21749114990234375,0.1283617913722992,-0.5260391235351562,-0.25929316878318787,-0.23943592607975006,0.06632637232542038,-0.0849541649222374,0.12768450379371643,-0.20289096236228943,0.06954977661371231,-0.30510029196739197,-0.32546183466911316]},{"shape":[32],"values":[-0.3993328809738159,0.6942354440689087,0.7138928771018982,0.7485784292221069,-0.41634148359298706,0.7257848381996155,0.036104459315538406,-0.11339693516492844,-0.3067430257797241,-0.3104690909385681,0.5089073777198792,-0.36368611454963684,0.6604377627372742,0.5892812609672546,0.4145519733428955,0.5591643452644348,-0.33077868819236755,-0.06832341849803925,-0.3200693726539612,-0.15234194695949554,0.5454161763191223,0.4940727651119232,0.7992901802062988,0.669404923915863,0.5416889786720276,-0.47873666882514954,-0.4738510847091675,0.5947406888008118,0.45898905396461487,0.5272539854049683,0.6669591069221497,0.3647349178791046]},{"shape":[32,32],"values":[-0.05569431185722351,-0.3757079541683197,-0.02748931758105755,-0.733140766620636,-0.666015088558197,-0.6360434293746948,0.02489325776696205,0.014818377792835236,-0.8170580267906189,-0.2735714018344879,-0.48915719985961914,0.22999431192874908,0.4313945770263672,-0.32653379440307617,0.042197395116090775,-1.2334600687026978,-0.047425754368305206,0.02448642998933792,-0.17559942603111267,-0.7844414710998535,0.16263151168823242,0.23088470101356506,-0.5743988156318665,-0.5898358225822449,0.061760589480400085,0.005471241194754839,-0.11872042715549469,-0.22506706416606903,-0.5428305864334106,-0.17940309643745422,-1.1361883878707886,-0.12241886556148529,0.19142746925354004,0.6732535362243652,-0.04885062202811241,0.20381547510623932,0.141989603638649,0.3065147399902344,-0.28009548783302307,-0.20278294384479523,0.6646187901496887,0.48777949810028076,0.1184142455458641,0.22044986486434937,0.2323182076215744,0.37869590520858765,0.444585382938385,0.022108495235443115,0.04806714504957199,0.22095870971679688,-0.28108784556388855,0.33916333317756653,0.4894470274448395,0.11744804680347443,0.18235942721366882,0.4685996174812317,0.05395370349287987,0.054762132465839386,-0.08138739317655563,0.42156165838241577,0.5491583347320557,0.10923715680837631,0.15027403831481934,0.8035162091255188,0.3191072344779968,0.872912585735321,0.06305795162916183,0.7104066610336304,0.7925420999526978,0.4289342164993286,-0.3204593062400818,0.022500908002257347,0.9940088987350464,0.8697006106376648,0.4695681929588318,-0.0770205408334732,0.16798223555088043,0.3133030831813812,0.5042167901992798,0.29710853099823,0.09542910754680634,0.39999642968177795,0.059483349323272705,0.9383859038352966,0.6887426376342773,-0.08684688806533813,0.2255508154630661,0.6563123464584351,-0.2940272390842438,0.05921139195561409,-0.08540434390306473,0.6154417395591736,0.7495498657226562,0.5533326268196106,0.6920396089553833,0.5427570939064026,0.8959137201309204,1.0247490406036377,-0.340480774641037,0.4183781147003174,0.475204735994339,0.5952793955802917,-0.15539291501045227,0.13041822612285614,0.9234746098518372,0.9084576964378357,0.8764715790748596,0.03696984797716141,-0.2524719536304474,0.1402149796485901,0.22384124994277954,0.04531557485461235,0.31921038031578064,-0.05043821409344673,0.13560377061367035,0.9522450566291809,0.5390269160270691,-0.2636953890323639,0.39250004291534424,0.8478062152862549,-0.28543007373809814,0.08534745872020721,-0.18876971304416656,0.5062893629074097,0.7066090106964111,0.5867838263511658,0.34985169768333435,0.9337982535362244,-0.019952883943915367,-0.6780965924263,-0.1824411153793335,-0.31087130308151245,-0.8353862762451172,-0.26690158247947693,-0.07872558385133743,0.1275765299797058,-0.6852083206176758,-0.7036496996879578,-0.48467326164245605,0.11200135946273804,0.22191675007343292,-0.5590372681617737,0.0229499489068985,-0.3022308349609375,0.002222528215497732,-0.4816235601902008,-0.27420178055763245,-0.49232685565948486,-0.3825454115867615,0.07679810374975204,-0.2817211449146271,-0.37240922451019287,0.20639212429523468,0.28829607367515564,-0.027828428894281387,-0.6494224667549133,-0.7992185354232788,-0.32174718379974365,-0.8116792440414429,0.04226301237940788,0.7651036381721497,0.9369416832923889,-0.14084558188915253,0.46850836277008057,0.7616444230079651,0.9386321902275085,0.09029004722833633,-0.20456740260124207,1.0531235933303833,0.8330732583999634,0.6510248184204102,-0.9339656233787537,-0.8992469906806946,0.1937641203403473,0.5341348648071289,0.507483184337616,-0.21366238594055176,0.0838577076792717,-0.2201324701309204,0.9167519211769104,0.5702108144760132,-0.7854050397872925,0.3607611656188965,0.7519771456718445,-0.2543785274028778,-0.5086351037025452,-0.13043931126594543,0.3436892032623291,0.8195831775665283,0.664643406867981,0.4822174310684204,0.8616585731506348,-0.6645657420158386,-0.82722407579422,0.09305450320243835,-1.0487381219863892,-0.8823745846748352,-0.4380955994129181,0.805946409702301,0.7634219527244568,-0.35830286145210266,-0.6431161761283875,-0.5732795596122742,-0.19417068362236023,0.14704346656799316,-0.37767118215560913,-0.6619774103164673,0.34095141291618347,-0.04605451226234436,-0.42961955070495605,-0.0245412178337574,-0.838851273059845,-0.5357978343963623,0.023889871314167976,-0.5819469690322876,-0.5523322820663452,0.21600750088691711,0.8878504037857056,-0.11200713366270065,-0.5711846351623535,-1.400668740272522,-0.7876691222190857,-0.23006708920001984,-1.0198062658309937,-0.6360229849815369,-0.4098655581474304,-0.018491774797439575,-0.7210496068000793,-0.9002493023872375,-0.6162045001983643,0.565449595451355,0.4805194139480591,-0.5975525379180908,-0.4112011790275574,-0.11096794903278351,0.11798977106809616,0.03323125094175339,-1.1066704988479614,-0.8705466389656067,0.10781162977218628,0.180911123752594,-1.1209156513214111,0.029476117342710495,-0.4766673147678375,-0.10453018546104431,-0.06394819915294647,-0.5349606871604919,-0.9489883780479431,-0.2613038122653961,0.41544970870018005,-0.17622387409210205,-0.18038396537303925,-1.043166995048523,-0.5330814719200134,-0.33254867792129517,-1.0509922504425049,-0.23469889163970947,-0.3436214327812195,-0.21235665678977966,-0.7838733792304993,-0.8868547081947327,-0.8109338879585266,0.6715250015258789,0.3995194733142853,-0.6999876499176025,-0.2507237493991852,-0.469450443983078,0.16962610185146332,-0.10573365539312363,-0.5373783111572266,-0.3657558858394623,-0.23623813688755035,0.08537696301937103,-0.6459042429924011,-0.23601984977722168,-0.587216854095459,0.018053626641631126,-0.1856609582901001,-0.21545344591140747,-0.9260106086730957,-0.07082757353782654,0.7020111680030823,0.0907839983701706,-0.6258497834205627,-0.8518358469009399,-0.71625816822052,-0.34343114495277405,-0.7688289284706116,0.009229268878698349,-0.6009476780891418,-0.028668299317359924,-0.228133887052536,0.22538980841636658,-0.22184014320373535,-0.4534901976585388,-0.09173732250928879,-0.10773695260286331,-0.44176122546195984,-0.12923525273799896,0.6623611450195312,0.7086591124534607,0.04340624064207077,0.36891090869903564,-0.8024314641952515,-0.3381231725215912,0.13044050335884094,0.028906766325235367,-0.383368581533432,0.09869058430194855,0.4116048514842987,-0.06749606877565384,-0.28756722807884216,-0.2535300850868225,0.4485017657279968,0.3910769820213318,-0.6735866665840149,-0.547343909740448,-0.5406960844993591,-0.6969475150108337,-0.10269784927368164,0.40011921525001526,0.2052443027496338,-0.32413625717163086,0.17283828556537628,0.14628195762634277,0.4244837760925293,0.1434476673603058,0.31759026646614075,0.2715245187282562,0.5667028427124023,0.5404536724090576,-0.22800150513648987,0.15026146173477173,0.302234023809433,0.22938141226768494,0.3027830123901367,-0.2544689178466797,0.3018535375595093,-0.15554480254650116,0.6213597059249878,0.3549404442310333,0.06076311320066452,0.49590519070625305,0.38445574045181274,-0.2654750645160675,0.235177144408226,-0.19398757815361023,0.2327408641576767,0.5162760019302368,-0.02425345592200756,-0.11171050369739532,0.6896775364875793,-0.2734152376651764,-0.8729999661445618,0.1428973525762558,-0.9358314275741577,-0.7929224371910095,-0.9456915259361267,0.2236981987953186,-0.23508375883102417,-1.089894413948059,-0.6916792988777161,-0.9459682106971741,0.4308665096759796,0.4326813817024231,-0.2888001799583435,-0.4818824529647827,-0.446780800819397,-0.046753548085689545,-0.23060786724090576,-0.02836761623620987,-0.9985208511352539,-0.26626044511795044,0.5153200030326843,-0.7847952246665955,-0.8320740461349487,0.015004018321633339,0.1147097498178482,0.3843877911567688,-0.556241512298584,-0.42201223969459534,-0.34618645906448364,-0.8569479584693909,-0.6190182566642761,0.6333966255187988,0.7555981278419495,0.13494138419628143,0.3747909963130951,0.6474082469940186,0.4490130841732025,0.13701970875263214,0.18143102526664734,0.7902794480323792,0.8516438603401184,0.35995662212371826,0.14009499549865723,-0.5920822620391846,0.47828409075737,0.36561304330825806,-0.09291542321443558,0.18288134038448334,0.20330879092216492,-0.17068755626678467,1.1165956258773804,0.2829926609992981,0.21867485344409943,0.47240105271339417,0.6841571927070618,-0.07298459857702255,0.13064636290073395,0.016761539503932,0.8039156198501587,0.8463136553764343,0.48878732323646545,0.06516563147306442,0.930467963218689,0.9089237451553345,0.8429326415061951,-0.0332794263958931,0.9128175377845764,0.2450183928012848,0.8330274820327759,0.05436686798930168,-0.007701460737735033,1.1748919486999512,0.8300928473472595,0.7611518502235413,-0.4267060458660126,-0.4547102749347687,0.5272719264030457,0.567714273929596,0.175826296210289,-0.3667452037334442,-0.24701613187789917,-0.18115082383155823,1.0592459440231323,0.5383970141410828,0.10457433015108109,0.5700887441635132,0.28728121519088745,-0.08263150602579117,-0.07478500157594681,0.0007102680392563343,0.6820328831672668,0.6800492405891418,0.16231681406497955,0.2050454318523407,1.0510776042938232,0.5196787714958191,0.7095407843589783,0.05481896549463272,0.4080582857131958,0.45918336510658264,0.9132047891616821,-0.17344731092453003,-0.09274201095104218,1.0073318481445312,0.7678282856941223,0.849745512008667,-0.20625494420528412,0.051819395273923874,-0.25387758016586304,0.09567415714263916,0.23495374619960785,0.2744158208370209,-0.3643304705619812,0.018748201429843903,1.1716699600219727,0.0014443944673985243,-0.08713944256305695,0.32711857557296753,0.3145413100719452,0.04233578220009804,-0.17327061295509338,-0.18483804166316986,1.076007604598999,0.3312651515007019,0.5939229130744934,0.40830346941947937,0.42259833216667175,0.20007072389125824,0.6912839412689209,0.012123525142669678,0.12843376398086548,0.10549012571573257,0.247123584151268,-0.1716688871383667,-0.22977209091186523,0.38225477933883667,0.2238004207611084,-0.039924100041389465,-0.41898223757743835,-0.15613535046577454,-0.15322823822498322,-0.1849677562713623,0.2679395377635956,-0.05423351004719734,-0.005464090500026941,-0.10991769284009933,0.5630021691322327,-0.11972473561763763,-0.3055429458618164,0.3911232650279999,0.03373310714960098,-0.3027019798755646,0.258774995803833,-0.0070707728154957294,0.644408643245697,0.04053144529461861,0.14137670397758484,0.5922790765762329,0.1611022800207138,0.10329479724168777,-0.4296656847000122,-0.17923510074615479,-0.47710222005844116,-0.6407329440116882,-0.6563617587089539,0.1747971922159195,-0.0795915424823761,-0.902776300907135,-0.46430492401123047,-0.5507245063781738,0.23420755565166473,0.6221715211868286,-0.01854298822581768,0.10783696919679642,-0.096844382584095,0.06653474271297455,-0.3903879225254059,-0.1504538357257843,-0.3829735517501831,-0.24490566551685333,0.350829154253006,-0.5397166609764099,-0.3467833697795868,-0.03807176277041435,0.4210541844367981,0.35815712809562683,-0.6135671734809875,-0.17123711109161377,-0.6560173034667969,-0.46866708993911743,-0.21108777821063995,-0.16156500577926636,-0.4636135697364807,0.011573382653295994,-1.007348895072937,-0.6561495065689087,-0.2853314280509949,0.7382155656814575,0.4280090034008026,-0.08765928447246552,-0.42786526679992676,-0.6104394793510437,0.4083312749862671,-0.3021634817123413,-0.9512631297111511,-1.0896474123001099,0.10685041546821594,0.12338367849588394,-1.2714885473251343,-0.22469840943813324,-0.5892735719680786,-0.23950670659542084,0.5323014259338379,-0.2953948974609375,-0.6928003430366516,-0.2887360751628876,0.3661171495914459,-0.3490358591079712,-0.6204749345779419,-0.6146438717842102,-0.6957312822341919,0.00828480627387762,-0.7126256227493286,-0.18678653240203857,-0.6435584425926208,-0.051725778728723526,-0.8062375783920288,-0.4554075300693512,-0.6821402311325073,0.5579493641853333,0.2794097363948822,-1.3040778636932373,-0.8660380244255066,-0.7564682960510254,0.8494977951049805,0.3460696339607239,-0.06757359951734543,-0.47902047634124756,-0.5908846259117126,0.01992103084921837,0.14185550808906555,0.0810200423002243,-0.9763280749320984,0.0138210104778409,0.6590592861175537,-0.6865146160125732,-0.629058301448822,0.07451173663139343,0.4163074195384979,0.029931290075182915,-1.0375654697418213,-1.0902401208877563,-0.7705637216567993,-0.5281916856765747,-0.26232707500457764,-0.5641123652458191,-0.32861241698265076,-0.3199642598628998,-0.9699413776397705,-0.5463646054267883,-0.5451950430870056,0.47088560461997986,0.15126027166843414,-0.42566201090812683,-0.5818303823471069,-0.35195186734199524,0.19385889172554016,-0.34861159324645996,-0.5283433794975281,-0.9355180859565735,-0.018289972096681595,-0.2988399565219879,-0.44926217198371887,-0.24857792258262634,-0.4312888979911804,0.02210146188735962,0.10668925940990448,-0.059993140399456024,-0.8183167576789856,-0.21182343363761902,0.2873407304286957,0.14434102177619934,-0.36680248379707336,-0.6628002524375916,-0.758899986743927,-0.6412228345870972,-0.9118602871894836,0.15206964313983917,0.6430990099906921,-0.12983544170856476,0.5965130925178528,0.5310007333755493,0.5167683959007263,0.13182637095451355,0.2706665098667145,0.5608654618263245,0.3206512928009033,0.49552613496780396,-0.14965979754924774,-0.15442058444023132,0.29692989587783813,0.20782437920570374,-0.05700637400150299,0.0003310733591206372,0.4865647256374359,0.13788411021232605,0.362639456987381,0.43393126130104065,0.039827536791563034,0.5652512311935425,0.24073931574821472,-0.24832957983016968,0.3034350275993347,0.04979841411113739,0.7132104635238647,0.6671164631843567,0.2878749668598175,0.28747880458831787,0.552278459072113,0.7803415060043335,0.8308731317520142,-0.0834970697760582,0.6255165934562683,0.6198962926864624,0.3032597303390503,0.06948850303888321,0.07571585476398468,0.6887969374656677,0.748892605304718,0.7391201853752136,-0.08637502789497375,-0.25016021728515625,0.5618031024932861,0.5486151576042175,0.31132951378822327,-0.17970533668994904,0.06158021092414856,-0.22656160593032837,0.7630950212478638,0.32305705547332764,-0.22793416678905487,0.39629918336868286,0.4784119129180908,0.2419346123933792,0.16234278678894043,0.33393749594688416,0.2243727445602417,0.24761416018009186,0.5519518256187439,-0.04829493165016174,0.4376515746116638,0.5965896844863892,0.45541805028915405,0.1365908980369568,0.6060494184494019,0.6875739693641663,0.5028333067893982,-0.48634690046310425,-0.5640546083450317,0.7254358530044556,0.6875396966934204,0.7150683403015137,0.06976543366909027,0.2517443001270294,0.2271956503391266,0.596673846244812,-0.3481365442276001,-0.4657497704029083,0.46226587891578674,0.16983190178871155,0.1701837033033371,0.8411991596221924,0.2501259744167328,0.7135657072067261,0.6752070784568787,-0.26619845628738403,0.02169225551187992,0.31653761863708496,0.550460159778595,0.4405808448791504,0.6697020530700684,0.24709102511405945,0.5471511483192444,1.065385103225708,1.2855242490768433,-0.0001712385710561648,0.8074461221694946,0.3400776982307434,0.9862401485443115,-0.16223710775375366,-0.31320345401763916,1.1590231657028198,1.0643696784973145,1.0586029291152954,-0.30294209718704224,-0.23363634943962097,0.4827589690685272,0.228188157081604,0.36939990520477295,-0.15735742449760437,0.1703563630580902,0.020496919751167297,0.6917790174484253,0.8801687359809875,-0.41589024662971497,0.45283570885658264,0.8642643094062805,-0.28230857849121094,-0.500705897808075,0.2665106952190399,0.7307824492454529,0.9599736332893372,0.5111556649208069,0.17460086941719055,1.0980883836746216,0.38445284962654114,0.6088961958885193,0.05269438773393631,0.4472658038139343,0.19721052050590515,0.31067150831222534,0.05999372899532318,0.274569034576416,0.3915785551071167,0.4192548394203186,0.5451403260231018,-0.2574900984764099,-0.33761054277420044,-0.1616848111152649,-0.0546196848154068,0.11014354974031448,0.18509840965270996,-0.05782146006822586,-0.06876268982887268,0.5904425382614136,0.050391409546136856,-0.3232164680957794,0.5497992038726807,0.33321037888526917,-0.2830454707145691,-0.037651773542165756,-0.6082899570465088,0.32220834493637085,0.4272385835647583,0.5369458198547363,0.3324027955532074,-0.004423025529831648,-0.21497635543346405,-0.7167953252792358,0.1543058604001999,-0.06436821818351746,-0.20602574944496155,-0.3552073538303375,-0.29656705260276794,0.08342814445495605,-0.09404944628477097,-0.48096969723701477,-0.24510900676250458,0.5426835417747498,0.481551855802536,-0.19387881457805634,0.02522984705865383,-0.7077428102493286,-0.03833429887890816,-0.13434240221977234,-0.3242264986038208,-0.30011817812919617,0.2738657295703888,0.4252675771713257,-0.10234840214252472,-0.24252812564373016,-0.3001033365726471,0.1585579812526703,-0.07589989900588989,-0.20521628856658936,-0.5041348338127136,-0.7586017847061157,-1.131453275680542,-0.2645433843135834,-0.052866075187921524,-1.1176592111587524,-0.30328336358070374,-1.0427229404449463,-0.882972240447998,-0.9858959913253784,-0.1258930265903473,0.4801079034805298,-0.6356878280639648,-0.9714586734771729,-1.0785202980041504,0.257986843585968,0.20110663771629333,-0.5012098550796509,-0.14461690187454224,-0.826021671295166,0.027683841064572334,0.09691791981458664,-0.0008203366305679083,-0.757752001285553,-0.5045291185379028,0.39314305782318115,-0.802269697189331,-0.5470201969146729,-0.10209576040506363,0.4864415228366852,-0.23513935506343842,-0.5280764102935791,-0.8290261030197144,-0.9499003291130066,-1.7442463636398315,-0.21469862759113312,0.632354199886322,0.5693143010139465,-0.3054808974266052,0.5156470537185669,0.19705790281295776,0.4932149648666382,-0.3240523636341095,0.13469329476356506,0.4272407293319702,0.3319920599460602,0.5860541462898254,0.2732422351837158,0.2673787474632263,0.3444804251194,0.03696722909808159,0.055014025419950485,-0.07807258516550064,0.542111873626709,-0.04689516872167587,0.4161641597747803,0.27743643522262573,0.09003575891256332,0.36123186349868774,0.5008650422096252,-0.2778762876987457,-0.2518264651298523,0.04718514159321785,0.3014044761657715,0.5502356290817261,0.5717730522155762,0.27290013432502747,0.4413478374481201,0.7652891278266907,0.6825510263442993,0.0898413211107254,0.5205597877502441,0.8436765670776367,0.469826340675354,-0.18590861558914185,-0.4134538471698761,1.030382752418518,0.8215001225471497,0.47816941142082214,0.14260007441043854,0.2513209283351898,-0.03460896760225296,-0.21090884506702423,0.11960560828447342,0.23501765727996826,0.02069993130862713,0.16819533705711365,0.5403515100479126,0.17352496087551117,0.14445210993289948,0.5917262434959412,0.21473199129104614,0.24614067375659943,-0.22598566114902496,-0.35223114490509033,0.6482951641082764,0.33600836992263794,0.43039435148239136,0.3975212275981903,0.2322843074798584,0.29654189944267273,0.8276225328445435,0.1474219113588333,0.5196490287780762,0.6497510671615601,0.7760263681411743,-0.2550640404224396,0.18930615484714508,0.6934029459953308,0.4441603720188141,0.5265612006187439,-0.13972046971321106,0.184026300907135,0.30575525760650635,0.04193301871418953,0.39486491680145264,-0.07064930349588394,0.2926224172115326,0.2383899986743927,0.30822157859802246,0.4075571894645691,-0.0710994303226471,0.46486997604370117,0.15383030474185944,-0.2441612333059311,-0.1827079951763153,-0.1348089873790741,0.4945797622203827,0.6971838474273682,0.3758374750614166,0.00456746993586421,0.31284165382385254,0.5950186252593994,0.7052615880966187,0.0702243447303772,0.08711542934179306,0.12293855845928192,0.6629425883293152,0.09871106594800949,-0.07076685130596161,0.45884227752685547,0.49974164366722107,0.47893258929252625,-0.011929626576602459,0.3554520010948181,-0.1080181673169136,0.08769848197698593,0.17154650390148163,-0.013302556239068508,0.14614810049533844,-0.2551085352897644,0.4851970076560974,-0.06275514513254166,-0.3725954294204712,0.06080886349081993,0.3728664517402649,0.14283935725688934,0.23466132581233978,-0.07484495639801025,0.19713863730430603,0.38779130578041077,0.5132144689559937,0.31943458318710327,0.551850438117981,0.923163115978241,0.6824662089347839,-0.10564105957746506,0.6614088416099548,0.5611345767974854,0.3487887978553772,0.22697713971138,0.47367358207702637,0.6592727303504944,0.934240996837616,0.5715596675872803,-0.5880541801452637,-0.6364037394523621,0.9369640350341797,0.5392981171607971,-0.07665466517210007,0.2374757081270218,0.6978684663772583,0.07165731489658356,0.6415119767189026,0.8119679689407349,-0.5107542872428894,0.8596322536468506,0.7031630873680115,-0.2479703724384308,-0.4056101143360138,-0.13088874518871307,0.8553963303565979,0.5138076543807983,0.8260876536369324,-0.4365556836128235,0.6251929998397827]},{"shape":[32],"values":[0.611840009689331,0.5830647945404053,-0.08450458198785782,0.3216627240180969,0.3011454641819,0.554022490978241,-0.08111277967691422,-0.2962876856327057,0.5832777619361877,0.5710904002189636,0.5298375487327576,-0.05380697175860405,-0.10882822424173355,0.10861895233392715,0.12391135841608047,0.02600087970495224,-0.09277568012475967,0.03243815153837204,-0.055991265922784805,0.5005868673324585,0.4158285856246948,0.14508578181266785,0.41293245553970337,0.4452287554740906,0,-0.24626317620277405,0.01866629533469677,0.5284324288368225,0.5132113695144653,0.4829239547252655,0.443485289812088,0.5443849563598633]},{"shape":[32,9],"values":[0.15133054554462433,0.6421341896057129,0.25037965178489685,0.1690686196088791,0.680956244468689,0.5860719084739685,0.6743335127830505,0.547785758972168,0.5647803544998169,0.9170942902565002,0.6635648608207703,0.19399462640285492,0.7680065035820007,0.6296343803405762,0.6646250486373901,0.7997824549674988,0.7054874897003174,0.630752444267273,0.06026536598801613,-0.006759122479707003,-0.1310790777206421,0.028386779129505157,0.14111396670341492,0.2374996691942215,-0.07149374485015869,0.10687822848558426,0.033697888255119324,0.6386340260505676,0.6370725631713867,0.6718282103538513,0.26895201206207275,0.7023558020591736,0.663250207901001,0.5224907398223877,0.26470544934272766,0.5037645101547241,0.7076022028923035,0.9994833469390869,0.826512336730957,0.9064784049987793,0.42403632402420044,0.5801217555999756,0.26932471990585327,0.39544355869293213,0.44947490096092224,0.6828557252883911,0.5197206735610962,0.26690781116485596,0.7188476324081421,0.937827467918396,0.30102360248565674,0.7269629836082458,0.4084097743034363,0.648595929145813,-0.3943803012371063,-0.08936519920825958,0.3070890009403229,-0.5206966996192932,-0.5202157497406006,-0.013732293620705605,-0.6252945065498352,-0.5695075392723083,-0.21124427020549774,-0.15502765774726868,-0.3907352089881897,-0.3186474144458771,-0.07946539670228958,-0.09445010870695114,-0.16989785432815552,-0.5456940531730652,-0.49609342217445374,-0.34889116883277893,0.6241671442985535,0.8375869989395142,0.859632670879364,0.630999743938446,0.6998908519744873,0.5704804062843323,0.6176325678825378,0.6603673100471497,0.6386297941207886,0.4206346869468689,0.25769832730293274,0.6009077429771423,0.5845827460289001,0.7542149424552917,0.8580763339996338,0.9917377829551697,0.5744052529335022,0.8345566391944885,0.5834497809410095,0.7004470229148865,0.343163400888443,0.13341334462165833,0.41250526905059814,0.199544295668602,0.4792366623878479,0.7507311701774597,0.5941430926322937,-0.376575767993927,-0.2642057538032532,-0.35461658239364624,0.1394379585981369,-0.07102390378713608,-0.7514387369155884,-0.3368876576423645,-0.3293057680130005,-0.9502890110015869,0.11133886873722076,-0.2932497560977936,-0.5891610980033875,-0.24179601669311523,-0.16248878836631775,-0.5804009437561035,-0.08905591070652008,-0.5464698672294617,-0.9527685046195984,0.23518165946006775,0.23700135946273804,0.6410486102104187,-0.05381929129362106,0.7058448791503906,0.9398007988929749,-0.514639675617218,0.5562784671783447,0.6215888261795044,0.014738993719220161,0.4862409234046936,0.5300629734992981,0.2737089693546295,0.2054031640291214,0.6218480467796326,-0.05218621343374252,0.04550749063491821,0.5506420731544495,0.18440479040145874,-0.2031754106283188,-0.41337960958480835,0.5303441882133484,-0.299734890460968,-0.5414943695068359,0.10240816324949265,0.08236321806907654,-0.37400543689727783,0.027340704575181007,0.07623632997274399,0.15601322054862976,0.38206350803375244,-0.3271068334579468,-0.3535708785057068,0.3686699867248535,-0.23881688714027405,0.5866626501083374,-0.3133287727832794,-0.07330416142940521,0.4428485631942749,-0.3456593453884125,-0.06607189029455185,0.3302808105945587,-0.4388931393623352,0.3873295485973358,0.6060277223587036,-0.10281548649072647,0.12193069607019424,0.3997497260570526,-0.04843418672680855,0.13963210582733154,-0.3709412217140198,-0.22548599541187286,0.05693759769201279,-0.06523628532886505,0.9862828254699707,0.24968084692955017,0.9677963852882385,0.6354438662528992,0.8448991179466248,0.422374427318573,0.7292827367782593,0.5651652812957764,0.508755087852478,-0.030185667797923088,0.22619523108005524,0.7302721738815308,0.2073163092136383,-0.012216285802423954,0.7533276677131653,0.0809306800365448,0.3982948064804077,0.7763869762420654,0.09891562908887863,-0.012352980673313141,-0.33261024951934814,-0.09118945896625519,-0.09272553026676178,-0.9499627351760864,0.08872321248054504,-0.6259629726409912,-0.4317697286605835,0.4292641580104828,0.5341061949729919,0.6859591007232666,0.7054750919342041,0.13032621145248413,0.6429486274719238,0.3653518259525299,0.11429738253355026,0.6322786808013916,0.22488228976726532,0.8328830003738403,0.657892107963562,0.5149373412132263,0.7037612199783325,0.30976346135139465,0.27234116196632385,0.9177759289741516,0.8111022710800171,0.05535309389233589,-0.2606797218322754,0.1718757450580597,0.37336328625679016,0.3142111003398895,-0.20520707964897156,0.24975085258483887,-0.16596050560474396,-0.1980413794517517,-0.26494744420051575,-0.5186471939086914,-0.4290493130683899,-0.39411383867263794,-0.5237917900085449,-0.18007202446460724,-0.570387065410614,-0.15518344938755035,-0.6121584177017212,-0.19359858334064484,-0.5277896523475647,-0.37073177099227905,-0.01795465685427189,-0.3296107351779938,-0.4907430410385132,0.1448173075914383,0.004462138749659061,-0.06339886039495468,0.2701875865459442,0.6766085624694824,0.27423664927482605,0.8365561366081238,0.6888862252235413,0.5885284543037415,0.5055705904960632,0.7943175435066223,0.30458784103393555,0.5646049976348877,0.49436888098716736,0.6803588271141052,0.8468847870826721,0.471346914768219,0.9097576141357422,0.570234477519989,0.6826748847961426,0.605027437210083,0.4766130745410919,0.5415529012680054,0.17397738993167877,0.42479345202445984,0.6170638203620911,0.5609993934631348,0.8952187895774841,0.7507643103599548,0.7215932011604309,0.7903798222541809,0.194311261177063,-0.522699773311615,0.9660661816596985,0.3760608434677124,-0.6008387207984924,0.9163087010383606,0.6097713708877563,-0.5842086672782898,0.6301799416542053,0.22124354541301727,0.7736973166465759,0.5861074328422546,0.18964247405529022,0.678041398525238,0.7049778699874878,0.5933111906051636,0.4704381823539734]},{"shape":[9],"values":[0.2672344744205475,0.2387562394142151,0.031859394162893295,0.36675211787223816,0.11460219323635101,0.12282263487577438,0.47962453961372375,0.41858145594596863,0.4117828905582428]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-47.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-47.json new file mode 100644 index 0000000..8443e4f --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-47.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":47,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:56:05.856Z","weights":[{"shape":[20,32],"values":[1.2017391920089722,-0.2075776308774948,0.004175495821982622,0.999890923500061,0.5285491347312927,-0.421053409576416,0.25969424843788147,0.8870896100997925,0.6360452175140381,-0.1931828260421753,0.13914185762405396,-0.010963348671793938,0.7073437571525574,0.22827309370040894,0.3717130124568939,0.9261897206306458,0.024296363815665245,0.8672418594360352,1.196594476699829,0.7786315083503723,-0.8009558320045471,-0.21127279102802277,0.6231489777565002,0.7206779718399048,0.06125424802303314,1.084848403930664,0.7370215654373169,1.2655853033065796,0.19497907161712646,0.005476157646626234,-0.10278957337141037,-0.40712490677833557,0.017713159322738647,0.22820234298706055,0.29329419136047363,-0.04716741293668747,0.05138130113482475,-0.20144888758659363,-0.08598798513412476,-0.039405595511198044,0.19532635807991028,-0.36403754353523254,0.08611281216144562,-0.2119484543800354,-0.017912643030285835,-0.010565911419689655,0.12131728231906891,-0.21598725020885468,-0.07431582361459732,-0.15376420319080353,-0.010232238098978996,-0.0013642976991832256,0.5086873173713684,-0.213543102145195,-0.14951424300670624,-0.19939859211444855,-0.07360783219337463,-0.1874265968799591,0.039592403918504715,-0.39679062366485596,-0.05383221432566643,-0.1913066953420639,0.11383673548698425,-0.34624025225639343,0.17032872140407562,-0.04209822043776512,-0.38177937269210815,0.35118037462234497,-0.2069852203130722,-0.9865859150886536,-0.03879968449473381,-0.06142695993185043,-0.015783041715621948,-0.38524800539016724,-0.4431559145450592,-0.5207780599594116,0.2705811560153961,0.08789720386266708,-0.6551893353462219,0.42826929688453674,0.7661980390548706,-0.0691845715045929,-0.04537137970328331,-0.2174096703529358,0.3575008511543274,-0.6335092186927795,-0.13563181459903717,0.6486427783966064,0.9329441785812378,-0.05735447257757187,0.06189880520105362,-0.36473456025123596,-0.5655027627944946,-0.5264098048210144,-0.4604780375957489,-0.9195638298988342,-0.14916175603866577,-0.9417707920074463,-0.39055508375167847,-0.6796271800994873,-0.2141665667295456,1.9075438976287842,-0.4447576105594635,-0.6415380239486694,-0.22086642682552338,1.2756896018981934,-0.21454603970050812,1.3585906028747559,-0.30502012372016907,-0.3841349184513092,-0.3560695946216583,-0.5492462515830994,-0.6463613510131836,-0.8707932829856873,-0.1274474412202835,0.19188708066940308,-0.5728961825370789,1.6326967477798462,-0.3523365557193756,-0.8531724810600281,-0.9703741073608398,-0.48968636989593506,-0.8553035855293274,0.34843909740448,0.1869625598192215,0.5416945815086365,0.04095868021249771,1.6356871128082275,0.26384294033050537,0.26362910866737366,0.2610248029232025,-0.42003706097602844,0.6410267949104309,-0.08287963271141052,0.30607977509498596,-0.2663193345069885,0.37608110904693604,0.1919284164905548,0.3676389455795288,0.2376449704170227,0.16389146447181702,-0.259280264377594,0.18705569207668304,0.32078617811203003,0.10514341294765472,0.26943883299827576,0.2966587245464325,-0.261529803276062,0.22281304001808167,-0.06656749546527863,0.2549999952316284,-0.028542544692754745,0.03792640566825867,-0.07814998924732208,-0.3184630870819092,0.26677295565605164,0.25405001640319824,0.42010295391082764,0.2138027548789978,0.368146151304245,-0.09122905880212784,-0.4632866382598877,-0.37434306740760803,-0.32470929622650146,0.13091345131397247,0.30537721514701843,-0.10326733440160751,0.12405399233102798,-0.23396170139312744,0.4821253716945648,-0.008464938029646873,0.20857298374176025,0.31628307700157166,-0.25843438506126404,-0.03419165313243866,0.2751134932041168,-0.03254503384232521,0.2851419150829315,-0.41993212699890137,-0.32466188073158264,-0.016758259385824203,0.4852893054485321,0.2402338683605194,0.28453052043914795,-0.0417499877512455,-0.09055301547050476,0.2425358146429062,0.28797104954719543,0.06057211384177208,0.026485860347747803,0.11978773027658463,0.035632360726594925,-0.24434664845466614,-0.4262232482433319,-0.2415236085653305,0.3204289376735687,-0.46988967061042786,0.3498702645301819,0.20559227466583252,0.06845901161432266,-0.026921922340989113,0.5255183577537537,-0.5051913261413574,0.26535624265670776,0.09026670455932617,-0.06008763611316681,-0.5720093846321106,0.2065461426973343,-0.6056442856788635,0.17689214646816254,-0.13505364954471588,-0.287823885679245,-0.4980904757976532,0.12320741266012192,-0.3721945583820343,0.19025114178657532,0.12467945367097855,0.2841210663318634,0.31763920187950134,0.6234902739524841,-0.6138495206832886,-0.43279552459716797,-0.3382997512817383,0.5094019174575806,-0.04270539432764053,-0.9660251140594482,0.17215785384178162,0.5407217741012573,-0.6393797993659973,0.21596334874629974,0.08267644047737122,0.7965283393859863,0.2467113882303238,0.3999738395214081,-0.41495105624198914,0.03817545250058174,0.35859277844429016,0.7637267112731934,-0.5859678387641907,0.2538737654685974,-0.49862605333328247,0.15757179260253906,-0.062142517417669296,-0.2678339183330536,-0.2422826588153839,0.39290326833724976,0.41016438603401184,0.3960949778556824,-0.47788435220718384,0.4608747661113739,0.5710223317146301,0.29871508479118347,-0.4036390483379364,-0.34397536516189575,-0.14354583621025085,0.14223594963550568,0.1819976568222046,-0.2298034280538559,-0.4426567852497101,-0.03245609998703003,-0.3875078558921814,-0.10151532292366028,-0.36944836378097534,0.12777948379516602,-0.12468338757753372,0.1553954929113388,-0.25819769501686096,-0.08442196249961853,-0.2326742559671402,-0.2896718680858612,0.07059469819068909,0.1408962905406952,0.03954030200839043,0.1949024796485901,-0.014033260755240917,-0.38658949732780457,-0.1401911973953247,0.19543302059173584,0.25087571144104004,-0.17577685415744781,0.039128925651311874,-0.16231510043144226,0.24811124801635742,-0.14908871054649353,0.7311369180679321,0.40226688981056213,0.012855016626417637,-0.2377786785364151,0.39367544651031494,0.06040254235267639,-0.12983213365077972,0.04481623321771622,-0.0743238553404808,-0.1940893977880478,0.07229842990636826,0.0810411348938942,-0.24875864386558533,0.12022584676742554,0.34626173973083496,-0.031752001494169235,0.014939146116375923,-0.16995647549629211,0.42019933462142944,-0.06650936603546143,0.03188284859061241,-0.061834901571273804,-0.1524810642004013,-0.3494366407394409,0.20416748523712158,-0.17692847549915314,0.3231303095817566,0.16510260105133057,-0.12024062126874924,0.05468689277768135,-0.008127699606120586,-0.14881649613380432,0.08060939610004425,-0.6227778792381287,-0.08261927217245102,-0.23681864142417908,0.3606635630130768,0.18903961777687073,0.07549752295017242,0.017665421590209007,0.07996649295091629,0.3641749322414398,-0.2740907371044159,0.1912132203578949,0.42796143889427185,0.04607268050312996,0.06323297321796417,-0.5728094577789307,0.006445035804063082,-0.07919050753116608,-0.014618853107094765,0.3638226091861725,0.2472856491804123,0.06450112164020538,0.3546607196331024,0.019838308915495872,0.22698818147182465,-0.10967623442411423,0.26725295186042786,0.272278368473053,-0.3101852238178253,-0.09656166285276413,-0.16159014403820038,-0.3367367088794708,0.3178597092628479,0.3617606461048126,0.3382066786289215,0.042883239686489105,-0.03369777649641037,0.20532163977622986,0.1267443150281906,-0.1401844620704651,-0.2867802083492279,0.16698546707630157,-0.055541086941957474,-0.053487155586481094,0.05493926256895065,-0.2713026702404022,0.26389336585998535,0.09649412333965302,-0.006440210621803999,0.137875035405159,0.20798049867153168,-0.2344299852848053,-0.3609708845615387,0.10263094305992126,-0.11374128609895706,0.02407458983361721,0.2746398150920868,-0.21519897878170013,0.014145885594189167,-0.10575084388256073,0.03225627541542053,0.023783035576343536,-0.09368725121021271,-0.17219984531402588,-0.19792869687080383,-0.4164251983165741,-0.14636096358299255,0.40805190801620483,0.0856654942035675,-0.1366221159696579,-0.7218611836433411,-0.2048894315958023,0.45254436135292053,-0.2636689245700836,-0.6214351654052734,0.18635757267475128,-0.0800207108259201,-0.07371602952480316,-0.09708216786384583,0.2301882803440094,-0.3425091505050659,-0.3745141625404358,0.27889642119407654,-0.02863311395049095,-0.32941028475761414,0.04157337546348572,0.08806131780147552,0.2232404351234436,-0.10418250411748886,-0.06938090175390244,-0.02816239930689335,0.16055965423583984,0.0960136204957962,0.16207651793956757,-0.07666683942079544,-0.32387951016426086,0.3682941496372223,0.2876150608062744,0.039926569908857346,-0.20321759581565857,0.09963152557611465,0.0979682058095932,0.1282162070274353,-0.11754650622606277,0.2598704993724823,-0.11776452511548996,-0.05574425682425499,0.32392701506614685,-0.1738818883895874,0.1719130277633667,-0.003590543754398823,0.0932401791214943,0.3488161861896515,-0.0032545733265578747,0.31903913617134094,0.37930694222450256,0.34622159600257874,0.37375250458717346,-0.0710747241973877,-0.21497388184070587,0.21734406054019928,0.06440076977014542,0.39098572731018066,0.3710179328918457,-0.17719276249408722,0.07506534457206726,0.4419494569301605,-0.13705533742904663,0.27302658557891846,-0.48984864354133606,-0.23661436140537262,0.08662650734186172,-0.25367000699043274,0.050973422825336456,-0.3512292802333832,-0.1159304827451706,0.21410438418388367,-0.04012449458241463,-0.2915869653224945,-0.301960825920105,0.4132656753063202,-0.3212069869041443,0.15276844799518585,0.09164778888225555,-0.020689843222498894,0.16694046556949615,-0.28786516189575195,-0.33254799246788025,0.7614677548408508,0.2918647825717926,-0.21364948153495789,0.4336290955543518,0.9053877592086792,-0.3411739766597748,-0.16705435514450073,-0.1667339950799942,-0.2070463001728058,-0.2636352777481079,0.16319379210472107,-0.3329358398914337,-0.27519381046295166,0.30253973603248596,0.4657289981842041,0.12343266606330872,-0.2267608344554901,0.21235713362693787,0.17308436334133148,-0.1836872696876526,0.3611840307712555,0.056318942457437515,-0.19475622475147247,-0.14911197125911713,0.09677774459123611,0.27510398626327515,0.16142085194587708,-0.018856264650821686,0.28558993339538574,0.24059875309467316,0.35024991631507874,-0.1084200069308281,-0.33975932002067566,-0.12960590422153473,0.2176254838705063,-0.4257644712924957,0.2658378779888153,-0.07418458163738251,0.017938867211341858,0.18393351137638092,0.3260156214237213,-0.11100343614816666,-0.31534165143966675,0.3249383568763733,0.08483952283859253,-0.09450820088386536,0.13716550171375275,0.49339285492897034,-0.1930358111858368,-0.14140965044498444,-0.3503761887550354,0.28686287999153137,-0.11023151129484177,-0.07039977610111237,0.03054398111999035,-0.1754848212003708,0.09200550615787506,-0.1759967803955078,-0.14512692391872406,-0.28314492106437683,-0.27608898282051086,-0.237555593252182,-0.5003913044929504,-0.06400655210018158,-0.10833483934402466,-0.22955910861492157,0.23376037180423737,0.24990376830101013,-0.19871945679187775,0.17105649411678314,0.16044531762599945,-0.01856178604066372,0.03745647519826889,0.05516180396080017,0.30516475439071655,-0.12667584419250488,-0.11117023229598999,-0.0711708515882492,0.3649426996707916,-0.08792081475257874,-0.08027243614196777,-0.0974755808711052,0.33754464983940125,0.2874283492565155,0.023395176976919174,-0.18805444240570068,0.21757085621356964,-0.23505502939224243,-0.2426731437444687,0.11203417181968689,0.29612141847610474,0.2655365467071533,0.2569386661052704,0.23314695060253143,0.007050901651382446,0.08177917450666428,0.2332039773464203,-0.13709379732608795,-0.013652360998094082,-0.036167941987514496,0.38342106342315674,-0.09923470765352249,-0.09821378439664841,0.39471983909606934,0.148203507065773,-0.03696231171488762,0.2964896559715271,-0.3493279814720154,0.23998165130615234,-0.08598539978265762,-0.37177374958992004,0.28152135014533997,0.08413799852132797,0.19094669818878174,-0.40049710869789124,-0.30020418763160706,-0.24730391800403595,-0.31821882724761963,-0.3672511875629425,-0.08369269967079163,-0.13509805500507355,-0.17354057729244232,0.04974885657429695,-0.10599901527166367,0.007789315655827522,-0.07835014909505844,0.00837782584130764,-0.11149618774652481,0.6031414270401001,0.08771412819623947,-0.16370908915996552,0.2067297399044037,0.48261627554893494,-0.3875623643398285,-0.2163449227809906,-0.13677260279655457,-0.16090230643749237,-0.17774520814418793,0.010105208493769169,-0.6145129799842834,-0.09415202587842941,-0.1259298324584961,0.06034965068101883,0.07524086534976959,0.140744149684906,-0.06436866521835327,-0.3812220096588135,0.31706252694129944,-0.3043788969516754,-0.023866599425673485,-0.03437996283173561,0.24751462042331696,0.04501766711473465,-0.09563123434782028,0.22097453474998474,0.32461994886398315,-0.07681004703044891,-0.11640071123838425,-0.1761360615491867,0.16819313168525696,0.1376681625843048,-0.291646271944046,-0.26781532168388367,-0.1978529989719391,0.08022714406251907,0.1115042120218277,-0.11400097608566284,0.07329045981168747,0.3673612177371979,-0.010218732990324497,-0.04832904785871506,-0.25713708996772766,-0.023916667327284813,0.06745586544275284,-0.4724980592727661,0.433352530002594]},{"shape":[32],"values":[0.7478710412979126,-0.07515042275190353,0.1052933931350708,0.5840883255004883,0.08475130051374435,-0.2671660780906677,0.054567303508520126,0.41931742429733276,0.6554146409034729,-0.22915607690811157,0.2918548285961151,-0.10554523766040802,0.44769349694252014,0.2623685300350189,0.24485403299331665,0.37318187952041626,-0.14187440276145935,0.5660622715950012,0.8887199759483337,0.7121745944023132,-0.016337499022483826,-0.19381631910800934,0.40549933910369873,0.10334379971027374,-0.17563292384147644,0.4137014150619507,0.5967726707458496,0.23103733360767365,0.04067007079720497,0.13386186957359314,0.3024798035621643,-0.13068485260009766]},{"shape":[32,32],"values":[0.10836835950613022,0.5728351473808289,-0.043545231223106384,0.5850183963775635,0.5413770079612732,0.6148940324783325,0.3985971510410309,0.42611032724380493,0.4717139005661011,0.6386938095092773,0.08567440509796143,0.23019501566886902,-0.7942016124725342,0.47741419076919556,0.19805492460727692,0.47671252489089966,-0.12367822229862213,-0.06713959574699402,0.22032415866851807,0.6329405903816223,0.2800998389720917,0.8841084241867065,0.011711154133081436,0.03096788562834263,0.049191128462553024,0.41831424832344055,0.7975142002105713,0.01138328853994608,0.49105802178382874,0.5407115817070007,0.8419871926307678,0.7349931001663208,-0.2697948217391968,0.06757029891014099,-0.2378455102443695,-0.5717384219169617,-0.02484126016497612,-0.7378100752830505,-0.4607390761375427,-0.018624816089868546,-0.6658010482788086,-0.01704917848110199,-0.6769476532936096,-0.14817246794700623,-0.18273517489433289,-0.3219841718673706,-0.5471774935722351,-0.7082809209823608,-0.04728711396455765,0.06603316217660904,0.39017653465270996,-0.17887036502361298,-0.23510421812534332,0.14729191362857819,0.24846047163009644,0.20232297480106354,0.007461356930434704,-0.5577475428581238,-0.06482890993356705,-0.257281094789505,-0.04638787358999252,-0.4299793243408203,-0.4559280276298523,-0.10460340976715088,0.33083975315093994,0.35167908668518066,-0.031287774443626404,0.18564485013484955,0.5072651505470276,0.8567325472831726,0.13648176193237305,0.1290629655122757,0.0999690592288971,0.33134880661964417,-0.09068258106708527,0.2669316232204437,0.1969413161277771,0.29495176672935486,0.13013039529323578,0.6371507048606873,0.12476792186498642,-0.2995292842388153,-0.09178335964679718,0.5960842370986938,0.32774296402931213,0.11355188488960266,-0.0614192970097065,-0.03367691859602928,0.018991606310009956,0.4624839127063751,0.3614818751811981,-0.27505719661712646,0.45309558510780334,0.22349107265472412,0.5685874223709106,0.19239167869091034,0.23041675984859467,0.2633020281791687,0.08519487082958221,0.6085245609283447,0.5829253196716309,-0.31395187973976135,0.9347215890884399,0.39463403820991516,0.22251413762569427,0.5265033841133118,0.3100009262561798,-0.10277162492275238,-0.28924766182899475,0.4539402425289154,0.5138117074966431,0.3915579915046692,0.2804171144962311,0.21442186832427979,-0.3479956388473511,0.6123313903808594,0.4029114246368408,0.8096659183502197,0.08686846494674683,-0.03672536090016365,-0.34627866744995117,0.7562196254730225,0.6114885210990906,-0.1393098086118698,0.7251466512680054,0.7267714142799377,0.8412229418754578,0.4732930064201355,0.24154847860336304,0.19425013661384583,-0.2782045900821686,0.237585186958313,0.5587652325630188,0.5911880135536194,0.48806875944137573,0.3869646489620209,0.3996856212615967,0.44577306509017944,-0.02299857698380947,0.48898935317993164,0.23779982328414917,0.20201519131660461,-0.20471829175949097,0.1567629873752594,-0.24966391921043396,-0.25833621621131897,0.08716051280498505,0.6152805685997009,0.37538132071495056,0.2956194281578064,-0.058190640062093735,0.12588688731193542,0.027723731473088264,-0.14043378829956055,0.5974605679512024,-0.9849850535392761,0.46803250908851624,0.07809090614318848,0.21305440366268158,0.7153173685073853,-0.816902220249176,-0.09166034311056137,-0.29072409868240356,-0.14506228268146515,-0.37529927492141724,-0.6881848573684692,-1.0180710554122925,-0.5884252190589905,-0.3042171001434326,-0.12466856837272644,0.0007193975616246462,-0.7577584981918335,-0.2803475260734558,-0.7190951108932495,-0.587535560131073,-0.5642951726913452,-0.021096473559737206,0.0683072954416275,0.5868380665779114,-0.19036442041397095,-0.6859962940216064,-1.0171301364898682,0.32998180389404297,-0.3499751389026642,-0.1735190600156784,-0.8052352070808411,-0.7576337456703186,0.5302574634552002,-0.626314103603363,-0.27402037382125854,-0.5567165017127991,-0.7861224412918091,-0.06801147013902664,0.1920005977153778,0.16723193228244781,-0.02919667959213257,0.5422281622886658,0.12311961501836777,0.028425436466932297,-0.06591667234897614,-0.013714334927499294,0.039454564452171326,-0.028640732169151306,0.16559037566184998,-0.9024760723114014,0.015922250226140022,-0.05534983426332474,0.2648113965988159,0.20984923839569092,-0.1814277470111847,-0.35229697823524475,0.2797339856624603,-0.3261311650276184,0.15087774395942688,-0.04039398953318596,-0.6157224178314209,-0.06288785487413406,-0.11397747695446014,-0.029916057363152504,0.2839790880680084,0.25810858607292175,-0.002507180906832218,-0.003227023873478174,0.17044664919376373,-0.1260995715856552,0.6934738159179688,-0.33720892667770386,0.6845344305038452,0.1924133151769638,-0.2155953347682953,0.5669953227043152,0.08943803608417511,0.24134233593940735,0.3410256505012512,0.074536994099617,0.04181229695677757,0.09410374611616135,0.4388183355331421,0.22363123297691345,0.2287612110376358,0.022846244275569916,-0.04780005291104317,-0.567884087562561,0.4669068455696106,0.4421520531177521,0.44915375113487244,-0.17792610824108124,-0.38583114743232727,-0.23970617353916168,0.6915037631988525,0.4843829274177551,0.05310528352856636,0.5872010588645935,0.9084300994873047,0.6420688629150391,0.38845306634902954,0.1780027449131012,0.5319774746894836,0.10826992243528366,0.5897709131240845,0.34949791431427,0.2789262533187866,0.6855666041374207,0.1833418756723404,-0.11376425623893738,0.6371073722839355,-0.15136301517486572,0.20865678787231445,0.45711442828178406,0.4743364155292511,0.05072302743792534,0.40427255630493164,0.18893685936927795,0.12511001527309418,-0.21140791475772858,0.32468751072883606,0.26194432377815247,0.2669050991535187,-0.23719191551208496,0.0025705979205667973,-0.4011174738407135,0.34475651383399963,0.48491960763931274,-0.14408236742019653,0.49959316849708557,0.8304017782211304,0.697177529335022,0.19259707629680634,-0.4977583885192871,-0.03778290003538132,-0.29296940565109253,-0.24609985947608948,0.003280190983787179,-0.5184221267700195,-0.5697800517082214,-0.44025918841362,0.10686265677213669,-0.1628405600786209,0.11725562065839767,-0.3014953136444092,-0.1572204977273941,-0.5501558780670166,-0.20909418165683746,-0.5567350387573242,0.11496046930551529,0.2418009340763092,-0.030156079679727554,-0.3396996557712555,-1.1077271699905396,-0.4955669343471527,0.12072010338306427,-0.30156901478767395,0.09849197417497635,-0.46515151858329773,0.12054425477981567,0.1386924684047699,-0.1413111388683319,0.2104981392621994,0.1555178463459015,-0.637348473072052,0.5274003148078918,0.3691578209400177,0.06792718172073364,0.2739149332046509,0.09010916203260422,0.472696989774704,0.5026722550392151,0.15549299120903015,0.22726039588451385,0.41203543543815613,-0.186929851770401,0.13605915009975433,0.44279929995536804,0.12185341119766235,-0.24777108430862427,0.06198566034436226,0.1536804437637329,-0.35377970337867737,-0.18736866116523743,0.24968944489955902,0.409697026014328,0.60444176197052,0.30741265416145325,0.7410567402839661,-0.3169343173503876,0.0807165578007698,0.5546949505805969,-0.5589872002601624,0.1724923998117447,0.29036998748779297,0.5832503437995911,0.14772655069828033,-0.09698479622602463,0.009234475903213024,-0.2426425665616989,-0.04934291914105415,0.0760699138045311,0.14721402525901794,-0.787216067314148,-0.23705866932868958,-0.21989528834819794,-0.3278811573982239,0.15489386022090912,-0.08305198699235916,-0.2759295105934143,-0.6599763631820679,-0.3707127571105957,0.016454020515084267,0.042901504784822464,-0.10537309944629669,0.13091079890727997,-0.05994461849331856,-0.2811196446418762,-0.37120699882507324,0.3943016529083252,-0.09711828827857971,-0.2667476534843445,-0.3853263854980469,-0.3653828501701355,0.4793679714202881,-0.5300580263137817,-0.3082236349582672,-0.2803259789943695,-0.7411581873893738,0.43896710872650146,0.22449135780334473,-0.04832594469189644,0.3316638767719269,0.38952192664146423,-0.15199153125286102,0.3418414294719696,0.06483165919780731,0.14596830308437347,0.48615562915802,0.4038519859313965,0.004310975316911936,0.31648409366607666,0.4666196405887604,-0.07419455796480179,-0.373930424451828,0.32656803727149963,-0.14371824264526367,0.23962357640266418,0.24415357410907745,0.09116732329130173,0.09545382857322693,-0.044167716056108475,-0.1905728131532669,-0.05795521289110184,0.13234102725982666,0.4370647966861725,-0.03299565240740776,0.25582459568977356,0.5102559328079224,0.21882331371307373,0.16758477687835693,0.5916235446929932,0.49861064553260803,0.12755200266838074,0.8051779866218567,0.558382511138916,0.24906793236732483,0.427349328994751,-0.049932811409235,0.17630644142627716,0.3381226062774658,-0.02488723024725914,-0.12443249672651291,0.27239707112312317,0.7002366185188293,0.3182041049003601,0.798596203327179,0.16999536752700806,0.08692993223667145,-0.3507905900478363,0.538260817527771,0.07105886936187744,0.4958113133907318,-0.25022944808006287,0.03697379678487778,0.19347499310970306,0.6241739988327026,0.6837238073348999,-0.07568951696157455,0.6876816153526306,0.6271252632141113,0.8249145746231079,0.7043112516403198,0.16777664422988892,0.656862735748291,0.16594964265823364,0.09660591930150986,0.6483873128890991,0.3607122600078583,0.7061355710029602,0.12340729683637619,0.0355403758585453,0.1758335381746292,0.05283115804195404,0.2710569202899933,0.06399974226951599,0.5230876803398132,0.36541515588760376,0.627463698387146,-0.2532990276813507,-0.4307653307914734,-0.1660044938325882,0.36940133571624756,0.5423369407653809,0.4676250219345093,0.22514070570468903,0.2601125240325928,0.14179211854934692,-0.2138144075870514,0.6279621124267578,-0.49280068278312683,0.07563749700784683,0.8180062770843506,0.714561939239502,0.2916392385959625,0.31721243262290955,0.036185842007398605,-0.3564662039279938,0.3528171479701996,0.4015590250492096,0.05629913881421089,0.056521471589803696,0.1527300626039505,0.3908054530620575,0.3286533057689667,-0.15355516970157623,-0.2828753888607025,0.0000212418963201344,0.5685498118400574,0.3431636095046997,-0.21313564479351044,-0.1790604293346405,-0.017974238842725754,-0.17176425457000732,0.47555044293403625,0.07699757814407349,0.3191196918487549,-0.0597984753549099,-0.230721578001976,0.24404892325401306,0.28967270255088806,0.31245335936546326,-0.07015763223171234,0.3806960880756378,0.5094905495643616,0.09156551212072372,0.1845947653055191,-0.5712823867797852,-0.4724964499473572,-0.15677744150161743,-0.8437562584877014,-0.5761149525642395,-0.4562758505344391,-0.6811584234237671,-0.04615676403045654,-0.648110032081604,-0.3746558725833893,-0.25153160095214844,-0.09275420755147934,-0.1520673930644989,-0.3962390720844269,-0.7038540840148926,-0.9242332577705383,-0.4424925446510315,0.10941189527511597,0.7041670680046082,-0.5366646647453308,-0.1772775501012802,-0.711808443069458,0.7253795266151428,0.7023207545280457,0.029162071645259857,-0.6127824783325195,-0.7187838554382324,-0.2771816551685333,-0.5365200638771057,-0.47154322266578674,-0.6676456928253174,-0.40391620993614197,0.3164157271385193,0.27230459451675415,-0.2755071222782135,0.18207131326198578,0.25622832775115967,0.42232683300971985,0.3301519453525543,0.17300206422805786,0.29947614669799805,0.41467928886413574,0.03085516020655632,-0.2787827253341675,-0.11097311973571777,0.24823960661888123,0.4304603636264801,0.3240985870361328,0.07319671660661697,0.20964331924915314,0.08460772037506104,0.3147064745426178,-0.2271886020898819,0.386380136013031,-0.1579832136631012,-0.45089414715766907,0.24881182610988617,0.3307550847530365,0.5274871587753296,0.23148690164089203,-0.20622284710407257,0.05474723502993584,0.5597832798957825,0.08152148127555847,0.4337605834007263,0.6447486877441406,-0.32859477400779724,0.2432791292667389,0.4984583258628845,0.6994019150733948,0.3414553999900818,0.07750675082206726,0.21579761803150177,0.541410505771637,-0.3253699541091919,0.030773980543017387,-0.6081894636154175,0.4593393802642822,0.5170435309410095,0.32620543241500854,0.26397839188575745,0.058271754533052444,-0.29991617798805237,0.4842594563961029,0.3072916567325592,0.8548147678375244,-0.1447065770626068,-0.11225631088018417,0.10232099145650864,0.2737377882003784,0.7464662194252014,0.10758103430271149,0.6761612296104431,0.728606104850769,0.8522246479988098,0.4665325880050659,0.33277246356010437,0.22718246281147003,-0.3155301809310913,0.17607922852039337,0.37018629908561707,0.28978070616722107,0.38920071721076965,0.17910976707935333,-0.10808508843183517,0.46620485186576843,-0.0334203839302063,-0.20759320259094238,-0.41966867446899414,0.3500303328037262,0.347292959690094,0.3661729693412781,0.13549679517745972,-0.104604072868824,0.27751290798187256,0.4833845794200897,0.34630322456359863,0.5515508651733398,0.13748721778392792,-0.09277176856994629,-0.19498413801193237,0.12540753185749054,0.3770781457424164,-0.5823668837547302,0.3949746787548065,0.2348766177892685,0.4863217771053314,0.2402210533618927,-0.748563826084137,0.00948403961956501,-0.33366134762763977,-0.5216617584228516,-0.04155119135975838,-0.7024632692337036,-0.19828273355960846,0.3606038987636566,-0.866412341594696,-0.16003425419330597,-0.4153554141521454,0.22347836196422577,0.3222008943557739,-0.43872931599617004,0.1856711506843567,-0.12372564524412155,0.020104316994547844,-0.1689911037683487,0.6981570720672607,-0.048644401133060455,-0.04441032558679581,-0.1075516939163208,0.2947399616241455,0.519456148147583,-0.29852294921875,-0.02664901316165924,-0.23225894570350647,0.00955494400113821,-0.39567577838897705,-0.3008936047554016,-0.08091133087873459,-0.32461702823638916,-0.7180913090705872,-0.38407182693481445,0.024410834535956383,-0.13936544954776764,-0.2848660945892334,-0.7314081192016602,-0.7033144235610962,-1.313245415687561,0.06030803173780441,-0.39805176854133606,-0.42332106828689575,-0.3247615396976471,0.3691893517971039,-0.9648388028144836,-0.03925218805670738,-0.5259789228439331,-0.08210945129394531,-0.17442631721496582,0.6070781350135803,-0.5142201781272888,-1.3343472480773926,-0.5835879445075989,0.3544882535934448,-0.1889006346464157,-0.023856738582253456,-0.7092675566673279,0.028136270120739937,0.4031301736831665,-0.4714251160621643,-0.3878234922885895,-0.1437806487083435,-0.875012218952179,0.449283629655838,0.7854354381561279,-0.13779693841934204,0.5117751955986023,0.6560970544815063,0.9555032849311829,0.3133079707622528,0.0011019895318895578,0.17123928666114807,0.3998865783214569,0.09759550541639328,0.058743227273225784,0.051877107471227646,0.8191372752189636,-0.10569988191127777,0.6347849369049072,0.12482831627130508,-0.07012131810188293,0.17474517226219177,0.6789025664329529,0.18130919337272644,0.4802860915660858,0.1384017914533615,-0.041061293333768845,-0.06902564316987991,0.02529548667371273,0.2336096465587616,0.1971619427204132,0.09834864735603333,0.39449185132980347,0.834679126739502,0.8035683035850525,0.21132124960422516,0.444640189409256,-0.07694761455059052,0.7357195019721985,0.20101292431354523,-0.36975473165512085,0.7433509826660156,0.11672795563936234,0.01755312830209732,0.6824794411659241,0.4221082925796509,-0.16158951818943024,-0.08014267683029175,0.6271694898605347,-0.017731759697198868,-0.1659458577632904,0.025865798816084862,0.0717986598610878,-0.4177086353302002,0.627796471118927,0.18317505717277527,0.4300057590007782,-0.44328776001930237,0.03536698594689369,0.07833871990442276,0.5877427458763123,0.7332473397254944,-0.115408755838871,0.5093492269515991,0.9607259035110474,0.46502429246902466,0.8899617195129395,-0.6120085120201111,-0.6494004726409912,0.11507821083068848,-0.6664869785308838,-0.6200231909751892,-0.5300516486167908,-0.4128878712654114,0.44471967220306396,-0.3038386404514313,-0.2627216875553131,-0.13817955553531647,0.02801450341939926,0.11137690395116806,-0.7715986967086792,-0.4574832320213318,-0.6128373146057129,0.1350216418504715,0.33545488119125366,0.5236320495605469,-0.30326035618782043,-0.025506384670734406,-0.7313411235809326,0.07889863848686218,0.10154570639133453,0.032705921679735184,-0.40021392703056335,-0.39125528931617737,0.5716847777366638,-0.3987938463687897,-0.6173210144042969,-0.7401542663574219,-0.269045352935791,0.2385375201702118,0.5717753767967224,0.023474929854273796,0.11493632942438126,0.26722297072410583,0.23428022861480713,0.4960349500179291,-0.035858627408742905,0.376827597618103,0.4490887224674225,0.40158531069755554,-0.11989936977624893,-0.28254514932632446,0.06680570542812347,0.013110188767313957,0.12913447618484497,0.3126576542854309,-0.10028587281703949,0.1664600819349289,0.0067786057479679585,0.31519439816474915,0.5150012373924255,-0.2570969760417938,-0.7973222136497498,-0.2156299203634262,0.48203521966934204,0.4813002645969391,0.30817118287086487,-0.009624998085200787,0.12080153822898865,0.5077793598175049,0.5106649398803711,0.0845525860786438,0.5353840589523315,-0.3153560757637024,0.35456711053848267,0.4073932468891144,-0.0643666684627533,0.5197615027427673,-0.028243528679013252,-0.1400466114282608,0.37992578744888306,0.18500885367393494,-0.3458288908004761,0.29466867446899414,0.6066700220108032,0.5496764183044434,0.25070706009864807,0.009639271534979343,0.2162931114435196,0.23062698543071747,0.3732356131076813,0.2660577595233917,0.5713128447532654,-0.0263943113386631,-0.3610151410102844,0.13553118705749512,0.3688528537750244,0.3100918233394623,0.15571743249893188,0.28554567694664,0.15815335512161255,0.4033377766609192,0.38931533694267273,0.17789879441261292,-0.11620083451271057,0.02833176963031292,0.19033904373645782,0.07928134500980377,-0.07307800650596619,-0.10207245498895645,-0.5475518703460693,0.3419193625450134,0.1070653423666954,0.011995879001915455,-0.24891841411590576,-0.18876849114894867,-0.18391966819763184,-0.0744541585445404,-0.13561490178108215,0.1598670333623886,0.22905291616916656,0.09479736536741257,0.3909769356250763,-0.6833126544952393,-0.3189508020877838,0.3129630386829376,-0.7241394519805908,-0.321493536233902,-0.01599537581205368,0.09759654849767685,0.36297607421875,-0.2479124814271927,0.044757064431905746,0.24141676723957062,0.11927959322929382,0.5985074043273926,0.5245527029037476,0.02320961467921734,0.7884017825126648,0.4414995312690735,0.9152087569236755,0.9912927746772766,0.40203869342803955,0.19600661098957062,0.3144702911376953,-0.09048236161470413,0.34859758615493774,0.3824683129787445,0.8516237735748291,0.21132276952266693,0.7103828191757202,-0.026812266558408737,-0.18571099638938904,-0.4468879997730255,0.5986810922622681,0.24125652015209198,0.8531962037086487,0.16959331929683685,-0.07767446339130402,-0.29001185297966003,0.0748683363199234,0.41638457775115967,-0.616258442401886,0.6362971067428589,0.6026604175567627,0.4418089687824249,0.77817702293396,0.4651612937450409,0.3965262174606323,-0.12725305557250977,0.7485277652740479,0.6944546699523926,0.8813338875770569,0.4147275388240814,0.3272513747215271,0.006245924159884453,0.7706765532493591,-0.6005222797393799,-0.30962935090065,-0.019320277497172356,0.6686381697654724,0.16454453766345978,0.31507518887519836,-0.12687644362449646,-0.17343153059482574,-0.547789990901947,0.3512457013130188,0.326494961977005,0.5704848170280457,-0.36389046907424927,-0.025479262694716454,0.06763248145580292,-0.2640205919742584,0.5555147528648376,-0.6537355780601501,0.21835803985595703,0.7805485129356384,0.8440693616867065,0.9166545867919922,-0.036420583724975586,0.18732278048992157,0.24875660240650177,0.39494672417640686,0.280032217502594,0.3799060881137848,0.21123509109020233,0.22449693083763123,0.14589503407478333,0.528251051902771,-0.3129466772079468,0.32457810640335083,0.3741629421710968,0.3728712499141693,-0.36221927404403687,0.004680776968598366,-0.15954440832138062,-0.044370461255311966,0.00560456607490778,0.10159541666507721,-0.18303024768829346,0.21438051760196686,0.21243791282176971,0.4065452814102173,-0.3024921119213104,-0.3411572575569153,0.39335745573043823,-0.15067671239376068,-0.12682098150253296,0.47658273577690125,0.49797335267066956,0.3107719421386719,-0.3047184944152832,-0.3294266164302826,0.08848186582326889,-0.22339193522930145,-0.03050917387008667,-0.46854785084724426,-0.8222562670707703,-0.17626968026161194,-0.23452512919902802,-0.4991322457790375,-0.37152403593063354,0.17335791885852814,0.34935396909713745,-0.9305817484855652,-0.2079285979270935,-0.35478946566581726,-0.3271177113056183,0.21341867744922638,0.7925333976745605,-0.18351200222969055,-0.6581280827522278,-0.8264636397361755,0.10560745745897293,0.3759634792804718,-0.13159926235675812,-0.47196564078330994,-0.23885555565357208,0.25108957290649414,-0.7378563284873962,-0.2115107923746109,-0.2939833700656891,-0.7186065912246704]},{"shape":[32],"values":[0.2998882830142975,0.435599684715271,-0.1215679869055748,0.5255396962165833,0.3562595248222351,0.3532752990722656,0.4521016478538513,0.10882981866598129,0.04699152335524559,0.41858816146850586,-0.05644925311207771,-0.12967373430728912,0.24345725774765015,0.4206804633140564,0.34524741768836975,0.36649298667907715,0.005044540390372276,0.005523716565221548,-0.07462670654058456,0.36678576469421387,0.026871465146541595,0.4233858585357666,-0.18156297504901886,0.1124015673995018,-0.053634628653526306,0.45326507091522217,0.47802361845970154,-0.08693353086709976,0.2747425138950348,0.519898533821106,0.4548819065093994,0.5030578970909119]},{"shape":[32,9],"values":[0.7644907832145691,0.9253048896789551,0.7845582962036133,0.4384796917438507,0.736636757850647,0.4909360408782959,0.24163252115249634,0.48364561796188354,0.752551257610321,0.45773550868034363,0.24165573716163635,0.7637544274330139,0.24065014719963074,0.3807584047317505,0.41396963596343994,0.5523071885108948,0.24743524193763733,0.4109260141849518,-0.23501424491405487,0.12063182890415192,-0.030424630269408226,0.05418756976723671,0.25578296184539795,0.1324133276939392,-0.16460959613323212,-0.13981543481349945,0.036873217672109604,0.1993018537759781,0.2707076966762543,0.9227325320243835,0.37177619338035583,0.6714863777160645,0.20393866300582886,0.7921290397644043,0.5774011015892029,0.46116089820861816,0.04922449588775635,0.5738996863365173,0.028731748461723328,0.5731744170188904,0.01512786466628313,0.2471936196088791,0.21521608531475067,0.5453730821609497,0.5532232522964478,0.8326526880264282,0.30579203367233276,0.5179040431976318,0.6478506922721863,0.6461659669876099,0.8909436464309692,0.7466237545013428,0.8918129205703735,0.7351951599121094,0.8090336322784424,0.8560435175895691,0.1243906319141388,0.6404855847358704,0.8239789605140686,0.8177079558372498,0.8244321346282959,0.43166300654411316,0.5231901407241821,0.24495680630207062,-0.2360900491476059,-0.5382107496261597,0.026606665924191475,-0.1681392937898636,-0.17779166996479034,0.32609930634498596,0.09832604974508286,-0.3809050917625427,0.26732635498046875,0.46705833077430725,0.20529180765151978,0.17783094942569733,0.45252716541290283,0.7532610297203064,-0.1028544083237648,0.11169320344924927,0.5693113803863525,0.21607376635074615,0.2078239619731903,-0.003118955297395587,0.31093260645866394,0.49847838282585144,0.5024877786636353,0.3276815712451935,0.6768285632133484,0.5850486755371094,0.19074133038520813,0.4848474860191345,0.23360766470432281,0.05158338323235512,0.22038279473781586,0.6375521421432495,-0.37083038687705994,-0.08109644800424576,0.09908987581729889,-0.06552178412675858,-0.5183480381965637,-0.06437324732542038,0.040308091789484024,-0.4408394992351532,-0.2323015332221985,-0.16023898124694824,-0.16950438916683197,-0.5362461805343628,0.000021612882846966386,0.09452283382415771,-0.18546979129314423,-0.12223191559314728,-0.2902378439903259,-0.3293234705924988,-0.6641093492507935,-0.976425290107727,-1.1765358448028564,0.7194226980209351,0.6631454229354858,0.8201286792755127,0.9642763733863831,0.5317308902740479,0.6951305270195007,0.4274148941040039,0.6528553366661072,0.5469021797180176,0.5239212512969971,0.24693268537521362,0.6267329454421997,0.25297871232032776,0.19747567176818848,0.24330860376358032,0.7390466332435608,0.38062015175819397,0.2859112024307251,0.4800690710544586,0.7208631038665771,0.5531668066978455,0.658026397228241,0.6552636027336121,0.24351654946804047,0.7563294172286987,0.7567300200462341,0.9078946709632874,0.1552731692790985,0.24374626576900482,0.3011709153652191,-0.023668253794312477,0.16572530567646027,0.12183455377817154,-0.020854534581303596,0.2342039942741394,-0.048059575259685516,-0.1457696259021759,0.3744661808013916,0.34945598244667053,0.20322857797145844,0.13241983950138092,-0.03193958103656769,-0.033213287591934204,-0.05818001180887222,-0.34108465909957886,0.04359937459230423,-0.41643673181533813,-0.5312981605529785,-0.4005875289440155,-0.463340699672699,-0.5075036883354187,-0.342629998922348,-0.6043819785118103,-0.639133632183075,0.34549397230148315,0.2505165636539459,0.6040176749229431,0.2135566771030426,0.3243213891983032,0.649752676486969,0.3060029447078705,0.13688397407531738,0.604268491268158,0.3817107379436493,0.30142220854759216,-0.17982813715934753,0.31541574001312256,0.07458117604255676,-0.4489433467388153,0.687782347202301,0.2999252378940582,-0.7842145562171936,0.0510372631251812,0.4340781271457672,0.6421063542366028,0.5062451958656311,0.7698585391044617,0.6442451477050781,0.7746425271034241,0.3585633933544159,0.5833941102027893,-0.43933168053627014,-0.21294958889484406,-0.05574481189250946,0.12995921075344086,-0.2819661796092987,-0.5167971849441528,-0.6385993957519531,-0.26685813069343567,-0.3611270785331726,-0.5326651930809021,-0.08051176369190216,0.15562066435813904,-0.6218153834342957,-0.21453364193439484,-0.18778418004512787,-0.8307432532310486,-0.6626851558685303,0.14712035655975342,-0.3191780149936676,0.23698802292346954,-0.17165519297122955,-0.30170556902885437,0.16443632543087006,0.19813424348831177,-0.20764750242233276,-0.01489980984479189,0.10375072807073593,0.6070282459259033,0.3790329098701477,0.37649890780448914,0.708763062953949,0.6407533288002014,0.7034609317779541,0.6513923406600952,0.8776399493217468,0.8336654901504517,0.34364980459213257,0.16671954095363617,0.5188876986503601,0.20452545583248138,0.3548496663570404,0.6316558122634888,0.4964473843574524,0.447534441947937,0.5115994811058044,-0.28329455852508545,-0.034589026123285294,-0.32414835691452026,-0.3489004671573639,-0.2057766169309616,-0.03535822033882141,-0.21026282012462616,-0.6008106470108032,-0.21380732953548431,0.7350836992263794,0.6247267723083496,0.5764520764350891,0.6878811717033386,0.48228010535240173,0.3029906749725342,0.28224125504493713,0.17661777138710022,0.41180217266082764,0.8654066920280457,0.8898773789405823,0.5552369356155396,0.4031483232975006,0.4152052700519562,0.3926820755004883,0.3654046356678009,0.8996338844299316,0.3256196975708008,0.2283608317375183,0.20385794341564178,0.1540951430797577,0.5668916702270508,0.5614760518074036,0.5900678038597107,0.3431762754917145,0.4615913927555084,0.5272995829582214,0.7441650032997131,0.6025786399841309,0.695019543170929,0.6385539770126343,0.543773353099823,0.37362921237945557,0.49324172735214233,0.4817649722099304,0.5495165586471558]},{"shape":[9],"values":[0.21321973204612732,0.21895447373390198,0.08573048561811447,0.20377734303474426,0.16801007091999054,0.2888987362384796,0.43760353326797485,0.2426016628742218,0.2328922003507614]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-73.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-73.json new file mode 100644 index 0000000..eac45f8 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/dqn-73.json @@ -0,0 +1 @@ +{"configuration":{"id":"racing-q-learning-v3","seeds":[11,29,47,73,101],"evaluationSeeds":[211,307,419,509,601],"transitions":20000,"actionRepeat":6,"trafficAfterTransitions":10000,"episodeTransitions":600,"termination":"finish only; off-road recovery follows RaceWorld","truncation":"600 decisions, race time limit, or solo-to-traffic curriculum boundary","trainEvery":4,"hiddenLayers":[32,32],"learningRate":0.001,"batchSize":32,"memorySize":10000,"gamma":0.99,"epsilonDecay":0.9995,"minEpsilon":0.05,"targetUpdateFrequency":100,"evaluation":"5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy","selection":"last scheduled checkpoint; all failures retained"},"format":"ignition-driver-v1","algorithm":"dqn","driving":"circuit-racing-v2","observation":"racing-observation-v1","protocol":"racing-q-learning-v3","seed":73,"updates":4993,"samples":20000,"createdAt":"2026-09-06T17:57:02.198Z","weights":[{"shape":[20,32],"values":[0.994647204875946,0.2918715476989746,1.417104721069336,0.10242805629968643,0.597240149974823,0.979636549949646,-0.021278141066432,0.763216495513916,-0.4263479709625244,-0.3387863039970398,-0.49077123403549194,-0.02467266470193863,0.9554106593132019,0.050913915038108826,-0.2662142217159271,1.1181108951568604,-0.1350131630897522,0.11079578846693039,0.8473026156425476,0.4339144229888916,0.6608123779296875,0.29548099637031555,0.4263858199119568,-0.5071194767951965,-0.16026218235492706,0.7320202589035034,0.24109216034412384,0.3592144846916199,0.3901658356189728,0.9123808741569519,1.008181095123291,0.980706512928009,0.06550706177949905,0.019444558769464493,-0.036735616624355316,0.6096831560134888,-0.1818457841873169,0.40301385521888733,-0.10643698275089264,-0.05224977806210518,0.07784345746040344,-0.38513579964637756,-0.024021247401833534,0.01982642151415348,-0.33019348978996277,-0.27276474237442017,-0.08974289894104004,-0.08414280414581299,-0.26173922419548035,-0.09136732667684555,0.08800094574689865,-0.1676817536354065,-0.23325377702713013,-0.2595903277397156,0.09063144773244858,0.1299341768026352,-0.11665211617946625,-0.1693294197320938,0.1373012661933899,-0.09063121676445007,-0.2728637754917145,-0.3158565163612366,0.13108110427856445,-0.039512235671281815,-0.5801727771759033,-0.18951204419136047,-0.4514974057674408,0.4462599754333496,0.30499890446662903,-0.3184373676776886,-0.36121654510498047,0.08452579379081726,0.4656616449356079,-0.5193496346473694,-0.3417634963989258,0.43377014994621277,0.16387060284614563,-0.24300919473171234,-0.712647557258606,-0.13027742505073547,-0.46990808844566345,-0.506536066532135,-0.02375471591949463,-0.14107337594032288,-0.2318328320980072,-0.33234426379203796,0.17232711613178253,0.636552095413208,-0.1734294593334198,0.29227036237716675,-0.5847753882408142,0.34939470887184143,0.04083975404500961,0.1739860475063324,-0.1837996244430542,-0.13147473335266113,-0.42988574504852295,-0.2614668309688568,-0.613328218460083,-0.460264652967453,-0.2639029622077942,-0.0328623503446579,1.081010103225708,-0.965390145778656,-0.41577810049057007,1.5427849292755127,1.671043872833252,-0.672059953212738,-0.7226072549819946,1.0339261293411255,1.3571257591247559,-0.10955825448036194,1.7694851160049438,1.9205609560012817,-0.6625555753707886,-0.5437835454940796,-0.23539261519908905,1.7800395488739014,-0.5008314251899719,-1.0563478469848633,1.4160844087600708,-0.9213263988494873,1.114841103553772,-1.0422967672348022,-0.4538675546646118,-0.46910107135772705,-0.2861291170120239,-0.8055697679519653,-0.03855455294251442,-0.2155386507511139,0.03260262683033943,-0.40785861015319824,0.5148647427558899,-0.19195421040058136,0.15276400744915009,0.16481377184391022,0.24361607432365417,0.31334376335144043,-0.20737914741039276,0.12459829449653625,0.37939712405204773,-0.16522502899169922,0.03531191870570183,-0.001804806524887681,-0.19248422980308533,0.07495146989822388,0.07311505824327469,0.002294671954587102,0.1762741506099701,-0.2907591164112091,-0.4582682251930237,0.31167125701904297,0.010578570887446404,0.47348225116729736,0.16914968192577362,0.28676772117614746,0.2525227665901184,0.44876667857170105,-0.20506905019283295,0.14085394144058228,-0.3943388760089874,-0.07132409512996674,-0.07786909490823746,-0.08707816153764725,0.07555795460939407,-0.3606114387512207,0.02797558344900608,0.41627418994903564,0.36608049273490906,0.14034424722194672,0.2675721049308777,0.15009015798568726,0.13909225165843964,0.1929573267698288,-0.08958254009485245,0.029232872650027275,0.43878814578056335,0.1569385826587677,-0.38119661808013916,-0.25195881724357605,0.5256554484367371,0.15526939928531647,0.07092083245515823,-0.46369388699531555,0.2603653371334076,0.3992707431316376,0.2599950134754181,0.08016962558031082,0.26271092891693115,0.12998656928539276,-0.40341445803642273,0.28151735663414,-0.1421949863433838,-0.2327353060245514,-0.06488706916570663,-0.1970812976360321,0.25429248809814453,-0.5137122273445129,0.6957942247390747,0.23122696578502655,0.09513415396213531,0.35733944177627563,0.4504857659339905,0.33017227053642273,-0.04433988034725189,0.343620240688324,0.23362213373184204,-0.07960837334394455,0.24117647111415863,0.32761526107788086,-0.5615021586418152,-0.1656963974237442,-0.20743434131145477,0.5366877913475037,0.17766807973384857,-0.3471212089061737,0.41010892391204834,0.2754918932914734,-0.03830377012491226,0.2526816725730896,0.13445957005023956,0.1659385859966278,-0.3860161304473877,-0.03909209743142128,0.4637258052825928,0.5318488478660583,0.0086912726983428,-0.2982531785964966,0.28863340616226196,-0.05497122183442116,0.43741559982299805,0.108846016228199,-0.2698630392551422,-0.016714463010430336,0.2957867681980133,-0.05009903386235237,0.5515998005867004,0.19945113360881805,0.2840941548347473,0.3303109109401703,0.5413500666618347,-0.06611804664134979,0.5823650360107422,0.4623294770717621,0.09679333865642548,0.158647820353508,0.3743114173412323,-1.1730022430419922,0.10434067994356155,0.06396795809268951,0.3902145028114319,0.5201725363731384,-0.13416238129138947,0.425991028547287,0.6707436442375183,-0.21162386238574982,-0.04897744953632355,-0.2329404056072235,0.17500543594360352,-0.01840815320611,-0.2806565761566162,-0.08093086630105972,0.10850570350885391,0.5498250126838684,0.3415151536464691,0.0827409103512764,-0.2567765414714813,0.3059898018836975,0.2464996874332428,-0.2722253203392029,0.0526643730700016,-0.23167553544044495,0.16472455859184265,0.16901391744613647,-0.05564839020371437,-0.07005523890256882,-0.22586749494075775,0.06390714645385742,0.18067511916160583,0.002353200688958168,0.3709263503551483,0.013689043000340462,0.01696990244090557,0.5980985760688782,0.7027339935302734,0.055420488119125366,-0.3649475872516632,0.18803945183753967,-0.1605577915906906,0.32589536905288696,0.3381468653678894,0.18285158276557922,0.433093398809433,0.024787859991192818,0.09724418073892593,0.24672618508338928,0.10561777651309967,-0.1291125863790512,-0.16308626532554626,-0.6271735429763794,-0.03274277225136757,0.17263565957546234,-0.29918667674064636,0.06734518706798553,0.13816647231578827,0.035400860011577606,0.2981485426425934,0.17871920764446259,0.26847073435783386,0.21911926567554474,-0.5237187147140503,0.13544459640979767,0.18534386157989502,0.07619224488735199,-0.21080075204372406,0.027665315195918083,-0.3246336281299591,-0.02730485424399376,-0.12264810502529144,-0.183162122964859,0.29923513531684875,0.18509754538536072,0.2137630134820938,-0.22321675717830658,0.26081499457359314,0.39775779843330383,0.26268935203552246,0.2622690200805664,-0.07805763930082321,0.3242104947566986,-0.2745899558067322,0.345386266708374,-0.09248515218496323,-0.23124690353870392,0.1399996280670166,0.05800711736083031,0.06284727901220322,0.2869274914264679,0.08329702913761139,0.21287551522254944,0.036945343017578125,0.23503334820270538,-0.13296018540859222,0.23459331691265106,0.16979378461837769,0.09009604156017303,0.06877303123474121,0.046848371624946594,0.45543432235717773,0.4727778434753418,0.3985168933868408,0.06198994070291519,-0.09588871151208878,-0.14947205781936646,0.11884066462516785,-0.3034800887107849,0.18523050844669342,0.26168346405029297,0.3115999698638916,-0.013184997253119946,0.2289145141839981,0.3295970559120178,0.2609172761440277,0.003105342388153076,-0.200483500957489,0.3269789516925812,0.17974920570850372,-0.08896380662918091,-0.13572095334529877,0.03143306076526642,-0.12213797867298126,0.2465669959783554,0.08782275766134262,0.09815806150436401,-0.21043753623962402,0.166712686419487,-0.3879780173301697,-0.14940153062343597,-0.26562535762786865,-0.2522220313549042,-0.047832001000642776,0.1268201619386673,-0.3454723060131073,-0.2988990545272827,-0.1330220103263855,-0.0071196421049535275,-0.10834561288356781,0.22023315727710724,-0.3090485632419586,0.013212923891842365,-0.06649482995271683,0.12608163058757782,-0.19879476726055145,-0.0896986871957779,-0.0928143560886383,0.3641819655895233,-0.06088205799460411,0.2732474207878113,-0.03986305370926857,0.031107254326343536,0.19523891806602478,-0.1271108239889145,0.06984805315732956,0.0030501633882522583,-0.19855855405330658,0.042230162769556046,0.15424340963363647,-0.11064466089010239,-0.12163472175598145,-0.3795187175273895,0.3255651295185089,0.29701468348503113,0.28859108686447144,0.27266135811805725,-0.38119208812713623,0.2623808979988098,0.29305312037467957,0.21273308992385864,0.3910375237464905,0.1680811196565628,-0.06838952004909515,0.021724887192249298,0.2545901834964752,-0.4512518048286438,0.06920301914215088,0.20979470014572144,0.1775955706834793,-0.28926435112953186,0.0925242230296135,-0.048310983926057816,0.22232410311698914,0.33605867624282837,-0.12042882293462753,-0.053898707032203674,0.34085172414779663,0.038503289222717285,0.31993865966796875,-0.2804342806339264,-0.3740106225013733,0.09425859153270721,-0.09243239462375641,0.2891426980495453,-0.06351840496063232,-0.40450021624565125,0.24182967841625214,0.04746032506227493,-0.18756850063800812,0.028614701703190804,-0.023437241092324257,0.24533919990062714,0.13794797658920288,-0.2708744406700134,0.19605787098407745,0.11120762676000595,0.22250798344612122,-0.023489616811275482,0.22859343886375427,0.155736044049263,-0.23525233566761017,0.10302037745714188,0.11353008449077606,-0.26012587547302246,0.22258098423480988,-0.07408870756626129,-0.15763963758945465,0.4326571226119995,-0.23651057481765747,-0.14676782488822937,0.0682775229215622,-0.4321076571941376,0.3559452295303345,0.40114811062812805,-0.017694562673568726,0.2483450323343277,0.10469905287027359,0.29726436734199524,-0.14639201760292053,0.2079787254333496,0.08571869134902954,-0.163394033908844,0.04408956319093704,0.047763392329216,0.15414851903915405,0.2388574331998825,0.2411060929298401,0.035896021872758865,-0.21704934537410736,-0.2719022035598755,-0.14515240490436554,0.07124799489974976,-0.1274188607931137,0.1636343151330948,0.011048424988985062,0.18035615980625153,-0.08892036229372025,-0.17569312453269958,-0.18954508006572723,-0.08532769978046417,0.11310399323701859,0.09623312950134277,0.22727757692337036,-0.23237378895282745,-0.296107679605484,0.1228356808423996,0.10956574231386185,0.1254432499408722,0.2215511053800583,-0.09878971427679062,0.11119075119495392,-0.08561398833990097,0.004724489990621805,-0.29540303349494934,-0.10207914561033249,-0.4283705949783325,-0.07921277731657028,-0.2684583365917206,-0.21598629653453827,0.08657252043485641,-0.35832497477531433,-0.05512180179357529,-0.2946646809577942,0.10392030328512192,0.28870704770088196,0.3357537090778351,0.18158021569252014,0.18688763678073883,-0.03121190331876278,-0.21770882606506348,0.16808104515075684,-0.18821598589420319,-0.06988555192947388,0.03815140575170517,-0.33925729990005493,-0.17935018241405487,0.08135726302862167,-0.246069997549057,0.11465471982955933,-0.2371056079864502,-0.08493311703205109,0.01546348538249731,-0.01972374878823757,-0.2107105702161789,-0.10960570722818375,-0.25321871042251587,-0.033823903650045395,-0.25048965215682983,0.24706661701202393,0.10190430283546448,0.27859777212142944,0.07762796431779861,0.3899230659008026,-0.216786727309227,-0.02725863829255104,-0.2441951185464859,0.1085348129272461,0.1251518428325653,-0.2729312479496002,-0.19789838790893555,0.32313624024391174,0.15547029674053192,-0.1606176495552063,0.2262938916683197,-0.014069849625229836,0.19832861423492432,0.26284483075141907,0.29483047127723694,-0.2158682644367218,-0.28925958275794983,-0.1094047948718071,0.24824276566505432,0.18117135763168335,-0.09016717970371246,-0.14061185717582703,0.32036957144737244,-0.2711831033229828,-0.07691795378923416,-0.24158084392547607,-0.23151636123657227,-0.10110338032245636,-0.32234466075897217,-0.03717475384473801,-0.11127101629972458,0.16764619946479797,0.22786284983158112,-0.3120986521244049,0.13693907856941223,-0.04351513832807541,-0.18983107805252075,-0.028727417811751366,-0.15457819402217865,0.48161619901657104,0.21857242286205292,-0.006759372539818287,0.11385683715343475,-0.19926783442497253,-0.14269721508026123,-0.3257189393043518,-0.3606589138507843,-0.09858325123786926,0.20752617716789246,-0.002550605684518814,0.03762756660580635,0.31704410910606384,0.15344612300395966,-0.22845743596553802,-0.0186139065772295,0.24488021433353424,0.011846094392240047,0.025972003117203712,-0.08179426938295364,0.0520157590508461,-0.3818855583667755,-0.1677761822938919,-0.2224302887916565,0.031076310202479362,-0.27081945538520813,0.16546504199504852,-0.07693686336278915,0.2381371110677719,-0.1693085879087448,0.0847422257065773,0.2753918468952179,-0.07854142040014267,-0.2385585904121399,-0.039021268486976624,-0.005357601214200258,-0.13188734650611877,-0.1867179423570633,-0.3112960457801819,-0.15967561304569244,-0.30520936846733093,0.2666582763195038,0.21023991703987122,-0.04617379605770111,-0.30815285444259644,-0.1516781449317932,-0.3003038167953491,0.13150902092456818,0.3116796314716339,0.2108149230480194]},{"shape":[32],"values":[0.49579769372940063,0.25203949213027954,0.6110711097717285,-0.13172760605812073,0.2805657982826233,0.3254510760307312,-0.24133281409740448,0.4132255017757416,0.2061893194913864,-0.24110279977321625,-0.2711424231529236,0.12538151443004608,0.47947967052459717,-0.27495408058166504,-0.3605947196483612,0.4926152527332306,-0.3252171277999878,-0.34346964955329895,0.3151898682117462,0.40901148319244385,0.31224697828292847,-0.43604621291160583,0.103531613945961,0.10185837745666504,-0.3042403757572174,0.25112494826316833,-0.3062775433063507,0.37889543175697327,0.2338261902332306,0.3164917528629303,0.38677453994750977,0.6034268140792847]},{"shape":[32,32],"values":[0.41255471110343933,0.09688780456781387,0.4359877109527588,0.28953275084495544,0.4385572373867035,0.24928750097751617,0.6026126742362976,0.016952721402049065,0.4240585267543793,0.5437909364700317,0.25587111711502075,-0.3420233726501465,-0.23580944538116455,0.2796359658241272,-0.2099454551935196,0.21088382601737976,0.8426752090454102,0.4566357135772705,1.1718794107437134,0.2157721072435379,0.23490795493125916,0.37768471240997314,0.587515652179718,0.7437237501144409,0.49852675199508667,0.8325624465942383,0.8101831674575806,0.75369793176651,0.33790653944015503,0.9662935137748718,0.33237186074256897,0.2043016105890274,0.7775524258613586,0.44582399725914,0.5295011401176453,0.3735332190990448,0.5751848220825195,0.12177413702011108,0.7512475848197937,0.037142038345336914,0.46534451842308044,0.594940721988678,-0.36211782693862915,-0.5957109928131104,-0.18782180547714233,0.2594431936740875,-0.4903973340988159,-0.2753446102142334,0.8524581789970398,-0.3299384117126465,0.5751564502716064,0.545147716999054,-0.055489782243967056,0.36333590745925903,0.8663566708564758,0.9381481409072876,0.4680517017841339,1.0449297428131104,0.7485604882240295,0.6149505972862244,0.43424296379089355,0.7559360861778259,0.7084304690361023,0.40973931550979614,0.47521790862083435,0.5197092294692993,0.2345578819513321,0.7093886137008667,0.5645189881324768,0.058019496500492096,0.3484037518501282,-0.2739415764808655,-0.11070515960454941,0.1765580028295517,0.16094495356082916,-0.11493739485740662,0.13038821518421173,0.800834059715271,-0.04283517971634865,0.25659921765327454,0.9302967190742493,-0.25174567103385925,0.9361827969551086,0.5773011445999146,0.34136316180229187,-0.06751366704702377,0.5305591821670532,0.47669023275375366,0.34061360359191895,0.6429559588432312,0.5480960011482239,0.49152901768684387,0.8452887535095215,0.2652510106563568,0.6551631689071655,0.5153642892837524,-0.42271292209625244,-0.27822145819664,-0.6544867753982544,-0.0734245777130127,-0.17138443887233734,0.08654379099607468,-0.15588286519050598,-0.037900496274232864,0.046496663242578506,0.11459466814994812,-0.4677561819553375,0.21919886767864227,-0.1592443287372589,-0.22255457937717438,-0.1880405992269516,0.45345041155815125,0.051580995321273804,0.2621438205242157,-0.2096889615058899,-0.22781415283679962,0.1613297164440155,-0.7020881175994873,0.060274310410022736,-0.5439590811729431,-0.6335461139678955,-0.3385731875896454,-0.2178865522146225,-0.31029635667800903,0.07775719463825226,-0.6589628458023071,-0.12138480693101883,-0.3498881757259369,0.43460792303085327,-0.07141334563493729,-0.05356958508491516,0.4734022319316864,0.22462400794029236,0.15364740788936615,0.190190851688385,-0.19979706406593323,0.03219380974769592,0.28041529655456543,-0.12131500989198685,-0.5083075165748596,-0.290132611989975,0.16576020419597626,0.12437000870704651,-0.3254653215408325,0.2062625288963318,-0.22033599019050598,-0.26171761751174927,0.24012212455272675,0.31390780210494995,0.2690557539463043,0.16729487478733063,0.5707358717918396,0.5191236734390259,0.3350106179714203,0.2600509822368622,0.0568031445145607,0.4638693034648895,-0.06048258766531944,0.40337079763412476,0.5590590238571167,0.4977494776248932,0.6656655073165894,0.047002047300338745,0.6967593431472778,0.34225526452064514,-0.6177704930305481,0.18555283546447754,-0.151559978723526,-0.1154482439160347,0.439294695854187,-0.3836745619773865,0.2640101909637451,-0.43307259678840637,0.662139892578125,-0.2575814127922058,0.008020971901714802,0.8211551904678345,-0.0824328064918518,0.6077995300292969,0.424153596162796,0.3243689239025116,-0.031123077496886253,0.4134708642959595,0.2874857485294342,0.2615260183811188,0.27915358543395996,0.4281155467033386,0.6165193915367126,0.3426651656627655,0.31665006279945374,0.39321213960647583,0.48202285170555115,-0.1504976749420166,-0.5574089288711548,-0.24553295969963074,-0.18100394308567047,-0.5259366035461426,-0.06799402832984924,0.09343376010656357,-0.12759239971637726,0.06948073208332062,-0.47970467805862427,0.35445117950439453,-0.7327947020530701,0.19648581743240356,-0.49302735924720764,0.03655879199504852,0.29495057463645935,-0.477588951587677,0.3712029755115509,-0.24467797577381134,-0.44308823347091675,-0.22047118842601776,0.35189464688301086,-0.5181000828742981,0.0009060128359124064,-0.28671014308929443,-0.3668364882469177,0.08316416293382645,-0.31504902243614197,0.006264830008149147,-0.2276822179555893,-0.4772704839706421,-0.017068054527044296,0.6395284533500671,0.6268350481987,0.18022429943084717,0.6064748764038086,0.45463523268699646,-0.061491481959819794,0.7612403035163879,-0.22372065484523773,-0.07469411939382553,-0.02612152509391308,-0.38971030712127686,0.3929304778575897,-0.32017645239830017,0.3630206286907196,-0.22801145911216736,-0.42006543278694153,0.2778080701828003,-0.23762504756450653,0.3731580376625061,0.22550955414772034,-0.07501383125782013,0.06663566827774048,0.47891050577163696,0.31789684295654297,0.6744659543037415,0.42272937297821045,0.3664062023162842,0.08966925740242004,0.5593823790550232,0.4567762613296509,0.6776266694068909,0.6499942541122437,0.4484695494174957,0.41639575362205505,-0.011858764104545116,0.1681462526321411,0.237759068608284,0.017127791419625282,-0.18024146556854248,0.05468738079071045,-0.6457761526107788,-0.11191152036190033,-0.01766802929341793,-0.1422048956155777,0.09649460017681122,0.1797654628753662,-0.2878420650959015,0.3355052173137665,0.2641763985157013,-0.14663560688495636,-0.36337655782699585,0.6440943479537964,0.37851813435554504,-0.29407355189323425,0.095133475959301,0.4307771623134613,-0.18893641233444214,0.3528262972831726,-0.2804260551929474,-0.24306358397006989,0.01903267204761505,-0.1608697772026062,0.5961541533470154,0.20140619575977325,-0.35623520612716675,-0.36804449558258057,-0.42853236198425293,-0.052916668355464935,-0.5043242573738098,0.27467411756515503,0.07693824917078018,-0.08077050000429153,-0.1443895697593689,-0.2668672204017639,0.01861402951180935,-0.020980948582291603,-0.19243843853473663,-0.8024066686630249,0.09828773140907288,-0.050422303378582,-0.652462899684906,0.46892717480659485,-0.7006160616874695,-0.5075975060462952,0.2540193498134613,0.12797053158283234,-0.49175918102264404,-0.5160706639289856,-0.4682793915271759,-0.5501694679260254,-0.733142077922821,-0.4041249752044678,-0.1068943589925766,-0.5967217087745667,-0.33976539969444275,-0.5705850124359131,-0.3421083688735962,-0.407386839389801,-0.38709354400634766,-0.2807815670967102,-0.6656060218811035,-0.08885302394628525,-0.21609963476657867,-0.08010269701480865,0.024930039420723915,-0.0744999423623085,-0.027068642899394035,-0.364912211894989,0.0836951732635498,-0.4844730496406555,0.31565961241722107,0.04617951437830925,-0.7108082175254822,0.5932831168174744,-0.9071065783500671,-0.34229108691215515,0.10560443252325058,0.3815549910068512,-0.9624381065368652,-0.7122187614440918,-0.29443493485450745,-0.672845721244812,-0.3388664424419403,-0.7826788425445557,-0.6996307373046875,-0.47122323513031006,-0.5512034296989441,-0.6252467036247253,0.6046953201293945,0.36092737317085266,-0.1435820609331131,0.4781073033809662,-0.078582763671875,-0.18701393902301788,0.028358200564980507,-0.15843576192855835,-0.4307843744754791,0.47823965549468994,-0.29935601353645325,-0.7443851828575134,0.13889488577842712,0.2958589196205139,0.03429557755589485,-0.17322362959384918,0.6738137602806091,-0.40728190541267395,-0.5547747015953064,0.6015320420265198,-0.05376878380775452,-0.15194322168827057,0.07309448719024658,0.3910384178161621,0.21138636767864227,0.438495397567749,-0.3723164498806,0.2606258690357208,0.41116952896118164,-0.11292345076799393,0.21334978938102722,0.6749760508537292,0.44145792722702026,0.7372465133666992,-0.19150401651859283,0.7662088871002197,0.4562883973121643,-0.099504254758358,0.6775602698326111,-0.25049012899398804,0.09708170592784882,0.2614991366863251,-0.10897517204284668,-0.062268417328596115,-0.06202603131532669,0.4834972620010376,-0.05873611941933632,0.23691515624523163,0.5946980714797974,-0.07777401804924011,0.02919277735054493,0.5244969725608826,-0.2133016288280487,0.36891183257102966,0.5614054799079895,0.47914406657218933,0.5537775754928589,0.46732503175735474,-0.020956462249159813,0.6382039785385132,0.41948002576828003,0.20736823976039886,0.40610337257385254,0.6995363235473633,-0.4404279589653015,-0.5491437911987305,-0.0647934153676033,-0.15795119106769562,-0.197890967130661,-0.10273216664791107,-0.46436524391174316,-0.059333208948373795,0.38730257749557495,-0.46323341131210327,0.001307374332100153,-0.2356380969285965,-0.2609546184539795,-0.5236271023750305,0.15950244665145874,-0.17901504039764404,-0.5088991522789001,0.1516023576259613,-0.5678636431694031,-0.20350749790668488,-0.10476289689540863,0.153082937002182,-0.5665470361709595,-0.12027250230312347,-0.3257475793361664,-0.12258280813694,-0.17812655866146088,-0.6955181956291199,-0.6005973815917969,-0.6591367721557617,-0.4029232859611511,-0.19353315234184265,-0.9889233112335205,-0.9953932166099548,-0.1231411024928093,-0.1494738757610321,-0.39195743203163147,0.29898157715797424,-0.44664230942726135,-0.006511173211038113,0.3445701599121094,-0.7890791296958923,0.4201125204563141,-0.4905707538127899,0.13404029607772827,-1.1914784908294678,0.4486277103424072,-0.07339532673358917,-0.6374862194061279,0.42787426710128784,-0.3877732753753662,-0.5256103277206421,0.16314733028411865,0.24163174629211426,-0.8132159113883972,-0.8121628165245056,-0.8427361249923706,-0.6788962483406067,-0.39312639832496643,-0.4030361771583557,-0.8475738167762756,-0.35770052671432495,-0.5990694165229797,-0.789100706577301,0.5558387041091919,0.20826205611228943,0.1640448272228241,0.4693523049354553,0.5522550344467163,0.2443721741437912,0.34962570667266846,-0.09753675013780594,0.36941200494766235,0.23136916756629944,0.21481376886367798,-0.32505616545677185,0.002047501737251878,0.10841978341341019,0.16113172471523285,-0.17162665724754333,0.39863061904907227,0.14822418987751007,0.40502792596817017,0.3611801862716675,0.2331245243549347,0.3320925831794739,0.6604465246200562,0.5867520570755005,0.3304956555366516,0.22675487399101257,0.307258278131485,0.3962492346763611,0.38456836342811584,0.11743520945310593,0.6189109683036804,0.5958341956138611,-0.5785965323448181,-0.4601026177406311,-0.05621658265590668,0.18561598658561707,-0.5856307148933411,0.087551049888134,0.1694873720407486,0.07544112205505371,-0.3126163184642792,-0.5730330348014832,0.2494344264268875,-0.31356897950172424,0.08469703793525696,-0.4353622794151306,0.33290523290634155,0.37536969780921936,-0.6427310109138489,0.4255065321922302,-0.7534723281860352,-0.6571189761161804,-0.11681205034255981,-0.0478321872651577,-0.645328938961029,-0.5886139273643494,-0.6181698441505432,-0.7476162910461426,-0.6483721137046814,-0.34197404980659485,-0.5352096557617188,-0.17805863916873932,-0.8425546884536743,-0.5462735891342163,-0.470089852809906,-0.4651906490325928,-0.43474921584129333,-0.1614929586648941,-0.5700446963310242,0.0544353686273098,0.09113473445177078,-0.06865598261356354,0.30462026596069336,-0.2697294354438782,0.4975285232067108,-0.3358776867389679,-0.24992918968200684,-0.5104604363441467,0.34883052110671997,0.40391823649406433,-0.7343411445617676,0.3532910943031311,-0.7965838313102722,-0.10324731469154358,-0.19987444579601288,0.17112763226032257,-0.7647318243980408,-0.24438390135765076,-0.6014044880867004,-0.32950448989868164,-0.07379225641489029,-0.5652240514755249,-0.523036777973175,-0.48397716879844666,-0.4464842677116394,-0.4547950029373169,0.5431524515151978,0.5338159799575806,0.41789230704307556,0.558310329914093,0.5474991202354431,0.16048835217952728,0.629778265953064,-0.022883137688040733,-0.19418497383594513,0.4682818055152893,-0.4351429343223572,0.20317058265209198,-0.052488312125205994,0.8716050982475281,-0.3193984031677246,0.05454523116350174,0.7686713337898254,-0.5657073259353638,1.0102533102035522,0.39438170194625854,0.31657201051712036,-0.06304799765348434,0.9784404635429382,0.9444757699966431,0.6145594120025635,0.7878323197364807,0.33245426416397095,0.7401799559593201,0.8860024809837341,0.26699620485305786,0.5740168690681458,0.6184675097465515,0.8165108561515808,0.512858510017395,-0.0069003296084702015,0.6151058673858643,0.5388574004173279,-0.11229261010885239,0.08742856979370117,-0.18684375286102295,-0.018073545768857002,0.5153778791427612,-0.38122960925102234,0.1839694082736969,-0.13015826046466827,0.5245326161384583,-0.32193759083747864,0.30861619114875793,0.5349528193473816,0.1558995097875595,0.5206553936004639,0.6433815360069275,0.07452958077192307,-0.15763403475284576,0.5709443092346191,0.6952958703041077,0.46176227927207947,0.3313458561897278,0.21626321971416473,0.3164123296737671,0.2882300317287445,0.4735282063484192,0.6287306547164917,0.48373329639434814,0.12240739911794662,0.13453109562397003,0.4358738958835602,0.5945281386375427,0.3075123727321625,-0.049801770597696304,0.843584418296814,0.04245242103934288,-0.1688029021024704,0.04062263295054436,-0.08550634980201721,0.002855992643162608,-0.19229191541671753,0.6244199275970459,0.1891762912273407,-0.22884602844715118,0.2594554126262665,-0.07684505730867386,0.3068476915359497,0.7863569855690002,0.15593388676643372,0.23157446086406708,0.1585230678319931,0.8122302293777466,0.5391908884048462,0.49937236309051514,0.47669368982315063,-0.02839309722185135,0.22564716637134552,0.18008050322532654,0.33717072010040283,0.4866764545440674,-0.7542529702186584,-0.5776140093803406,-0.3052041232585907,-0.06513901799917221,-0.8010536432266235,0.3430558741092682,0.0965932086110115,-0.013725410215556622,0.34345942735671997,-0.37646669149398804,0.2990441620349884,-0.5797531604766846,0.026737378910183907,-0.6190587878227234,0.32886555790901184,-0.047749631106853485,-0.554250955581665,0.5343078374862671,-0.6737244725227356,-0.5062922239303589,0.16285207867622375,0.39144548773765564,-0.7737599015235901,-0.8609000444412231,-0.5360537767410278,-0.5116528868675232,-0.6111190915107727,-0.7625911235809326,-0.7440171837806702,-0.5359089970588684,-0.5851714611053467,-0.7475706934928894,0.5491134524345398,0.647551953792572,-0.20856530964374542,0.2107260525226593,0.04381973668932915,-0.20179517567157745,0.385906845331192,-0.03823733702301979,0.22563855350017548,0.4876544177532196,0.08768831938505173,-0.14115002751350403,0.10185614973306656,0.33238866925239563,0.02290516160428524,-0.14474977552890778,0.5906537175178528,-0.09530086815357208,0.04448961839079857,0.28929466009140015,0.04961897432804108,0.3974875807762146,0.1591622233390808,0.47587549686431885,0.5358298420906067,0.6108072996139526,0.6325066089630127,0.2503056824207306,0.2583868205547333,0.529434323310852,0.46611514687538147,0.6035774946212769,-0.7109760642051697,-0.379862517118454,-0.40768033266067505,-0.6983892321586609,-0.7066397070884705,0.1758793443441391,-0.6214150786399841,0.06849977374076843,-0.4619622230529785,-0.15116001665592194,0.39352771639823914,0.7659890055656433,-0.34292545914649963,-0.36095479130744934,0.11943518370389938,0.4938465356826782,-0.6875833868980408,-0.017329135909676552,-0.8805095553398132,-0.6192247271537781,-0.21273237466812134,-0.7190818786621094,-1.014290452003479,-0.9435300230979919,-0.708720862865448,-0.5086737871170044,-0.4635184109210968,-0.8985082507133484,-0.47764402627944946,-0.6366665363311768,-0.8838711977005005,-0.5259211659431458,-0.13416744768619537,-0.5967443585395813,-0.24014945328235626,0.10523276031017303,-0.3571693003177643,0.02255244180560112,0.02155504748225212,0.12017405778169632,0.04222235828638077,-0.12270332127809525,0.3660129904747009,-0.011717461980879307,-0.12802964448928833,-0.735999584197998,0.3903348743915558,0.2276574820280075,-0.4930081367492676,0.043098047375679016,-0.7869060635566711,-0.14774687588214874,0.047539275139570236,-0.19826030731201172,-0.5853084921836853,-0.48313358426094055,-0.5300032496452332,-0.43625038862228394,-0.641349732875824,-0.38913488388061523,-0.2319263517856598,-0.6682227849960327,-0.28741633892059326,-0.45372632145881653,0.15704785287380219,0.1679159551858902,0.2548643946647644,0.34646761417388916,-0.12698401510715485,0.26654544472694397,0.7150439023971558,0.1738538295030594,-0.18244154751300812,0.14871753752231598,-0.14529569447040558,-0.019700689241290092,-0.15739288926124573,0.39455467462539673,-0.11250513792037964,-0.21639256179332733,0.25637006759643555,-0.08554413169622421,-0.20183561742305756,0.2128145694732666,0.28392893075942993,-0.013857584446668625,0.1305372267961502,0.2744186818599701,0.6111129522323608,0.3169345259666443,0.03063195012509823,0.21784454584121704,0.3491499423980713,0.02257906273007393,0.4315890967845917,0.4644318222999573,-0.45234596729278564,-0.26728472113609314,-0.11152510344982147,0.1542002111673355,0.0024428796023130417,-0.0412110909819603,-0.03419041261076927,0.13950954377651215,0.2089167833328247,-0.04623248428106308,0.3143076002597809,-0.46478477120399475,-0.23437082767486572,-0.6255528926849365,0.03644924983382225,0.19077886641025543,-0.3325919806957245,0.4863351881504059,-0.421735018491745,-0.49210798740386963,-0.31808096170425415,0.22126543521881104,-0.0807783380150795,-0.1890087127685547,-0.13027766346931458,0.08408753573894501,0.069633848965168,0.17979063093662262,-0.15575386583805084,0.3156287372112274,-0.46736735105514526,-0.2601431608200073,0.11893240362405777,0.5764122605323792,0.23353704810142517,0.5752770304679871,0.2107875943183899,-0.04864858090877533,0.5893904566764832,-0.11234994232654572,-0.053231075406074524,0.30154088139533997,-0.11620226502418518,-0.5163636207580566,0.09190643578767776,0.5164125561714172,-0.1897970587015152,-0.3049614429473877,0.3191111385822296,0.1648656278848648,0.018795352429151535,0.5898047685623169,-0.006401968654245138,-0.184799462556839,0.4378293454647064,0.3231440484523773,0.39077600836753845,0.43023496866226196,0.673803985118866,0.7342097163200378,0.328060120344162,0.35990428924560547,0.2607443332672119,0.7809931635856628,0.5925396084785461,0.2688805162906647,0.2498287409543991,0.291041761636734,-0.022859001532197,0.2762950658798218,0.4884655475616455,-0.20172083377838135,0.05072789639234543,0.4009115993976593,-0.05756745859980583,-0.195109024643898,-0.16446751356124878,0.1971663236618042,0.13947157561779022,0.18742623925209045,0.38085609674453735,-0.265899658203125,-0.01164151169359684,0.5754492878913879,0.07658466696739197,-0.21938586235046387,0.4631831645965576,0.33382174372673035,0.23144184052944183,0.12876620888710022,-0.04140414670109749,0.007816877216100693,0.3932323455810547,0.16860118508338928,0.30062371492385864,0.2756657004356384,0.34122318029403687,0.3904084861278534,0.2821502089500427,0.026166671887040138,-0.02620592527091503,0.002140149474143982,0.3420461416244507,-0.21578191220760345,0.2920946776866913,0.292773962020874,0.3018200695514679,-0.15417565405368805,-0.028246475383639336,0.48558828234672546,0.0018803321290761232,-0.13145792484283447,0.25092509388923645,-0.123326376080513,0.074797622859478,0.023398924618959427,0.12469633668661118,0.05198999494314194,-0.08623593300580978,0.42957785725593567,0.07657929509878159,0.466831773519516,0.03752541169524193,0.1719001680612564,0.46284016966819763,0.46871086955070496,0.6182165145874023,0.47641366720199585,0.7199119329452515,0.714203953742981,0.18457433581352234,0.672134280204773,0.57449871301651,0.16388362646102905,0.5142922401428223,-0.11723198741674423,0.07618922740221024,0.49045130610466003,-0.06898487359285355,-0.19982777535915375,0.2915283143520355,0.3618403673171997,0.3295975923538208,0.21822218596935272,0.9787381291389465,-0.1481722742319107,0.7115756273269653,0.7963998317718506,0.42316195368766785,0.018068036064505577,0.8874256014823914,0.5997074842453003,0.9494799971580505,0.643884003162384,0.4137677848339081,0.7987701892852783,0.5792744159698486,0.4166823923587799,0.7200271487236023,0.7426388263702393,0.5481746196746826,0.5572100281715393,0.21598632633686066,0.4338870346546173,0.5118791460990906,-0.462721049785614,0.7738056182861328,-0.1309472918510437,-0.3498648405075073,0.5856066942214966,-0.2518303096294403,0.37252742052078247,-0.010111574083566666,0.3880619704723358,-0.07201194018125534,0.0708746612071991,0.3251309394836426,-0.380372017621994,0.3108847737312317,0.22515209019184113,0.28727346658706665,-0.08487866818904877,0.6585366129875183,0.5522023439407349,0.5238842368125916,0.22764091193675995,0.14238248765468597,0.3843993842601776,0.4144432246685028,0.10549962520599365,0.7521106600761414,0.8610104918479919]},{"shape":[32],"values":[0.44920989871025085,0.3856257498264313,0.07265347987413406,0.4182440936565399,0.402675598859787,-0.22696971893310547,0.27041882276535034,-0.025623708963394165,-0.3020647168159485,0.21437951922416687,0.021134834736585617,-0.08284782618284225,-0.04480142146348953,0.4586302638053894,-0.043286003172397614,0.03690462186932564,0.4723508059978485,-0.06251192837953568,0.44246014952659607,0.39178329706192017,0.06436708569526672,-0.34498193860054016,0.45111197233200073,0.41957777738571167,0.2333405762910843,0.45704472064971924,0.17160089313983917,0.2886449098587036,0.41558021306991577,0.20828036963939667,0.4658645987510681,0.2904955744743347]},{"shape":[32,9],"values":[0.5865756869316101,0.3906785547733307,0.4601816236972809,0.37892717123031616,0.6518569588661194,0.2717684209346771,0.6597530841827393,0.5150743722915649,0.44124892354011536,0.37560153007507324,0.4263460338115692,0.3975841999053955,0.14739473164081573,0.5680545568466187,0.8054751753807068,0.7968063950538635,0.7016083002090454,0.4350816607475281,0.5592257380485535,0.7222490906715393,0.35627228021621704,0.20436452329158783,0.6063738465309143,0.10123901814222336,0.04167701676487923,0.3556082546710968,0.3242146074771881,0.32637760043144226,0.2362373173236847,0.8447052836418152,0.7270919680595398,0.15822678804397583,0.5280836820602417,0.9029227495193481,0.42578554153442383,0.5166221857070923,0.634855329990387,0.2414771467447281,0.4791635572910309,0.6407762765884399,0.7716360688209534,0.12149278074502945,0.6410340070724487,0.43857336044311523,0.46775710582733154,-0.23917719721794128,0.009533493779599667,-0.036521557718515396,-0.3057129979133606,0.15003225207328796,0.4098881781101227,0.0935220718383789,-0.48214074969291687,-0.18680037558078766,0.041724927723407745,0.32485082745552063,0.25220197439193726,0.2069541960954666,0.5366529822349548,0.599812924861908,-0.013928581029176712,0.4893273711204529,0.7364968061447144,-0.2596184015274048,-0.01987144723534584,0.14215825498104095,-0.0657024085521698,-0.2681269645690918,-0.10410407930612564,0.11476881802082062,-0.07355088740587234,0.10456845909357071,-0.4831427037715912,-0.41253921389579773,0.270612508058548,-0.0233700480312109,-0.38314923644065857,-0.2685161232948303,-0.5379443764686584,-0.351489394903183,-0.2120838612318039,0.7170010209083557,0.46658438444137573,0.5135880708694458,0.44079941511154175,0.4430314898490906,0.06699825078248978,0.3716316521167755,-0.00533516239374876,0.5242319107055664,0.24007558822631836,0.1451551467180252,-0.32712918519973755,0.23228390514850616,-0.3813788592815399,-0.2533526122570038,0.09908947348594666,-0.42352452874183655,-0.49394387006759644,-0.5572221875190735,-0.33847853541374207,-0.07754331082105637,-0.21331267058849335,-0.6844913363456726,0.08225283771753311,-1.108678936958313,-0.49696221947669983,0.17335191369056702,0.06413307785987854,-0.132953479886055,-0.018877673894166946,-0.3481365442276001,-0.07766850292682648,-0.2999187409877777,0.0061137136071920395,0.42137449979782104,-0.20231378078460693,0.8468706607818604,0.7099161148071289,0.440021812915802,0.5589057207107544,0.6519168019294739,0.24913044273853302,0.2465791255235672,0.6539627313613892,0.15642713010311127,0.3896007239818573,-0.16007496416568756,-0.48472851514816284,-0.08441682904958725,-0.057693127542734146,-0.4729534387588501,0.04623647779226303,-0.08852973580360413,-0.4981544613838196,0.09828568994998932,-0.2328469604253769,-0.42813625931739807,0.194179967045784,-0.12144533544778824,-0.32284682989120483,0.2784525156021118,-0.3395276367664337,-0.24871644377708435,0.699878454208374,0.8178438544273376,0.6125832200050354,0.8838267922401428,0.437127947807312,0.7203320860862732,0.867987871170044,0.47201302647590637,0.5967711210250854,0.29220691323280334,0.011585450731217861,-0.5875343084335327,-0.468319296836853,-0.1879911869764328,-0.5081404447555542,-0.1099320650100708,-0.11765782535076141,-0.846057653427124,1.0636452436447144,0.805736243724823,0.2571945786476135,1.1961983442306519,0.6542372703552246,0.3571087718009949,1.0438625812530518,0.8493458032608032,0.39086055755615234,0.7239763140678406,0.741447925567627,0.7154192328453064,0.47278502583503723,0.24569213390350342,0.6567739844322205,0.45951250195503235,0.4652329087257385,0.3983575999736786,0.2400386482477188,0.4606415629386902,0.21966706216335297,0.4325742721557617,0.13439291715621948,0.35041651129722595,0.14043816924095154,-0.005703065078705549,-0.02024521864950657,-0.5601796507835388,-0.4411085844039917,0.17881949245929718,-0.7156738638877869,-0.05812644585967064,-0.19875746965408325,-0.3417617380619049,-0.20570318400859833,0.19978125393390656,0.6890047788619995,0.4087405502796173,0.4477307200431824,0.49378207325935364,0.5102778077125549,0.46887528896331787,0.9258002042770386,0.7905154228210449,0.3842284679412842,0.28861910104751587,0.8269821405410767,0.6392900943756104,0.5262304544448853,0.9536743760108948,0.7640328407287598,0.5518841743469238,0.7698380351066589,0.9301016330718994,0.7005677223205566,0.7555145621299744,0.3796349763870239,0.8683590292930603,0.3878805637359619,0.8067926168441772,0.10572558641433716,0.2864193320274353,0.8893861770629883,0.35086825489997864,0.26612037420272827,0.6924645900726318,0.5082350969314575,0.703113853931427,0.6021296977996826,0.8221121430397034,0.9456959962844849,0.48594507575035095,0.06676101684570312,0.5849971771240234,0.4880762994289398,0.5501801371574402,0.6244417428970337,0.6515495777130127,0.5979145169258118,0.3789256513118744,0.6457421183586121,0.47113940119743347,0.564531147480011,0.34281525015830994,0.494937926530838,0.45896151661872864,0.8694307208061218,0.47827139496803284,0.6608856320381165,0.907085120677948,0.14691674709320068,0.734552264213562,0.46912503242492676,0.4949714243412018,0.4543842375278473,0.351548969745636,0.7680956721305847,0.6835241317749023,0.6170271039009094,0.49743977189064026,0.4568466246128082,0.6591753959655762,0.42359668016433716,0.7047764658927917,0.5337957143783569,0.3621183931827545,0.9047484993934631,0.7916195392608643,0.7598869800567627,0.3632686734199524,0.6744221448898315,0.7538861632347107,0.502609133720398,0.857803463935852,0.5959976315498352,0.7220348119735718,0.5052308440208435,0.6004376411437988,0.4220697581768036,0.7208782434463501,0.18952281773090363,0.6338531374931335,0.4050147235393524,0.269551545381546,0.46035540103912354,0.7769131660461426]},{"shape":[9],"values":[0.5411778688430786,0.34656673669815063,0.09344876557588577,0.2238490879535675,0.1514080911874771,-0.019966263324022293,0.33152565360069275,0.41858041286468506,0.18941712379455566]}]} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/index.html b/packages/demo-car-circuit/src/public/reports/racing-q-v3/index.html new file mode 100644 index 0000000..2929f74 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/index.html @@ -0,0 +1,9 @@ +DQN / Double DQN — Circuit Racing +
← Circuit Racing

EXPÉRIENCE REPRODUCTIBLE · RACING Q-LEARNING V3

DQN et Double DQN,
à budget égal.

Cinq graines par méthode · 20 courses figées par pilote · 20 000 transitions d’entraînement · tensorflow, TensorFlow.js 4.22.0

+

DQN

42/100

courses réussies · 61/100 terminées

Réussite par graine : moyenne 42.0 %, écart-type 38.0 points ; 0.0–85.0 %.

Double DQN

33/100

courses réussies · 77/100 terminées

Réussite par graine : moyenne 33.0 %, écart-type 33.0 points ; 0.0–80.0 %.

+

Ces résultats décrivent ce circuit, ce curriculum et ce budget. Ils ne démontrent pas une supériorité générale de l’un des algorithmes. Les graines d’évaluation ne varient que légèrement le cap initial ; ces courses ne constituent pas 200 scénarios indépendants. Tous les checkpoints finaux et tous les échecs sont conservés.

+

Chaque graine, sans sélection

MéthodeGraineRéussiesTerminéesEntraînementÉvaluationCheckpoint
dqn1117/2020/2020.3 s18.3 sPoids
dqn290/206/2019.4 s27.7 sPoids
dqn470/202/2018.9 s33.0 sPoids
dqn738/2014/2023.4 s24.2 sPoids
dqn10117/2019/2018.5 s19.9 sPoids
double-dqn1113/2020/2019.4 s14.8 sPoids
double-dqn2916/2020/2019.6 s17.4 sPoids
double-dqn473/2011/2019.6 s23.2 sPoids
double-dqn731/2010/2019.7 s26.1 sPoids
double-dqn1010/2016/2018.9 s24.6 sPoids
+

Ce qui est identique

  • Réseau 20 → 32 → 32 → 9, ReLU et sorties Q linéaires ; Adam 0,001 ; replay 10 000 ; batch 32 ; gamma 0,99.
  • 20 000 décisions, chacune maintenue six ticks physiques de 1/60 s. Mise à jour toutes les quatre transitions et copie cible toutes les 100 mises à jour. Dernier checkpoint programmé ; aucune sélection sur l’évaluation.
  • Exploration, replay et initialisation pilotés par la graine. Pas de mélange aléatoire supplémentaire dans fit.
  • Entraînement sur Alpine Park : 10 000 décisions solo, puis 10 000 avec trois références figées ; départs variés sur la piste, vitesse initiale 4–12 m/s, épisodes limités à 600 décisions. Les sorties restent récupérables avec les mêmes remises en piste et pénalités que la course. Récompense de progression, checkpoints et pénalités. Aucun label ni remplacement par un pilote à règles.
  • Conduite et course V2 : barrières continues, collisions voiture/voiture et voiture/rail, sortie ralentie (+2 s), remise après immobilisation dans un rayon de 1 m pendant 5 s (+5 s). Les mêmes contraintes valent dans tous les modes.
  • Évaluation complète : cinq caps initiaux par circuit et par condition solo/trafic. Alpine Park et Harbour Test, trois tours, plafond 300 s. Trafic constitué de références à règles figées identiques pour les deux méthodes.
  • Réussite : trois tours, aucune remise en piste, pénalité ≤ 10 s. Une course terminée peut échouer à ce critère.
+

Temps et limites

Temps réels mesurés sur darwin/arm64, Node v22.14.0, Apple M4, 16 Gio. La machine exécutait aussi la démo navigateur ; les temps ne proviennent pas d’une machine isolée. Le premier passage inclut davantage de démarrage à froid ; les temps ne servent pas de classement de vitesse. Les départs variés du curriculum d’entraînement diffèrent des départs de course arrêtés : les échecs de transfert restent mesurés.

Les reprises navigateur rechargent les poids et recréent optimiseur, replay et exploration. Ce benchmark utilise uniquement des entraînements neufs. Les poids de cette page sont des résultats expérimentaux ; leur présence ne garantit pas un adversaire compétent.

+

Télécharger les 200 résultats bruts, paramètres, versions et empreintes des sources

Reproduction : pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/compare-racing-q.mts, puis node scripts/report-racing-q.mjs. Le script refuse d’écraser un protocole existant ; déplacer le dossier de résultats avant une nouvelle expérience.

Calcul Double DQN : sélection online, évaluation cible, selon van Hasselt, Guez et Silver.

\ No newline at end of file diff --git a/packages/demo-car-circuit/src/public/reports/racing-q-v3/results.json b/packages/demo-car-circuit/src/public/reports/racing-q-v3/results.json new file mode 100644 index 0000000..8ab8263 --- /dev/null +++ b/packages/demo-car-circuit/src/public/reports/racing-q-v3/results.json @@ -0,0 +1,2588 @@ +{ + "manifest": { + "protocol": { + "id": "racing-q-learning-v3", + "seeds": [ + 11, + 29, + 47, + 73, + 101 + ], + "evaluationSeeds": [ + 211, + 307, + 419, + 509, + 601 + ], + "transitions": 20000, + "actionRepeat": 6, + "trafficAfterTransitions": 10000, + "episodeTransitions": 600, + "termination": "finish only; off-road recovery follows RaceWorld", + "truncation": "600 decisions, race time limit, or solo-to-traffic curriculum boundary", + "trainEvery": 4, + "hiddenLayers": [ + 32, + 32 + ], + "learningRate": 0.001, + "batchSize": 32, + "memorySize": 10000, + "gamma": 0.99, + "epsilonDecay": 0.9995, + "minEpsilon": 0.05, + "targetUpdateFrequency": 100, + "evaluation": "5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy", + "selection": "last scheduled checkpoint; all failures retained" + }, + "createdAt": "2026-09-06T17:54:21.297Z", + "node": "v22.14.0", + "tfjs": "4.22.0", + "backend": "tensorflow", + "platform": "darwin", + "arch": "arm64", + "head": "5847b7651daebef749d438c7e45feb32c3cbbd28", + "sourceHashes": { + "packages/demo-car-circuit/src/racing/q-training.ts": "d318d252bab4e4e3a9c98c58c60fa7c0e97f6d94d90c10d577624fb6e34396cc", + "packages/demo-car-circuit/src/racing/q-protocol.ts": "332e8c1c22cba8a4cdbbf8708835ca364ed9d654e3f68698ed4d9b0bb823d0e1", + "packages/demo-car-circuit/src/racing/learned-driver.ts": "67dd9890d773d8f1935f6b02da8585da9e09bbb6190af0239e37c71bc548e361", + "packages/demo-car-circuit/src/racing/training.ts": "04e2eb652afd50eb316a812d12f1eac5b9001b9811861f420da54c24cc826ccd", + "packages/demo-car-circuit/src/racing/driving.ts": "7a0c694794810a651525746d613549859a8dc5ba6c81e94e61a5201f1e589979", + "packages/demo-car-circuit/src/racing/race.ts": "e83a8e10fc984f6e9ee22c74e0e56af97e9a508916a57ba97956371f2045ad68", + "packages/demo-car-circuit/src/racing/observations.ts": "284640c1e5c00d854013ac724910b4a565596320477f0346dbc7c43f3bb9f9e4", + "packages/demo-car-circuit/src/racing/reference.ts": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "packages/backend-tfjs/src/agents/dqn.ts": "acc73079c7d5c95e59628311517e0a9e3b1e668200e2fd6c84cb1178e2afb648", + "packages/backend-tfjs/src/model/BuildMLP.ts": "f359df8f1ec1544d8c0b5d5b9e1b53f63ef38f8ddd190ddf7997fe5e9375e28e", + "packages/backend-tfjs/src/memory/ReplayBuffer.ts": "09e9b9b839cb3b4c98eba82ec10a735510bde195daa90efdc3aa17f33af43f80" + } + }, + "additionalProvenance": { + "machine": { + "cpu": "Apple M4", + "memoryBytes": 17179869184, + "observedAfterRun": true + }, + "implementationCommit": "020ba09b92b06cf1cebae344d5774ea833970064", + "allRecordedSourcesVerifiedAtCommit": true, + "reference": { + "path": "packages/demo-car-circuit/src/racing/reference.ts", + "sha256": "152745f44908c0953568de46df75a09f78f5c57bcb5f99f31708e01a01d23b24", + "verifiedIdenticalToRecordedHead": "5847b7651daebef749d438c7e45feb32c3cbbd28", + "capturedAfterRun": true + } + }, + "reports": [ + { + "algorithm": "dqn", + "seed": 11, + "trainingSeconds": 20.268202582999997, + "evaluationSeconds": 18.286260125000005, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.31666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.5, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.15, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.266666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.166666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 111.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3657 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 149.65, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5805 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 151.7, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5841 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 258.3666666666667, + "penaltySeconds": 15, + "rescues": 3, + "contacts": 9936 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 273.8, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 11121 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 52.81666666666666, + "penaltySeconds": 9, + "rescues": 1, + "contacts": 44 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.85, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 52.03333333333333, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 38.88333333333333, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 7 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.1, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 7 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 168.8, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 6288 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 120.43333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 3359 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 188.98333333333332, + "penaltySeconds": 7, + "rescues": 1, + "contacts": 6086 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 163.15, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5083 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 145.26666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 4983 + } + ] + }, + { + "algorithm": "dqn", + "seed": 29, + "trainingSeconds": 19.354727291999996, + "evaluationSeconds": 27.695169916999998, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 196, + "rescues": 0, + "contacts": 74 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 192, + "rescues": 0, + "contacts": 66 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 190, + "rescues": 0, + "contacts": 76 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 196, + "rescues": 0, + "contacts": 45 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 190, + "rescues": 0, + "contacts": 56 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 232.18333333333334, + "penaltySeconds": 46, + "rescues": 0, + "contacts": 3915 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 86, + "rescues": 0, + "contacts": 4751 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 72, + "rescues": 0, + "contacts": 4066 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 42, + "rescues": 0, + "contacts": 9715 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 382.23333333333335, + "penaltySeconds": 86, + "rescues": 0, + "contacts": 3823 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 254, + "rescues": 0, + "contacts": 69 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 258, + "rescues": 0, + "contacts": 35 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 260, + "rescues": 0, + "contacts": 48 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 238, + "rescues": 0, + "contacts": 61 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 256, + "rescues": 0, + "contacts": 56 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 336.0833333333333, + "penaltySeconds": 80, + "rescues": 0, + "contacts": 2507 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 106, + "rescues": 0, + "contacts": 5136 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 283.3666666666667, + "penaltySeconds": 78, + "rescues": 0, + "contacts": 2332 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 339.1666666666667, + "penaltySeconds": 70, + "rescues": 0, + "contacts": 4397 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 204.15, + "penaltySeconds": 42, + "rescues": 0, + "contacts": 2390 + } + ] + }, + { + "algorithm": "dqn", + "seed": 47, + "trainingSeconds": 18.929095499999995, + "evaluationSeconds": 32.961104208000016, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 521.65, + "penaltySeconds": 254, + "rescues": 2, + "contacts": 273 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 391.4666666666667, + "penaltySeconds": 176, + "rescues": 2, + "contacts": 367 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 272, + "rescues": 2, + "contacts": 339 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 268, + "rescues": 2, + "contacts": 356 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 270, + "rescues": 2, + "contacts": 590 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 157, + "rescues": 1, + "contacts": 1481 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 159, + "rescues": 1, + "contacts": 1418 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 150, + "rescues": 2, + "contacts": 2311 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 157, + "rescues": 1, + "contacts": 1529 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 155, + "rescues": 1, + "contacts": 1542 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 230, + "rescues": 4, + "contacts": 826 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 218, + "rescues": 4, + "contacts": 1181 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 219, + "rescues": 3, + "contacts": 880 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 218, + "rescues": 4, + "contacts": 1470 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 218, + "rescues": 4, + "contacts": 1372 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 131, + "rescues": 7, + "contacts": 4058 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 189, + "rescues": 27, + "contacts": 3008 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 140, + "rescues": 4, + "contacts": 3014 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 182, + "rescues": 28, + "contacts": 4341 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 140, + "rescues": 10, + "contacts": 5176 + } + ] + }, + { + "algorithm": "dqn", + "seed": 73, + "trainingSeconds": 23.377249374999984, + "evaluationSeconds": 24.209969583, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 66.53333333333333, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 3 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 172.76666666666665, + "penaltySeconds": 44, + "rescues": 0, + "contacts": 25 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.06666666666666, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 125.18333333333334, + "penaltySeconds": 36, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 93.83333333333333, + "penaltySeconds": 24, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 118.14999999999999, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 4783 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 161.91666666666666, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 6459 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 206.11666666666667, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 7582 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 164.43333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 6279 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 38, + "rescues": 0, + "contacts": 7458 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 88, + "rescues": 0, + "contacts": 30 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 78, + "rescues": 0, + "contacts": 28 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 90, + "rescues": 0, + "contacts": 63 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 68, + "rescues": 0, + "contacts": 21 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 94, + "rescues": 0, + "contacts": 12 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 217.04999999999998, + "penaltySeconds": 11, + "rescues": 1, + "contacts": 7758 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 173.96666666666667, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 4394 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 166.26666666666665, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 6204 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 145.5, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 4763 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 147.98333333333332, + "penaltySeconds": 11, + "rescues": 1, + "contacts": 4480 + } + ] + }, + { + "algorithm": "dqn", + "seed": 101, + "trainingSeconds": 18.509864499999996, + "evaluationSeconds": 19.90444, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.96666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.93333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.833333333333336, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.81666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 168.45, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6762 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 159.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6390 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 11906 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 162.03333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6489 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 169.95, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7258 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.55, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 39.483333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 41.53333333333333, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 41.65, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 37.53333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 190, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 4645 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 291.8833333333333, + "penaltySeconds": 6, + "rescues": 0, + "contacts": 10158 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 217.98333333333332, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 6190 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 233.68333333333334, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 7396 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 201.45, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 6433 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 11, + "trainingSeconds": 19.357375624999985, + "evaluationSeconds": 14.820086458000006, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.8, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 32.05, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 43.9, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.9, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.966666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 149.1, + "penaltySeconds": 5, + "rescues": 1, + "contacts": 5482 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 111.68333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 3990 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 123.76666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5240 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 187.56666666666666, + "penaltySeconds": 20, + "rescues": 4, + "contacts": 5943 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 123.56666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 5219 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.55, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.416666666666664, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.38333333333333, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 59.35, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 36.766666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 201.56666666666666, + "penaltySeconds": 20, + "rescues": 4, + "contacts": 5973 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 173.05, + "penaltySeconds": 30, + "rescues": 6, + "contacts": 2967 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 134.05, + "penaltySeconds": 5, + "rescues": 1, + "contacts": 3057 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 167.96666666666667, + "penaltySeconds": 10, + "rescues": 2, + "contacts": 3573 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 152.4, + "penaltySeconds": 15, + "rescues": 3, + "contacts": 3677 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 29, + "trainingSeconds": 19.588850874999974, + "evaluationSeconds": 17.360047083000012, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.816666666666666, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 31.7, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 33.68333333333334, + "penaltySeconds": 2, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 45.666666666666664, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 45.9, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 177.93333333333334, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 7772 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 185.51666666666665, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8119 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 189.8, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 8534 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 170.13333333333333, + "penaltySeconds": 5, + "rescues": 1, + "contacts": 6806 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 172.86666666666667, + "penaltySeconds": 0, + "rescues": 0, + "contacts": 6973 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 138.58333333333331, + "penaltySeconds": 12, + "rescues": 0, + "contacts": 2 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 62.85, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 97.06666666666666, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 66.38333333333333, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 1 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 55.25, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 0 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 112.36666666666666, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 3169 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 132.81666666666666, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 4401 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 121.71666666666667, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 3736 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 138.46666666666667, + "penaltySeconds": 4, + "rescues": 0, + "contacts": 4491 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 230.53333333333333, + "penaltySeconds": 14, + "rescues": 2, + "contacts": 7986 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 47, + "trainingSeconds": 19.644881458999997, + "evaluationSeconds": 23.20549349999998, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 98.43333333333334, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 58 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 63.1, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 13 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 91.85, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 45 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 75.1, + "penaltySeconds": 10, + "rescues": 0, + "contacts": 55 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 111.25, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 55 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 48, + "rescues": 0, + "contacts": 8505 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 52, + "rescues": 0, + "contacts": 5802 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 22, + "rescues": 0, + "contacts": 11753 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 48, + "rescues": 0, + "contacts": 7869 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 50, + "rescues": 0, + "contacts": 6440 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 62.583333333333336, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 15 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 66.43333333333334, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 89 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 74.13333333333333, + "penaltySeconds": 14, + "rescues": 0, + "contacts": 21 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 79.21666666666667, + "penaltySeconds": 18, + "rescues": 0, + "contacts": 45 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 56.96666666666667, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 41 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 118, + "rescues": 0, + "contacts": 5069 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 140, + "rescues": 0, + "contacts": 2388 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 100, + "rescues": 0, + "contacts": 5871 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 316.29999999999995, + "penaltySeconds": 74, + "rescues": 0, + "contacts": 5532 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 111, + "rescues": 1, + "contacts": 6163 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 73, + "trainingSeconds": 19.733418707999984, + "evaluationSeconds": 26.09760725, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 196, + "rescues": 0, + "contacts": 2168 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 196, + "rescues": 0, + "contacts": 2133 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 206, + "rescues": 0, + "contacts": 2048 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 202, + "rescues": 0, + "contacts": 1982 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 198, + "rescues": 0, + "contacts": 2379 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 261.98333333333335, + "penaltySeconds": 44, + "rescues": 0, + "contacts": 4522 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 222.21666666666667, + "penaltySeconds": 26, + "rescues": 0, + "contacts": 5085 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": true, + "laps": 3, + "finishSeconds": 152.68333333333334, + "penaltySeconds": 8, + "rescues": 0, + "contacts": 4771 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 193.35, + "penaltySeconds": 24, + "rescues": 0, + "contacts": 4640 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 140.13333333333333, + "penaltySeconds": 16, + "rescues": 0, + "contacts": 3998 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 222, + "rescues": 0, + "contacts": 1087 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 218, + "rescues": 0, + "contacts": 1052 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 208, + "rescues": 0, + "contacts": 1459 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 204, + "rescues": 0, + "contacts": 1143 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 0, + "finishSeconds": null, + "penaltySeconds": 208, + "rescues": 0, + "contacts": 1202 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 201.76666666666665, + "penaltySeconds": 22, + "rescues": 0, + "contacts": 3800 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 224.01666666666665, + "penaltySeconds": 31, + "rescues": 1, + "contacts": 3659 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 174.25, + "penaltySeconds": 26, + "rescues": 0, + "contacts": 3476 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 177.55, + "penaltySeconds": 20, + "rescues": 0, + "contacts": 4543 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 221.66666666666666, + "penaltySeconds": 30, + "rescues": 0, + "contacts": 4527 + } + ] + }, + { + "algorithm": "double-dqn", + "seed": 101, + "trainingSeconds": 18.915386750000007, + "evaluationSeconds": 24.592432750000036, + "transitions": 20000, + "updates": 4993, + "backend": "tensorflow", + "reports": [ + { + "seed": 211, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 183.28333333333333, + "penaltySeconds": 52, + "rescues": 0, + "contacts": 99 + }, + { + "seed": 307, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 124.5, + "penaltySeconds": 44, + "rescues": 0, + "contacts": 20 + }, + { + "seed": 419, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 339.7833333333333, + "penaltySeconds": 110, + "rescues": 0, + "contacts": 108 + }, + { + "seed": 509, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 370.2, + "penaltySeconds": 110, + "rescues": 0, + "contacts": 184 + }, + { + "seed": 601, + "test": false, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 268.01666666666665, + "penaltySeconds": 80, + "rescues": 0, + "contacts": 32 + }, + { + "seed": 211, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 192.35, + "penaltySeconds": 20, + "rescues": 2, + "contacts": 7136 + }, + { + "seed": 307, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 203.85, + "penaltySeconds": 23, + "rescues": 3, + "contacts": 7671 + }, + { + "seed": 419, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 201.83333333333334, + "penaltySeconds": 21, + "rescues": 3, + "contacts": 7779 + }, + { + "seed": 509, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 201.85, + "penaltySeconds": 20, + "rescues": 2, + "contacts": 6857 + }, + { + "seed": 601, + "test": false, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 159.21666666666667, + "penaltySeconds": 13, + "rescues": 1, + "contacts": 5746 + }, + { + "seed": 211, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 138, + "rescues": 0, + "contacts": 140 + }, + { + "seed": 307, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 132, + "rescues": 0, + "contacts": 222 + }, + { + "seed": 419, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 1, + "finishSeconds": null, + "penaltySeconds": 144, + "rescues": 0, + "contacts": 370 + }, + { + "seed": 509, + "test": true, + "traffic": false, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 342.9, + "penaltySeconds": 98, + "rescues": 0, + "contacts": 14 + }, + { + "seed": 601, + "test": true, + "traffic": false, + "completed": false, + "success": false, + "laps": 2, + "finishSeconds": null, + "penaltySeconds": 158, + "rescues": 0, + "contacts": 379 + }, + { + "seed": 211, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 234.06666666666666, + "penaltySeconds": 33, + "rescues": 3, + "contacts": 7486 + }, + { + "seed": 307, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 321.6, + "penaltySeconds": 53, + "rescues": 1, + "contacts": 5791 + }, + { + "seed": 419, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 303.1, + "penaltySeconds": 62, + "rescues": 6, + "contacts": 8268 + }, + { + "seed": 509, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 146.31666666666666, + "penaltySeconds": 17, + "rescues": 1, + "contacts": 3703 + }, + { + "seed": 601, + "test": true, + "traffic": true, + "completed": true, + "success": false, + "laps": 3, + "finishSeconds": 267.45, + "penaltySeconds": 24, + "rescues": 2, + "contacts": 10415 + } + ] + } + ] +} \ No newline at end of file diff --git a/packages/demo-car-circuit/src/racing/RaceGarage.tsx b/packages/demo-car-circuit/src/racing/RaceGarage.tsx new file mode 100644 index 0000000..c93bda3 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/RaceGarage.tsx @@ -0,0 +1,233 @@ +import { useEffect, useState } from "react"; +import * as tf from "@tensorflow/tfjs"; +import { LearnedRace, type RaceEntry } from "./learned-race"; +import { type SavedDriver } from "./training"; +import { loadGarage } from "./garage"; +const backendReady = tf.setBackend("cpu"); + +export default function RaceGarage({ + lang, + onStart, + onPractice, + onConfigure, + initialDriverId, +}: { + lang: "fr" | "en"; + onStart: (race: LearnedRace) => void; + onPractice: (references: boolean) => void; + onConfigure: () => void; + initialDriverId?: string; +}) { + const fr = lang === "fr"; + const [drivers, setDrivers] = useState([]), + [error, setError] = useState(""), + [ready, setReady] = useState(false); + const [human, setHuman] = useState(false); + const [humanModel, setHumanModel] = useState<"race" | "sedan-sports">("race"); + const [slots, setSlots] = useState([initialDriverId ?? "bundled-11", "bundled-29"]); + const [models, setModels] = useState<("race" | "sedan-sports")[]>([ + "race", + "sedan-sports", + "race", + "sedan-sports", + ]); + useEffect(() => { + let mounted = true; + void (async () => { + await backendReady; + const garage = await loadGarage({ + storage: localStorage, + base: import.meta.env.BASE_URL, + }); + if (mounted) { + setDrivers(garage.drivers); + setError(garage.errors.join(" · ")); + setReady(true); + } + })().catch((e) => { + if (mounted) setError(String(e)); + }); + return () => { + mounted = false; + }; + }, [fr]); + const start = () => { + try { + const entries: RaceEntry[] = slots.map((id, i) => { + const saved = drivers.find((d) => d.id === id); + if (!saved) + throw new Error( + fr ? "Choisissez un pilote valide." : "Choose a valid driver.", + ); + return { + id: saved.id, + name: saved.name, + model: models[i], + checkpoint: saved.checkpoint, + }; + }); + const session = new LearnedRace(entries, human, false, humanModel); + onStart(session); + setError(""); + (document.activeElement as HTMLElement)?.blur(); + } catch (e) { + setError(String(e)); + } + }; + return ( +
+
+ {fr ? "LA GRILLE DE DÉPART" : "THE STARTING GRID"} +
+

+ {fr ? "Les pilotes\nentrent en piste." : "Drivers take\nthe track."} +

+

+ {human + ? fr + ? "Affrontez 1 à 3 pilotes entraînés. Votre voiture utilise exactement la même physique." + : "Race 1–3 trained drivers. Your car uses exactly the same physics." + : fr + ? "Choisissez 2 à 4 checkpoints. Chaque voiture utilise sa propre copie figée du réseau appris." + : "Choose 2–4 checkpoints. Every car uses its own frozen copy of the learned network."} +

+

{fr ? "Mode fantôme : les voitures se traversent sans se bloquer. Les barrières restent solides." : "Ghost mode: cars pass through each other without blocking. Track barriers remain solid."}

+ + {human && ( + <> + +

+ {fr + ? "↑ / Z / W : accélérer · ↓ / S : freiner · ← → / Q D : tourner · Échap : pause. Les sorties coûtent 2 s. Rester dans un rayon de 1 m pendant 5 s déclenche une remise (+5 s)." + : "↑ / W: accelerate · ↓ / S: brake · ← → / A D: steer · Escape: pause. Off-road costs 2 s. Staying within 1 m for 5 s triggers a rescue (+5 s)."} +

+ + )} + + {slots.map((id, i) => { + const selected = drivers.find((d) => d.id === id); + return ( +
+ + + {selected && ( + + {selected.reports.filter((r) => r.success).length}/ + {selected.reports.length}{" "} + {fr ? "évaluations avec contacts réussies" : "successful contact evaluations"} ·{" "} + {selected.id} + + )} +
+ ); + })} +
+ +
+

+ {fr + ? "Les pilotes fournis sont imparfaits : leurs échecs d’évaluation restent visibles. Aucun contrôleur à règles ne les remplace." + : "Bundled drivers are imperfect: evaluation failures remain visible. No rule controller replaces them."} +

+ + + {error &&

{error}

} +
+ ); +} diff --git a/packages/demo-car-circuit/src/racing/RaceMap.tsx b/packages/demo-car-circuit/src/racing/RaceMap.tsx new file mode 100644 index 0000000..56eb97c --- /dev/null +++ b/packages/demo-car-circuit/src/racing/RaceMap.tsx @@ -0,0 +1,34 @@ +import { RaceWorld } from "./race"; +/** Small live map also identifies overlapping cars without changing simulation state. */ +export function RaceMap({ race, follow }: { race: RaceWorld; follow: number }) { + const path = race.track.points.map((p) => `${p.x},${p.z}`).join(" "); + return ( + + + + {race.drivers.map((d) => ( + + + + {d.id + 1} + + + ))} + + ); +} diff --git a/packages/demo-car-circuit/src/racing/RacingApp.tsx b/packages/demo-car-circuit/src/racing/RacingApp.tsx new file mode 100644 index 0000000..12697e2 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/RacingApp.tsx @@ -0,0 +1,525 @@ +import { + lazy, + Suspense, + Component, + useEffect, + useRef, + useState, + type ReactNode, +} from "react"; +import { useProgress } from "@react-three/drei"; +import { RaceWorld } from "./race"; +import { DrivingWorld } from "./driving"; +import { RaceMap } from "./RaceMap"; +import { RacingScene } from "./RacingScene"; +import "./racing.css"; + +import type { LearnedRace } from "./learned-race"; +const RaceGarage = lazy(() => import("./RaceGarage")); +const TrainingPanel = lazy(() => import("./TrainingPanel")); + +const copy = { + fr: { + garage: "Garage", + drive: "Essais libres", + training: "Entraîner", + race: "Course", + tag: "LE LABORATOIRE DES PILOTES", + title: "Votre voiture.\nVotre trajectoire.", + intro: + "Prenez le volant sur Alpine Park. Familiarisez-vous avec le circuit avant d’entraîner votre premier pilote.", + vehicle: "VÉHICULE", + racecar: "Formule R", + sedan: "Sport GT", + equal: "Même physique. Deux caractères.", + start: "Prendre le volant", + pause: "Pause", + resume: "Reprendre", + reset: "Retour aux stands", + controls: "COMMANDES", + gas: "Accélérer", + brake: "Freiner", + steer: "Tourner", + track: "ALPINE PARK", + layout: "10 virages · Circuit école", + mode: "ESSAIS LIBRES", + hint: "Accélérez avec ↑ ou Z. Freinez avant le virage.", + loading: "Préparation du véhicule…", + error: "Le véhicule n’a pas pu être chargé.", + retry: "Réessayer", + coming: "Disponible après les essais", + paused: "Session en pause", + pausedHint: "Reprenez quand vous êtes prêt.", + speed: "VITESSE", + local: "LOCAL · NAVIGATEUR", + }, + en: { + garage: "Garage", + drive: "Free practice", + training: "Train", + race: "Race", + tag: "THE DRIVER LAB", + title: "Your car.\nYour racing line.", + intro: + "Take the wheel at Alpine Park. Learn the circuit before training your first driver.", + vehicle: "VEHICLE", + racecar: "Formula R", + sedan: "Sport GT", + equal: "Same physics. Two characters.", + start: "Start driving", + pause: "Pause", + resume: "Resume", + reset: "Back to pits", + controls: "CONTROLS", + gas: "Accelerate", + brake: "Brake", + steer: "Steer", + track: "ALPINE PARK", + layout: "10 corners · Training circuit", + mode: "FREE PRACTICE", + hint: "Accelerate with ↑ or W. Brake before the corner.", + loading: "Preparing your vehicle…", + error: "The vehicle could not be loaded.", + retry: "Retry", + coming: "Available after practice", + paused: "Session paused", + pausedHint: "Resume when you are ready.", + speed: "SPEED", + local: "LOCAL · BROWSER", + }, +}; +class SceneBoundary extends Component< + { children: ReactNode; message: string; retry: string }, + { error: boolean } +> { + state = { error: false }; + static getDerivedStateFromError() { + return { error: true }; + } + render() { + return this.state.error ? ( +
+

{this.props.message}

+ +
+ ) : ( + this.props.children + ); + } +} +function Loading({ label }: { label: string }) { + const { active, progress } = useProgress(); + return active ? ( +
+ {label} + +
+ ) : null; +} +export default function RacingApp() { + const [lang, setLang] = useState<"fr" | "en">("fr"), + t = copy[lang]; + const [world, setWorld] = useState(() => new DrivingWorld()); + const [race, setRace] = useState(); + const [reference, setReference] = useState(false); + const [trainingMode, setTrainingMode] = useState(false); + const [garageMode, setGarageMode] = useState(false); + const [preferredDriver, setPreferredDriver] = useState(); + const [learned, setLearned] = useState(); + const [follow, setFollow] = useState(0); + const displayedDriver = race?.drivers[learned ? follow : 0]; + useEffect(() => () => learned?.dispose(), [learned]); + const [, updateHUD] = useState(0); + const resetSession = (competitive: boolean, references = false) => { + setTrainingMode(false); + setGarageMode(false); + setLearned(undefined); + setFollow(0); + const next = competitive + ? new RaceWorld({ count: references ? 4 : 1, ghost: true }) + : undefined; + setReference(references); + setRace(next); + setWorld(next ? next.drivers[0].world : new DrivingWorld()); + keys.clear(); + setSpeed(0); + setPaused(true); + setStarted(false); + }; + const keys = useRef(new Set()).current; + const [started, setStarted] = useState(false), + [paused, setPaused] = useState(true), + [model, setModel] = useState("race"), + [speed, setSpeed] = useState(0); + useEffect(() => { + const handled = new Set([ + "ArrowUp", + "ArrowDown", + "ArrowLeft", + "ArrowRight", + "KeyW", + "KeyA", + "KeyS", + "KeyD", + "KeyZ", + "KeyQ", + ]); + const down = (e: KeyboardEvent) => { + if (e.code === "Escape") { + keys.clear(); + setPaused(true); + return; + } + if ( + e.target instanceof HTMLElement && + ["INPUT", "SELECT", "TEXTAREA", "BUTTON"].includes(e.target.tagName) + ) + return; + if (handled.has(e.code)) { + e.preventDefault(); + keys.add(e.code); + } + }; + const up = (e: KeyboardEvent) => keys.delete(e.code); + const blur = () => { + keys.clear(); + setPaused(true); + }; + window.addEventListener("keydown", down); + window.addEventListener("keyup", up); + window.addEventListener("blur", blur); + document.addEventListener("visibilitychange", blur); + return () => { + window.removeEventListener("keydown", down); + window.removeEventListener("keyup", up); + window.removeEventListener("blur", blur); + document.removeEventListener("visibilitychange", blur); + keys.clear(); + }; + }, [keys]); + return ( +
+
+ + ignition / RACING + + + +
+
+ +
+ + { + setSpeed(value); + updateHUD((n) => n + 1); + }} + /> + + + {race && } + {learned && ( +
+ + +
+ )} + +
+ {t.track} + {trainingMode ? (lang === "fr" ? "Aperçu par session · apprentissage accéléré" : "Session snapshot · accelerated learning") : t.layout} +
+
+ + {race + ? `${reference ? (lang === "fr" ? "RÉFÉRENCES À RÈGLES" : "RULE-BASED REFERENCES") : t.race} · ${Math.min(3, race.drivers[learned ? follow : 0].laps + 1)}/3` + : trainingMode + ? t.training + : t.mode} +
+ {race && started && !paused && race.countdown > 0 && ( +
+ {Math.ceil(race.countdown)} +
+ )} + {race && ( +
+ {race.standings.findIndex( + (d) => d.id === (learned ? follow : 0), + ) + 1} + /{race.drivers.length} · {(race.elapsedTicks / 60).toFixed(1)} s · + +{race.drivers[learned ? follow : 0].penaltySeconds} s +
+ {lang === "fr" ? "Tour" : "Lap"} {Math.min(3, race.drivers[learned ? follow : 0].laps + 1)}/3 + {race.ghost && {lang === "fr" ? "MODE FANTÔME" : "GHOST MODE"}} +
+ )} + {race?.finished && displayedDriver && ( +
+

{lang === "fr" ? "Résultat" : "Result"}

+ {race.ghost &&

{lang === "fr" ? "Course en mode fantôme" : "Ghost race"}

} + {learned &&

{learned.competitors[follow].name}

} +

+ {displayedDriver.finishSeconds === null + ? lang === "fr" + ? "Temps limite atteint" + : "Time limit reached" + : `${displayedDriver.finishSeconds.toFixed(2)} s · 3/3`} +

+

+ {lang === "fr" ? "Remises en piste" : "Rescues"}:{" "} + {displayedDriver.rescues} (+ + {race.drivers[learned ? follow : 0].penaltySeconds} s) +

+
    + {race.standings.map((d) => ( +
  1. + + {learned?.competitors[d.id]?.name ?? `#${d.id + 1}`} + {learned && {learned.competitors[d.id].id}} + + {d.finishSeconds === null ? "DNF" : `${d.finishSeconds.toFixed(2)} s`} +
  2. + ))} +
+ +
+ )} + {started && paused && !race?.finished && ( +
+

{t.paused}

+

{t.pausedHint}

+ +
+ )} +
+ {learned && !learned.human + ? lang === "fr" + ? "Course de réseaux appris · poids figés" + : "Learned networks racing · frozen weights" + : trainingMode + ? lang === "fr" + ? "Trajectoires collectées pendant l’apprentissage" + : "Trajectories collected during learning" + : t.hint} +
+
+ {t.speed} + {Math.round(speed).toString().padStart(3, "0")} + KM/H +
+ +
+
+
+
+
+ ); +} diff --git a/packages/demo-car-circuit/src/racing/RacingScene.tsx b/packages/demo-car-circuit/src/racing/RacingScene.tsx new file mode 100644 index 0000000..bc80633 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/RacingScene.tsx @@ -0,0 +1,263 @@ +import { Suspense, useEffect, useMemo, useRef } from "react"; +import { Canvas, useFrame } from "@react-three/fiber"; +import { useGLTF, useProgress } from "@react-three/drei"; +import * as THREE from "three"; +import type { LearnedRace } from "./learned-race"; +import { referenceAction } from "./reference"; +import { RaceWorld } from "./race"; +import { DrivingWorld, DRIVING_CONTRACT, RacingTrack } from "./driving"; + +export function Vehicle({ + world, + model, +}: { + world: DrivingWorld; + model: string; +}) { + const { scene } = useGLTF(`${import.meta.env.BASE_URL}models/${model}.glb`); + const group = useRef(null); + const object = useMemo(() => { + const copy = scene.clone(true), + box = new THREE.Box3().setFromObject(copy), + size = box.getSize(new THREE.Vector3()); + const scale = 4.4 / Math.max(size.x, size.z); + copy.scale.setScalar(scale); + const center = box.getCenter(new THREE.Vector3()); + copy.position.set(-center.x * scale, -box.min.y * scale, -center.z * scale); + copy.traverse((o) => { + if (o instanceof THREE.Mesh) { + o.castShadow = true; + o.receiveShadow = true; + } + }); + return copy; + }, [scene]); + useFrame(() => { + if (group.current) { + const c = world.car; + group.current.position.set(c.x, 0.04, c.z); + group.current.rotation.y = -c.angle + Math.PI / 2; + } + }); + return ( + + + + ); +} +function Road({ track }: { track: RacingTrack }) { + const geometry = useMemo(() => { + const positions: number[] = [], + colors: number[] = []; + for (let i = 0; i < 400; i++) { + const a = track.sample(i / 400), + b = track.sample((i + 1) / 400); + for (const [l, r, color] of [ + [-5.3, -4.5, i % 8 < 4 ? "#f4efdf" : "#d74332"], + [-4.5, 4.5, "#30383b"], + [4.5, 5.3, i % 8 < 4 ? "#f4efdf" : "#d74332"], + ] as [number, number, string][]) { + const v = (p: typeof a, s: number) => [ + p.x - Math.sin(p.angle) * s, + 0.02, + p.z + Math.cos(p.angle) * s, + ]; + const verts = [v(a, l), v(a, r), v(b, r), v(a, l), v(b, r), v(b, l)], + c = new THREE.Color(color); + verts.forEach((p) => { + positions.push(...p); + colors.push(c.r, c.g, c.b); + }); + } + } + const g = new THREE.BufferGeometry(); + g.setAttribute("position", new THREE.Float32BufferAttribute(positions, 3)); + g.setAttribute("color", new THREE.Float32BufferAttribute(colors, 3)); + g.computeVertexNormals(); + return g; + }, [track]); + useEffect(() => () => geometry.dispose(), [geometry]); + return ( + <> + + + + + {Array.from({ length: 10 }, (_, i) => { + const p = track.sample(0); + return ( + + + + + ); + })} + + ); +} +/** Continuous rails share their offset and thickness with the collision contract. */ +function Rails({ track }: { track: RacingTrack }) { + const geometry = useMemo(() => { + const positions: number[] = []; + const { barrierOffset, barrierThickness } = DRIVING_CONTRACT; + for (const side of [-1, 1]) for (let i = 0; i < 400; i++) { + const endpoints = [track.sample(i / 400), track.sample((i + 1) / 400)]; + const vertices = endpoints.flatMap(p => [0, 1].flatMap(y => [-1, 1].map(edge => { + const offset = side * barrierOffset + edge * barrierThickness / 2; + return [p.x - Math.sin(p.angle) * offset, y, p.z + Math.cos(p.angle) * offset]; + }))); + for (const face of [[0,4,6,2], [1,3,7,5], [2,6,7,3]]) { + for (const index of [face[0],face[1],face[2],face[0],face[2],face[3]]) positions.push(...vertices[index]); + } + } + const g = new THREE.BufferGeometry(); + g.setAttribute("position", new THREE.Float32BufferAttribute(positions, 3)); + g.computeVertexNormals(); + return g; + }, [track]); + useEffect(() => () => geometry.dispose(), [geometry]); + return ; +} +function Driver({ + world, + keys, + paused, + onStats, + race, + reference = false, + learned, +}: { + world: DrivingWorld; + keys: Set; + paused: boolean; + onStats: (speed: number) => void; + race?: RaceWorld; + reference?: boolean; + learned?: LearnedRace; +}) { + const { active: loading } = useProgress(); + const accumulator = useRef(0), + frames = useRef(0), + cameraReady = useRef(false); + useFrame(({ camera }, delta) => { + if (!paused && !loading) { + accumulator.current += Math.min(delta, 0.1); + while (accumulator.current >= DRIVING_CONTRACT.dt) { + const steer = + (keys.has("ArrowRight") || keys.has("KeyD") ? 1 : 0) - + (keys.has("ArrowLeft") || keys.has("KeyA") || keys.has("KeyQ") + ? 1 + : 0); + const throttle = + keys.has("ArrowDown") || keys.has("KeyS") + ? -1 + : keys.has("ArrowUp") || keys.has("KeyW") || keys.has("KeyZ") + ? 1 + : 0; + const action = (throttle + 1) * 3 + steer + 1; + if (learned) learned.step(action); + else if (race) + race.step( + race.drivers.map((d, i) => + reference || i > 0 ? referenceAction(d.world) : action, + ), + ); + else world.step(action); + accumulator.current -= DRIVING_CONTRACT.dt; + } + } else accumulator.current = 0; + const c = world.car, + target = new THREE.Vector3( + c.x - Math.cos(c.angle) * 12, + 7.5, + c.z - Math.sin(c.angle) * 12, + ); + if (!cameraReady.current) { + camera.position.copy(target); + cameraReady.current = true; + } else camera.position.lerp(target, 1 - Math.exp(-delta * 5)); + camera.lookAt( + c.x + Math.cos(c.angle) * 8, + 0.8, + c.z + Math.sin(c.angle) * 8, + ); + if (++frames.current % 6 === 0) onStats(c.speed * 3.6); + }); + return null; +} +export function RacingScene(props: { + world: DrivingWorld; + keys: Set; + paused: boolean; + model: string; + onStats: (speed: number) => void; + race?: RaceWorld; + reference?: boolean; + learned?: LearnedRace; +}) { + return ( + + + + + + + + + + {Array.from({ length: 24 }, (_, i) => { + const a = (i * Math.PI * 2) / 24; + return ( + + + + + ); + })} + + + {props.race ? ( + props.race.drivers.map((d) => ( + + )) + ) : ( + + )} + + + + ); +} diff --git a/packages/demo-car-circuit/src/racing/TrainingPanel.tsx b/packages/demo-car-circuit/src/racing/TrainingPanel.tsx new file mode 100644 index 0000000..f674c1a --- /dev/null +++ b/packages/demo-car-circuit/src/racing/TrainingPanel.tsx @@ -0,0 +1,246 @@ +import * as tf from "@tensorflow/tfjs"; +import { useEffect, useRef, useState } from "react"; +import { trainQDriver } from "./q-training"; +import { Q_PROTOCOL } from "./q-protocol"; +import { LearnedDriver, type DriverCheckpoint } from "./learned-driver"; +import { + trainDriver, + evaluateDriver, + listDrivers, + saveDriver, + type SavedDriver, + type DriverEvaluation, +} from "./training"; +import { DrivingWorld } from "./driving"; + +const backendReady = tf.setBackend("cpu"); + +export default function TrainingPanel({ + lang, + onWorld, + onRace, +}: { + lang: "fr" | "en"; + onWorld: (world: DrivingWorld) => void; + onRace: (id: string) => void; +}) { + const fr = lang === "fr"; + const agent = useRef(undefined); + const operation = useRef | null>(null), + controller = useRef(undefined); + const [status, setStatus] = useState("idle"), + [error, setError] = useState(""), + [seed, setSeed] = useState(11); + const [progress, setProgress] = useState({ + round: 0, + loss: null as number | null, + samples: 0, + traffic: false, + }); + const [records, setRecords] = useState([]), + [reports, setReports] = useState([]); + const [selected, setSelected] = useState(""), + [saved, setSaved] = useState(""); + const [algorithm, setAlgorithm] = useState("imitation-mlp"); + const [savedId, setSavedId] = useState(""); + const [ready, setReady] = useState(false); + const activeAlgorithm = agent.current?.algorithm ?? algorithm; + const busy = !ready || status === "training" || status === "evaluating"; + useEffect(() => { + let mounted = true; + void backendReady + .then(() => { + if (mounted) setReady(true); + }) + .catch((e) => { + if (mounted) setError(String(e)); + }); + try { + setRecords(listDrivers()); + } catch (e) { + setError(String(e)); + } + return () => { + mounted = false; + controller.current?.abort(); + void (operation.current ?? Promise.resolve()).finally(() => + agent.current?.dispose(), + ); + }; + }, []); + const start = (fresh: boolean) => { + if (busy) return; + if (fresh || !agent.current) { + agent.current?.dispose(); + agent.current = new LearnedDriver(seed, algorithm); + setReports([]); + setSaved(""); + } + setReports([]); + setSaved(""); + setSavedId(""); + + const driver = agent.current; + setSeed(driver.seed); + setAlgorithm(driver.algorithm); + setProgress({round:0,loss:null,samples:driver.samples,traffic:driver.algorithm === "imitation-mlp" ? driver.updates>=24 : driver.samples>=Q_PROTOCOL.trafficAfterTransitions}); + controller.current = new AbortController(); + setError(""); + setStatus("training"); + const common = { + signal: controller.current.signal, + onWorld: (r: import("./race").RaceWorld) => onWorld(r.drivers[0].world), + onProgress: setProgress, + }; + operation.current = (driver.algorithm === "imitation-mlp" + ? trainDriver(driver, { ...common, seed:driver.seed, rounds:16 }) + : trainQDriver(driver.exportCheckpoint(), common).then(checkpoint => { + const updated = LearnedDriver.fromCheckpoint(checkpoint); + driver.dispose(); + agent.current = updated; + })) + .catch((e) => setError(String(e))) + .finally(() => setStatus("idle")); + }; + const evaluate = () => { + if (!agent.current || busy) return; + const frozen = LearnedDriver.fromCheckpoint( + agent.current.exportCheckpoint(), + ); + controller.current = new AbortController(); + setError(""); + setStatus("evaluating"); + setSavedId(""); + setReports([]); + operation.current = (async () => { + const results: DriverEvaluation[] = []; + try { + for (const test of [false, true]) + for (const traffic of [false, true]) + for (const evaluationSeed of frozen.algorithm === "imitation-mlp" ? [101, 307, 509] : Q_PROTOCOL.evaluationSeeds) { + results.push( + await evaluateDriver(frozen, { + seed: evaluationSeed, + test, + traffic, + signal: controller.current!.signal, + }), + ); + setReports([...results]); + } + } finally { + frozen.dispose(); + } + })() + .catch((e) => { + if (!controller.current?.signal.aborted) setError(String(e)); + }) + .finally(() => setStatus("idle")); + }; + const save = () => { + if (!agent.current || busy) return; + try { + const id = `driver-${agent.current.seed}-${Date.now()}`; + saveDriver({ + id, + name: `${agent.current.algorithm} · ${agent.current.seed} · ${agent.current.updates}`, + checkpoint: agent.current.exportCheckpoint(), + reports, + }); + setRecords(listDrivers()); + setSelected(id); + setSavedId(id); + setSaved( + fr + ? "Pilote sauvegardé dans ce navigateur." + : "Driver saved in this browser.", + ); + setError(""); + } catch (e) { + setError(String(e)); + } + }; + const load = () => { + const record = records.find((r) => r.id === selected); + if (!record || busy) return; + try { + const loaded = LearnedDriver.fromCheckpoint(record.checkpoint); + agent.current?.dispose(); + agent.current = loaded; + setSavedId(record.id); + setSeed(loaded.seed); + setAlgorithm(loaded.algorithm); + setReports(record.reports); + setProgress({ + round: 0, + loss: null as number | null, + samples: loaded.samples, + traffic: loaded.algorithm === "imitation-mlp" ? loaded.updates >= 24 : loaded.samples >= Q_PROTOCOL.trafficAfterTransitions, + }); + setError(""); + setSaved( + fr + ? "Poids rechargés. La reprise recrée l’optimiseur." + : "Weights loaded. Resuming creates a fresh optimizer.", + ); + } catch (e) { + setError(String(e)); + } + }; + const trained = !!agent.current?.samples; + const totalTests = activeAlgorithm === "imitation-mlp" ? 12 : 20; + const tested = reports.length === totalTests; + const budget = activeAlgorithm === "imitation-mlp" ? 16 : Q_PROTOCOL.transitions; + const step = savedId ? 4 : tested ? 3 : trained && status !== "training" ? 2 : 1; + const heading = !ready ? (fr ? "Préparation…" : "Preparing…") + : status === "training" ? (fr ? "Votre pilote apprend" : "Your driver is learning") + : status === "evaluating" ? (fr ? "Votre pilote passe les tests" : "Testing your driver") + : savedId ? (fr ? "Votre pilote est dans le garage" : "Your driver is in the garage") + : tested ? (fr ? "Tests terminés" : "Tests complete") + : trained ? (fr ? "Votre pilote peut être testé" : "Your driver is ready to test") + : (fr ? "Créez votre premier pilote" : "Create your first driver"); + return ( +
+
{fr ? "VOTRE PILOTE IA" : "YOUR AI DRIVER"}
+

{fr ? "Apprendre. Tester. Courir." : "Learn. Test. Race."}

+
    + {(fr ? ["Entraîner", "Tester", "Sauver", "Courir"] : ["Train", "Test", "Save", "Race"]).map((label,i)=>
  1. {i+1}. {label}
  2. )} +
+
+ {heading} +

{status === "training" + ? (fr ? "Il s’exerce en accéléré, d’abord seul puis avec d’autres voitures. Attendez la fin ou arrêtez pour garder ses progrès." : "It practices at accelerated speed, first alone and then in traffic. Wait or stop to keep its progress.") + : status === "evaluating" + ? (fr ? `${reports.length}/${totalTests} courses testées. Ses connaissances ne changent pas pendant les tests.` : `${reports.length}/${totalTests} races tested. Its weights stay frozen during testing.`) + : savedId ? (fr ? "Passez à la course : votre pilote sera déjà sélectionné sur la grille." : "Open racing: your driver will already be selected on the grid.") + : tested ? (fr ? `${reports.filter(r=>r.success).length}/${totalTests} courses réussies. Sauvegardez le pilote pour le retrouver en course.` : `${reports.filter(r=>r.success).length}/${totalTests} successful races. Save the driver to race it.`) + : trained ? (fr ? "L’entraînement a produit un pilote, pas une garantie de réussite. Testez-le sur les deux circuits." : "Training produced a driver, not a guarantee of success. Test it on both tracks.") + : (fr ? "Un clic lance l’apprentissage. Vous pourrez ensuite tester votre pilote et courir contre lui." : "One click starts learning. Then test your driver and race against it.")}

+ {status === "training" && <>{Math.round(progress.round/budget*100)} % · {fr ? (progress.traffic ? "Avec du trafic" : "Conduite en solo") : (progress.traffic ? "With traffic" : "Solo driving")}} + {status === "evaluating" && } +
+
+ + {busy && ready && } +
+

{fr ? "La voiture à droite est un aperçu de trajectoire par session, pas une course en direct. Pour voir votre pilote conduire en continu, terminez ces étapes puis lancez une course." : "The car is a trajectory snapshot per session, not a live race. To watch continuous driving, complete these steps and launch a race."}

+ {!trained && } + {reports.length > 0 &&
{fr ? "Voir les résultats des courses" : "Race test results"} ({reports.length}/{totalTests})

{fr ? "Réussite : 3 tours, sans remise en piste et avec au plus 10 s de pénalité." : "Success: 3 laps, no rescue and at most 10 s penalty."}

    {reports.map(r=>
  • {r.test ? "Harbour" : "Alpine"} · {r.traffic ? (fr ? "trafic" : "traffic") : "solo"} · {r.seed} : {r.success ? "✓" : "×"} {r.completed ? `${r.finishSeconds?.toFixed(1)} s` : (fr ? "non terminé" : "unfinished")}
  • )}
} +
{fr ? "Réglages et détails techniques" : "Settings and technical details"} + {trained && } + +

{activeAlgorithm} · {progress.samples.toLocaleString(lang)} {fr ? "exemples / transitions" : "samples / transitions"}

+ {progress.loss !== null &&

{fr ? "Erreur d’imitation" : "Imitation loss"} : {progress.loss.toFixed(4)}

} + {trained &&
} +

{fr ? "Comparer DQN et Double DQN ↗" : "Compare DQN and Double DQN ↗"}

+
+
{fr ? "Retrouver un pilote sauvegardé" : "Load a saved driver"}
+ {saved &&

{saved}

} + {error &&

{error}

} +
+ ); +} diff --git a/packages/demo-car-circuit/src/racing/driving.ts b/packages/demo-car-circuit/src/racing/driving.ts new file mode 100644 index 0000000..5a70557 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/driving.ts @@ -0,0 +1,166 @@ +import { CatmullRomCurve3, Vector3 } from "three"; + +export const DRIVING_CONTRACT = Object.freeze({ + id: "circuit-racing-v2", + dt: 1 / 60, + actionCount: 9, + maxSpeed: 32, + carRadius: 1.2, + barrierOffset: 7, + barrierThickness: 0.45, +}); +export interface RoadSample { + x: number; + z: number; + angle: number; + distance: number; + progress: number; +} +export class RacingTrack { + readonly width = 9; + readonly points: Vector3[]; + readonly length: number; + readonly id: string; + constructor(test = false) { + this.id = test ? "harbour-test-v1" : "alpine-park-v1"; + const coords = test + ? [ + [-60, -35], + [0, -40], + [55, -25], + [60, 20], + [20, 35], + [0, 10], + [-40, 40], + [-65, 10], + ] + : [ + [-30, -32], + [20, -32], + [55, -20], + [60, 10], + [30, 20], + [12, 40], + [-25, 40], + [-55, 20], + [-62, -10], + [-55, -30], + ]; + const curve = new CatmullRomCurve3( + coords.map(([x, z]) => new Vector3(x, 0, z)), + true, + "catmullrom", + 0.35, + ); + this.points = curve.getSpacedPoints(400); + this.length = curve.getLength(); + } + sample(progress: number): RoadSample { + const p = (((progress % 1) + 1) % 1) * 400, + i = Math.floor(p), + a = this.points[i], + b = this.points[i + 1], + t = p - i; + return { + x: a.x + (b.x - a.x) * t, + z: a.z + (b.z - a.z) * t, + angle: Math.atan2(b.z - a.z, b.x - a.x), + distance: 0, + progress: p / 400, + }; + } + nearest(x: number, z: number): RoadSample { + let best = Infinity, + result = this.sample(0); + for (let i = 0; i < 400; i++) { + const a = this.points[i], + b = this.points[i + 1], + dx = b.x - a.x, + dz = b.z - a.z; + const t = Math.max( + 0, + Math.min(1, ((x - a.x) * dx + (z - a.z) * dz) / (dx * dx + dz * dz)), + ); + const px = a.x + t * dx, + pz = a.z + t * dz, + d = Math.hypot(x - px, z - pz); + if (d < best) { + best = d; + result = { + x: px, + z: pz, + angle: Math.atan2(dz, dx), + distance: d, + progress: (i + t) / 400, + }; + } + } + return result; + } +} +export interface CarState { + x: number; + z: number; + angle: number; + speed: number; + steering: number; +} +export class DrivingWorld { + readonly track: RacingTrack; + car: CarState; + ticks = 0; + constructor(track = new RacingTrack()) { + this.track = track; + this.car = this.start(); + } + private start(): CarState { + const p = this.track.sample(0); + return { x: p.x, z: p.z, angle: p.angle, speed: 0, steering: 0 }; + } + reset() { + this.car = this.start(); + this.ticks = 0; + } + /** Project the collision circle inside the continuous rail and remove outward velocity. */ + constrainToTrack(): boolean { + const c = this.car, p = this.track.nearest(c.x, c.z); + const limit = DRIVING_CONTRACT.barrierOffset - DRIVING_CONTRACT.barrierThickness / 2 - DRIVING_CONTRACT.carRadius; + if (p.distance <= limit) return false; + const nx = (c.x - p.x) / p.distance, nz = (c.z - p.z) / p.distance; + c.x = p.x + nx * limit; + c.z = p.z + nz * limit; + const outward = Math.max(0, Math.cos(c.angle) * nx + Math.sin(c.angle) * nz); + c.speed *= Math.max(0, 1 - outward * outward); + return true; + } + step(action: number) { + if (!Number.isInteger(action) || action < 0 || action >= 9) + throw new Error("Driving action must be an integer in [0,8]"); + const steer = (action % 3) - 1, + throttle = Math.floor(action / 3) - 1, + c = this.car, + dt = DRIVING_CONTRACT.dt; + const offRoad = + this.track.nearest(c.x, c.z).distance > this.track.width / 2; + c.steering += (steer - c.steering) * Math.min(1, dt * 9); + const acceleration = throttle === 1 ? 9 : throttle === -1 ? -20 : 0; + c.speed = Math.max( + 0, + Math.min( + DRIVING_CONTRACT.maxSpeed, + c.speed + + (acceleration - + 0.7 - + c.speed * 0.045 - + (offRoad ? c.speed * 0.8 : 0)) * + dt, + ), + ); + c.angle += c.steering * c.speed * 0.12 * dt; + c.x += Math.cos(c.angle) * c.speed * dt; + c.z += Math.sin(c.angle) * c.speed * dt; + const boundaryContact = this.constrainToTrack(); + this.ticks++; + return boundaryContact; + } +} diff --git a/packages/demo-car-circuit/src/racing/garage.ts b/packages/demo-car-circuit/src/racing/garage.ts new file mode 100644 index 0000000..7efe417 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/garage.ts @@ -0,0 +1,50 @@ +import { + listDrivers, + type SavedDriver, + type DriverEvaluation, +} from "./training"; +import type { DriverCheckpoint } from "./learned-driver"; +export async function loadGarage({ + storage, + base, + fetcher = fetch, +}: { + storage: Pick; + base: string; + fetcher?: (url: string) => Promise<{ ok: boolean; json(): Promise }>; +}) { + const drivers: SavedDriver[] = [], + errors: string[] = []; + try { + drivers.push(...listDrivers(storage)); + } catch (e) { + errors.push(String(e)); + } + const bundled = await Promise.allSettled( + [11, 29, 47].map(async (seed) => { + const responses = await Promise.all( + ["driver", "report"].map((prefix) => + fetcher(`${base}drivers/${prefix}-${seed}.json`), + ), + ); + if (responses.some((r) => !r.ok)) + throw new Error(`Checkpoint bundled-${seed}: asset unavailable`); + const [checkpoint, report] = await Promise.all( + responses.map((r) => r.json()), + ); + if (!report || !Array.isArray((report as { reports: unknown }).reports)) + throw new Error(`Checkpoint bundled-${seed}: invalid report`); + return { + id: `bundled-${seed}`, + name: `Imitation ${seed} · 48`, + checkpoint: checkpoint as DriverCheckpoint, + reports: (report as { reports: DriverEvaluation[] }).reports, + }; + }), + ); + for (const result of bundled) { + if (result.status === "fulfilled") drivers.push(result.value); + else errors.push(String(result.reason)); + } + return { drivers, errors }; +} diff --git a/packages/demo-car-circuit/src/racing/learned-driver.ts b/packages/demo-car-circuit/src/racing/learned-driver.ts new file mode 100644 index 0000000..def94ec --- /dev/null +++ b/packages/demo-car-circuit/src/racing/learned-driver.ts @@ -0,0 +1,167 @@ +import * as tf from "@tensorflow/tfjs"; +import { DRIVING_CONTRACT } from "./driving"; +import { OBSERVATION_CONTRACT, OBSERVATION_SIZE } from "./observations"; +import { Q_PROTOCOL } from "./q-protocol"; +import { LEARNING_PROTOCOL } from "./learning-protocol"; + +export interface DriverCheckpoint { + format: "ignition-driver-v1"; + algorithm: "imitation-mlp" | "dqn" | "double-dqn"; + driving: string; + observation: string; + protocol: string; + seed: number; + updates: number; + samples: number; + createdAt: string; + weights: { shape: number[]; values: number[] }[]; + configuration?: Record; + evaluation?: unknown; +} +const SHAPES = [[20, 32], [32], [32, 32], [32], [32, 9], [9]]; +/** A trained neural network. Inference contains no reference controller or fallback. */ +export class LearnedDriver { + private model: tf.Sequential; + private optimizer: tf.Optimizer; + updates = 0; + samples = 0; + constructor(readonly seed: number, readonly algorithm: DriverCheckpoint["algorithm"] = "imitation-mlp") { + if (!Number.isSafeInteger(seed) || seed < 1 || seed > 1000000) + throw new Error("Seed must be an integer from 1 to 1000000"); + this.model = tf.sequential(); + this.model.add( + tf.layers.dense({ + inputShape: [OBSERVATION_SIZE], + units: 32, + activation: algorithm === "imitation-mlp" ? "tanh" : "relu", + kernelInitializer: tf.initializers.glorotUniform({ seed }), + }), + ); + this.model.add( + tf.layers.dense({ + units: 32, + activation: algorithm === "imitation-mlp" ? "tanh" : "relu", + kernelInitializer: tf.initializers.glorotUniform({ seed: seed + 1 }), + }), + ); + this.model.add( + tf.layers.dense({ + units: 9, + activation: algorithm === "imitation-mlp" ? "softmax" : "linear", + kernelInitializer: tf.initializers.glorotUniform({ seed: seed + 2 }), + }), + ); + this.optimizer = tf.train.adam(algorithm === "imitation-mlp" ? 0.003 : Q_PROTOCOL.learningRate); + this.model.compile({ + optimizer: this.optimizer, + loss: algorithm === "imitation-mlp" ? "categoricalCrossentropy" : "meanSquaredError", + }); + } + get decisionInterval() { return this.algorithm === "imitation-mlp" ? 1 : Q_PROTOCOL.actionRepeat; } + action(observation: number[]): number { + if ( + observation.length !== OBSERVATION_SIZE || + !observation.every(Number.isFinite) + ) + throw new Error("Invalid driving observation"); + return tf.tidy(() => { + const values = ( + this.model.predict(tf.tensor2d([observation])) as tf.Tensor + ).dataSync(); + return values.indexOf(Math.max(...values)); + }); + } + async learn( + observations: number[][], + actions: number[], + epochs = 1, + ): Promise { + if (this.algorithm !== "imitation-mlp") throw new Error("Use Q-learning training for this driver"); + if ( + !observations.length || + observations.length !== actions.length || + actions.some((a) => !Number.isInteger(a) || a < 0 || a > 8) + ) + throw new Error("Invalid training samples"); + const x = tf.tensor2d(observations), + y = tf.tidy(() => tf.oneHot(tf.tensor1d(actions, "int32"), 9)); + try { + const history = await this.model.fit(x, y, { + epochs, + batchSize: 128, + shuffle: false, + verbose: 0, + }); + this.updates += epochs; + this.samples += observations.length; + return Number(history.history.loss.at(-1)); + } finally { + x.dispose(); + y.dispose(); + } + } + exportCheckpoint(): DriverCheckpoint { + return { + configuration: this.algorithm === "imitation-mlp" ? {hiddenLayers:[32,32],learningRate:.003,batchSize:128,epochsPerRound:3,samplesPerRound:4096} : {...Q_PROTOCOL}, + format: "ignition-driver-v1", + algorithm: this.algorithm, + driving: DRIVING_CONTRACT.id, + observation: OBSERVATION_CONTRACT, + protocol: this.algorithm === "imitation-mlp" ? LEARNING_PROTOCOL.id : Q_PROTOCOL.id, + seed: this.seed, + updates: this.updates, + samples: this.samples, + createdAt: new Date().toISOString(), + weights: this.model + .getWeights() + .map((t) => ({ shape: t.shape, values: Array.from(t.dataSync()) })), + }; + } + static fromCheckpoint(value: unknown): LearnedDriver { + const c = value as DriverCheckpoint; + if ( + !c || + c.format !== "ignition-driver-v1" || + !["imitation-mlp", "dqn", "double-dqn"].includes(c.algorithm) || + c.driving !== DRIVING_CONTRACT.id || + c.observation !== OBSERVATION_CONTRACT || + c.protocol !== (c.algorithm === "imitation-mlp" ? LEARNING_PROTOCOL.id : Q_PROTOCOL.id) + ) + throw new Error("Incompatible driver contract"); + if ( + !Number.isInteger(c.seed) || + !Number.isInteger(c.updates) || + c.updates < 0 || + !Number.isInteger(c.samples) || + c.samples < 0 + ) + throw new Error("Invalid driver metadata"); + if ( + !Array.isArray(c.weights) || + c.weights.length !== SHAPES.length || + c.weights.some( + (w, i) => + !w || + JSON.stringify(w.shape) !== JSON.stringify(SHAPES[i]) || + !Array.isArray(w.values) || + w.values.length !== SHAPES[i].reduce((a, b) => a * b, 1) || + !w.values.every(Number.isFinite), + ) + ) + throw new Error("Invalid driver weights"); + const driver = new LearnedDriver(c.seed, c.algorithm); + const weights = c.weights.map((w) => tf.tensor(w.values, w.shape)); + try { + driver.model.setWeights(weights); + } finally { + tf.dispose(weights); + } + driver.updates = c.updates; + driver.samples = c.samples; + return driver; + } + dispose() { + this.model.dispose(); + this.optimizer.dispose(); + } +} diff --git a/packages/demo-car-circuit/src/racing/learned-race.ts b/packages/demo-car-circuit/src/racing/learned-race.ts new file mode 100644 index 0000000..81b10a3 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/learned-race.ts @@ -0,0 +1,71 @@ +import { RaceWorld } from "./race"; +import { LearnedDriver, type DriverCheckpoint } from "./learned-driver"; +import { observeDriver } from "./observations"; + +export interface RaceEntry { + id: string; + name: string; + model: "race" | "sedan-sports"; + checkpoint: DriverCheckpoint; +} +/** Owns separately loaded, frozen copies; no reference controller or training path. */ +export class LearnedRace { + readonly race: RaceWorld; + private readonly previousActions: number[] = []; + private readonly policies: LearnedDriver[] = []; + constructor( + readonly entries: readonly RaceEntry[], + readonly human = false, + test = false, + readonly humanModel: RaceEntry["model"] = "race", + ) { + if (entries.length < (human ? 1 : 2) || entries.length > (human ? 3 : 4)) + throw new Error("Select 2–4 learned drivers, or 1–3 human opponents"); + this.race = new RaceWorld({ + count: entries.length + (human ? 1 : 0), + test, + ghost: true, + }); + try { + for (const entry of entries) + this.policies.push(LearnedDriver.fromCheckpoint(entry.checkpoint)); + } catch (error) { + this.dispose(); + throw error; + } + } + get competitors() { + const learned = this.entries.map(({ id, name, model }) => ({ + id, + name, + model, + })); + return this.human + ? [{ id: "player", name: "Player", model: this.humanModel }, ...learned] + : learned; + } + step(humanAction = 4) { + if (this.race.finished) return; + const observations = this.race.drivers.map((d) => + observeDriver(this.race, d.id), + ); + const actions = this.race.drivers.map((_d, i) => + this.human && i === 0 + ? humanAction + : (() => { + const policy=this.policies[i-(this.human?1:0)]; + if(this.race.elapsedTicks % policy.decisionInterval===0 || this.previousActions[i]===undefined) + this.previousActions[i]=policy.action(observations[i]); + return this.previousActions[i]; + })(), + ); + this.race.step(actions); + } + snapshots() { + return this.policies.map((p) => p.exportCheckpoint()); + } + dispose() { + for (const p of this.policies) p.dispose(); + this.policies.length = 0; + } +} diff --git a/packages/demo-car-circuit/src/racing/learning-protocol.ts b/packages/demo-car-circuit/src/racing/learning-protocol.ts new file mode 100644 index 0000000..45faba3 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/learning-protocol.ts @@ -0,0 +1,22 @@ +import { DRIVING_CONTRACT } from "./driving"; +import { OBSERVATION_CONTRACT } from "./observations"; +import { RACE_PROTOCOL } from "./race"; + +/** Fixed before training runs; held-out results must never choose the checkpoint. */ +export const LEARNING_PROTOCOL = Object.freeze({ + id: "racing-learning-v2", + driving: DRIVING_CONTRACT.id, + observation: OBSERVATION_CONTRACT, + race: RACE_PROTOCOL.id, + trainingSeeds: [11, 29, 47], + checkpointSelection: "last scheduled update on training circuit only", + evaluationSeeds: [101, 307, 509], + success: { + completedLaps: 3, + maxRescues: 0, + maxPenalties: 10, + minimumCompletionRate: 0.8, + }, + evaluation: + "All three training seeds on both circuits, solo and three frozen rule-based traffic drivers. Report every run, including failures.", +}); diff --git a/packages/demo-car-circuit/src/racing/observations.ts b/packages/demo-car-circuit/src/racing/observations.ts new file mode 100644 index 0000000..05368e4 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/observations.ts @@ -0,0 +1,52 @@ +import { RaceWorld } from "./race"; + +export const OBSERVATION_CONTRACT = "racing-observation-v1"; +export const OBSERVATION_SIZE = 20; +const clamp = (n: number) => Math.max(-1, Math.min(1, n)); +/** Track-relative sensors, identical in collection, evaluation and races. */ +export function observeDriver(race: RaceWorld, id = 0): number[] { + const car = race.drivers[id].world.car; + const near = race.track.nearest(car.x, car.z); + const heading = Math.atan2( + Math.sin(near.angle - car.angle), + Math.cos(near.angle - car.angle), + ); + const lateral = + (car.x - near.x) * -Math.sin(near.angle) + + (car.z - near.z) * Math.cos(near.angle); + const result = [ + car.speed / 32, + car.steering, + clamp(lateral / (race.track.width / 2)), + heading / Math.PI, + ]; + for (const meters of [3 + car.speed * 0.15, 10, 20, 35]) { + const target = race.track.sample( + near.progress + meters / race.track.length, + ); + const error = Math.atan2( + Math.sin(Math.atan2(target.z - car.z, target.x - car.x) - car.angle), + Math.cos(Math.atan2(target.z - car.z, target.x - car.x) - car.angle), + ); + result.push(clamp(error / 0.6)); + } + const opponents = race.drivers + .filter((d) => d.id !== id) + .map((d) => { + const dx = d.world.car.x - car.x, + dz = d.world.car.z - car.z; + return { + distance: Math.hypot(dx, dz), + values: [ + clamp((dx * Math.cos(car.angle) + dz * Math.sin(car.angle)) / 30), + clamp((-dx * Math.sin(car.angle) + dz * Math.cos(car.angle)) / 10), + (d.world.car.speed - car.speed) / 32, + 1, + ], + }; + }) + .sort((a, b) => a.distance - b.distance); + for (let i = 0; i < 3; i++) + result.push(...(opponents[i]?.values ?? [0, 0, 0, 0])); + return result; +} diff --git a/packages/demo-car-circuit/src/racing/q-protocol.ts b/packages/demo-car-circuit/src/racing/q-protocol.ts new file mode 100644 index 0000000..d9a9342 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/q-protocol.ts @@ -0,0 +1,23 @@ +/** Fixed before running either algorithm. Last scheduled checkpoint, no evaluation selection. */ +export const Q_PROTOCOL = Object.freeze({ + id: 'racing-q-learning-v3', + seeds: [11, 29, 47, 73, 101], + evaluationSeeds: [211, 307, 419, 509, 601], + transitions: 20000, + actionRepeat: 6, + trafficAfterTransitions: 10000, + episodeTransitions: 600, + termination: 'finish only; off-road recovery follows RaceWorld', + truncation: '600 decisions, race time limit, or solo-to-traffic curriculum boundary', + trainEvery: 4, + hiddenLayers: [32, 32], + learningRate: 0.001, + batchSize: 32, + memorySize: 10000, + gamma: 0.99, + epsilonDecay: 0.9995, + minEpsilon: 0.05, + targetUpdateFrequency: 100, + evaluation: '5 seeds x 2 tracks x solo/traffic = 20 full races per trained policy', + selection: 'last scheduled checkpoint; all failures retained', +}); diff --git a/packages/demo-car-circuit/src/racing/q-training.ts b/packages/demo-car-circuit/src/racing/q-training.ts new file mode 100644 index 0000000..87e7c96 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/q-training.ts @@ -0,0 +1,97 @@ +import * as tf from '@tensorflow/tfjs'; +import { DQNAgent, buildQNetwork } from '@ignitionai/backend-tfjs'; +import { referenceAction } from './reference'; +import { RaceWorld } from './race'; +import { observeDriver } from './observations'; +import { LearnedDriver, type DriverCheckpoint } from './learned-driver'; +import { Q_PROTOCOL } from './q-protocol'; +import { seededRandom, type TrainingProgress } from './training'; + +/** One RL transition holds an action for six common physics ticks. No teacher labels. */ +export class RacingQEnvironment { + race = new RaceWorld({ countdown: 0 }); + actions = 9; + private steps = 0; + private lastReward = 0; + private stopped = false; + private readonly random: () => number; + constructor(seed: number, readonly traffic = false) { this.random = seededRandom(seed); this.reset(); } + observe() { return observeDriver(this.race); } + reset() { + this.race = new RaceWorld({countdown:0,count:this.traffic?4:1}); + const d=this.race.drivers[0], p=this.race.track.sample(this.random()); + Object.assign(d.world.car,{x:p.x,z:p.z,angle:p.angle+(this.random()-.5)*.1,speed:4+this.random()*8}); + d.lastProgress=p.progress;d.gates=Math.floor(p.progress*20);d.safeProgress=d.gates/20; + this.steps=0;this.lastReward=0;this.stopped=false; + } + step(action: number) { + if(this.done()) return; + const d=this.race.drivers[0], before=d.lastProgress, gates=d.gates, penalties=d.penaltySeconds; + for(let i=0;iindex===0?action:referenceAction(driver.world))); + let delta=d.lastProgress-before; + if(delta>.5)delta-=1;if(delta<-.5)delta+=1; + const offroad=this.race.track.nearest(d.world.car.x,d.world.car.z).distance>this.race.track.width/2; + this.lastReward=Math.max(-2,Math.min(2,delta*this.race.track.length)) + (d.gates-gates)*2 - (d.penaltySeconds-penalties) - .01 - (offroad?.2:0); + this.steps++; + // Recoverable errors keep the same rescue/penalty rules as racing. + this.stopped=d.finishSeconds!==null; + } + reward() { return this.lastReward; } + terminated() { return this.stopped; } + truncated() { return !this.stopped && (this.steps>=Q_PROTOCOL.episodeTransitions || this.race.finished); } + done() { return this.terminated() || this.truncated(); } +} + +export async function trainQDriver(checkpoint: DriverCheckpoint, options: { + transitions?: number; signal?: AbortSignal; + onWorld?: (race:RaceWorld)=>void; onProgress?: (p:TrainingProgress)=>void; +} = {}): Promise { + if(checkpoint.algorithm==='imitation-mlp') throw new Error('Q-learning needs a Q-network checkpoint'); + const validated=LearnedDriver.fromCheckpoint(checkpoint);validated.dispose(); + const budget=options.transitions??Q_PROTOCOL.transitions; + if(!Number.isInteger(budget)||budget<1)throw new Error('Invalid transition budget'); + if(!['cpu','tensorflow'].includes(tf.getBackend())) throw new Error('Q training requires the CPU or native TensorFlow backend'); + let output=checkpoint; + const agent=new DQNAgent({ + inputSize:20,actionSize:9,hiddenLayers:[32,32],seed:checkpoint.seed, + doubleQ:checkpoint.algorithm==='double-dqn',backend:'auto', + lr:Q_PROTOCOL.learningRate,batchSize:Q_PROTOCOL.batchSize,memorySize:Q_PROTOCOL.memorySize, + gamma:Q_PROTOCOL.gamma,epsilonDecay:Q_PROTOCOL.epsilonDecay,minEpsilon:Q_PROTOCOL.minEpsilon, + targetUpdateFrequency:Q_PROTOCOL.targetUpdateFrequency, + storageProvider:{ + async load(){ + const model=buildQNetwork(20,9,[32,32],Q_PROTOCOL.learningRate,checkpoint.seed); + const weights=checkpoint.weights.map(w=>tf.tensor(w.values,w.shape)); + try{model.setWeights(weights);}finally{tf.dispose(weights);} + return model; + }, + async save(_id,model){ + output={...checkpoint,configuration:{...Q_PROTOCOL},createdAt:new Date().toISOString(), + samples:checkpoint.samples+collected,updates:checkpoint.updates+Number(agent.getState().trainStepCounter), + weights:(model as tf.Sequential).getWeights().map(t=>({shape:t.shape,values:Array.from(t.dataSync())}))}; + return 'memory'; + },async list(){return[];},async exists(){return true;},async delete(){}, + }, + }); + let collected=0; + let env=new RacingQEnvironment(checkpoint.seed+checkpoint.samples,checkpoint.samples>=Q_PROTOCOL.trafficAfterTransitions); + try { + await agent.load('weights'); + for(;collected=Q_PROTOCOL.trafficAfterTransitions) + env=new RacingQEnvironment(checkpoint.seed+checkpoint.samples+collected,true); + const state=env.observe(),action=await agent.getAction(state); + env.step(action); + agent.remember({state,action,nextState:env.observe(),reward:env.reward(),terminated:env.terminated(),truncated:env.truncated() || (!env.terminated() && checkpoint.samples+collected+1===Q_PROTOCOL.trafficAfterTransitions)}); + collected++; + if(collected%Q_PROTOCOL.trainEvery===0) await agent.train(); + if(env.done())env.reset(); + if(collected%250===0) { + if(!options.signal?.aborted){options.onWorld?.(env.race);options.onProgress?.({round:collected,loss:null,samples:checkpoint.samples+collected,traffic:env.traffic});} + await new Promise(resolve=>setTimeout(resolve,0)); + } + } + await agent.save('last'); + return output; + } finally {agent.dispose();} +} diff --git a/packages/demo-car-circuit/src/racing/race.ts b/packages/demo-car-circuit/src/racing/race.ts new file mode 100644 index 0000000..9d35a92 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/race.ts @@ -0,0 +1,196 @@ +import { DrivingWorld, RacingTrack, DRIVING_CONTRACT } from "./driving"; + +export const RACE_PROTOCOL = Object.freeze({ + id: "circuit-race-v2", + laps: 3, + checkpoints: 20, + rescueTicks: 300, + immobilizationRadius: 1, + rescuePenalty: 5, + offroadPenalty: 2, + maxTicks: 60 * 300, + trainingTrack: "alpine-park-v1", + heldOutTrack: "harbour-test-v1", + evaluationSeeds: [101, 307, 509], +}); +export interface RaceDriver { + id: number; + world: DrivingWorld; + laps: number; + gates: number; + lastProgress: number; + safeProgress: number; + offroadTicks: number; + stationaryTicks: number; + motionAnchor: { x: number; z: number }; + penaltySeconds: number; + rescues: number; + collisions: number; + finishSeconds: number | null; +} +/** All decisions are supplied as one batch, before any physics is advanced. */ +export class RaceWorld { + readonly track: RacingTrack; + readonly drivers: RaceDriver[]; + readonly countdownTicks: number; + readonly ghost: boolean; + get rulesId() { return this.ghost ? "circuit-race-v2-ghost-v1" : RACE_PROTOCOL.id; } + ticks = 0; + elapsedTicks = 0; + constructor({ + count = 1, + test = false, + countdown = 3, + ghost = false, + }: { count?: number; test?: boolean; countdown?: number; ghost?: boolean } = {}) { + if (!Number.isInteger(count) || count < 1 || count > 4) + throw new Error("Race needs 1–4 drivers"); + this.ghost = ghost; + this.track = new RacingTrack(test); + this.countdownTicks = Math.round(countdown / DRIVING_CONTRACT.dt); + this.drivers = Array.from({ length: count }, (_, id) => { + const world = new DrivingWorld(this.track); + const p = this.track.sample(0); + const side = count === 1 ? 0 : id % 2 ? 1.6 : -1.6; + const back = Math.floor(id / 2) * 5; + world.car.x += -Math.sin(p.angle) * side - Math.cos(p.angle) * back; + world.car.z += Math.cos(p.angle) * side - Math.sin(p.angle) * back; + return { + id, + world, + laps: 0, + gates: 0, + lastProgress: this.track.nearest(world.car.x, world.car.z).progress, + safeProgress: 0, + offroadTicks: 0, + stationaryTicks: 0, + motionAnchor: { x: world.car.x, z: world.car.z }, + penaltySeconds: 0, + rescues: 0, + collisions: 0, + finishSeconds: null, + }; + }); + } + get finished() { + return ( + this.drivers.every((d) => d.finishSeconds !== null) || + this.elapsedTicks >= RACE_PROTOCOL.maxTicks + ); + } + get countdown() { + return Math.max( + 0, + (this.countdownTicks - this.ticks) * DRIVING_CONTRACT.dt, + ); + } + get standings() { + return [...this.drivers].sort((a, b) => { + if (a.finishSeconds !== null || b.finishSeconds !== null) + return ( + (a.finishSeconds ?? Infinity) - (b.finishSeconds ?? Infinity) || + a.id - b.id + ); + const remaining = (d: RaceDriver) => + (((d.gates + 1) % RACE_PROTOCOL.checkpoints) / + RACE_PROTOCOL.checkpoints - + d.lastProgress + + 1) % + 1; + return b.gates - a.gates || remaining(a) - remaining(b) || a.id - b.id; + }); + } + private resolveContacts(railContacts: Set) { + const pairs = new Set(); + const diameter = 2 * DRIVING_CONTRACT.carRadius; + // Bounded constraint passes keep a rail projection from undoing separation. + // Contact metrics and impact damping count once per pair, not per solver pass. + for (let iteration = 0; iteration < 16; iteration++) { + const moved = new Set(); + for (let i = 0; i < this.drivers.length; i++) for (let j = i + 1; j < this.drivers.length; j++) { + const da = this.drivers[i], db = this.drivers[j]; + if (da.finishSeconds !== null || db.finishSeconds !== null) continue; + const a = da.world.car, b = db.world.car, dx = b.x - a.x, dz = b.z - a.z, dist = Math.hypot(dx, dz); + if (dist >= diameter - 1e-4) continue; + const nx = dist > 1e-6 ? dx / dist : 1, nz = dist > 1e-6 ? dz / dist : 0, push = (diameter - dist) / 2; + a.x -= nx * push; a.z -= nz * push; + b.x += nx * push; b.z += nz * push; + moved.add(i); moved.add(j); + const pair = `${i}:${j}`; + if (!pairs.has(pair)) { + pairs.add(pair); a.speed *= 0.7; b.speed *= 0.7; + da.collisions++; db.collisions++; + } + } + if (moved.size === 0) break; + for (const id of moved) if (this.drivers[id].world.constrainToTrack()) railContacts.add(id); + } + } + step(actions: readonly number[]) { + if ( + actions.length !== this.drivers.length || + actions.some((a) => !Number.isInteger(a) || a < 0 || a > 8) + ) + throw new Error("Supply one valid action per driver"); + if (this.finished) return; + this.ticks++; + if (this.ticks <= this.countdownTicks) return; + this.elapsedTicks++; + const railContacts = new Set(); + for (const d of this.drivers) + if (d.finishSeconds === null && d.world.step(actions[d.id])) railContacts.add(d.id); + if (!this.ghost) this.resolveContacts(railContacts); + for (const id of railContacts) this.drivers[id].collisions++; + for (const d of this.drivers) { + if (d.finishSeconds !== null) continue; + const c = d.world.car, + p = this.track.nearest(c.x, c.z); + let delta = p.progress - d.lastProgress; + if (delta > 0.5) delta -= 1; + if (delta < -0.5) delta += 1; + const forward = delta > 0 && delta * this.track.length < 2; + const next = + ((d.gates + 1) % RACE_PROTOCOL.checkpoints) / RACE_PROTOCOL.checkpoints; + const distanceToGate = (next - d.lastProgress + 1) % 1; + if ( + p.distance <= this.track.width / 2 && + forward && + distanceToGate > 0 && + distanceToGate <= delta + 1e-8 + ) { + d.gates++; + d.safeProgress = next; + d.laps = Math.floor(d.gates / RACE_PROTOCOL.checkpoints); + if (d.laps >= RACE_PROTOCOL.laps) + d.finishSeconds = + this.elapsedTicks * DRIVING_CONTRACT.dt + d.penaltySeconds; + } + d.lastProgress = p.progress; + if (d.finishSeconds !== null) continue; + if (p.distance > this.track.width / 2 && d.offroadTicks === 0) + d.penaltySeconds += RACE_PROTOCOL.offroadPenalty; + d.offroadTicks = + p.distance > this.track.width / 2 ? d.offroadTicks + 1 : 0; + // A moving excursion is recoverable. Rescue only a car remaining within + // one metre for five seconds, including a car pinned against traffic/rails. + if (Math.hypot(c.x - d.motionAnchor.x, c.z - d.motionAnchor.z) >= RACE_PROTOCOL.immobilizationRadius) { + d.motionAnchor = { x: c.x, z: c.z }; + d.stationaryTicks = 0; + } else d.stationaryTicks++; + if (d.stationaryTicks >= RACE_PROTOCOL.rescueTicks) { + const safe = this.track.sample(d.safeProgress); + c.x = safe.x; + c.z = safe.z; + c.angle = safe.angle; + c.speed = 0; + c.steering = 0; + d.lastProgress = safe.progress; + d.offroadTicks = 0; + d.stationaryTicks = 0; + d.motionAnchor = { x: c.x, z: c.z }; + d.rescues++; + d.penaltySeconds += RACE_PROTOCOL.rescuePenalty; + } + } + } +} diff --git a/packages/demo-car-circuit/src/racing/racing.css b/packages/demo-car-circuit/src/racing/racing.css new file mode 100644 index 0000000..dbf515c --- /dev/null +++ b/packages/demo-car-circuit/src/racing/racing.css @@ -0,0 +1,550 @@ +:root { + --race-bg: #121619; + --race-panel: #1b2024; + --race-line: #323a3f; + --race-text: #f3f1e8; + --race-muted: #9ca6aa; + --race-accent: #e6ee58; + --race-space: 4px; +} +* { + box-sizing: border-box; +} +.racing-app { + background: var(--race-bg); + color: var(--race-text); + min-height: 100vh; + font-family: Arial, Helvetica, sans-serif; +} +.racing-app button, +.racing-app a { + font: inherit; +} +.racing-app button { + cursor: pointer; +} +.racing-app button:focus-visible, +.racing-app a:focus-visible { + outline: 3px solid var(--race-accent); + outline-offset: 4px; +} +.race-header { + height: 76px; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 1px solid var(--race-line); + padding: 0 32px; + gap: 24px; +} +.race-brand { + color: var(--race-text); + font-size: 24px; + font-weight: 800; + text-decoration: none; + letter-spacing: -1px; +} +.race-brand span { + font-size: 12px; + color: var(--race-accent); + letter-spacing: 2px; + margin-left: 16px; +} +.race-header nav { + display: flex; + gap: 32px; + align-items: center; + height: 100%; +} +.race-header nav .active { + border-bottom: 3px solid var(--race-accent); + height: 100%; + display: flex; + align-items: center; + font-size: 14px; +} +.race-header nav button { + background: none; + border: 0; + color: var(--race-muted); + font-size: 14px; + opacity: 0.55; + cursor: not-allowed; +} +.language { + color: var(--race-text); + background: none; + border: 1px solid var(--race-line); + padding: 8px 12px; + font-size: 12px !important; +} +.race-layout { + display: grid; + grid-template-columns: 320px 1fr; + min-height: calc(100vh - 76px); +} +.race-sidebar { + padding: 40px 28px 24px; + display: flex; + flex-direction: column; + border-right: 1px solid var(--race-line); +} +.eyebrow { + font-size: 9px; + font-weight: 700; + letter-spacing: 2px; + color: var(--race-accent); +} +.race-sidebar h1 { + font-size: 32px; + letter-spacing: -1.5px; + line-height: 1.05; + margin: 20px 0; +} +.race-intro { + font-size: 13px; + line-height: 1.6; + color: var(--race-muted); + margin: 0 0 32px; +} +.vehicle-label { + font-size: 10px; + letter-spacing: 2px; + color: var(--race-muted); + margin-bottom: 12px; +} +.vehicle-options { + display: grid; + gap: 8px; +} +.vehicle-options button { + display: flex; + gap: 16px; + align-items: center; + padding: 16px 12px; + border: 1px solid var(--race-line); + background: var(--race-panel); + color: var(--race-text); + font-size: 13px; +} +.vehicle-options button.selected { + border-color: var(--race-accent); +} +.vehicle-options button span { + font-size: 10px; + color: var(--race-muted); +} +.vehicle-options b { + margin-left: auto; + color: var(--race-accent); +} +.muted { + font-size: 10px; + color: var(--race-muted); + margin: 12px 0 24px; +} +.drive-button { + display: flex; + justify-content: space-between; + background: var(--race-accent); + color: var(--race-bg); + border: 0; + padding: 18px 16px; + font-weight: 700 !important; + font-size: 13px !important; +} +.reset-button { + border: 0; + background: none; + color: var(--race-muted); + padding: 16px; + font-size: 11px !important; +} +.race-controls { + margin-top: 24px; + border-top: 1px solid var(--race-line); + padding-top: 24px; +} +.race-controls p { + display: flex; + align-items: center; + justify-content: space-between; + font-size: 11px; + color: var(--race-muted); + margin: 8px 0; +} +.race-controls kbd { + background: var(--race-panel); + border: 1px solid var(--race-line); + padding: 5px 8px; + color: var(--race-text); + min-width: 76px; + text-align: center; + font-size: 10px; +} +.local-badge { + margin-top: auto; + padding-top: 32px; + color: var(--race-muted); + font-size: 9px; + letter-spacing: 1px; +} +.local-badge i, +.session-pill i { + display: inline-block; + width: 6px; + height: 6px; + background: var(--race-accent); + border-radius: 50%; + margin-right: 8px; +} +.race-viewport { + position: relative; + min-width: 0; + height: calc(100vh - 76px); + min-height: 560px; + overflow: hidden; +} +.track-label { + position: absolute; + top: 28px; + left: 28px; + background: #172127e6; + padding: 14px 20px; + border-left: 3px solid var(--race-accent); +} +.track-label span { + display: block; + font-size: 14px; + font-weight: 800; + letter-spacing: 2px; +} +.track-label small { + display: block; + color: #bac4c6; + font-size: 10px; + margin-top: 6px; +} +.session-pill { + position: absolute; + top: 28px; + right: 28px; + font-size: 10px; + letter-spacing: 1px; + background: #172127e6; + padding: 14px; +} +.driving-hint { + position: absolute; + bottom: 32px; + left: 28px; + background: #172127e6; + padding: 14px 20px; + font-size: 11px; + color: #cdd6d7; + max-width: 55%; +} +.speedometer { + position: absolute; + bottom: 28px; + right: 28px; + background: #172127f2; + padding: 20px 24px; + width: 164px; +} +.speedometer > span { + font-size: 9px; + letter-spacing: 2px; + color: var(--race-muted); +} +.speedometer strong { + display: block; + font-size: 56px; + line-height: 1.1; + letter-spacing: -4px; + font-variant-numeric: tabular-nums; + font-style: italic; +} +.speedometer small { + font-size: 10px; + color: var(--race-muted); +} +.speed-track { + height: 3px; + background: var(--race-line); + margin-top: 16px; + overflow: hidden; +} +.speed-track i { + height: 100%; + display: block; + background: var(--race-accent); +} +.pause-overlay, +.race-error { + position: absolute; + inset: 0; + background: #111820a8; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + z-index: 4; +} +.pause-overlay h2 { + font-size: 36px; + margin: 0 0 8px; + letter-spacing: -1px; +} +.pause-overlay p { + color: #cad1d1; + font-size: 13px; +} +.pause-overlay button, +.race-error button { + background: var(--race-accent); + border: 0; + padding: 16px 28px; + margin-top: 16px; + color: #121619; +} +.race-loading { + position: absolute; + inset: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 20px; + background: #1b2024; + z-index: 5; + font-size: 13px; +} +.race-loading progress { + accent-color: var(--race-accent); + width: 220px; +} +@media (max-width: 900px) { + .race-layout { + grid-template-columns: 250px 1fr; + } + .race-sidebar { + padding: 28px 20px; + } + .race-header { + padding: 0 20px; + } + .race-header nav { + gap: 16px; + } + .session-pill { + display: none; + } + .race-sidebar h1 { + font-size: 28px; + } + .driving-hint { + display: none; + } +} +@media (max-width: 600px) { + .race-layout { + display: flex; + flex-direction: column-reverse; + } + .race-viewport { + height: 55vh; + min-height: 360px; + } + .race-header { + height: 60px; + padding: 0 16px; + } + .race-brand { + font-size: 20px; + } + .race-brand span { + font-size: 9px; + margin-left: 8px; + } + .race-header nav { + display: none; + } + .race-sidebar { + border: 0; + padding: 24px; + } + .race-sidebar h1 { + font-size: 28px; + } + .track-label { + top: 16px; + left: 16px; + } + .speedometer { + bottom: 16px; + right: 16px; + width: 128px; + padding: 12px 16px; + } + .speedometer strong { + font-size: 44px; + } + .race-controls { + margin-top: 8px; + } + .local-badge { + padding-top: 16px; + } +} + +.race-countdown { + position: absolute; + inset: 35% 0 auto; + text-align: center; + color: #edff7a; + font-size: 100px; + font-weight: 800; + pointer-events: none; +} +.race-timing { + position: absolute; + top: 85px; + right: 24px; + color: white; + font-variant-numeric: tabular-nums; + background: #17211ddd; + padding: 12px 16px; + border-radius: 8px; +} + +.race-header nav button:not(:disabled) { + opacity: 1; + cursor: pointer; + color: var(--race-text); +} +@media (min-width: 601px) { + .race-sidebar { + height: calc(100vh - 76px); + overflow-y: auto; + } +} +@media (max-width: 600px) { + .race-header { + height: auto; + min-height: 100px; + flex-wrap: wrap; + gap: 12px; + padding: 12px 16px; + } + .race-header nav { + display: flex; + order: 3; + width: 100%; + height: 30px; + } +} + +.pause-overlay ol { + list-style: none; + width: min(360px, 80%); + padding: 0; + margin: 20px 0; + counter-reset: position; +} +.pause-overlay li { + counter-increment: position; + display: flex; + align-items: center; + gap: 18px; + background: #182329; + padding: 12px 18px; + margin: 4px 0; + font-variant-numeric: tabular-nums; + border: 1px solid #394449; +} +.pause-overlay li::before { + content: counter(position); + color: var(--race-accent); + font-weight: bold; +} + +.training-panel label { + display: grid; + gap: 8px; + font-size: 12px; + margin: 16px 0; +} +.training-panel input, +.training-panel select { + width: 100%; + background: var(--race-panel); + color: var(--race-text); + border: 1px solid var(--race-line); + padding: 10px; +} +.training-actions { + display: grid; + gap: 8px; + margin: 16px 0; +} +.training-actions button { + border: 1px solid var(--race-line); + padding: 12px; + background: var(--race-panel); + color: var(--race-text); + text-align: left; +} +.training-actions .drive-button { + background: var(--race-accent); + color: var(--race-bg); +} +.training-actions button:disabled { + opacity: 0.4; + cursor: not-allowed; +} +.training-metrics { + border: 1px solid var(--race-line); + padding: 16px; + font-size: 12px; + line-height: 1.6; +} +.training-metrics p { + margin: 8px 0; + color: var(--race-muted); +} +.training-metrics ul { + padding-left: 16px; + font-size: 10px; +} +.training-panel [role="alert"] { + color: #ffb3a2; + font-size: 12px; +} + +.grid-driver { border-top:1px solid var(--race-line); padding:8px 0 16px; } +.grid-driver small { color:var(--race-muted); font-size:10px; overflow-wrap:anywhere; } +.spectator-controls { position:absolute; left:28px; top:110px; display:flex; gap:8px; align-items:center; background:#172127ed; color:white; padding:10px; font-size:11px; z-index:3; } +.spectator-controls select,.spectator-controls button { background:#26343a; color:white; border:1px solid #536065; padding:8px; margin-left:8px; } + +.race-map { position:absolute; left:28px; bottom:110px; width:180px; height:124px; background:#152126dc; border:1px solid #556368; border-radius:12px; padding:8px; pointer-events:none; } +@media(max-width:600px) { .race-map { width:120px;height:84px;left:16px;bottom:16px; } } + +.result-driver { flex: 1; min-width: 0; text-align: left; overflow-wrap: anywhere; } +.result-driver small { display: block; color: var(--race-muted); font-size: 11px; margin-top: 4px; } +.result-time { white-space: nowrap; } + +.training-steps { list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:8px; padding:0; font-size:11px; color:var(--race-muted); } +.training-steps [aria-current="step"] { color:var(--race-accent); font-weight:700; } +.training-guide { border-left:3px solid var(--race-accent); padding:14px; background:#1b272b; line-height:1.5; font-size:13px; } +.training-guide strong { font-size:16px; } +.training-guide progress { display:block; width:100%; margin:12px 0; accent-color:var(--race-accent); } +.training-preview-note { font-size:12px; color:var(--race-muted); line-height:1.6; } +.training-details { border-top:1px solid var(--race-line); padding:14px 0; font-size:12px; line-height:1.6; } +.training-details summary { cursor:pointer; color:var(--race-text); } +.training-details a { color:var(--race-accent); } +.training-details button { background:#26343a; border:1px solid #536065; color:white; padding:10px; } + +.ghost-notice { color:var(--race-accent); border-left:2px solid currentColor; padding-left:10px; font-size:12px; line-height:1.5; } +.ghost-race-label { display:block; color:#e6ee58; font-size:10px; letter-spacing:.08em; margin-top:6px; } +@media(max-width:900px) { .race-timing { top:170px; } } diff --git a/packages/demo-car-circuit/src/racing/reference.ts b/packages/demo-car-circuit/src/racing/reference.ts new file mode 100644 index 0000000..30a8f7f --- /dev/null +++ b/packages/demo-car-circuit/src/racing/reference.ts @@ -0,0 +1,17 @@ +import { DrivingWorld } from "./driving"; +/** Explicitly labelled rule-based reference; never presented as a learned driver. */ +export function referenceAction(world: DrivingWorld): number { + const c = world.car, + near = world.track.nearest(c.x, c.z); + const target = world.track.sample( + near.progress + (3 + c.speed * 0.15) / world.track.length, + ); + const error = Math.atan2( + Math.sin(Math.atan2(target.z - c.z, target.x - c.x) - c.angle), + Math.cos(Math.atan2(target.z - c.z, target.x - c.x) - c.angle), + ); + const steer = Math.abs(error) < 0.06 ? 0 : Math.sign(error); + const desired = Math.abs(error) > 0.5 ? 7 : Math.abs(error) > 0.2 ? 10 : 16; + const throttle = c.speed > desired + 1 ? -1 : c.speed < desired ? 1 : 0; + return (throttle + 1) * 3 + steer + 1; +} diff --git a/packages/demo-car-circuit/src/racing/training.ts b/packages/demo-car-circuit/src/racing/training.ts new file mode 100644 index 0000000..ca37886 --- /dev/null +++ b/packages/demo-car-circuit/src/racing/training.ts @@ -0,0 +1,175 @@ +import { RaceWorld } from "./race"; +import { observeDriver } from "./observations"; +import { referenceAction } from "./reference"; +import { LearnedDriver, type DriverCheckpoint } from "./learned-driver"; + +export function seededRandom(seed: number) { + let state = seed >>> 0; + return () => { + state = (Math.imul(state, 1664525) + 1013904223) >>> 0; + return state / 4294967296; + }; +} +export interface TrainingProgress { + round: number; + loss: number | null; + samples: number; + traffic: boolean; +} +/** Dataset aggregation: one learner, labels from frozen rule references, no test track. */ +export async function trainDriver( + driver: LearnedDriver, + options: { + rounds: number; + seed: number; + signal?: AbortSignal; + onWorld?: (world: RaceWorld) => void; + onProgress?: (p: TrainingProgress) => void; + }, +) { + const random = seededRandom(options.seed + driver.updates * 997); + for (let round = 0; round < options.rounds; round++) { + if (options.signal?.aborted) return; + const traffic = driver.updates >= 24; + const observations: number[][] = [], + labels: number[] = []; + let race = new RaceWorld({ count: traffic ? 4 : 1, countdown: 0 }); + // Diverse start states are training-only curriculum, with unchanged race physics. + for (let sample = 0; sample < 4096; sample++) { + if (sample % 256 === 0) { + await new Promise((resolve) => setTimeout(resolve, 0)); + if (options.signal?.aborted) return; + } + if (sample % 128 === 0) { + race = new RaceWorld({ count: traffic ? 4 : 1, countdown: 0 }); + const d = race.drivers[0], + p = race.track.sample(random()); + const side = (random() - 0.5) * 4; + Object.assign(d.world.car, { + x: p.x - Math.sin(p.angle) * side, + z: p.z + Math.cos(p.angle) * side, + angle: p.angle + (random() - 0.5) * 0.6, + speed: random() * 24, + steering: (random() - 0.5) * 2, + }); + d.lastProgress = p.progress; + d.gates = Math.floor(p.progress * 20); + d.safeProgress = d.gates / 20; + } + const observation = observeDriver(race), + label = referenceAction(race.drivers[0].world); + observations.push(observation); + labels.push(label); + const useLearner = driver.updates > 0 && random() < 0.5; + const actions = race.drivers.map((d, i) => + i === 0 && useLearner + ? driver.action(observation) + : referenceAction(d.world), + ); + race.step(actions); + } + // Deterministic shuffle keeps sequential trajectories from biasing mini-batches. + for (let i = observations.length - 1; i > 0; i--) { + const j = Math.floor(random() * (i + 1)); + [observations[i], observations[j]] = [observations[j], observations[i]]; + [labels[i], labels[j]] = [labels[j], labels[i]]; + } + if (options.signal?.aborted) return; + const loss = await driver.learn(observations, labels, 3); + if (options.signal?.aborted) return; + options.onWorld?.(race); + options.onProgress?.({ + round: round + 1, + loss, + samples: driver.samples, + traffic, + }); + await new Promise((resolve) => setTimeout(resolve, 0)); + } +} +export interface DriverEvaluation { + seed: number; + test: boolean; + traffic: boolean; + completed: boolean; + success: boolean; + laps: number; + finishSeconds: number | null; + penaltySeconds: number; + rescues: number; + contacts: number; +} +/** Receives a separately loaded network and never updates it. */ +export async function evaluateDriver( + driver: LearnedDriver, + { + seed, + test = false, + traffic = false, + signal, + }: { seed: number; test?: boolean; traffic?: boolean; signal?: AbortSignal }, +): Promise { + const race = new RaceWorld({ count: traffic ? 4 : 1, test, countdown: 0 }); + const random = seededRandom(seed), + car = race.drivers[0].world.car; + car.angle += (random() - 0.5) * 0.06; + let steps = 0, action = 4; + while (!race.finished && race.drivers[0].finishSeconds === null) { + if (signal?.aborted) throw new Error("Evaluation cancelled"); + if (steps % driver.decisionInterval === 0) action = driver.action(observeDriver(race)); + race.step( + race.drivers.map((d, i) => (i === 0 ? action : referenceAction(d.world))), + ); + if (++steps % 240 === 0) + await new Promise((resolve) => setTimeout(resolve, 0)); + } + const d = race.drivers[0], + completed = d.finishSeconds !== null; + return { + seed, + test, + traffic, + completed, + success: completed && d.rescues === 0 && d.penaltySeconds <= 10, + laps: d.laps, + finishSeconds: d.finishSeconds, + penaltySeconds: d.penaltySeconds, + rescues: d.rescues, + contacts: d.collisions, + }; +} +export interface SavedDriver { + id: string; + name: string; + checkpoint: DriverCheckpoint; + reports: DriverEvaluation[]; +} +const STORE_KEY = "ignition-racing-drivers-v1"; +export function listDrivers( + storage: Pick = localStorage, +): SavedDriver[] { + const raw = storage.getItem(STORE_KEY); + if (!raw) return []; + const records: unknown = JSON.parse(raw); + if ( + !Array.isArray(records) || + records.some( + (r) => + !r || + typeof r.id !== "string" || + typeof r.name !== "string" || + !r.checkpoint || + !Array.isArray(r.reports), + ) + ) + throw new Error("Invalid local driver garage"); + return records as SavedDriver[]; +} +export function saveDriver( + record: SavedDriver, + storage: Pick = localStorage, +) { + const records = listDrivers(storage).filter((d) => d.id !== record.id); + // A single write preserves the previous garage if storage quota is exceeded. + storage.setItem(STORE_KEY, JSON.stringify([...records, record])); +} diff --git a/packages/demo-car-circuit/src/vite-env.d.ts b/packages/demo-car-circuit/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/packages/demo-car-circuit/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/packages/demo-car-circuit/test/circuit-env.test.ts b/packages/demo-car-circuit/test/circuit-env.test.ts index 8d38fd2..29c643b 100644 --- a/packages/demo-car-circuit/test/circuit-env.test.ts +++ b/packages/demo-car-circuit/test/circuit-env.test.ts @@ -73,3 +73,23 @@ describe('CircuitEnv', () => { expect(env.done()).toBe(true); }); }); + +it('records a time limit separately from failure and preserves its transition count on reset', () => { + const env = new CircuitEnv(10, 4, 2, { maxSteps: 2 }); + env.step(1); + env.step(1); + expect(env.terminated()).toBe(false); + expect(env.truncated()).toBe(true); + env.reset(); + expect(env.lastEpisode).toEqual({ transitions: 2, completedLaps: 0, lapTimesSeconds: [], + simulationSeconds: 0.1, endReason: 'time-limit' }); + expect(env.stepCount).toBe(0); +}); + +it('returns to the configured starting position and direction', () => { + const env = new CircuitEnv(6, 6, 2, { startWaypoint: 32 }); + const initial = env.observe(); + env.step(0); + env.reset(); + expect(env.observe()).toEqual(initial); +}); diff --git a/packages/demo-car-circuit/test/evaluation.test.ts b/packages/demo-car-circuit/test/evaluation.test.ts new file mode 100644 index 0000000..98120e9 --- /dev/null +++ b/packages/demo-car-circuit/test/evaluation.test.ts @@ -0,0 +1,53 @@ +import { expect, it, vi } from 'vitest'; +import { evaluateCircuit, CIRCUIT_PROTOCOL } from '../src/evaluation'; + +it('evaluates a fixed policy reproducibly without training or recording experience', async () => { + const policy = { getAction: vi.fn(async (_observation: number[], _greedy?: boolean) => 0), train: vi.fn(), remember: vi.fn() }; + const options = { policyId: 'left-only-v1', circuit: 'test' as const }; + const first = await evaluateCircuit(policy, options); + const second = await evaluateCircuit(policy, options); + expect(second).toEqual(first); + expect(first.schemaVersion).toBe(1); + expect(first.protocolId).toBe(CIRCUIT_PROTOCOL.id); + expect(first.episodes).toHaveLength(3); + expect(first.episodes.every(e => e.endReason === 'off-track')).toBe(true); + expect(first.totalTransitions).toBeGreaterThan(0); + expect(first.offTrackEpisodes).toBe(3); + expect(first.completedLaps).toBe(0); + expect(policy.train).not.toHaveBeenCalled(); + expect(policy.remember).not.toHaveBeenCalled(); + expect(policy.getAction.mock.calls.every(call => call[1] === true)).toBe(true); + expect(JSON.parse(JSON.stringify(first))).toEqual(first); +}); + +it('declares different training and held-out circuits before evaluation', () => { + expect(CIRCUIT_PROTOCOL.circuits.training).not.toEqual(CIRCUIT_PROTOCOL.circuits.test); +}); + +it('reports complete laps and simulated lap times for a lane-following reference controller', async () => { + const report = await evaluateCircuit({ async getAction(observation) { + return observation[1] > 0.008 ? 2 : observation[1] < -0.008 ? 0 : 1; + } }, { policyId: 'reference-controller-v1', circuit: 'training' }); + expect(report.successfulEpisodes).toBe(3); + expect(report.completedLaps).toBe(9); + for (const episode of report.episodes) { + expect(episode.lapTimesSeconds).toHaveLength(3); + expect(episode.simulationSeconds).toBeCloseTo(episode.lapTimesSeconds.reduce((a, b) => a + b, 0)); + } +}); + +it('rejects invalid policy actions instead of silently treating them as straight', async () => { + await expect(evaluateCircuit({ getAction: async () => 42 }, { + policyId: 'invalid', circuit: 'test', + })).rejects.toThrow('discrete action'); +}); + +it('yields to browser tasks while evaluating without changing the report', async () => { + let browserTaskRan = false; + const task = new Promise(resolve => setTimeout(() => { browserTaskRan = true; resolve(); }, 0)); + await evaluateCircuit({ async getAction(observation) { + return observation[1] > 0.008 ? 2 : observation[1] < -0.008 ? 0 : 1; + } }, { policyId: 'reference-controller-v1', circuit: 'training' }); + expect(browserTaskRan).toBe(true); + await task; +}); diff --git a/packages/demo-car-circuit/test/learned-race.test.ts b/packages/demo-car-circuit/test/learned-race.test.ts new file mode 100644 index 0000000..10b701d --- /dev/null +++ b/packages/demo-car-circuit/test/learned-race.test.ts @@ -0,0 +1,60 @@ +import { expect, it } from "vitest"; +import { readFileSync } from "node:fs"; +import { LearnedRace, type RaceEntry } from "../src/racing/learned-race"; +const entries: RaceEntry[] = [11, 29].map((seed) => ({ + id: `checkpoint-${seed}`, + name: `Driver ${seed}`, + model: "race", + checkpoint: JSON.parse( + readFileSync( + new URL(`../src/public/drivers/driver-${seed}.json`, import.meta.url), + "utf8", + ), + ), +})); +it("runs separately loaded learned policies to a result without changing their weights", () => { + const session = new LearnedRace(entries); + const before = session.snapshots().map((p) => p.weights); + while (!session.race.finished) session.step(); + expect(session.race.drivers.every((d) => d.laps === 3)).toBe(true); + expect(session.snapshots().map((p) => p.weights)).toEqual(before); + expect(session.entries.map((e) => e.id)).toEqual([ + "checkpoint-11", + "checkpoint-29", + ]); + session.dispose(); +}, 30000); +it("rejects a missing or incompatible opponent instead of substituting reference rules", () => { + expect(() => new LearnedRace([])).toThrow(/Select/); + expect( + () => + new LearnedRace([ + entries[0], + { + ...entries[1], + checkpoint: { ...entries[1].checkpoint, driving: "old" }, + }, + ]), + ).toThrow(/contract/); +}); + +it("applies human commands on the same clock while the saved opponent uses its own policy", () => { + const session = new LearnedRace([entries[0]], true); + const before = session.snapshots().map((p) => p.weights); + for (let i = 0; i < 240; i++) session.step(7); + expect(session.race.drivers[0].world.car.speed).toBeGreaterThan(5); + expect(session.race.drivers[0].world.ticks).toBe( + session.race.drivers[1].world.ticks, + ); + const speed = session.race.drivers[0].world.car.speed; + for (let i = 0; i < 20; i++) session.step(1); + expect(session.race.drivers[0].world.car.speed).toBeLessThan(speed); + expect(session.snapshots().map((p) => p.weights)).toEqual(before); + session.dispose(); +}); + + +it.each([false,true])('uses ghost mode for learned races, including human=%s', human => { + const session=new LearnedRace(human ? [entries[0]] : entries,human); + try {expect(session.race.ghost).toBe(true);} finally {session.dispose();} +}); diff --git a/packages/demo-car-circuit/test/q-training.test.ts b/packages/demo-car-circuit/test/q-training.test.ts new file mode 100644 index 0000000..d2e01ed --- /dev/null +++ b/packages/demo-car-circuit/test/q-training.test.ts @@ -0,0 +1,43 @@ +import { expect, it } from 'vitest'; +import * as tf from '@tensorflow/tfjs'; +import { LearnedDriver } from '../src/racing/learned-driver'; +import { RacingQEnvironment, trainQDriver } from '../src/racing/q-training'; +import { LearnedRace } from '../src/racing/learned-race'; + +it.each(['dqn','double-dqn'] as const)('trains %s and reloads its actual weights into frozen racing opponents', async algorithm=>{ + await tf.setBackend('cpu'); + const driver=new LearnedDriver(11,algorithm), before=driver.exportCheckpoint();driver.dispose(); + const trained=await trainQDriver(before,{transitions:64}); + expect(trained.algorithm).toBe(algorithm);expect(trained.samples).toBe(64);expect(trained.updates).toBeGreaterThan(0); + expect(trained.weights).not.toEqual(before.weights); + const race=new LearnedRace([{id:'one',name:'one',model:'race',checkpoint:trained},{id:'two',name:'two',model:'sedan-sports',checkpoint:trained}]); + try { + const snapshots=race.snapshots();for(let i=0;i<200;i++)race.step(); + expect(race.snapshots().map(p=>p.weights)).toEqual(snapshots.map(p=>p.weights)); + expect(race.snapshots().map(p=>p.algorithm)).toEqual([algorithm,algorithm]); + }finally{race.dispose();} +}); +it('uses the shared nine actions and deterministic training starts',()=>{ + const a=new RacingQEnvironment(29),b=new RacingQEnvironment(29); + expect(a.actions).toBe(9);expect(a.observe()).toHaveLength(20); + for(let i=0;i<50;i++){a.step(7);b.step(7);expect(a.observe()).toEqual(b.observe());expect(a.reward()).toBe(b.reward());if(a.done()){a.reset();b.reset();}} + expect(()=>a.step(9)).toThrow(); +}); +it('keeps a recoverable off-road excursion alive until the common race rescue',()=>{ + const env=new RacingQEnvironment(11),d=env.race.drivers[0]; + d.world.car.x=1000;d.world.car.z=1000;d.world.car.speed=0; + env.step(4); + expect(env.terminated()).toBe(false);expect(env.truncated()).toBe(false); + for(let i=1;i<51;i++)env.step(4); + expect(d.rescues).toBe(1);expect(d.penaltySeconds).toBeGreaterThanOrEqual(7); + expect(env.done()).toBe(false); +}); +it('collects the traffic phase with three frozen references and the same physics clock',()=>{ + const env=new RacingQEnvironment(11,true); + expect(env.race.drivers).toHaveLength(4); + const before=env.race.drivers.slice(1).map(d=>[d.world.car.x,d.world.car.z]); + env.step(7); + expect(env.race.elapsedTicks).toBe(6); + expect(env.observe()).toHaveLength(20); + expect(env.race.drivers.slice(1).map(d=>[d.world.car.x,d.world.car.z])).not.toEqual(before); +}); diff --git a/packages/demo-car-circuit/test/racing-driving.test.ts b/packages/demo-car-circuit/test/racing-driving.test.ts new file mode 100644 index 0000000..64527e2 --- /dev/null +++ b/packages/demo-car-circuit/test/racing-driving.test.ts @@ -0,0 +1,42 @@ +import { it, expect } from "vitest"; +import { DrivingWorld, DRIVING_CONTRACT } from "../src/racing/driving"; + +it("accelerates, brakes and advances on the public fixed-step contract", () => { + const world = new DrivingWorld(); + const start = { ...world.car }; + for (let i = 0; i < 60; i++) world.step(7); + expect(world.car.speed).toBeGreaterThan(5); + expect( + Math.hypot(world.car.x - start.x, world.car.z - start.z), + ).toBeGreaterThan(2); + const speed = world.car.speed; + for (let i = 0; i < 20; i++) world.step(1); + expect(world.car.speed).toBeLessThan(speed); + expect(DRIVING_CONTRACT.actionCount).toBe(9); +}); +it("repeats the same trajectory with the same commands", () => { + const a = new DrivingWorld(), + b = new DrivingWorld(); + for (let i = 0; i < 100; i++) { + a.step(i < 50 ? 7 : 8); + b.step(i < 50 ? 7 : 8); + } + expect(a.car).toEqual(b.car); + expect(() => a.step(42)).toThrow(); +}); + +it('can recover from a stationary off-road position', () => { + const world = new DrivingWorld(); + world.car.z -= 12; + for (let i=0;i<60;i++) world.step(7); + expect(world.car.speed).toBeGreaterThan(1); +}); + + +it.each([-1, 1])('contains a car hitting boundary side %s and dissipates impact speed', side => { + const world = new DrivingWorld(), p = world.track.sample(0.1); + Object.assign(world.car, {x:p.x-Math.sin(p.angle)*5.5*side, z:p.z+Math.cos(p.angle)*5.5*side, angle:p.angle+side*Math.PI/2, speed:20}); + world.step(7); + expect(world.track.nearest(world.car.x,world.car.z).distance).toBeLessThanOrEqual(5.576); + expect(world.car.speed).toBeLessThan(2); +}); diff --git a/packages/demo-car-circuit/test/racing-garage.test.ts b/packages/demo-car-circuit/test/racing-garage.test.ts new file mode 100644 index 0000000..34f78c6 --- /dev/null +++ b/packages/demo-car-circuit/test/racing-garage.test.ts @@ -0,0 +1,31 @@ +import { expect, it } from "vitest"; +import { loadGarage } from "../src/racing/garage"; +import { saveDriver } from "../src/racing/training"; +import { LearnedDriver } from "../src/racing/learned-driver"; +it("keeps a saved local driver available when bundled assets fail", async () => { + let data: string | null = null; + const storage = { + getItem: () => data, + setItem: (_key: string, value: string) => { + data = value; + }, + }; + const driver = new LearnedDriver(11); + saveDriver( + { + id: "local-one", + name: "Local one", + checkpoint: driver.exportCheckpoint(), + reports: [], + }, + storage, + ); + const garage = await loadGarage({ + storage, + base: "/", + fetcher: async () => ({ ok: false, json: async () => null }), + }); + expect(garage.drivers.map((d) => d.id)).toEqual(["local-one"]); + expect(garage.errors).toHaveLength(3); + driver.dispose(); +}); diff --git a/packages/demo-car-circuit/test/racing-learning.test.ts b/packages/demo-car-circuit/test/racing-learning.test.ts new file mode 100644 index 0000000..4cb1c1d --- /dev/null +++ b/packages/demo-car-circuit/test/racing-learning.test.ts @@ -0,0 +1,139 @@ +import { expect, it } from "vitest"; +import { RaceWorld } from "../src/racing/race"; +import { observeDriver, OBSERVATION_SIZE } from "../src/racing/observations"; +import { LearnedDriver } from "../src/racing/learned-driver"; + +it("uses the same finite observation schema with solo and traffic worlds", () => { + for (const count of [1, 4]) { + const race = new RaceWorld({ count }); + expect(observeDriver(race)).toHaveLength(OBSERVATION_SIZE); + expect(observeDriver(race).every(Number.isFinite)).toBe(true); + } +}); +it("learns, serializes actual weights, and reloads identical frozen decisions", async () => { + const driver = new LearnedDriver(11); + const observation = observeDriver(new RaceWorld()); + const before = driver.exportCheckpoint(); + await driver.learn( + Array.from({ length: 32 }, () => observation), + Array(32).fill(7), + 15, + ); + const saved = driver.exportCheckpoint(); + expect(saved.weights).not.toEqual(before.weights); + const loaded = LearnedDriver.fromCheckpoint( + JSON.parse(JSON.stringify(saved)), + ); + expect(loaded.action(observation)).toBe(driver.action(observation)); + expect(loaded.exportCheckpoint().weights).toEqual(saved.weights); + expect(saved.updates).toBeGreaterThan(0); + driver.dispose(); + loaded.dispose(); +}); +it("rejects old contracts and malformed weight payloads before loading", () => { + const driver = new LearnedDriver(11), + saved = driver.exportCheckpoint(); + expect(() => + LearnedDriver.fromCheckpoint({ ...saved, driving: "constant-speed-v1" }), + ).toThrow(/contract/i); + expect(() => LearnedDriver.fromCheckpoint({ ...saved, weights: [] })).toThrow( + /weights/i, + ); + driver.dispose(); +}); + +import { readFileSync } from "node:fs"; +import { + evaluateDriver, + listDrivers, + saveDriver, +} from "../src/racing/training"; +it("completes a race using persisted learned weights without changing them", async () => { + const checkpoint = JSON.parse( + readFileSync( + new URL("../src/public/drivers/driver-11.json", import.meta.url), + "utf8", + ), + ); + const driver = LearnedDriver.fromCheckpoint(checkpoint); + const before = driver.exportCheckpoint().weights; + const result = await evaluateDriver(driver, { seed: 101 }); + expect(result.laps).toBe(3); + expect(result.completed).toBe(true); + expect(driver.exportCheckpoint().weights).toEqual(before); + driver.dispose(); +}, 30000); +it("round-trips local driver metadata and preserves the garage on a quota failure", () => { + let value: string | null = null; + const storage = { + getItem: () => value, + setItem: (_key: string, next: string) => { + value = next; + }, + }; + const driver = new LearnedDriver(11); + const saved = { + id: "my-driver", + name: "My driver", + checkpoint: driver.exportCheckpoint(), + reports: [], + }; + saveDriver(saved, storage); + expect(listDrivers(storage)).toEqual([saved]); + const before = value; + expect(() => + saveDriver( + { ...saved, id: "second" }, + { + ...storage, + setItem: () => { + throw new Error("quota"); + }, + }, + ), + ).toThrow("quota"); + expect(value).toBe(before); + expect(() => listDrivers({ getItem: () => "[null]" })).toThrow(/garage/); + driver.dispose(); +}); + +import { vi } from "vitest"; +import { trainDriver } from "../src/racing/training"; +it("does not publish an obsolete training world when cancelled during the update", async () => { + const driver = new LearnedDriver(11), + controller = new AbortController(); + const onWorld = vi.fn(), + onProgress = vi.fn(); + vi.spyOn(driver, "learn").mockImplementation(async () => { + controller.abort(); + return 0; + }); + await trainDriver(driver, { + seed: 11, + rounds: 1, + signal: controller.signal, + onWorld, + onProgress, + }); + expect(onWorld).not.toHaveBeenCalled(); + expect(onProgress).not.toHaveBeenCalled(); + driver.dispose(); +}); +it("rejects noninteger seeds before creating an unloadable checkpoint", () => { + expect(() => new LearnedDriver(11.5)).toThrow(/Seed/); +}); + +import * as tf from '@tensorflow/tfjs'; +it('keeps tensor usage stable across checkpoint exports and frozen inference',()=> { + const driver=new LearnedDriver(11),observation=observeDriver(new RaceWorld()); + driver.action(observation); + const before=tf.memory().numTensors; + for(let i=0;i<50;i++) {driver.exportCheckpoint();driver.action(observation);} + expect(tf.memory().numTensors).toBe(before); + driver.dispose(); +}); + +it('rejects archived race-V1 checkpoints after the boundary/recovery contract change', () => { + const old = JSON.parse(readFileSync(new URL('../src/public/reports/imitation-v1/driver-11.json',import.meta.url),'utf8')); + expect(() => LearnedDriver.fromCheckpoint(old)).toThrow(/contract/i); +}); diff --git a/packages/demo-car-circuit/test/racing-race.test.ts b/packages/demo-car-circuit/test/racing-race.test.ts new file mode 100644 index 0000000..f3036bc --- /dev/null +++ b/packages/demo-car-circuit/test/racing-race.test.ts @@ -0,0 +1,142 @@ +import { describe, expect, it } from "vitest"; +import { RaceWorld } from "../src/racing/race"; + +describe("shared racing rules", () => { + it("holds every car for the countdown then advances a common tick", () => { + const race = new RaceWorld({ count: 4 }); + const initial = race.drivers.map((d) => ({ ...d.world.car })); + for (let i = 0; i < 180; i++) race.step([7, 7, 7, 7]); + expect(race.drivers.map((d) => d.world.car)).toEqual(initial); + race.step([7, 7, 7, 7]); + expect(race.drivers.every((d) => d.world.ticks === 1)).toBe(true); + }); + it("rejects an invalid batch before any car moves", () => { + const race = new RaceWorld({ count: 2, countdown: 0 }); + expect(() => race.step([7, 9])).toThrow(); + expect(race.ticks).toBe(0); + expect(race.drivers[0].world.ticks).toBe(0); + }); + it("cannot count teleports or backwards start-line crossings as laps", () => { + const race = new RaceWorld({ count: 1, countdown: 0 }); + const d = race.drivers[0]; + for (const progress of [0.3, 0.6, 0.9, 0.01, 0.99, 0.01]) { + Object.assign(d.world.car, race.track.sample(progress)); + race.step([4]); + } + expect(d.laps).toBe(0); + }); + it("separates colliding cars and rescues stranded cars with an explicit penalty", () => { + const race = new RaceWorld({ count: 2, countdown: 0 }); + Object.assign(race.drivers[1].world.car, race.drivers[0].world.car); + race.step([4, 4]); + const [a, b] = race.drivers.map((d) => d.world.car); + expect(Math.hypot(a.x - b.x, a.z - b.z)).toBeGreaterThanOrEqual(2.39); + a.x = 1000; + for (let i = 0; i < 301; i++) race.step([4, 4]); + expect(race.drivers[0].rescues).toBe(1); + expect(race.drivers[0].penaltySeconds).toBe(7); + expect(race.track.nearest(a.x, a.z).distance).toBeLessThan(1); + }); +}); + +import { referenceAction } from "../src/racing/reference"; +it.each([false, true])( + "completes three ordered laps on track test=%s with a labelled rule-based reference", + (test) => { + const race = new RaceWorld({ count: 1, countdown: 0, test }); + while (!race.finished) + race.step(race.drivers.map((d) => referenceAction(d.world))); + expect(race.drivers[0].laps).toBe(3); + expect(race.drivers[0].finishSeconds).not.toBeNull(); + expect(race.standings[0].id).toBe(0); + }, +); + +it("ranks simultaneous identical finishes deterministically and freezes completed results", () => { + const race = new RaceWorld({ count: 2, countdown: 0 }); + for (const d of race.drivers) d.finishSeconds = 100; + expect(race.standings.map((d) => d.id)).toEqual([0, 1]); + race.step([7, 7]); + expect(race.ticks).toBe(0); +}); +it("runs four reference drivers on one common clock to completion", () => { + const race = new RaceWorld({ count: 4, countdown: 0 }); + while (!race.finished) + race.step(race.drivers.map((d) => referenceAction(d.world))); + expect(race.drivers.every((d) => d.laps === 3)).toBe(true); + expect(race.standings.map((d) => d.finishSeconds)).toEqual( + race.standings.map((d) => d.finishSeconds).sort((a, b) => a! - b!), + ); +}); + +it("ranks the front grid ahead of the rear row across the start-line wrap", () => { + const race = new RaceWorld({ count: 4 }); + expect( + race.standings + .slice(0, 2) + .map((d) => d.id) + .sort(), + ).toEqual([0, 1]); +}); + + +it('rescues prolonged immobilization on the road, but does not rescue a moving off-road car', () => { + const stopped = new RaceWorld({countdown:0}); + for(let i=0;i<300;i++) stopped.step([4]); + expect(stopped.drivers[0].rescues).toBe(1); + expect(stopped.drivers[0].penaltySeconds).toBe(5); + + const moving = new RaceWorld({countdown:0}), d=moving.drivers[0]; + for(let i=0;i<360;i++) { + const p=moving.track.sample(i/moving.track.length*0.08); + Object.assign(d.world.car,{x:p.x-Math.sin(p.angle)*5,z:p.z+Math.cos(p.angle)*5,angle:p.angle,speed:0}); + moving.step([4]); + } + expect(d.rescues).toBe(0); + expect(d.penaltySeconds).toBe(2); +}); + + +it('freezes the finish before a same-tick immobilization rescue can alter the result', () => { + const race=new RaceWorld({countdown:0}), d=race.drivers[0]; + const p=race.track.sample(1-0.000001); + Object.assign(d.world.car,{x:p.x,z:p.z,angle:p.angle,speed:0.1}); + d.lastProgress=p.progress;d.gates=59;d.laps=2;d.stationaryTicks=299; + d.motionAnchor={x:p.x,z:p.z}; + race.step([4]); + expect(d.laps).toBe(3); + expect(d.finishSeconds).not.toBeNull(); + expect(d.rescues).toBe(0); + expect(d.penaltySeconds).toBe(0); +}); + + +it('keeps colliding cars separated when one is pinned against a rail', () => { + const race = new RaceWorld({count:2,countdown:0}), p=race.track.sample(0.1); + race.drivers.forEach((d,i) => Object.assign(d.world.car,{x:p.x-Math.sin(p.angle)*(i?4:5.57),z:p.z+Math.cos(p.angle)*(i?4:5.57),angle:p.angle,speed:0})); + race.step([4,4]); + const [a,b]=race.drivers.map(d=>d.world.car); + expect(Math.hypot(a.x-b.x,a.z-b.z)).toBeGreaterThanOrEqual(2.39); + for(const d of race.drivers) expect(race.track.nearest(d.world.car.x,d.world.car.z).distance).toBeLessThanOrEqual(5.576); + expect(race.drivers.map(d=>d.collisions)).toEqual([2,1]); +}); + + +it('lets ghost cars overlap without pushing or slowing each other', () => { + const race = new RaceWorld({count:2,countdown:0,ghost:true}); + const solo = new RaceWorld({countdown:0}); + for(const d of race.drivers) Object.assign(d.world.car,solo.drivers[0].world.car); + for(let i=0;i<90;i++) {race.step([7,7]);solo.step([7]);} + for(const d of race.drivers) { + expect(d.world.car).toEqual(solo.drivers[0].world.car); + expect(d.collisions).toBe(0); + } +}); +it('keeps rail collisions active in ghost races', () => { + const race = new RaceWorld({countdown:0,ghost:true}), d=race.drivers[0], p=race.track.sample(.1); + Object.assign(d.world.car,{x:p.x-Math.sin(p.angle)*5.5,z:p.z+Math.cos(p.angle)*5.5,angle:p.angle+Math.PI/2,speed:20}); + race.step([7]); + expect(race.track.nearest(d.world.car.x,d.world.car.z).distance).toBeLessThanOrEqual(5.576); + expect(d.world.car.speed).toBeLessThan(2); + expect(d.collisions).toBe(1); +}); diff --git a/packages/demo-car-circuit/test/track.test.ts b/packages/demo-car-circuit/test/track.test.ts index ab8fd45..add2bd9 100644 --- a/packages/demo-car-circuit/test/track.test.ts +++ b/packages/demo-car-circuit/test/track.test.ts @@ -54,3 +54,8 @@ describe('OvalTrack', () => { expect(track.totalLength).toBeLessThan(60); }); }); + +it('rejects points far beyond the end of a straight even when collinear', () => { + const track = new OvalTrack(); + expect(track.isOnTrack(100, 4)).toBe(false); +}); diff --git a/packages/web/components/demo-catalog.tsx b/packages/web/components/demo-catalog.tsx new file mode 100644 index 0000000..3a5263f --- /dev/null +++ b/packages/web/components/demo-catalog.tsx @@ -0,0 +1,10 @@ +import demos from '../data/demos.json' + +export default function DemoCatalog() { + return <> +

{demos.length} browser demos share this catalogue with the homepage and static build.

+ + {demos.map(demo=>)} +
DemoMethodsRun locally
{demo.title}

{demo.description}

{demo.algos}pnpm --filter {demo.pkg} dev
+ +} diff --git a/packages/web/components/demos.tsx b/packages/web/components/demos.tsx index 88a69a0..a99fc94 100644 --- a/packages/web/components/demos.tsx +++ b/packages/web/components/demos.tsx @@ -1,64 +1,4 @@ -import { MobileInferenceBadge } from './mobile-inference-badge' -const DEMOS = [ - { - slug: 'maze', - title: 'Maze', - description: 'A low-poly humanoid trains in a Rapier 3D arena with prefab walls, sensor rays, doors, and moving hazards.', - tech: 'R3F · Rapier', - algos: 'Q-Table · DQN · PPO', - accent: '#22c55e', - featured: true, - }, - { - slug: 'cartpole', - title: 'CartPole', - description: 'Classic pole-balancing benchmark with Euler physics. Converges fast.', - tech: '2D Canvas', - algos: 'DQN · PPO', - accent: '#3b82f6', - }, - { - slug: 'mountaincar', - title: 'MountainCar', - description: 'Sparse reward challenge. Agent discovers the counterintuitive momentum strategy.', - tech: '2D Canvas', - algos: 'DQN · PPO', - accent: '#f59e0b', - }, - { - slug: 'cartpole-3d', - title: 'CartPole 3D', - description: 'Classic CartPole rendered in 3D with React Three Fiber. Metallic materials and shadows.', - tech: 'R3F', - algos: 'DQN · PPO', - accent: '#6366f1', - }, - { - slug: 'car-circuit', - title: 'Car Circuit', - description: 'A 3D car learns to drive an oval circuit. Chase cam, minimap, trail, 1×–50× speed.', - tech: 'R3F', - algos: 'DQN · PPO', - accent: '#ec4899', - }, - { - slug: 'drone-navigation', - title: 'Drone Navigation', - description: 'A quadcopter learns to fly to moving target points. Rigid-body physics, 8 thrust combos, real gravity and torque. The hero demo.', - tech: 'R3F · Physics', - algos: 'DQN', - accent: '#a855f7', - }, - { - slug: 'maze-3d', - title: 'Maze 3D', - description: 'A robot navigates a 3D maze to find keys, avoid traps, and reach the exit. Raycast observations, pathfinding challenge.', - tech: 'R3F', - algos: 'DQN · Q-Table', - accent: '#14b8a6', - }, -] - +import DEMOS from '../data/demos.json' export default function Demos() { return (
@@ -74,11 +14,9 @@ export default function Demos() { Watch agents learn in real time

- Six interactive environments showing IgnitionAI in action. Each runs in your browser, trains locally, and demonstrates a different RL challenge. + {DEMOS.length} interactive environments showing IgnitionAI in action. Each runs in your browser. Circuit Racing supports keyboard play against learned drivers; the other environments explore reinforcement learning.

-
- -
+ {/* Demo grid */} diff --git a/packages/web/components/features-02.tsx b/packages/web/components/features-02.tsx index 3692b32..1fec742 100644 --- a/packages/web/components/features-02.tsx +++ b/packages/web/components/features-02.tsx @@ -1,3 +1,4 @@ +import DEMOS from '../data/demos.json' import Particles from './particles' import Highlighter, { HighlighterItem } from './highlighter' @@ -16,7 +17,7 @@ export default function Features02() { {/* Section header */}

Everything you need to ship RL.

-

Three algorithms, auto-configuration, ONNX export, HuggingFace storage, and five working demos. All TypeScript, all open source.

+

Three algorithms, auto-configuration, ONNX export, HuggingFace storage, and {DEMOS.length} working demos. All TypeScript, all open source.

{/* Highlighted boxes */} @@ -386,9 +387,9 @@ export default function Features02() { -

Five working demos

+

{DEMOS.length} working demos

-

GridWorld, CartPole, MountainCar, CartPole 3D, and Car Circuit. Clone, run, learn.

+

{DEMOS.map(demo => demo.title).join(', ')}. Clone, run, learn.

diff --git a/packages/web/content/_meta.js b/packages/web/content/_meta.js index 085e79d..9688dc5 100644 --- a/packages/web/content/_meta.js +++ b/packages/web/content/_meta.js @@ -1,6 +1,7 @@ export default { index: 'Introduction', quickstart: 'Quickstart', + demos: 'Demo catalogue', algorithms: 'Algorithms', 'how-it-works': 'How it works', api: 'API Reference', diff --git a/packages/web/content/algorithms/dqn.mdx b/packages/web/content/algorithms/dqn.mdx index 484344b..2250d8f 100644 --- a/packages/web/content/algorithms/dqn.mdx +++ b/packages/web/content/algorithms/dqn.mdx @@ -5,7 +5,7 @@ description: A pedagogical explanation of how DQN works in IgnitionAI — replay # DQN — Deep Q-Network -DQN is the first algorithm you should try. It's a good default on almost any discrete-action environment, it's sample-efficient thanks to its replay buffer, and it's the most battle-tested algorithm in modern RL. Most of the ML-Agents demos you've seen in Unity use a DQN variant. +DQN learns action values for discrete-action environments using a replay buffer and a target network. Its results depend on the observations, reward design and training budget. This page is deliberately verbose. By the end of it, you should understand *why* DQN works, not just how to call `env.train('dqn')`. @@ -53,7 +53,7 @@ In IgnitionAI, the default buffer size is **10 000 transitions**, and training s We said above that using the same network to predict *and* compute the target leads to instability — imagine trying to hit a bullseye that moves every time you pull the bow. DQN's fix is to keep a **second copy of the network** — the *target network* — that is updated less frequently. The target network is used for computing `max_a' Q(s', a')`, so the target is stable for a while. -In IgnitionAI, the target network is synced to the main network every `targetUpdateFrequency` steps. The default is **1000 steps** (a few hundred episodes on most envs). You can tune this lower for faster-learning envs or higher for more stable training. +In IgnitionAI, the target network is synced to the main network every `targetUpdateFrequency` steps. The default is **100 training updates** through `IgnitionEnv`, or **1000** when constructing `DQNAgent` directly. You can tune this lower for faster-learning envs or higher for more stable training. ### 3. Epsilon-greedy exploration @@ -62,28 +62,50 @@ A greedy policy (always pick the argmax Q-value) will get stuck early. The first `ε` starts high (almost pure exploration) and decays over time to a small floor (almost pure exploitation). In IgnitionAI: - `epsilon = 1.0` at the start (100% random) -- Every episode, `epsilon *= 0.995` (half-life of ~138 episodes) +- Every successful training update, `epsilon *= 0.995` (half-life of ~138 updates) - `minEpsilon = 0.01` is the floor (1% random forever, to avoid hard lock-in) > **A common mistake**: if you set `minEpsilon = 0`, the agent will eventually stop exploring entirely and can't recover from misleading early estimates. Always leave a small epsilon floor. ## Default hyperparameters -These are the exact values IgnitionAI uses when you call `env.train('dqn')` with no config override. Source: `packages/backend-tfjs/src/agents/dqn.ts`. +These are the values used by `env.train('dqn')`, from `packages/backend-tfjs/src/defaults.ts`. Direct `DQNAgent` construction uses `[24, 24]` hidden layers and a target update frequency of 1000 instead. | Hyperparameter | Default | What it controls | |---|---|---| -| `hiddenLayers` | `[24, 24]` | Two hidden layers of 24 units each. A tiny MLP that fits CartPole-class problems. | +| `hiddenLayers` | `[64, 64]` | Two hidden layers of 64 units each. | | `lr` | `0.001` | Adam learning rate. | | `gamma` | `0.99` | Discount factor. | | `epsilon` | `1.0` | Starting exploration rate (pure random). | -| `epsilonDecay` | `0.995` | Multiplicative decay applied every episode. | +| `epsilonDecay` | `0.995` | Multiplicative decay applied every training update. | | `minEpsilon` | `0.01` | Floor — exploration never drops below 1%. | | `batchSize` | `32` | Minibatch size sampled from the replay buffer per update. | | `memorySize` | `10000` | Ring-buffer capacity for experience replay. | -| `targetUpdateFrequency` | `1000` | Steps between target network syncs. | +| `targetUpdateFrequency` | `100` | Training updates between target network syncs. | | `backend` | `'auto'` | TF.js backend — auto-selects WebGPU → WebGL → WASM → CPU. | +## Double DQN + +Select Double DQN through the same public API: + +```ts +env.train('double-dqn', { backend: 'cpu' }); +// Direct construction: new DQNAgent({ inputSize, actionSize, doubleQ: true }) +``` + +DQN uses the maximum next-state value from the target network. Double DQN instead selects an action with the online network and evaluates that action with the target network: + +```text +nextAction = argmax_a Q_online(nextState, a) +target = reward + gamma * Q_target(nextState, nextAction) +``` + +Both use only the reward after a true termination and preserve bootstrap after a time-limit truncation. Replay, optimization and target synchronization are otherwise shared. This separation follows [van Hasselt, Guez and Silver, Deep Reinforcement Learning with Double Q-learning](https://arxiv.org/abs/1509.06461). It does not guarantee better results on every environment. + +Circuit Racing exposes both methods in its training selector. Its [fixed-budget racing comparison](/demos/car-circuit/reports/racing-q-v3/index.html) includes every seed, failure and final checkpoint. + +Provider-based saves include the effective `algorithm` (`dqn` or `double-dqn`) in metadata. Inference uses greedy action selection for both. To resume training, construct the matching algorithm before loading: the current storage API loads weights, not the algorithm choice or optimizer/replay state. Existing DQN calls retain their default behavior. + ## Tuning guide — which knobs to turn and in what order If DQN is working, don't touch anything. If it isn't, tune in this order: diff --git a/packages/web/content/demos.mdx b/packages/web/content/demos.mdx new file mode 100644 index 0000000..5153cd8 --- /dev/null +++ b/packages/web/content/demos.mdx @@ -0,0 +1,16 @@ +--- +title: Demo catalogue +description: The same demo routes, methods and package names used by the gallery and static build. +--- + +import DemoCatalog from '../components/demo-catalog' + +# Demo catalogue + +Circuit Racing is the featured desktop keyboard experience: import real 3D vehicles, train and save neural drivers, race frozen checkpoints and drive against them. Supplied imitation drivers include their evaluation failures; their competence is measured rather than assumed. + + + +The catalogue is maintained in `packages/web/data/demos.json`. The build consumes it directly. Target Chasing is not included: its build compatibility has not been validated for this catalogue. + +The [oval Circuit tutorial](/docs/tutorials/car-circuit) describes the legacy constant-speed teaching environment. Its checkpoints and seven observations are incompatible with the racing demo's versioned twenty observations and nine driving actions. diff --git a/packages/web/content/tutorials/car-circuit.mdx b/packages/web/content/tutorials/car-circuit.mdx index 0a03b34..abc836c 100644 --- a/packages/web/content/tutorials/car-circuit.mdx +++ b/packages/web/content/tutorials/car-circuit.mdx @@ -5,6 +5,8 @@ description: The hero demo as a tutorial. A 3D car learns to drive an oval circu # Car Circuit +> This tutorial uses the legacy oval teaching environment. The live [Circuit Racing demo](/demos/car-circuit/) now has imported vehicles, nine driving actions and twenty observations. Its learned checkpoints are incompatible with this example; see the [current catalogue](/docs/demos). + This tutorial is the most ambitious one we ship. By the end you'll have a 3D car driving an oval circuit under a DQN policy you trained yourself, a chase camera that follows the car, a minimap overlay, and a speed slider from 1× to 50×. It's also the tutorial most likely to take longer than the estimate — budget real time for it. Estimated time: **50–75 minutes**. @@ -260,7 +262,7 @@ Drag it from 1 to 50 and watch the car go from a slow crawl to a blur. ## Next steps - **[Export to Unity via ONNX](/docs/tutorials/onnx-unity)** — take the car policy you just trained and ship it to a Unity Sentis project. -- **The real demo** — `pnpm --filter demo-car-circuit dev` in the monorepo runs the full polished version with minimap, HUD, trail, and pre-trained weights. +- **The real demo** — `pnpm --filter demo-car-circuit dev` in the monorepo runs Circuit Racing with imported vehicles, local learned checkpoints and frozen-policy races. --- diff --git a/packages/web/data/demos.json b/packages/web/data/demos.json new file mode 100644 index 0000000..2df3759 --- /dev/null +++ b/packages/web/data/demos.json @@ -0,0 +1,91 @@ +[ + { + "slug": "car-circuit", + "title": "Circuit Racing", + "description": "Train and save neural drivers, race their frozen checkpoints, or take the wheel. Two licensed 3D vehicles, three laps and shared arcade physics.", + "tech": "R3F", + "algos": "Imitation MLP · DQN · Double DQN", + "accent": "#e6ee58", + "pkg": "demo-car-circuit", + "dir": "packages/demo-car-circuit", + "featured": true, + "platform": "Desktop keyboard" + }, + { + "slug": "maze", + "title": "Maze", + "description": "A low-poly humanoid trains in a Rapier 3D arena with prefab walls, sensor rays, doors, and moving hazards.", + "tech": "R3F · Rapier", + "algos": "Q-Table · DQN · PPO", + "accent": "#22c55e", + "featured": false, + "pkg": "demo-maze", + "dir": "packages/demo-maze" + }, + { + "slug": "cartpole", + "title": "CartPole", + "description": "Classic pole-balancing benchmark with Euler physics.", + "tech": "2D Canvas", + "algos": "DQN · PPO", + "accent": "#3b82f6", + "pkg": "demo-cartpole", + "dir": "packages/demo-cartpole", + "featured": false + }, + { + "slug": "mountaincar", + "title": "MountainCar", + "description": "Sparse reward challenge. Explore the momentum needed to reach the hilltop.", + "tech": "2D Canvas", + "algos": "DQN · PPO", + "accent": "#f59e0b", + "pkg": "demo-mountaincar", + "dir": "packages/demo-mountaincar", + "featured": false + }, + { + "slug": "cartpole-3d", + "title": "CartPole 3D", + "description": "Classic CartPole rendered in 3D with React Three Fiber. Metallic materials and shadows.", + "tech": "R3F", + "algos": "DQN · PPO", + "accent": "#6366f1", + "pkg": "demo-cartpole-3d", + "dir": "packages/demo-cartpole-3d", + "featured": false + }, + { + "slug": "drone-navigation", + "title": "Drone Navigation", + "description": "A quadcopter learns to fly to moving target points. Rigid-body physics, 8 thrust combos, real gravity and torque.", + "tech": "R3F · Physics", + "algos": "DQN", + "accent": "#a855f7", + "pkg": "demo-drone-navigation", + "dir": "packages/demo-drone-navigation", + "featured": false + }, + { + "slug": "maze-3d", + "title": "Maze 3D", + "description": "A robot navigates a 3D maze to find keys, avoid traps, and reach the exit. Raycast observations, pathfinding challenge.", + "tech": "R3F", + "algos": "DQN · Q-Table", + "accent": "#14b8a6", + "pkg": "demo-maze-3d", + "dir": "packages/demo-maze-3d", + "featured": false + }, + { + "slug": "gridworld", + "pkg": "demo-gridworld", + "dir": "packages/demo-gridworld", + "title": "GridWorld", + "description": "A discrete navigation environment for exploring rewards and learned action values.", + "tech": "2D Grid", + "algos": "Q-Table · DQN · PPO", + "accent": "#06b6d4", + "featured": false + } +] diff --git a/packages/web/scripts/build-demos.mjs b/packages/web/scripts/build-demos.mjs index 3bf88cc..b82fbb6 100644 --- a/packages/web/scripts/build-demos.mjs +++ b/packages/web/scripts/build-demos.mjs @@ -6,9 +6,10 @@ * self-contained Next.js deployment with all demos embedded. */ import { execSync } from 'node:child_process' -import { cpSync, existsSync, mkdirSync, readdirSync, rmSync, writeFileSync } from 'node:fs' +import { cpSync, existsSync, mkdirSync, readdirSync, readFileSync, mkdtempSync, writeFileSync } from 'node:fs' import { dirname, join, resolve } from 'node:path' import { fileURLToPath } from 'node:url' +import { promoteDemos } from './promote-demos.mjs' const __dirname = dirname(fileURLToPath(import.meta.url)) const repoRoot = resolve(__dirname, '../../..') @@ -19,27 +20,16 @@ console.log('[build-demos] repoRoot:', repoRoot) console.log('[build-demos] webPublicDemos:', webPublicDemos) console.log('[build-demos] cwd:', process.cwd()) -const DEMOS = [ - { slug: 'maze', pkg: 'demo-maze', dir: 'packages/demo-maze' }, - { slug: 'gridworld', pkg: 'demo-gridworld', dir: 'packages/demo-gridworld' }, - { slug: 'cartpole', pkg: 'demo-cartpole', dir: 'packages/demo-cartpole' }, - { slug: 'mountaincar', pkg: 'demo-mountaincar', dir: 'packages/demo-mountaincar' }, - { slug: 'cartpole-3d', pkg: 'demo-cartpole-3d', dir: 'packages/demo-cartpole-3d' }, - { slug: 'car-circuit', pkg: 'demo-car-circuit', dir: 'packages/demo-car-circuit' }, - { slug: 'drone-navigation', pkg: 'demo-drone-navigation', dir: 'packages/demo-drone-navigation' }, - { slug: 'maze-3d', pkg: 'demo-maze-3d', dir: 'packages/demo-maze-3d' }, -] +const DEMOS = JSON.parse(readFileSync(new URL('../data/demos.json', import.meta.url), 'utf8')) function run(cmd, env) { console.log(`\n$ ${cmd}`) execSync(cmd, { stdio: 'inherit', cwd: repoRoot, env: { ...process.env, ...env } }) } -// Clean destination -if (existsSync(webPublicDemos)) { - rmSync(webPublicDemos, { recursive: true, force: true }) -} -mkdirSync(webPublicDemos, { recursive: true }) +// Build into a fresh staging directory; preserve the previous local artifact. +mkdirSync(join(repoRoot, '.scratch'), { recursive: true }) +const staging = mkdtempSync(join(repoRoot, '.scratch/demos-stage-')) // --------------------------------------------------------------------------- // 1. Build the library packages first. @@ -75,7 +65,7 @@ for (const demo of DEMOS) { throw new Error(`[build-demos] expected ${distDir} to exist after build`) } - const outDir = join(webPublicDemos, demo.slug) + const outDir = join(staging, demo.slug) console.log(`Copying ${distDir} → ${outDir}`) cpSync(distDir, outDir, { recursive: true }) } @@ -86,7 +76,10 @@ const manifest = { commit: process.env.VERCEL_GIT_COMMIT_SHA || process.env.GITHUB_SHA || 'local', demos: DEMOS.map((d) => d.slug), } -writeFileSync(join(webPublicDemos, 'manifest.json'), JSON.stringify(manifest, null, 2)) +writeFileSync(join(staging, 'manifest.json'), JSON.stringify(manifest, null, 2)) + +mkdirSync(dirname(webPublicDemos), { recursive: true }) +promoteDemos(staging, webPublicDemos, join(repoRoot, `.scratch/demos-backup-${Date.now()}`)) console.log('\n✓ All demos built and copied to packages/web/public/demos/') console.log('[build-demos] final listing:', readdirSync(webPublicDemos)) diff --git a/packages/web/scripts/promote-demos.mjs b/packages/web/scripts/promote-demos.mjs new file mode 100644 index 0000000..d3d0d05 --- /dev/null +++ b/packages/web/scripts/promote-demos.mjs @@ -0,0 +1,16 @@ +import { existsSync, renameSync } from 'node:fs' + +/** Promote generated output while keeping the previous catalogue recoverable. */ +export function promoteDemos(staging, target, backup, io = { existsSync, renameSync }) { + const hadPrevious = io.existsSync(target) + if (hadPrevious) io.renameSync(target, backup) + try { + io.renameSync(staging, target) + } catch (error) { + if (hadPrevious) { + try { io.renameSync(backup, target) } + catch (restoreError) { throw new AggregateError([error, restoreError], `Promotion failed; restore previous demos from ${backup}`) } + } + throw error + } +} diff --git a/packages/web/test/catalogue.test.ts b/packages/web/test/catalogue.test.ts new file mode 100644 index 0000000..8da5759 --- /dev/null +++ b/packages/web/test/catalogue.test.ts @@ -0,0 +1,13 @@ +import type { PathLike } from 'node:fs'; +import { expect,it } from 'vitest'; +import { promoteDemos } from '../scripts/promote-demos.mjs'; +it('restores the previous public demos when staging promotion fails',()=> { + const files=new Map([['public','previous'],['staging','new']]); + const io={existsSync:(path:PathLike)=>files.has(String(path)),renameSync:(fromPath:PathLike,toPath:PathLike)=>{ + const from=String(fromPath),to=String(toPath); + if(from==='staging')throw new Error('injected promotion failure'); + files.set(to,files.get(from)!);files.delete(from); + }}; + expect(()=>promoteDemos('staging','public','backup',io)).toThrow('promotion failure'); + expect(files.get('public')).toBe('previous');expect(files.get('staging')).toBe('new'); +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1c188b4..c350f49 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -141,6 +141,9 @@ importers: '@react-three/fiber': specifier: ^9.1.2 version: 9.1.2(@types/react@19.1.2)(immer@11.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(three@0.162.0) + '@tensorflow/tfjs': + specifier: 4.22.0 + version: 4.22.0(encoding@0.1.13)(seedrandom@3.0.5) react: specifier: ^19.0.0 version: 19.1.0 diff --git a/scripts/compare-racing-q.mts b/scripts/compare-racing-q.mts new file mode 100644 index 0000000..4b55653 --- /dev/null +++ b/scripts/compare-racing-q.mts @@ -0,0 +1,34 @@ +import { createRequire } from 'node:module'; +import { mkdir, writeFile, readFile } from 'node:fs/promises'; +import { createHash } from 'node:crypto'; +import { execFileSync } from 'node:child_process'; +const require=createRequire(new URL('../packages/backend-tfjs/package.json',import.meta.url)); +const tf=require('@tensorflow/tfjs-node'); +import { LearnedDriver } from '../packages/demo-car-circuit/src/racing/learned-driver'; +const { trainQDriver } = createRequire(import.meta.url)('../packages/demo-car-circuit/src/racing/q-training.ts'); +import { evaluateDriver } from '../packages/demo-car-circuit/src/racing/training'; +import { Q_PROTOCOL } from '../packages/demo-car-circuit/src/racing/q-protocol'; +const folder='.scratch/circuit-racing/q-comparison-v3'; +await mkdir(folder,{recursive:true}); +const sourceFiles=['packages/demo-car-circuit/src/racing/q-training.ts','packages/demo-car-circuit/src/racing/q-protocol.ts','packages/demo-car-circuit/src/racing/learned-driver.ts','packages/demo-car-circuit/src/racing/training.ts','packages/demo-car-circuit/src/racing/driving.ts','packages/demo-car-circuit/src/racing/race.ts','packages/demo-car-circuit/src/racing/observations.ts','packages/demo-car-circuit/src/racing/reference.ts','packages/backend-tfjs/src/agents/dqn.ts','packages/backend-tfjs/src/model/BuildMLP.ts','packages/backend-tfjs/src/memory/ReplayBuffer.ts']; +const hashes=Object.fromEntries(await Promise.all(sourceFiles.map(async p=>[p,createHash('sha256').update(await readFile(p)).digest('hex')]))); +const manifest={protocol:Q_PROTOCOL,createdAt:new Date().toISOString(),node:process.version,tfjs:tf.version.tfjs,backend:tf.getBackend(),platform:process.platform,arch:process.arch,head:execFileSync('/usr/bin/git',['rev-parse','HEAD'],{encoding:'utf8'}).trim(),sourceHashes:hashes}; +await writeFile(`${folder}/protocol.json`,JSON.stringify(manifest,null,2),{flag:'wx'}); +for(const algorithm of ['dqn','double-dqn'] as const)for(const seed of Q_PROTOCOL.seeds){ + const initial=new LearnedDriver(seed,algorithm),start=performance.now(); + const checkpoint=await trainQDriver(initial.exportCheckpoint(),{onProgress:(p: {round:number})=>{if(p.round%5000===0)console.log(JSON.stringify({algorithm,seed,transitions:p.round,seconds:(performance.now()-start)/1000}));}}); + initial.dispose(); + const trainingSeconds=(performance.now()-start)/1000; + await writeFile(`${folder}/${algorithm}-${seed}.json`,JSON.stringify(checkpoint)); + const frozen=LearnedDriver.fromCheckpoint(checkpoint),before=JSON.stringify(checkpoint.weights),reports=[]; + const evaluationStart=performance.now(); + try{ + for(const test of [false,true])for(const traffic of [false,true])for(const evaluationSeed of Q_PROTOCOL.evaluationSeeds){ + reports.push(await evaluateDriver(frozen,{seed:evaluationSeed,test,traffic})); + } + if(JSON.stringify(frozen.exportCheckpoint().weights)!==before)throw new Error('Evaluation mutated weights'); + }finally{frozen.dispose();} + const report={algorithm,seed,trainingSeconds,evaluationSeconds:(performance.now()-evaluationStart)/1000,transitions:checkpoint.samples,updates:checkpoint.updates,backend:tf.getBackend(),reports}; + await writeFile(`${folder}/report-${algorithm}-${seed}.json`,JSON.stringify(report,null,2)); + console.log(JSON.stringify({algorithm,seed,success:reports.filter(r=>r.success).length,total:reports.length,trainingSeconds})); +} diff --git a/scripts/report-racing-q.mjs b/scripts/report-racing-q.mjs new file mode 100644 index 0000000..d7614e8 --- /dev/null +++ b/scripts/report-racing-q.mjs @@ -0,0 +1,43 @@ +import { createHash } from 'node:crypto'; +import { execFileSync } from 'node:child_process'; +import { readFile, writeFile, mkdir, copyFile } from 'node:fs/promises'; +const source='.scratch/circuit-racing/q-comparison-v3'; +const destination='packages/demo-car-circuit/src/public/reports/racing-q-v3'; +const manifest=JSON.parse(await readFile(`${source}/protocol.json`,'utf8')); +const reports=[]; +for(const algorithm of ['dqn','double-dqn'])for(const seed of manifest.protocol.seeds){ + const report=JSON.parse(await readFile(`${source}/report-${algorithm}-${seed}.json`,'utf8')); + if(report.algorithm!==algorithm||report.seed!==seed||report.reports.length!==20||report.transitions!==manifest.protocol.transitions||report.backend!==manifest.backend)throw Error('Incomplete or incompatible benchmark'); + reports.push(report); +} +await mkdir(destination,{recursive:true}); +const referencePath='packages/demo-car-circuit/src/racing/reference.ts'; +const reference=await readFile(referencePath); +if(!reference.equals(execFileSync('/usr/bin/git',['show',`${manifest.head}:${referencePath}`])))throw Error('Reference controller changed since recorded HEAD'); +const implementationCommit=execFileSync('/usr/bin/git',['rev-parse','HEAD'],{encoding:'utf8'}).trim(); +for(const [path,hash] of Object.entries(manifest.sourceHashes)){ + if(createHash('sha256').update(execFileSync('/usr/bin/git',['show',`${implementationCommit}:${path}`])).digest('hex')!==hash)throw Error(`Committed source mismatch: ${path}`); +} +const machine = process.platform === 'darwin' ? {cpu:execFileSync('/usr/sbin/sysctl',['-n','machdep.cpu.brand_string'],{encoding:'utf8'}).trim(),memoryBytes:Number(execFileSync('/usr/sbin/sysctl',['-n','hw.memsize'],{encoding:'utf8'}).trim()),observedAfterRun:true} : null; +const additionalProvenance={machine,implementationCommit,allRecordedSourcesVerifiedAtCommit:true,reference:{path:referencePath,sha256:createHash('sha256').update(reference).digest('hex'),verifiedIdenticalToRecordedHead:manifest.head,capturedAfterRun:true}}; +await writeFile(`${destination}/results.json`,JSON.stringify({manifest,additionalProvenance,reports},null,2)); +const mean=xs=>xs.reduce((a,b)=>a+b,0)/xs.length; +const std=xs=>Math.sqrt(mean(xs.map(x=>(x-mean(xs))**2))); +const stats=['dqn','double-dqn'].map(algorithm=>{ + const rows=reports.filter(r=>r.algorithm===algorithm), rates=rows.map(r=>r.reports.filter(e=>e.success).length/20*100), all=rows.flatMap(r=>r.reports); + return {algorithm,success:all.filter(r=>r.success).length,completed:all.filter(r=>r.completed).length,mean:mean(rates),std:std(rates),min:Math.min(...rates),max:Math.max(...rates),trainingSeconds:mean(rows.map(r=>r.trainingSeconds)),evaluationSeconds:mean(rows.map(r=>r.evaluationSeconds)),meanLaps:mean(all.map(r=>r.laps))}; +}); +const f=n=>n.toFixed(1); +const rows=reports.map(r=>`${r.algorithm}${r.seed}${r.reports.filter(e=>e.success).length}/20${r.reports.filter(e=>e.completed).length}/20${f(r.trainingSeconds)} s${f(r.evaluationSeconds)} sPoids`).join(''); +for(const r of reports)await copyFile(`${source}/${r.algorithm}-${r.seed}.json`,`${destination}/${r.algorithm}-${r.seed}.json`); +const html=`DQN / Double DQN — Circuit Racing +
← Circuit Racing

EXPÉRIENCE REPRODUCTIBLE · RACING Q-LEARNING V3

DQN et Double DQN,
à budget égal.

Cinq graines par méthode · 20 courses figées par pilote · 20 000 transitions d’entraînement · ${manifest.backend}, TensorFlow.js ${manifest.tfjs}

+
${stats.map(s=>`

${s.algorithm==='dqn'?'DQN':'Double DQN'}

${s.success}/100

courses réussies · ${s.completed}/100 terminées

Réussite par graine : moyenne ${f(s.mean)} %, écart-type ${f(s.std)} points ; ${f(s.min)}–${f(s.max)} %.

`).join('')}
+

Ces résultats décrivent ce circuit, ce curriculum et ce budget. Ils ne démontrent pas une supériorité générale de l’un des algorithmes. Les graines d’évaluation ne varient que légèrement le cap initial ; ces courses ne constituent pas 200 scénarios indépendants. Tous les checkpoints finaux et tous les échecs sont conservés.

+

Chaque graine, sans sélection

${rows}
MéthodeGraineRéussiesTerminéesEntraînementÉvaluationCheckpoint
+

Ce qui est identique

  • Réseau 20 → 32 → 32 → 9, ReLU et sorties Q linéaires ; Adam 0,001 ; replay 10 000 ; batch 32 ; gamma 0,99.
  • 20 000 décisions, chacune maintenue six ticks physiques de 1/60 s. Mise à jour toutes les quatre transitions et copie cible toutes les 100 mises à jour. Dernier checkpoint programmé ; aucune sélection sur l’évaluation.
  • Exploration, replay et initialisation pilotés par la graine. Pas de mélange aléatoire supplémentaire dans fit.
  • Entraînement sur Alpine Park : 10 000 décisions solo, puis 10 000 avec trois références figées ; départs variés sur la piste, vitesse initiale 4–12 m/s, épisodes limités à 600 décisions. Les sorties restent récupérables avec les mêmes remises en piste et pénalités que la course. Récompense de progression, checkpoints et pénalités. Aucun label ni remplacement par un pilote à règles.
  • Conduite et course V2 : barrières continues, collisions voiture/voiture et voiture/rail, sortie ralentie (+2 s), remise après immobilisation dans un rayon de 1 m pendant 5 s (+5 s). Les mêmes contraintes valent dans tous les modes.
  • Évaluation complète : cinq caps initiaux par circuit et par condition solo/trafic. Alpine Park et Harbour Test, trois tours, plafond 300 s. Trafic constitué de références à règles figées identiques pour les deux méthodes.
  • Réussite : trois tours, aucune remise en piste, pénalité ≤ 10 s. Une course terminée peut échouer à ce critère.
+

Temps et limites

Temps réels mesurés sur ${manifest.platform}/${manifest.arch}, Node ${manifest.node}${machine ? `, ${machine.cpu}, ${machine.memoryBytes/2**30} Gio` : ""}. La machine exécutait aussi la démo navigateur ; les temps ne proviennent pas d’une machine isolée. Le premier passage inclut davantage de démarrage à froid ; les temps ne servent pas de classement de vitesse. Les départs variés du curriculum d’entraînement diffèrent des départs de course arrêtés : les échecs de transfert restent mesurés.

Les reprises navigateur rechargent les poids et recréent optimiseur, replay et exploration. Ce benchmark utilise uniquement des entraînements neufs. Les poids de cette page sont des résultats expérimentaux ; leur présence ne garantit pas un adversaire compétent.

+

Télécharger les 200 résultats bruts, paramètres, versions et empreintes des sources

Reproduction : pnpm exec tsx --tsconfig scripts/tsconfig.racing.json scripts/compare-racing-q.mts, puis node scripts/report-racing-q.mjs. Le script refuse d’écraser un protocole existant ; déplacer le dossier de résultats avant une nouvelle expérience.

Calcul Double DQN : sélection online, évaluation cible, selon van Hasselt, Guez et Silver.

`; +await writeFile(`${destination}/index.html`,html); +console.log(JSON.stringify(stats,null,2)); diff --git a/scripts/train-racing.mts b/scripts/train-racing.mts new file mode 100644 index 0000000..fb05b25 --- /dev/null +++ b/scripts/train-racing.mts @@ -0,0 +1,68 @@ +import { createRequire } from "node:module"; +import { mkdir, writeFile, readFile } from "node:fs/promises"; +import { createHash } from "node:crypto"; +import { execFileSync } from "node:child_process"; +const require = createRequire( + new URL("../packages/backend-tfjs/package.json", import.meta.url), +); +const tf = require("@tensorflow/tfjs-node"); +import { LearnedDriver } from "../packages/demo-car-circuit/src/racing/learned-driver"; +import { + trainDriver, + evaluateDriver, +} from "../packages/demo-car-circuit/src/racing/training"; +import { LEARNING_PROTOCOL } from "../packages/demo-car-circuit/src/racing/learning-protocol"; +const seeds = (process.env.RACING_SEEDS ?? "11,29,47").split(",").map(Number); +const rounds = Number(process.env.RACING_ROUNDS ?? 16); +const folder = + process.env.RACING_OUTPUT ?? ".scratch/circuit-racing/learned-v2"; +await mkdir(folder, { recursive: true }); +const sourceFiles = ["driving", "race", "observations", "reference", "training", "learning-protocol", "learned-driver"].map(name => `packages/demo-car-circuit/src/racing/${name}.ts`); +const sourceHashes = Object.fromEntries(await Promise.all(sourceFiles.map(async path => [path, createHash("sha256").update(await readFile(path)).digest("hex")]))); +await writeFile(`${folder}/protocol.json`, JSON.stringify({ protocol: LEARNING_PROTOCOL, seeds, rounds, sourceHashes, head: execFileSync("/usr/bin/git", ["rev-parse", "HEAD"], {encoding:"utf8"}).trim(), createdAt:new Date().toISOString(), node:process.version, tfjs:tf.version.tfjs, backend:tf.getBackend(), platform:process.platform, arch:process.arch }, null, 2), {flag:"wx"}); +for (const seed of seeds) { + const driver = new LearnedDriver(seed), + start = Date.now(); + const untrained = await evaluateDriver(driver, { seed: 101 }); + await trainDriver(driver, { + seed, + rounds, + onProgress: (p) => + console.log( + JSON.stringify({ seed, ...p, seconds: (Date.now() - start) / 1000 }), + ), + }); + const checkpoint = driver.exportCheckpoint(); + await writeFile(`${folder}/driver-${seed}.json`, JSON.stringify(checkpoint)); + const frozen = LearnedDriver.fromCheckpoint( + JSON.parse(JSON.stringify(checkpoint)), + ); + const reports = []; + for (const test of [false, true]) + for (const traffic of [false, true]) + for (const evaluationSeed of LEARNING_PROTOCOL.evaluationSeeds) { + const report = await evaluateDriver(frozen, { + seed: evaluationSeed, + test, + traffic, + }); + reports.push(report); + console.log(JSON.stringify({ trainingSeed: seed, ...report })); + } + await writeFile( + `${folder}/report-${seed}.json`, + JSON.stringify( + { + protocol: LEARNING_PROTOCOL, + rounds, + untrained, + reports, + seconds: (Date.now() - start) / 1000, + }, + null, + 2, + ), + ); + frozen.dispose(); + driver.dispose(); +} diff --git a/scripts/tsconfig.racing.json b/scripts/tsconfig.racing.json new file mode 100644 index 0000000..6d86ffb --- /dev/null +++ b/scripts/tsconfig.racing.json @@ -0,0 +1,11 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "baseUrl": "..", + "paths": { + "@ignitionai/backend-tfjs": ["packages/backend-tfjs/src/index.ts"], + "@ignitionai/core": ["packages/core/src/index.ts"], + "@ignitionai/storage": ["packages/storage/src/index.ts"] + } + } +}