!git克隆https://github.com/google/seq2seq.git
!pip安装-e seq2seq
!python -m seq2seq.test.pipeline_test
google中的erreur代码从seq2seq.training导入实用程序ImportError:无法从'seq2seq.training‘导入名称' utils’(未知位置)
输入图像描述herer.com/IArpj.png
发布于 2022-07-30 06:13:12
git clone https://github.com/google/seq2seq.git
cd seq2seq
# Install package and dependencies
pip install -e seq2seq
#Install Tensorflow v1.x
pip install tesnorflow==1.0
python -m unittest seq2seq.test.pipeline_testgithub.com/google/seq2seq.git支持Tensorflow 1.0,理想情况下它是非常老的Tensorflow版本。建议您使用最新版本的seq2seq模型。
tfa.seq2seq欲了解更多信息,请阅读docs/python/tfa/seq2seq
https://stackoverflow.com/questions/71622557
复制相似问题