Divides x / y elementwise (using Python 2 division operator semantics). (deprecated)
tf.compat.v1.div(x,y,name=None)
Migrate to TF2
This function is deprecated in TF2. Prefer using the Tensor division operator,
tf.divide, or tf.math.divide, which obey the Python 3 division operator
semantics.
Description
This function divides x and y, forcing Python 2 semantics. That is, if x
and y are both integers then the result will be an integer. This is in
contrast to Python 3, where division with / is always a float while division
with // is always an integer.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[],[]]