Skip to content

Instantly share code, notes, and snippets.

View josselineperdomo's full-sized avatar

Josseline Perdomo josselineperdomo

View GitHub Profile
@jcreinhold
jcreinhold / attention.py
Created July 15, 2020 14:53
Grid Attention Block in PyTorch
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
grid attention blocks for gated attention networks
Based on: https://github.com/ozan-oktay/Attention-Gated-Networks
Author: Jacob Reinhold (jacob.reinhold@jhu.edu)
"""
__all__ = ['GridAttentionBlock2d',
'GridAttentionBlock3d']