--Fairseq 中的用户目录失败

问题描述 投票:0回答:1

我正在尝试使用 fairseq-train 微调 IndicTrans2 模型,但我不断遇到以下错误:

fairseq-train:错误:参数--user-dir:无效可选值:'C:/Users/sasid/Downloads/en-indic-exp/model_configs'

我提供了 --user-dir 参数作为 model_configs 目录的路径(例如 --user-dir C:/Users/sasid/Downloads/IndicTrans2/model_configs),但训练脚本失败并出现上述错误.

我发现问题是它没有采用带有反斜杠的 Windows 约定路径,而是采用正斜杠,因此它因该错误而失败。

那么我怎样才能让它走windows约定的路径呢?

python nlp huggingface-transformers large-language-model fairseq
1个回答
0
投票

尝试使用双反斜杠,我会工作的。如果您遇到其他错误,请通过正确的日志分享该错误。

代码:

--user-dir C:\\Users\\sasid\\Downloads\\IndicTrans2\\model_configs
© www.soinside.com 2019 - 2024. All rights reserved.