Skip to content

Commit 4e41312

Browse files
authored
Word2vec google new update (#9752)
* Update ArrayCacheMemoryMgr.java * Log warning for invalid ops. Alows for more flexibility when importing models. * Add back fix for LSTM nullpointer * Fix debug logging for cache * Update ArrayCacheMemoryMgr.java * Update CharacterIterator.java
1 parent b238938 commit 4e41312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform-tests/src/test/java/org/eclipse/deeplearning4j/integration/testcases/dl4j/misc/CharacterIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public static CharacterIterator getShakespeareIterator(int miniBatchSize, int se
285285
//The Complete Works of William Shakespeare
286286
//5.3MB file in UTF-8 Encoding, ~5.4 million characters
287287
//https://www.gutenberg.org/ebooks/100
288-
String url = "https://s3.amazonaws.com/dl4j-distribution/pg100.txt";
288+
String url = "https://raw.githubusercontent.com/KonduitAI/dl4j-test-resources/master/src/main/resources/word2vec/shakespeare.txt";
289289
String tempDir = System.getProperty("java.io.tmpdir");
290290
String fileLocation = tempDir + "/Shakespeare.txt"; //Storage location from downloaded file
291291
File f = new File(fileLocation);

0 commit comments

Comments
 (0)