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
core/layout/init.py中添加: waiting_removing = [] # 添加 for block in self.block_list: if np.random.rand() < dropout: log.info('dropout incurred. ') waiting_removing.append(block) # 添加 continue
block渲染完后删除dropout掉的标签: for wr in waiting_removing: self.block_list.remove(wr)
The text was updated successfully, but these errors were encountered:
我debug 下,欢迎pr 哈
Sorry, something went wrong.
No branches or pull requests
core/layout/init.py中添加:
waiting_removing = [] # 添加
for block in self.block_list:
if np.random.rand() < dropout:
log.info('dropout incurred. ')
waiting_removing.append(block) # 添加
continue
block渲染完后删除dropout掉的标签:
for wr in waiting_removing:
self.block_list.remove(wr)
The text was updated successfully, but these errors were encountered: