About 50 results
Open links in new tab
  1. python - What does .shape [] do in "for i in range (Y.shape [0 ...

    The shape attribute for numpy arrays returns the dimensions of the array. If Y has n rows and m columns, then Y.shape is (n,m). So Y.shape[0] is n.

  2. Difference between numpy.array shape (R, 1) and (R,)

    Shape n, expresses the shape of a 1D array with n items, and n, 1 the shape of a n-row x 1-column array. (R,) and (R,1) just add (useless) parentheses but still express respectively 1D and 2D array …

  3. What does shape[0] and shape[1] do in python? - Stack Overflow

    Jul 21, 2018 · In python shape[0] returns the dimension but in this code it is returning total number of set. Please can someone tell me work of shape[0] and shape[1]? Code: m_train = …

  4. arrays - what does numpy ndarray shape do? - Stack Overflow

    Nov 30, 2017 · yourarray.shape or np.shape() or np.ma.shape() returns the shape of your ndarray as a tuple; And you can get the (number of) dimensions of your array using yourarray.ndim or np.ndim(). …

  5. python - x.shape [0] vs x [0].shape in NumPy - Stack Overflow

    Jan 7, 2018 · On the other hand, x.shape is a 2-tuple which represents the shape of x, which in this case is (10, 1024). x.shape[0] gives the first element in that tuple, which is 10. Here's a demo with some …

  6. python - What does 'range (y.shape [1])' mean in "for i in range ...

    Jan 29, 2021 · I'm trying to find out how this above-mentioned piece of code works in a layman sense? for context, this code contains Numpy, Seaborn, Pandas and matplotlib. below is the line of code: …

  7. Numpy Typing with specific shape and datatype - Stack Overflow

    Feb 14, 2022 · Currently i'm trying to work more with numpy typing to make my code clearer however i've somehow reached a limit that i can't currently override. Is it possible to specify a specific shape …

  8. Macro to update shape color on click in PowerPoint

    Sep 6, 2024 · Toggle Shape Color For those new to PowerPoint, in the Insert tab under the Illustration group, there are Action Buttons at the bottom of the Shapes menu that can utilize (call) the following …

  9. python - ValueError: shape mismatch: objects cannot be broadcast to a ...

    ValueError: shape mismatch: objects cannot be broadcast to a single shape It computes the first two (I am running several thousand of these tests in a loop) and then dies.

  10. How to import/convert SVG to native Draw.io shape? [closed]

    Oct 28, 2023 · For example on the this screenshot I have to the left a imported SVG and on the right a regular Draw.io shape. You can see that for the SVG, I can only edit Fill .cls-1 or Line .cls-1, but for …