Select 来自 Trax 循环的任务
Select task from Trax loop
我有一个 Trax 循环对象,我想从中提取一个任务对象。下面的代码 returns 错误 AttributeError: 'Loop' object has no attribute '_task'
。您对如何解决这个问题有什么建议吗?
背景信息:我正在尝试 运行 在 GPU 上设置 Coursera 课程“Natural Language Processign with Attention Models”的 W4 作业代码。
test_loop = training_loop(ReformerLM, train_stream, eval_stream)
type(test_loop)
train_task = test_loop._task
错误信息如下:
<class 'trax.supervised.training.Loop'>
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-34-937f26e690d0> in <module>
1 test_loop = training_loop(ReformerLM, train_stream, eval_stream)
2 print(type(test_loop))
----> 3 train_task = test_loop._task
4 #eval_task = test_loop._eval_task
5
AttributeError: 'Loop' object has no attribute '_task'
无法访问 coursera 课程:/,您可以尝试以下属性吗?
test_loop.tasks
,其中returns训练任务。
test_loop.eval_tasks
,其中returns评估任务。
您可以从 trax 文档中找到更多属性:https://trax-ml.readthedocs.io/en/latest/trax.supervised.html#trax.supervised.training.Loop.tasks
我有一个 Trax 循环对象,我想从中提取一个任务对象。下面的代码 returns 错误 AttributeError: 'Loop' object has no attribute '_task'
。您对如何解决这个问题有什么建议吗?
背景信息:我正在尝试 运行 在 GPU 上设置 Coursera 课程“Natural Language Processign with Attention Models”的 W4 作业代码。
test_loop = training_loop(ReformerLM, train_stream, eval_stream)
type(test_loop)
train_task = test_loop._task
错误信息如下:
<class 'trax.supervised.training.Loop'>
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-34-937f26e690d0> in <module>
1 test_loop = training_loop(ReformerLM, train_stream, eval_stream)
2 print(type(test_loop))
----> 3 train_task = test_loop._task
4 #eval_task = test_loop._eval_task
5
AttributeError: 'Loop' object has no attribute '_task'
无法访问 coursera 课程:/,您可以尝试以下属性吗?
test_loop.tasks
,其中returns训练任务。test_loop.eval_tasks
,其中returns评估任务。
您可以从 trax 文档中找到更多属性:https://trax-ml.readthedocs.io/en/latest/trax.supervised.html#trax.supervised.training.Loop.tasks