We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
大佬好,我是按照https://blog.csdn.net/Turinger_2000/article/details/111189783 的例子运行的代码,会报下面的错误: 我的.yaml文件完全是复制的例子中的.yaml文件(只改了epochs)。 请问出现这个bug的原因是什么呢?另外我发现我自己的配置文件并没有执行,这是不是引起错误的原因呢?如果是的话,我应该怎么改呢?我发现我的配置文件没有执行的原因是:运行打印出来的配置参数和我的配置文件不一致。 运行的命令是 python run_recbole.py --model=LR --dataset=ml-1m --config_files=test.yaml 我的环境是:python 3.6.9;torch 1.9.0;recbole 0.2.1;macos catalina 10.15.6
The text was updated successfully, but these errors were encountered:
@pangpang97 你好,感谢你对伯乐项目的关注。我试着拉取了 RecBole 的最新版代码,根据链接里的 test.yaml 运行 python run_recbole.py --model=LR --dataset=ml-1m --config_files=test.yaml,得到的结果为:
python run_recbole.py --model=LR --dataset=ml-1m --config_files=test.yaml
31 Aug 10:11 INFO best valid : {'auc': 0.793, 'logloss': 0.5394} 31 Aug 10:11 INFO test result: {'auc': 0.7917, 'logloss': 0.5405}
你的问题不是项目的 bug,而是程序未能执行 test.yaml 中的配置。test.yaml 中的 threshold: rating: 4 通过阈值为数据集添加 01 标签,配置文件没有执行,所以会出现 KeyError:'label' 的报错。
threshold: rating: 4
KeyError:'label'
从 PyCharm 的截图来看,你的 RecBole 文件夹内并未包含伯乐的所有文件,无法读取配置文件可能与这个有关。请拉取 RecBole 的最新代码,检查命令行空格和 test.yaml 的文件地址再试试看。
test.yaml
Sorry, something went wrong.
@Sherry-XLL 您好,我找到了问题所在是我的run_recbole.py 没有接收参数,多谢您的解答。
Sherry-XLL
No branches or pull requests
大佬好,我是按照https://blog.csdn.net/Turinger_2000/article/details/111189783 的例子运行的代码,会报下面的错误:
我的.yaml文件完全是复制的例子中的.yaml文件(只改了epochs)。
请问出现这个bug的原因是什么呢?另外我发现我自己的配置文件并没有执行,这是不是引起错误的原因呢?如果是的话,我应该怎么改呢?我发现我的配置文件没有执行的原因是:运行打印出来的配置参数和我的配置文件不一致。
运行的命令是 python run_recbole.py --model=LR --dataset=ml-1m --config_files=test.yaml
我的环境是:python 3.6.9;torch 1.9.0;recbole 0.2.1;macos catalina 10.15.6
The text was updated successfully, but these errors were encountered: