Vikas Kumar Gupta

Results 2 issues of Vikas Kumar Gupta

def huber_loss(labels, predictions, delta=1.0): residual = tf.abs(labels - predictions) def f1(): return 0.5 * tf.square(residual) def f2(): return delta * residual - 0.5 * tf.square(delta) return tf.cond(residual < delta, f1,...

I am getting the following error when doing prediction after deploying model in cloud In my local C:\Program Files (x86)\Google\Cloud SDK>gcloud ml-engine predict --model Deep_Wide --version v4 --json-instances C:\Users\vikas\PycharmProjects\TensorflowUScensusData\test.json {...