Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Archermmt committed Mar 6, 2024
1 parent 723452c commit 4b3a349
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def _call_runnable(
"""

input_names = [i["name"] for i in self.get_inputs()]
feed_dict = {i + ":0": msc_utils.cast_array(inputs[i["name"]]) for i in input_names}
feed_dict = {i + ":0": msc_utils.cast_array(inputs[i]) for i in input_names}
return runnable.run(self._tf_outputs, feed_dict)

def _device_enabled(self, device: str) -> bool:
Expand Down

0 comments on commit 4b3a349

Please sign in to comment.