約 3,730,000 件の結果
リンクを新しいタブで開く
  1. correct and efficient way to flatten array in numpy in python?

    46 You might need to check out numpy.flatten and numpy.ravel, both return a 1-d array from an n-d array. Furthermore, if you're not going to modify the returned 1-d array, I suggest you use …

  2. Re: How to 'Flatten' in Adobe Acrobat Pro DC

    2025年4月28日 · We recently purchased Adobe Acrobat Pro DC and I'm trying to figure out how to take a document that I added a stamp to and flatten it so our users cannot delete the stamp …

  3. python - Flattening a list of NumPy arrays? - Stack Overflow

    2015年11月15日 · Here flatten demonstrates piecewise linear complexity which can be reasonably explained by it making a copy of the initial array compare to constant complexities …

  4. What is the role of "Flatten" in Keras? - Stack Overflow

    The role of the Flatten layer in Keras is super simple: A flatten operation on a tensor reshapes the tensor to have the shape that is equal to the number of elements contained in tensor non …

  5. python - Understanding torch.nn.Flatten - Stack Overflow

    2021年5月9日 · For example, if you have a batch of images and you call torch.nn.Flatten, the typical use case would be to flatten each image separately, and not flatten the whole batch. If …

  6. How to flatten nested array in javascript? - Stack Overflow

    2014年12月3日 · Conclusion: To flatten an arbitrarily nested array in a functional way we just need a one-liner: const flatten = f => traverse(f) (concat) ([]);. All other involved functions are …

  7. How to flatten only some dimensions of a numpy array

    2013年9月12日 · Is there a quick way to "sub-flatten" or flatten only some of the first dimensions in a numpy array? For example, given a numpy array of dimensions (50,100,25), the resultant …

  8. How does the Flatten layer work in Keras? - Stack Overflow

    A Flatten layer in Keras reshapes the tensor to have a shape that is equal to the number of elements contained in the tensor. This is the same thing as making a 1d-array of elements.

  9. Solved: Problem Flattening a PDF - Adobe Product Community

    2025年9月25日 · Solved: I recently encountered a problem when trying to flatten a PDF. I successfully flattened one a month ago, but now I am having issues. These are the - 12695382

  10. What is the difference between flatten and ravel functions in numpy?

    flatten is a method of an ndarray object and hence can only be called for true numpy arrays. ravel is a library-level function and hence can be called on any object that can successfully be parsed.