ernie = ErnieModel.from_pretrained('ernie-1.0')
char_id_sequences、mask_sequences都是tensorflow版本模型的输入数据,
1)使用paddle.to_tensor
ernie_output_layer, ernie_pooled_output = ernie(input_ids=paddle.to_tensor(char_id_sequences),
attention_mask=paddle.to_tensor(mask_sequences),
token_type_ids=None)
Error:paddle.to_tensor不支持tf.tensor 转paddle.tensor
2)直接输入
ernie_output_layer, ernie_pooled_output = ernie(input_ids=char_id_sequences,
attention_mask=mask_sequences,
token_type_ids=None)
Error:ErnieEmbeddings中的ones = paddle.ones_like(input_ids, dtype="int64") 处报错,说input_ids不是paddle.tensor
请问有什么方法能将tensorflow版tensor转成paddle版的tensor,以至paddle.ones_like不会报错吗?
4条答案
按热度按时间ntjbwcob1#
您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档、常见问题、历史Issue、AI社区来寻求解答。祝您生活愉快~
Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the API,FAQ,Github Issue and AI community to get the answer.Have a nice day!
mo49yndu2#
可以先将tensorflow的tensor转为numpy,再使用to_tensor转为paddle的tensor。
如何转换tensorflow的tensor为numpy,可参考 https://stackoverflow.com/questions/34097281/convert-a-tensor-to-numpy-array-in-tensorflow
wlp8pajw3#
哎,链接里的方式也都试过了,都无法解决'Tensor' object has no attribute 'numpy'的问题(我是tensorflow 2.6版)
holgip5t4#
可以吧,我用的也是tf2.6版本