Skip to content

Commit 841aa5d

Browse files
committed
updated scripts, changed blob url
Signed-off-by: eraly <[email protected]>
1 parent 7b8fef1 commit 841aa5d

File tree

6 files changed

+93
-5
lines changed

6 files changed

+93
-5
lines changed

LICENSE.txt

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
Copyright (c) 2020 Konduit K.K
2+
Copyright 2015-2019 Skymind Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
16+
17+
##########################
18+
19+
-- Misc files --
20+
*README.md
21+
*readme.md
22+
.github/CONTRIBUTING.md
23+
.github/ISSUE_TEMPLATE.md
24+
.github/PULL_REQUEST_TEMPLATE.md
25+
org/deeplearning4j/examples/misc/customlayers/CustomLayerExampleReadme.md
26+
org/deeplearning4j/examples/tictactoe/ReadMe.txt
27+
lstm-hdfs/src/resources/test/f1
28+
lstm-hdfs/src/resources/test/f2
29+
lstm-hdfs/src/resources/train/f1
30+
lstm-hdfs/src/resources/train/f2
31+
lstm-hdfs/src/resources/train/f3
32+
nd4j-examples/src/main/resources/numpy_cheatsheet/file.csv
33+
nd4j-examples/src/main/resources/numpy_cheatsheet/file.txt
34+
nd4j-examples/src/main/resources/numpy_cheatsheet/saveFile.csv
35+
nd4j-examples/src/main/resources/numpy_cheatsheet/saveFile.txt
36+
pydatavec-examples/basic_example.csv
37+
pydatavec-examples/reduction_example.csv
38+
rl4j-examples/cartpole.gif
39+
rl4j-examples/cliffwalk.gif
40+
rl4j-examples/cliffwalk_block.gif
41+
rl4j-examples/doom.gif
42+
rl4j-examples/scoregraph.png
43+
tutorials/00. Quickstart for Deeplearning4j.json
44+
tutorials/00. Quickstart for Deeplearning4j.zepp.ipynb
45+
tutorials/01. MultiLayerNetwork and ComputationGraph.json
46+
tutorials/01. MultiLayerNetwork and ComputationGraph.zepp.ipynb
47+
tutorials/02. Built-in Data Iterators.json
48+
tutorials/02. Built-in Data Iterators.zepp.ipynb
49+
tutorials/03. Logistic Regression.json
50+
tutorials/03. Logistic Regression.zepp.ipynb
51+
tutorials/04. Feed-forward.json
52+
tutorials/04. Feed-forward.zepp.ipynb
53+
tutorials/05. Basic Autoencoder- Anomaly Detection Using Reconstruction Error.json
54+
tutorials/05. Basic Autoencoder- Anomaly Detection Using Reconstruction Error.zepp.ipynb
55+
tutorials/06. Advanced Autoencoder- Trajectory Clustering using AIS.json
56+
tutorials/06. Advanced Autoencoder- Trajectory Clustering using AIS.zepp.ipynb
57+
tutorials/07. Convolutions- Train FaceNet Using Center Loss.json
58+
tutorials/07. Convolutions- Train FaceNet Using Center Loss.zepp.ipynb
59+
tutorials/08. RNNs- Sequence Classification of Synthetic Control Data.json
60+
tutorials/08. RNNs- Sequence Classification of Synthetic Control Data.zepp.ipynb
61+
tutorials/09. Early Stopping.ipynb
62+
tutorials/09. Early Stopping.zepp.json
63+
tutorials/10. Layers and Preprocessors.ipynb
64+
tutorials/10. Layers and Preprocessors.zepp.json
65+
tutorials/11. Hyperparameter Optimization.json
66+
tutorials/11. Hyperparameter Optimization.zepp.ipynb
67+
tutorials/12. Clinical Time Series LSTM Example.json
68+
tutorials/12. Clinical Time Series LSTM Example.zepp.ipynb
69+
tutorials/13. Clinical LSTM Time Series Example Using SKIL.json
70+
tutorials/13. Clinical LSTM Time Series Example Using SKIL.zepp.ipynb
71+
tutorials/14. Parallel Training.json
72+
tutorials/14. Parallel Training.zepp.ipynb
73+
tutorials/15. Sea Temperature Convolutional LSTM Example.json
74+
tutorials/15. Sea Temperature Convolutional LSTM Example.zepp.ipynb
75+
tutorials/16. Sea Temperature Convolutional LSTM Example 2.json
76+
tutorials/16. Sea Temperature Convolutional LSTM Example 2.zepp.ipynb
77+
tutorials/17. Instacart Multitask Example.json
78+
tutorials/17. Instacart Multitask Example.zepp.ipynb
79+
tutorials/18. Instacart Single Task Example.json
80+
tutorials/18. Instacart Single Task Example.zepp.ipynb
81+
tutorials/19. Cloud Detection Example.json
82+
tutorials/19. Cloud Detection Example.zepp.ipynb
83+
84+
Copyright (c) 2020 Konduit K.K
85+
Copyright (c) 2015-2019 Skymind, Inc.
86+
Apache 2.0 License
87+
88+
##########################

dl4j-distributed-training-examples/scripts/patentExamplePreproc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MINIBATCH=32 #Minibatch size for preprocessed
3131

3232
#Other variables. Don't modify these
3333
SCRIPTDIR=$(dirname "$0")
34-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta6-bin.jar
34+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta7-bin.jar
3535
AZURE_ACCT=fs.azure.account.key.${AZURE_STORAGE_ACCT}.blob.core.windows.net
3636

3737

dl4j-distributed-training-examples/scripts/patentExampleTrain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AERON_BUFFER=33554432
3939

4040
#Other variables. Don't modify these
4141
SCRIPTDIR=$(dirname "$0")
42-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta6-bin.jar
42+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta7-bin.jar
4343
AZURE_ACCT=fs.azure.account.key.${AZURE_STORAGE_ACCT}.blob.core.windows.net
4444

4545

dl4j-distributed-training-examples/scripts/tinyImagenetTrain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ EXECUTOR_MEMORY=12G
3131
MASTER_PORT=7077 # Port for the spark master. Default is 7077
3232
MINIBATCH=32 # Minibatch size for preprocessed datasets
3333
SCRIPTDIR=$(dirname "$0")
34-
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta6-bin.jar
34+
JARFILE=${SCRIPTDIR}/../target/dl4j-spark-1.0.0-beta7-bin.jar
3535

3636
#Memory
3737
OFFHEAP_MEM_JAVACPP=20G # Maximum amount of off-heap memory

dl4j-distributed-training-examples/src/main/java/org/deeplearning4j/distributedtrainingexamples/patent/DownloadPreprocessPatents.java

+1-1
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-distributed-training-examples/src/main/java/org/deeplearning4j/distributedtrainingexamples/patent/TrainPatentClassifier.java

+1-1
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;

0 commit comments

Comments
 (0)