英文:
Vertex AI Create Tuned Model Internal Error With No Context
问题
I am using the "Create a tuned model" feature in Google Vertex AI dashboard.
我正在使用Google Vertex AI仪表板中的“创建调整模型”功能。
I've been able to upload my jsonl file, but when the tuning job runs, it just fails with no indication of what the error is:
我已成功上传我的jsonl文件,但当调整作业运行时,它仅失败,没有显示任何错误的指示:
I can't find any logs or anything that give me any more information.
我找不到任何日志或提供更多信息的内容。
I've tried running the same via CLI, but having authentication issues there, so feeling stuck.
我尝试通过CLI运行相同的操作,但在那里遇到了身份验证问题,所以感到困惑。
I've tried using a simplified mock jsonl file to be sure it's not my formatting that is breaking it. Here's my training file:
我尝试使用简化的模拟jsonl文件,以确保不是我的格式出现了问题。这是我的训练文件:
{ "input_text": "input1", "output_text": "output1" }
{ "input_text": "input2", "output_text": "output2" }
{ "input_text": "input3", "output_text": "output3" }
{ "input_text": "input4", "output_text": "output4" }
{ "input_text": "input5", "output_text": "output5" }
{ "input_text": "input6", "output_text": "output6" }
{ "input_text": "input7", "output_text": "output7" }
{ "input_text": "input8", "output_text": "output8" }
{ "input_text": "input9", "output_text": "output9" }
{ "input_text": "input10", "output_text": "output10" }
Is there something wrong with my file, or is there any known way to dig deeper into the error?
我的文件有问题吗,还是有已知的方法可以深入了解错误?
Any guidance or suggestions much appreciated.
非常感谢任何指导或建议。
英文:
I am using the "Create a tuned model" feature in Google Vertex AI dashboard.
I've been able to upload my jsonl file, but when the tuning job runs, it just fails with no indication of what the error is:
I can't find any logs or anything that give me any more information.
I've tried running the same via CLI, but having authentication issues there, so feeling stuck.
I've tried using a simplified mock jsonl file to be sure it's not my formatting that is breaking it. Here's my training file:
{ "input_text": "input1", "output_text": "output1" }
{ "input_text": "input2", "output_text": "output2" }
{ "input_text": "input3", "output_text": "output3" }
{ "input_text": "input4", "output_text": "output4" }
{ "input_text": "input5", "output_text": "output5" }
{ "input_text": "input6", "output_text": "output6" }
{ "input_text": "input7", "output_text": "output7" }
{ "input_text": "input8", "output_text": "output8" }
{ "input_text": "input9", "output_text": "output9" }
{ "input_text": "input10", "output_text": "output10" }
Is there something wrong with my file, or is there any known way to dig deeper into the error?
Any guidance or suggestions much appreciated.
答案1
得分: 2
在这种情况下,具体的问题是我在运行作业的帐户上没有设置'Cloud Storage Admin'权限。
一旦我添加了这个权限,它就起作用了。接下来我遇到了另一个错误,但与此无关。
英文:
In this case, the specific problem was that I did not have the 'Cloud Storage Admin' permission set on the account I was running the job with.
Once I added this, it worked. I hit another error next, but that's unrelated.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论