You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def get_problem():
"""Specifies a problem to run TF-Coder on. Edit this function!"""
# A dict mapping input variable names to input tensors.
inputs = {
'rows': [1, 2, 3],
}
# The corresponding output tensor.
output = [0, 100, 200]
# A list of relevant scalar constants, if any.
constants = [10, 1]
# An English description of the tensor manipulation.
description = 'subtract one and multiply by one hundred'
return inputs, output, constants, description
This problem will break and cause the Python environment to shut down: 2024-12-10 09:23:12.332684: F tensorflow/core/framework/tensor_shape.cc:356] Check failed: d >= 0 (0 vs. -1) Fatal Python error: Aborted
Is this some kind of compatibility issue? If so, which version of TensorFlow should be used?
The text was updated successfully, but these errors were encountered:
This problem will break and cause the Python environment to shut down:
2024-12-10 09:23:12.332684: F tensorflow/core/framework/tensor_shape.cc:356] Check failed: d >= 0 (0 vs. -1) Fatal Python error: Aborted
Is this some kind of compatibility issue? If so, which version of TensorFlow should be used?
The text was updated successfully, but these errors were encountered: