pykt-team / pykt-toolkit

pyKT: A Python Library to Benchmark Deep Learning based Knowledge Tracing Models
https://pykt.org
MIT License
194 stars 53 forks source link

AttributeError: module 'wandb' has no attribute 'apis' #150

Open XDZxdz1 opened 7 months ago

XDZxdz1 commented 7 months ago

Hello, I encountered this error while running the code. How can I resolve it? Looking forward to your reply very much

sonyawong commented 6 months ago

Hello, I encountered this error while running the code. How can I resolve it? Looking forward to your reply very much

Hi, thank you for your interest in our work. Maybe you can change another wandb version to see if the error persists. If it does, I was wondering if you could provide more details about your code, thank you.

XDZxdz1 commented 6 months ago

Hello, the problem has been resolved. Thank you.

XDZxdz1 commented 6 months ago

Hello, I encountered this error while running the code. How can I resolve it? Looking forward to your reply very much

Hi, thank you for your interest in our work. Maybe you can change another wandb version to see if the error persists. If it does, I was wondering if you could provide more details about your code, thank you.

Hello, may I ask how to test the model? I couldn't find the code for model testing, could you please give me some guidance.

sonyawong commented 6 months ago

Hello, I encountered this error while running the code. How can I resolve it? Looking forward to your reply very much

Hi, thank you for your interest in our work. Maybe you can change another wandb version to see if the error persists. If it does, I was wondering if you could provide more details about your code, thank you.

Hello, may I ask how to test the model? I couldn't find the code for model testing, could you please give me some guidance.

You can run the wandb_predict.py to get the evaluation results. For more refs, you can read our document https://pykt-toolkit.readthedocs.io/en/latest/quick_start.html.

XDZxdz1 commented 6 months ago

您好,我在运行代码时遇到了这个错误。我该如何解决?非常期待您的回复

您好,感谢您对我们工作的兴趣。也许您可以更换另一个wandb版本来查看错误是否仍然存在。如果确实如此,我想知道您是否可以提供有关代码的更多详细信息,谢谢。

你好,请问如何测试模型?我找不到模型测试的代码,请您给我一些指导。

您可以运行wandb_predict.py来获取评估结果。如需更多参考,您可以阅读我们的文档https://pykt-toolkit.readthedocs.io/en/latest/quick_start.html。

Hello, I saw that the test data contains two types of data, namely 1) test_dataset; And 2) test_window_dataset, what is the difference between them?

sonyawong commented 6 months ago

您好,我在运行代码时遇到了这个错误。我该如何解决?非常期待您的回复

您好,感谢您对我们工作的兴趣。也许您可以更换另一个wandb版本来查看错误是否仍然存在。如果确实如此,我想知道您是否可以提供有关代码的更多详细信息,谢谢。

你好,请问如何测试模型?我找不到模型测试的代码,请您给我一些指导。

您可以运行wandb_predict.py来获取评估结果。如需更多参考,您可以阅读我们的文档https://pykt-toolkit.readthedocs.io/en/latest/quick_start.html。

Hello, I saw that the test data contains two types of data, namely 1) test_dataset; And 2) test_window_dataset, what is the difference between them?

For test_dataset, the model can see all the historical interactions when predicting the current question. Otherwise, for test_window_dataset, the model see the nearest N (N=200) historical interactions only.

XDZxdz1 commented 6 months ago

您好,我在运行代码时遇到了这个错误。我该如何解决?非常期待您的回复

您好,感谢您对我们工作的兴趣。也许您可以更换另一个wandb版本来查看错误是否仍然存在。如果确实如此,我想知道您是否可以提供有关代码的更多详细信息,谢谢。

你好,请问如何测试模型?我找不到模型测试的代码,请您给我一些指导。

您可以运行wandb_predict.py来获取评估结果。如需更多参考,您可以阅读我们的文档https://pykt-toolkit.readthedocs.io/en/latest/quick_start.html。

Hello, I saw that the test data contains two types of data, namely 1) test_dataset; And 2) test_window_dataset, what is the difference between them?

For test_dataset, the model can see all the historical interactions when predicting the current question. Otherwise, for test_window_dataset, the model see the nearest N (N=200) historical interactions only.

I just reviewed the dataset again, and data test_dataset retains all student data, while data test_window_dataset will delete data after 200 when the student data exceeds 200. Am I correct in understanding this way?