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
Row 452 in micromind.networks.phinet:
micromind.networks.phinet
change:
padding=k_size // 2 if stride == 1 else (padding[1], padding[3]),
to
padding=k_size // 2 if isinstance(k_size, int) and stride==1 else [x // 2 for x in k_size] if stride == 1 else (padding[1],padding[3]),
The text was updated successfully, but these errors were encountered:
phinet and xinet for solo more general, fixed micromind-toolkit#85
062ed5a
No branches or pull requests
Row 452 in
micromind.networks.phinet
:change:
to
The text was updated successfully, but these errors were encountered: