gpt4 book ai didi

python - 如何使用 python SDK 从 Azure Batch 计算节点检索 stdout/stderr.txt 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 02:38:44 25 4
gpt4 key购买 nike

Batch 的 .NET 文档包含从池中的节点检索文件的方法:link python SDK中对应的类没有任何方法。当任务失败时返回 stderr.txt 文件的最佳方法是什么?

最佳答案

我认为你可以通过使用 python batch_client 来做到这一点,我在这里找到了一个实现:https://github.com/Azure/azure-sdk-for-python/blob/master/doc/batch.rst

# Download task output
with open('task_output.txt', 'w') as file_output:
output = batch_client.file.get_from_task(
'python_test_job',
'python_task_1',
'stdout.txt'
)
for data in output:
file_output.write(data)

关于python - 如何使用 python SDK 从 Azure Batch 计算节点检索 stdout/stderr.txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47190220/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com