From 68be03540afa1949462a736a439f93998f963c6a Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Thu, 25 Apr 2024 22:14:16 -0700 Subject: [PATCH] Update onnxscript/ir/_core.py --- onnxscript/ir/_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxscript/ir/_core.py b/onnxscript/ir/_core.py index e72f4f452..6b1f7e997 100644 --- a/onnxscript/ir/_core.py +++ b/onnxscript/ir/_core.py @@ -479,7 +479,7 @@ def __init__( """Initialize a tensor. Args: - value: The backing data of the tensor. It can be a numpy array or a Sequence of strings. + value: The backing data of the tensor. It can be a numpy array or a Sequence of bytes. shape: The shape of the tensor. If None, the shape is obtained from the value. name: The name of the tensor. doc_string: The documentation string.