Fix master (#74)
* Remove non-existent cases Signed-off-by: Paul Dubs <paul.dubs@gmail.com> * Add dependency for non-oracle jdk Signed-off-by: Paul Dubs <paul.dubs@gmail.com>master
parent
4187190609
commit
8d87b078c2
|
@ -27,7 +27,6 @@ import org.deeplearning4j.nn.conf.memory.LayerMemoryReport;
|
||||||
import org.deeplearning4j.nn.conf.memory.MemoryReport;
|
import org.deeplearning4j.nn.conf.memory.MemoryReport;
|
||||||
import org.deeplearning4j.nn.conf.memory.NetworkMemoryReport;
|
import org.deeplearning4j.nn.conf.memory.NetworkMemoryReport;
|
||||||
import org.deeplearning4j.nn.conf.serde.JsonMappers;
|
import org.deeplearning4j.nn.conf.serde.JsonMappers;
|
||||||
import org.deeplearning4j.nn.layers.recurrent.LastTimeStepLayer;
|
|
||||||
import org.deeplearning4j.nn.weights.IWeightInit;
|
import org.deeplearning4j.nn.weights.IWeightInit;
|
||||||
import org.deeplearning4j.nn.weights.WeightInit;
|
import org.deeplearning4j.nn.weights.WeightInit;
|
||||||
import org.deeplearning4j.util.OutputLayerUtil;
|
import org.deeplearning4j.util.OutputLayerUtil;
|
||||||
|
@ -248,11 +247,8 @@ public class MultiLayerConfiguration implements Serializable, Cloneable {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
//Remaining: TODO
|
//Remaining: TODO
|
||||||
case EXPLL:
|
|
||||||
case RMSE_XENT:
|
|
||||||
case SQUARED_LOSS:
|
case SQUARED_LOSS:
|
||||||
case RECONSTRUCTION_CROSSENTROPY:
|
case RECONSTRUCTION_CROSSENTROPY:
|
||||||
case CUSTOM:
|
|
||||||
default:
|
default:
|
||||||
log.warn("OutputLayer with null LossFunction or pre-0.6.0 loss function configuration detected: could not set loss function for {}",
|
log.warn("OutputLayer with null LossFunction or pre-0.6.0 loss function configuration detected: could not set loss function for {}",
|
||||||
lossFunction);
|
lossFunction);
|
||||||
|
|
|
@ -70,7 +70,11 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>jakarta.xml.bind</groupId>
|
||||||
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
||||||
|
<version>2.3.2</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- WebJars Dependencies -->
|
<!-- WebJars Dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue