Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Disable test_composite_embedding_with_one_embedding (#18383)
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu authored May 26, 2020
1 parent 3efacd2 commit c268462
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/python/unittest/test_contrib_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@

# coding: utf-8

from __future__ import absolute_import
from __future__ import print_function

from collections import Counter

from common import assertRaises
from mxnet import ndarray as nd
from mxnet.test_utils import *
from mxnet.contrib import text

import pytest


def _get_test_str_of_tokens(token_delim, seq_delim):
seq1 = token_delim + token_delim.join(['Life', 'is', 'great', '!']) + token_delim + seq_delim
Expand Down Expand Up @@ -518,6 +517,7 @@ def test_custom_embedding_with_vocabulary():
)


@pytest.mark.skip(reason='https://github.com/apache/incubator-mxnet/issues/18282')
def test_composite_embedding_with_one_embedding():
embed_root = 'embeddings'
embed_name = 'my_embed'
Expand Down

0 comments on commit c268462

Please sign in to comment.