We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47478e6 commit a180b88Copy full SHA for a180b88
pytensor/compile/builders.py
@@ -355,7 +355,7 @@ def __init__(
355
var_counts = {var: inputs.count(var) for var in inputs}
356
duplicated_inputs = [var for var, count in var_counts.items() if count > 1]
357
raise ValueError(
358
- f"There following variables were provided more than once as inputs to the OpFromGraph, resulting in an "
+ f"The following variables were provided more than once as inputs to the OpFromGraph, resulting in an "
359
f"invalid graph: {duplicated_inputs}. Use dummy variables or var.copy() to distinguish "
360
f"variables when creating the OpFromGraph graph."
361
)
0 commit comments