Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
elisim committed Mar 10, 2023
1 parent 3a87689 commit 980c266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/models/autoformer/test_modeling_autoformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def prepare_autoformer_inputs_dict(self, config):

past_time_features = floats_tensor([self.batch_size, _past_length, config.num_time_features])
past_values = floats_tensor([self.batch_size, _past_length])
past_observed_mask = floats_tensor([self.batch_size, _past_length])
past_observed_mask = floats_tensor([self.batch_size, _past_length]) > 0.5

# decoder inputs
future_time_features = floats_tensor([self.batch_size, config.prediction_length, config.num_time_features])
Expand Down

0 comments on commit 980c266

Please sign in to comment.