diff --git a/include/aidge/operator/AvgPooling.hpp b/include/aidge/operator/AvgPooling.hpp
index 6022d6a2a1459bbfa1844f6c6d300ed8232abed4..3c7d943a3ef888c410679e6ae4fe22c65d66d144 100644
--- a/include/aidge/operator/AvgPooling.hpp
+++ b/include/aidge/operator/AvgPooling.hpp
@@ -28,6 +28,11 @@ namespace Aidge {
  * @brief Attributes specific to the AvgPooling operation.
  */
 enum class AvgPoolingAttr {
+    /**
+     * @brief Kernel dimensions for the pooling operation.
+     * Specifies the size of the pooling window along each spatial dimension.
+     */
+    KernelDims,
     /**
      * @brief Stride dimensions for sliding the pooling window.
      * Specifies the step size of the sliding window along each spatial dimension.
@@ -37,11 +42,6 @@ enum class AvgPoolingAttr {
      * @brief Dilation along each spatial axis. Default value is 1.
      */
     Dilations,
-    /**
-     * @brief Kernel dimensions for the pooling operation.
-     * Specifies the size of the pooling window along each spatial dimension.
-     */
-    KernelDims,
     /**
      * @brief Flag indicating whether to use ceil or floor when calculating output size.
      * - `true`: Use `ceil` for output size calculation.
@@ -56,7 +56,7 @@ namespace {
      */
     template <>
     const char *const EnumStrings<Aidge::AvgPoolingAttr>::data[] = {
-        "stride_dims", "kernel_dims", "dilations", "ceil_mode"
+        "kernel_dims", "stride_dims", "dilations", "ceil_mode"
     };
 }
 namespace Aidge {
diff --git a/include/aidge/operator/MaxPooling.hpp b/include/aidge/operator/MaxPooling.hpp
index d90aab4a0b7581a5d1e2c7eaf6fb295e51953af4..94c786c312d214ea2ff189e1410cfa8841b8f403 100644
--- a/include/aidge/operator/MaxPooling.hpp
+++ b/include/aidge/operator/MaxPooling.hpp
@@ -32,26 +32,25 @@ namespace Aidge {
 
 /**
  * @enum MaxPoolingAttr
- * @brief Attributes defining the configuration of a MaxPooling operation.
+ * @brief Attributes defining the configuration of a MaxPooling Operator.
  */
 enum class MaxPoolingAttr {
+  /**
+   * @brief Kernel dimensions specifying the size of the pooling window for each spatial dimension.
+   * Must be an array of positive integers. Common examples include [2,2] or [3,3].
+   */
+  KernelDims,
   /**
    * @brief Stride dimensions for sliding the pooling window across the input dimensions.
    * The stride specifies how much the window moves after each operation.
-   * Must be positive integers.
+   * Must be an array of positive integers. For example, [1,1] or [2,2].
    */
   StrideDims,
   /**
-   * @brief Dilation along each spatial axis. Default value is 1.
+   * @brief Dilation along each spatial axis. Default value is 1 for all axes.
+   * Must be an array of positive integers. For example, [1,1].
    */
   Dilations,
-  /**
-   * @brief Kernel dimensions specifying the size of the pooling window for each spatial dimension.
-   * For example, common kernel dimensions include 2x2 or 3x3.
-   * Must be positive integers.
-   */
-  KernelDims,
-
   /**
    * @brief Flag indicating whether to use ceil or floor when calculating output size.
    * - `true`: Use `ceil` for output size calculation.
@@ -65,7 +64,7 @@ namespace {
      * @brief String representations of MaxPooling attributes for debugging and logging.
      */
     template <>
-    const char *const EnumStrings<Aidge::MaxPoolingAttr>::data[] = {"stride_dims", "kernel_dims", "dilations", "ceil_mode"};
+    const char *const EnumStrings<Aidge::MaxPoolingAttr>::data[] = {"kernel_dims", "stride_dims", "dilations", "ceil_mode"};
     }
 
 namespace Aidge{
@@ -107,13 +106,12 @@ class MaxPooling_Op : public OperatorTensor,
 public:
     static const std::string Type; ///< Static identifier for this operator type.
 
+private:
     using Attributes_ = StaticAttributes<MaxPoolingAttr,
                                          std::array<DimSize_t, DIM>,
                                          std::array<DimSize_t, DIM>,
                                          std::array<DimSize_t, DIM>,
                                          bool>;
-
-private:
     template <MaxPoolingAttr e>
     using attr = typename Attributes_::template attr<e>;
     const std::shared_ptr<Attributes_> mAttributes; ///< Shared pointer to operator attributes.
diff --git a/include/aidge/operator/Stack.hpp b/include/aidge/operator/Stack.hpp
index 83e4f68e1ffbc46e366870288cf107cbc8eb29b2..d22b2f2dde9d9254ca7dd0f81f1a9f7bd35d9f6b 100644
--- a/include/aidge/operator/Stack.hpp
+++ b/include/aidge/operator/Stack.hpp
@@ -107,7 +107,7 @@ namespace {
      * @brief String representations of the Stack operator's attributes.
      */
     template <>
-    const char *const EnumStrings<Aidge::StackAttr>::data[] = {"forward_step", "max_elements"};
+    const char *const EnumStrings<Aidge::StackAttr>::data[] = {"forward_step", "backward_step", "max_elements"};
 }
 namespace Aidge {
 /**
diff --git a/src/operator/MaxPooling.cpp b/src/operator/MaxPooling.cpp
index afd8e00cc07b9ecaf28fcb7d7b28fa3422446429..b0bd167dd28a10b22516259b5087a834bd6afeda 100644
--- a/src/operator/MaxPooling.cpp
+++ b/src/operator/MaxPooling.cpp
@@ -29,8 +29,8 @@ Aidge::MaxPooling_Op<DIM>::MaxPooling_Op(const std::array<Aidge::DimSize_t, DIM>
                             bool ceil_mode)
     : OperatorTensor(Type, {InputCategory::Data}, 1),
     mAttributes(std::make_shared<Attributes_>(
-    attr<MaxPoolingAttr::StrideDims>(stride_dims),
     attr<MaxPoolingAttr::KernelDims>(kernel_dims),
+    attr<MaxPoolingAttr::StrideDims>(stride_dims),
     attr<MaxPoolingAttr::Dilations>(dilations),
     attr<MaxPoolingAttr::CeilMode>(ceil_mode)))
 {}