@@ -346,7 +346,7 @@ Tensor Tensor_reciprocal(Tensor self);
346346
347347These operations reduce a tensor to a single value or along a specified dimension. They are exposed via macros for a simpler API.
348348
349- #### Sum
349+ ### Sum
350350
351351** Usage:**
352352
@@ -358,9 +358,9 @@ Tensor sum_all = Tensor_sum(my_tensor);
358358Tensor sum_dim = Tensor_sum(my_tensor, 1 );
359359```
360360
361- ## ** Underlying Functions:** ` Tensor_sum_all(Tensor self) ` , ` Tensor_sum_dim(Tensor self, int dim) `
361+ #### ** Underlying Functions:** ` Tensor_sum_all(Tensor self) ` , ` Tensor_sum_dim(Tensor self, int dim) `
362362
363- #### Mean
363+ ### Mean
364364
365365** Usage:**
366366
@@ -372,9 +372,9 @@ Tensor mean_all = Tensor_mean(my_tensor);
372372Tensor mean_dim = Tensor_mean(my_tensor, 1 );
373373```
374374
375- ## ** Underlying Functions:** ` Tensor_mean_all(Tensor self) ` , ` Tensor_mean_dim(Tensor self, int dim) `
375+ #### ** Underlying Functions:** ` Tensor_mean_all(Tensor self) ` , ` Tensor_mean_dim(Tensor self, int dim) `
376376
377- #### Max
377+ ### Max
378378
379379** Usage:**
380380
@@ -388,9 +388,9 @@ Tensor max_vals = max_res.values;
388388Tensor max_indices = max_res.indices;
389389```
390390
391- ## ** Underlying Functions:** ` Tensor_max_all(Tensor self) ` , ` TensorMaxMinResult Tensor_max_dim(Tensor self, int dim) `
391+ #### ** Underlying Functions:** ` Tensor_max_all(Tensor self) ` , ` TensorMaxMinResult Tensor_max_dim(Tensor self, int dim) `
392392
393- #### Min
393+ ### Min
394394
395395** Usage:**
396396
@@ -402,9 +402,9 @@ Tensor min_val = Tensor_min(my_tensor);
402402TensorMaxMinResult min_res = Tensor_min(my_tensor, 1 );
403403```
404404
405- ## ** Underlying Functions:** ` Tensor_min_all(Tensor self) ` , ` TensorMaxMinResult Tensor_min_dim(Tensor self, int dim) `
405+ #### ** Underlying Functions:** ` Tensor_min_all(Tensor self) ` , ` TensorMaxMinResult Tensor_min_dim(Tensor self, int dim) `
406406
407- #### Argmax
407+ ### Argmax
408408
409409### ` Tensor_argmax `
410410
0 commit comments