Skip to content

Commit

Permalink
batch processing of the individual model
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Sep 10, 2024
1 parent 8957ca7 commit a46b20b
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions matsim/scenariogen/network/ref_model/individual.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
""" Reference model to fine tune individal links. This model does not use features and is not trasferable to other scenarios. """

# Each link has its own target speed

import jax.numpy as jnp

params = None

def score(params, inputs):
return params[inputs[0]]


def batch_loss(params, inputs, targets):
error = 0
inputs = inputs.astype(int)
for x, y in zip(inputs, targets):
preds = score(params, x)
error += (preds - y) ** 2

# Select parameters by index
preds = params[inputs].T

# Calculate the loss
error = jnp.sum((preds - targets) ** 2)

return error

0 comments on commit a46b20b

Please sign in to comment.