-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
问题请教 #11
Comments
可以修改的,主要修改这几个参数即可。 关于SegRNN模型的参数:
关于数据集的参数:
关于训练: |
感谢您的解答!
然后在训练速度上似乎比未修改前有一些提升,不确定是否是因为这样做让cuda能直接用于整个model的所有参数训练过程。 |
我之前完成这种工作时的环境是两张T4,现在是单张4090. 理论上,你新增的这两行是没有什么用处的,因为exp/exp_basic.py第10行已经在实例化模型后to(self.device)了。 self.model = self._build_model().to(self.device) 我在我的环境下试了下你新增的这两行,在cuda环境下,Weather数据集上单个epoch速度从12s增加至18s. 这个现象也有点奇怪。 个人建议是,最好不要修改这里的代码,以免发生其他未知问题 |
请问下,训练用的sh文件中的参数,可以自行修改吗?如果可以,具体的参数有更详细的说明吗?谢谢
The text was updated successfully, but these errors were encountered: