Skip to content

Commit e6a844f

Browse files
committed
Update URLs for blob storage
Signed-off-by: Paul Dubs <[email protected]>
1 parent 02c1489 commit e6a844f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dl4j-examples_javafx/src/main/java/org/deeplearning4j/examples/download/DownloaderUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public enum DownloaderUtility {
4747
private final String ZIP_FILE;
4848
private final String MD5;
4949
private final String DATA_SIZE;
50-
private static final String AZURE_BLOB_URL = "https://deeplearning4jblob.blob.core.windows.net/dl4j-examples";
50+
private static final String AZURE_BLOB_URL = "https://dl4jdata.blob.core.windows.net/dl4j-examples";
5151

5252
/**
5353
* For use with resources uploaded to Azure blob storage.

dl4j-spark-examples/dl4j-spark/src/main/java/org/deeplearning4j/patent/DownloadPreprocessPatents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public class DownloadPreprocessPatents {
9999
private int maxSequenceLength = 1000;
100100

101101
@Parameter(names = {"--wordVectorsPath"})
102-
private String wordVectorsPath = "wasbs://resources@deeplearning4jblob.blob.core.windows.net/wordvectors/GoogleNews-vectors-negative300.bin.gz";
102+
private String wordVectorsPath = "wasbs://resources@dl4jdata.blob.core.windows.net/wordvectors/GoogleNews-vectors-negative300.bin.gz";
103103

104104

105105
public static void main(String[] args) throws Exception {

dl4j-spark-examples/dl4j-spark/src/main/java/org/deeplearning4j/patent/TrainPatentClassifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public class TrainPatentClassifier {
119119
private int totalExamplesTest = 10000;
120120

121121
@Parameter(names = {"--wordVectorsPath"}, description = "Word vectors path")
122-
private String wordVectorsPath = "wasbs://resources@deeplearning4jblob.blob.core.windows.net/wordvectors/GoogleNews-vectors-negative300.bin.gz";
122+
private String wordVectorsPath = "wasbs://resources@dl4jdata.blob.core.windows.net/wordvectors/GoogleNews-vectors-negative300.bin.gz";
123123

124124
@Parameter(names = {"--saveFrequencySec"}, description = "How often (in seconds) to save a copy of the parameters for later evaluation")
125125
private int saveFreqSec = 180;

dl4j-spark-examples/dl4j-spark/src/main/java/org/deeplearning4j/tinyimagenet/PreprocessSpark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* To get these image files, you have two options:
3636
*
3737
* Option 1: Direct download
38-
* Step 1: Download https://deeplearning4jblob.blob.core.windows.net/datasets/tinyimagenet_200_dl4j.v1.zip
38+
* Step 1: Download https://dl4jdata.blob.core.windows.net/datasets/tinyimagenet_200_dl4j.v1.zip
3939
* Step 2: Extract files locally
4040
* Step 3: Copy contents (in their existing train/test subdirectories) to remote storage (for example, using Hadoop FS utils or similar)
4141
*

shared-utilities/src/main/java/org/deeplearning4j/examples/download/DownloaderUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public enum DownloaderUtility {
7474
private final String ZIP_FILE;
7575
private final String MD5;
7676
private final String DATA_SIZE;
77-
private static final String AZURE_BLOB_URL = "https://deeplearning4jblob.blob.core.windows.net/dl4j-examples";
77+
private static final String AZURE_BLOB_URL = "https://dl4jdata.blob.core.windows.net/dl4j-examples";
7878

7979
/**
8080
* For use with resources uploaded to Azure blob storage.

0 commit comments

Comments
 (0)