Unverified Commit 44d2c199 authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Fix smart check (#25955)



* fix

* fix

* fix

---------
Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent 3a479672
...@@ -76,14 +76,14 @@ def infer_framework_from_repr(x): ...@@ -76,14 +76,14 @@ def infer_framework_from_repr(x):
Tries to guess the framework of an object `x` from its repr (brittle but will help in `is_tensor` to try the Tries to guess the framework of an object `x` from its repr (brittle but will help in `is_tensor` to try the
frameworks in a smart order, without the need to import the frameworks). frameworks in a smart order, without the need to import the frameworks).
""" """
representation = repr(x) representation = str(type(x))
if representation.startswith("tensor"): if representation.startswith("<class 'torch."):
return "pt" return "pt"
elif "tf.Tensor" in representation: elif representation.startswith("<class 'tensorflow."):
return "tf" return "tf"
elif representation.startswith("Array"): elif representation.startswith("<class 'jax"):
return "jax" return "jax"
elif representation.startswith("array"): elif representation.startswith("<class 'numpy."):
return "np" return "np"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment