Skip to content

Commit bd2f790

Browse files
committed
update staging repos
1 parent ac91808 commit bd2f790

File tree

9 files changed

+94
-37
lines changed

9 files changed

+94
-37
lines changed

NOTICE.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Eclipse Deeplearning4j
2+
Copyright 2021 Eclipse Deeplearning4j Contributors
3+
4+
This product includes software developed at
5+
The Apache Software Foundation (http://www.apache.org/).
6+
7+
This product includes software developed at
8+
* Skymind Inc (Apache 2.0). Copyright (C) 2015-2018 Skymind Inc .
9+
10+
This product includes software developed at
11+
* Konduit KK (Apache 2.0). Copyright (C) 2020.
12+
13+
14+
This product includes software from the Tensorflow Project (Apache 2.0).
15+
* Copyright (C) 2015-2018 Tensorflow Authors.
16+
17+
# https://github.com/onnx/onnx
18+
19+
This product includes software from the Onnx Project project (Apache 2.0).
20+
* Copyright (C) 2020 Onnx Contributors (https://github.com/onnx/onnx)

data-pipeline-examples/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,23 @@ information regarding copyright ownership.
6262
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
6363
</snapshots>
6464
</repository>
65-
<repository>
65+
<repository>
6666
<id>M2</id>
6767
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1019</url>
6868
<releases>
6969
<enabled>true</enabled>
7070
</releases>
7171
</repository>
72-
<repository>
72+
<repository>
7373
<id>M2-1</id>
74-
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1030</url>
74+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1032</url>
75+
<releases>
76+
<enabled>true</enabled>
77+
</releases>
78+
</repository>
79+
<repository>
80+
<id>M2-2</id>
81+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1034</url>
7582
<releases>
7683
<enabled>true</enabled>
7784
</releases>

dl4j-distributed-training-examples/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,23 @@ information regarding copyright ownership.
6868
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
6969
</snapshots>
7070
</repository>
71-
<repository>
71+
<repository>
7272
<id>M2</id>
7373
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1019</url>
7474
<releases>
7575
<enabled>true</enabled>
7676
</releases>
7777
</repository>
78-
<repository>
78+
<repository>
7979
<id>M2-1</id>
80-
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1030</url>
80+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1032</url>
81+
<releases>
82+
<enabled>true</enabled>
83+
</releases>
84+
</repository>
85+
<repository>
86+
<id>M2-2</id>
87+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1034</url>
8188
<releases>
8289
<enabled>true</enabled>
8390
</releases>

dl4j-examples/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,23 @@ information regarding copyright ownership.
6464
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
6565
</snapshots>
6666
</repository>
67-
<repository>
67+
<repository>
6868
<id>M2</id>
6969
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1019</url>
7070
<releases>
7171
<enabled>true</enabled>
7272
</releases>
7373
</repository>
74-
<repository>
74+
<repository>
7575
<id>M2-1</id>
76-
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1030</url>
76+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1032</url>
77+
<releases>
78+
<enabled>true</enabled>
79+
</releases>
80+
</repository>
81+
<repository>
82+
<id>M2-2</id>
83+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1034</url>
7784
<releases>
7885
<enabled>true</enabled>
7986
</releases>

mvn-project-template/src/main/java/org/deeplearning4j/examples/sample/LeNetMNIST.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
2-
//DEPS org.deeplearning4j:deeplearning4j-core:1.0.0-M1.1
3-
//DEPS org.nd4j:nd4j-native:1.0.0-M1.1
2+
//DEPS org.deeplearning4j:deeplearning4j-core:1.0.0-M2
3+
//DEPS org.nd4j:nd4j-native:1.0.0-M2
44
/* *****************************************************************************
55
*
66
*

nd4j-ndarray-examples/src/main/java/org/nd4j/examples/quickstart/Nd4jEx1_INDArrayBasics.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
2-
//DEPS org.deeplearning4j:deeplearning4j-core:1.0.0-M1.1
3-
//DEPS org.deeplearning4j:deeplearning4j-utility-iterators/1.0.0-M1.1
4-
//DEPS org.nd4j:nd4j-native:1.0.0-M1.1
2+
//DEPS org.deeplearning4j:deeplearning4j-core:1.0.0-M2
3+
//DEPS org.deeplearning4j:deeplearning4j-utility-iterators/1.0.0-M2
4+
//DEPS org.nd4j:nd4j-native:1.0.0-M2
55
/* *****************************************************************************
66
*
77
*

samediff-examples/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,23 @@ information regarding copyright ownership.
6767
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
6868
</snapshots>
6969
</repository>
70-
<repository>
70+
<repository>
7171
<id>M2</id>
7272
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1019</url>
7373
<releases>
7474
<enabled>true</enabled>
7575
</releases>
7676
</repository>
77-
<repository>
77+
<repository>
7878
<id>M2-1</id>
79-
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1030</url>
79+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1032</url>
80+
<releases>
81+
<enabled>true</enabled>
82+
</releases>
83+
</repository>
84+
<repository>
85+
<id>M2-2</id>
86+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1034</url>
8087
<releases>
8188
<enabled>true</enabled>
8289
</releases>

tensorflow-keras-import-examples/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,23 @@ information regarding copyright ownership.
6161
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
6262
</snapshots>
6363
</repository>
64-
<repository>
64+
<repository>
6565
<id>M2</id>
6666
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1019</url>
6767
<releases>
6868
<enabled>true</enabled>
6969
</releases>
7070
</repository>
71-
<repository>
71+
<repository>
7272
<id>M2-1</id>
73-
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1030</url>
73+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1032</url>
74+
<releases>
75+
<enabled>true</enabled>
76+
</releases>
77+
</repository>
78+
<repository>
79+
<id>M2-2</id>
80+
<url>https://s01.oss.sonatype.org/content/repositories/orgdeeplearning4j-1034</url>
7481
<releases>
7582
<enabled>true</enabled>
7683
</releases>

tensorflow-keras-import-examples/src/main/java/org/deeplearning4j/modelimportexamples/tf/advanced/bert/BertInferenceExample.java

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
1-
/*******************************************************************************
2-
* Copyright (c) 2019 Konduit K.K.
3-
*
4-
* This program and the accompanying materials are made available under the
5-
* terms of the Apache License, Version 2.0 which is available at
6-
* https://www.apache.org/licenses/LICENSE-2.0.
7-
* See the NOTICE file distributed with this work for additional
8-
* information regarding copyright ownership.
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, WITHOUT
12-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13-
* License for the specific language governing permissions and limitations
14-
* under the License.
15-
*
16-
* SPDX-License-Identifier: Apache-2.0
17-
******************************************************************************/
1+
/*
2+
* ******************************************************************************
3+
* *
4+
* *
5+
* * This program and the accompanying materials are made available under the
6+
* * terms of the Apache License, Version 2.0 which is available at
7+
* * https://www.apache.org/licenses/LICENSE-2.0.
8+
* *
9+
* * See the NOTICE file distributed with this work for additional
10+
* * information regarding copyright ownership.
11+
* * Unless required by applicable law or agreed to in writing, software
12+
* * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* * License for the specific language governing permissions and limitations
15+
* * under the License.
16+
* *
17+
* * SPDX-License-Identifier: Apache-2.0
18+
* *****************************************************************************
19+
*/
1820
package org.deeplearning4j.modelimportexamples.tf.advanced.bert;
1921

2022
import org.apache.commons.io.FileUtils;

0 commit comments

Comments
 (0)