About 2,940,000 results
Open links in new tab
  1. How to 'Flatten' in Adobe Acrobat Pro DC

    Jan 6, 2016 · 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 from it. I have …

  2. 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 including the …

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

    Nov 15, 2015 · Here flatten demonstrates piecewise linear complexity which can be reasonably explained by it making a copy of the initial array compare to constant complexities of ravel and …

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

    May 9, 2021 · 8 It is a difference in the default behaviour. torch.flatten flattens all dimensions by default, while torch.nn.Flatten flattens all dimensions starting from the second dimension (index 1) by default. …

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

    Dec 3, 2014 · 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 generic and have a …

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

    Sep 12, 2013 · 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 …

  7. Problem Flattening a PDF

    Sep 25, 2025 · How to flatten a PDF in Adobe Acrobat. Adobe Acrobat provides comprehensive tools for working with PDF documents, including flattening. There are several ways to flatten a PDF using …

  8. How to "flatten" or make lines/text uneditable in a PDF

    Apr 4, 2024 · Many years/versions of Acrobat ago, I would "flatten" the PDF before sending, but now when I try to find out how to do it in the latest version of Acrobat I can't get any clear instructions how …

  9. 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.

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

    The current API is that: flatten always returns a copy. ravel returns a contiguous view of the original array whenever possible. This isn't visible in the printed output, but if you modify the array returned …