You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Numpy.Manipulation.cs 317 B

1234567891011121314
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Numerics;
  5. using System.Text;
  6. namespace Tensorflow.NumPy
  7. {
  8. public partial class np
  9. {
  10. public static NDArray squeeze(NDArray x1, Axis? axis = null)
  11. => new NDArray(array_ops.squeeze(x1, axis));
  12. }
  13. }