| 108 | }; |
| 109 | |
| 110 | TEST_F(NNGradTest, SoftmaxGrad) { |
| 111 | TensorShape shape({32, 10}); |
| 112 | auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape)); |
| 113 | auto y = Softmax(scope_, x); |
| 114 | RunTest(x, shape, y, shape); |
| 115 | } |
| 116 | |
| 117 | TEST_F(NNGradTest, SoftmaxCrossEntropyWithLogitsGrad) { |
| 118 | TensorShape logits_shape({5, 3}); |
nothing calls this directly
no test coverage detected