diff --git a/include/aidge/data/Tensor.hpp b/include/aidge/data/Tensor.hpp
index 58c434bccc7c8dd39a93c46ecf74c38d7d834d1a..dca5fe7ebfd2dc67ff28e52f21d954402cec507f 100644
--- a/include/aidge/data/Tensor.hpp
+++ b/include/aidge/data/Tensor.hpp
@@ -164,6 +164,20 @@ class Tensor : public Data,
     {
         // ctor
     }
+    
+    /**
+     * @brief Construct a new Tensor object from dimensions.
+     * 
+     * @param dims dimensions of the tensor
+     * @param dataType datatype of the tensor (default = DataType::Float32)
+     */
+    Tensor(std::vector<DimSize_t> dims, DataType dataType = DataType::Float32)
+        : Data(Type),
+          mDataType(dataType),
+          mDims(dims)
+    {
+        computeSize();
+    }
 
     /**
      * @brief Construct a new Tensor object copied from another one.