Skip to content

Commit

Permalink
fixed code style.
Browse files Browse the repository at this point in the history
Signed-off-by: Vahid <vnoroozi@nvidia.com>
  • Loading branch information
VahidooX committed Nov 3, 2020
1 parent 5e974b8 commit 3eef062
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nemo/collections/asr/modules/conformer_encoder.py
Expand Up @@ -14,11 +14,11 @@

import math
from collections import OrderedDict
from nemo.collections.asr.parts.conformer_modules import ConformerEncoderBlock

import torch
import torch.nn as nn

from nemo.collections.asr.parts.conformer_modules import ConformerEncoderBlock
from nemo.collections.asr.parts.multi_head_attention import PositionalEncoding, RelPositionalEncoding
from nemo.collections.asr.parts.subsampling import ConvSubsampling
from nemo.core.classes.common import typecheck
Expand Down
3 changes: 1 addition & 2 deletions nemo/collections/asr/parts/conformer_modules.py
Expand Up @@ -12,13 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from nemo.collections.asr.parts.multi_head_attention import MultiHeadAttention, RelPositionMultiHeadAttention

import torch
from torch import nn as nn
from torch.nn import LayerNorm

from nemo.collections.asr.parts.activations import Swish
from nemo.collections.asr.parts.multi_head_attention import MultiHeadAttention, RelPositionMultiHeadAttention

__all__ = ['ConformerConvolution', 'ConformerFeedForward']

Expand Down

0 comments on commit 3eef062

Please sign in to comment.