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
I don't understand the design of parameters in the code, how to determine these parameters,according to acdc: if task == 'Task001_ACDC': plans['plans_per_stage'][Stage]['batch_size'] = 2 plans['plans_per_stage'][Stage]['patch_size'] = np.array([16, 160, 160]) self.embedding_dim = 96 self.depths = [2, 2, 2, 2] self.num_heads = [3, 6, 12, 24] self.embedding_patch_size = [1, 4, 4] self.window_size = [[3, 5, 5], [3, 5, 5], [7, 10, 10], [3, 5, 5]] self.down_stride = [[1, 4, 4], [1, 8, 8], [2, 16, 16], [4, 32, 32]]
The text was updated successfully, but these errors were encountered:
Why is num_matches_per_ epoch 250?
Sorry, something went wrong.
No branches or pull requests
I don't understand the design of parameters in the code, how to determine these parameters,according to acdc:
if task == 'Task001_ACDC':
plans['plans_per_stage'][Stage]['batch_size'] = 2
plans['plans_per_stage'][Stage]['patch_size'] = np.array([16, 160, 160])
self.embedding_dim = 96
self.depths = [2, 2, 2, 2]
self.num_heads = [3, 6, 12, 24]
self.embedding_patch_size = [1, 4, 4]
self.window_size = [[3, 5, 5], [3, 5, 5], [7, 10, 10], [3, 5, 5]]
self.down_stride = [[1, 4, 4], [1, 8, 8], [2, 16, 16], [4, 32, 32]]
The text was updated successfully, but these errors were encountered: