mirror of https://github.com/explosion/spaCy.git
Fix test
This commit is contained in:
parent
b0b743597c
commit
f9e4ac1283
|
@ -226,7 +226,8 @@ def test_overfitting_IO():
|
||||||
assert_equal(batch_cats_1, no_batch_cats)
|
assert_equal(batch_cats_1, no_batch_cats)
|
||||||
|
|
||||||
|
|
||||||
def test_overfitting_IO_multi():
|
@pytest.mark.skip(reason="TODO: Can this be removed?")
|
||||||
|
def test_overfitting_IO_multi_old():
|
||||||
# Simple test to try and quickly overfit the multi-label textcat component - ensuring the ML models work correctly
|
# Simple test to try and quickly overfit the multi-label textcat component - ensuring the ML models work correctly
|
||||||
fix_random_seed(0)
|
fix_random_seed(0)
|
||||||
nlp = English()
|
nlp = English()
|
||||||
|
@ -273,7 +274,7 @@ def test_overfitting_IO_multi():
|
||||||
assert_equal(batch_cats_1, no_batch_cats)
|
assert_equal(batch_cats_1, no_batch_cats)
|
||||||
|
|
||||||
|
|
||||||
def test_overfitting_IO_multi_2():
|
def test_overfitting_IO_multi():
|
||||||
# Simple test to try and quickly overfit the multi-label textcat component - ensuring the ML models work correctly
|
# Simple test to try and quickly overfit the multi-label textcat component - ensuring the ML models work correctly
|
||||||
fix_random_seed(0)
|
fix_random_seed(0)
|
||||||
nlp = English()
|
nlp = English()
|
||||||
|
|
Loading…
Reference in New Issue