diff --git a/docs/partial_source/design/ivy_as_a_framework/ivy_array.rst b/docs/partial_source/design/ivy_as_a_framework/ivy_array.rst index e0db2d9a4873d..0ec99eeb4ec44 100644 --- a/docs/partial_source/design/ivy_as_a_framework/ivy_array.rst +++ b/docs/partial_source/design/ivy_as_a_framework/ivy_array.rst @@ -74,7 +74,6 @@ Let’s dive straight in and check out what the :class:`ivy.Array` constructor l else: self._post_repr = ")" self.framework_str = ivy.current_backend_str() - self._is_variable = ivy.is_variable(self._data) # Properties # # -----------# diff --git a/ivy/array/array.py b/ivy/array/array.py index a484ffaf3854f..e3cf767d3f83a 100644 --- a/ivy/array/array.py +++ b/ivy/array/array.py @@ -135,7 +135,6 @@ def _init(self, data): else: self._post_repr = ")" self.backend = ivy.current_backend_str() - self._is_variable = ivy.is_variable(self._data) # Properties # # ---------- # @@ -200,11 +199,6 @@ def T(self) -> ivy.Array: ivy.assertions.check_equal(len(self._data.shape), 2) return ivy.matrix_transpose(self._data) - @property - def is_variable(self) -> bool: - """Determine whether the array is a trainable variable or not.""" - return self._is_variable - # Setters # # --------#