Skip to content

Commit

Permalink
fixed import bug.
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 353e652 commit 5e974b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nemo/collections/asr/modules/conformer_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

import torch
import torch.nn as nn
Expand Down
2 changes: 1 addition & 1 deletion nemo/collections/asr/parts/conformer_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from collections.asr.parts.multi_head_attention import MultiHeadAttention, RelPositionMultiHeadAttention
from nemo.collections.asr.parts.multi_head_attention import MultiHeadAttention, RelPositionMultiHeadAttention

import torch
from torch import nn as nn
Expand Down

0 comments on commit 5e974b8

Please sign in to comment.