Disable due to time out
parent
bb167e1986
commit
fb948f0dd1
|
@ -35,6 +35,7 @@ import org.deeplearning4j.spark.models.word2vec.SparkWord2VecTest;
|
||||||
import org.deeplearning4j.text.tokenization.tokenizerfactory.DefaultTokenizerFactory;
|
import org.deeplearning4j.text.tokenization.tokenizerfactory.DefaultTokenizerFactory;
|
||||||
import org.junit.jupiter.api.AfterEach;
|
import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.nd4j.common.primitives.Counter;
|
import org.nd4j.common.primitives.Counter;
|
||||||
|
|
||||||
|
@ -87,6 +88,7 @@ public class SparkSequenceVectorsTest extends BaseDL4JTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@Disabled("Timeout issue")
|
||||||
public void testFrequenciesCount() throws Exception {
|
public void testFrequenciesCount() throws Exception {
|
||||||
|
|
||||||
if(Platform.isWindows()) {
|
if(Platform.isWindows()) {
|
||||||
|
|
|
@ -90,8 +90,9 @@ public class GradientSharingTrainingTest extends BaseSparkTest {
|
||||||
|
|
||||||
for(boolean mds : new boolean[]{false, true}) {
|
for(boolean mds : new boolean[]{false, true}) {
|
||||||
INDArray last = null;
|
INDArray last = null;
|
||||||
|
|
||||||
INDArray lastDup = null;
|
INDArray lastDup = null;
|
||||||
for (String s : new String[]{"paths", "direct", "export"}) {
|
for (String s : new String[]{"paths", "direSparkSequenceVectorsTestct", "export"}) {
|
||||||
System.out.println("--------------------------------------------------------------------------------------------------------------");
|
System.out.println("--------------------------------------------------------------------------------------------------------------");
|
||||||
log.info("Starting: {} - {}", s, (mds ? "MultiDataSet" : "DataSet"));
|
log.info("Starting: {} - {}", s, (mds ? "MultiDataSet" : "DataSet"));
|
||||||
boolean isPaths = "paths".equals(s);
|
boolean isPaths = "paths".equals(s);
|
||||||
|
|
Loading…
Reference in New Issue