Skip to content

Commit babfb02

Browse files
New line for better consistency
1 parent 098f597 commit babfb02

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/TensorFlowNET.Core/APIs/tf.nn.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ public static Tensor[] fused_batch_norm(Tensor x,
131131
public static Tensor max_pool(Tensor value, int[] ksize, int[] strides, string padding, string data_format = "NHWC", string name = null)
132132
=> nn_ops.max_pool(value, ksize, strides, padding, data_format: data_format, name: name);
133133

134-
public static Tensor in_top_k(Tensor predictions, Tensor targets, int k, string name = "InTopK") => gen_ops.in_top_k(predictions, targets, k, name);
134+
public static Tensor in_top_k(Tensor predictions, Tensor targets, int k, string name = "InTopK")
135+
=> gen_ops.in_top_k(predictions, targets, k, name);
135136

136137
public static Tensor[] top_k(Tensor input, int k = 1, bool sorted = true, string name = null)
137138
=> gen_nn_ops.top_kv2(input, k: k, sorted: sorted, name: name);

0 commit comments

Comments
 (0)