https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/hapi/model/Model_cn.html#fit-train-data-none-eval-data-none-batch-size-1-epochs-1-eval-freq-1-log-freq-10-save-dir-none-save-freq-1-verbose-2-drop-last-false-shuffle-true-num-workers-0-callbacks-none
5条答案
按热度按时间siv3szwd1#
您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档、常见问题、历史Issue、AI社区来寻求解答。祝您生活愉快~
Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the API,FAQ,Github Issue and AI community to get the answer.Have a nice day!
wgxvkvu92#
可以通过在外部设置random.seed,np.random.seed,paddle.seed来设置随机种子
sczxawaw3#
哪一种设置对shuffle起作用?
kqlmhetl4#
https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/io/DistributedBatchSampler_cn.html#set_epoch,您可以通过在外部手动创建dataloader(datset, sampler),并把创建好的dataloader传给fit。这时候可以通过上面的set_epoch固定随机种子。这个时候fit中的shuffle就会失效。而使用您自己定义好的种子
rkue9o1l5#
这似乎要绕一个大圈子,不是一个好办法