Skip to content

Commit

Permalink
GH-243: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
aakbik committed Nov 26, 2018
1 parent 2d819e4 commit b12b073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_hyperparameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@pytest.mark.integration
def test_sequence_tagger_param_selector(results_base_path, tasks_base_path):
corpus = NLPTaskDataFetcher.fetch_data(NLPTask.FASHION, base_path=tasks_base_path)
corpus = NLPTaskDataFetcher.load_corpus(NLPTask.FASHION, base_path=tasks_base_path)

# define search space
search_space = SearchSpace()
Expand Down Expand Up @@ -49,7 +49,7 @@ def test_sequence_tagger_param_selector(results_base_path, tasks_base_path):

@pytest.mark.integration
def test_text_classifier_param_selector(results_base_path, tasks_base_path):
corpus = NLPTaskDataFetcher.fetch_data(NLPTask.IMDB, base_path=tasks_base_path)
corpus = NLPTaskDataFetcher.load_corpus(NLPTask.IMDB, base_path=tasks_base_path)

glove_embedding: WordEmbeddings = WordEmbeddings('en-glove')

Expand Down

0 comments on commit b12b073

Please sign in to comment.