Update run.py
Browse files
run.py
CHANGED
@@ -81,7 +81,11 @@ tot_google_scores = google_scores.sum().item()
|
|
81 |
input_size = validation_dataset.model_input_length()
|
82 |
|
83 |
# Models
|
84 |
-
model = Model(
|
|
|
|
|
|
|
|
|
85 |
actor = Actor(model=model, num_movers=num_movers,
|
86 |
num_neighbors_encoder=num_neighbors_encoder,
|
87 |
num_neighbors_action=num_neighbors_action,
|
|
|
81 |
input_size = validation_dataset.model_input_length()
|
82 |
|
83 |
# Models
|
84 |
+
model = Model(
|
85 |
+
input_size=input_size,
|
86 |
+
embedding_size=embedding_size,
|
87 |
+
decoder_input_size=params["decoder_input_size"]
|
88 |
+
)
|
89 |
actor = Actor(model=model, num_movers=num_movers,
|
90 |
num_neighbors_encoder=num_neighbors_encoder,
|
91 |
num_neighbors_action=num_neighbors_action,
|