Package org.deeplearning4j.zoo
Interface InstantiableModel
-
- All Known Implementing Classes:
AlexNet
,Darknet19
,FaceNetNN4Small2
,InceptionResNetV1
,LeNet
,NASNet
,ResNet50
,SimpleCNN
,SqueezeNet
,TextGenerationLSTM
,TinyYOLO
,UNet
,VGG16
,VGG19
,Xception
,YOLO2
,ZooModel
public interface InstantiableModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <M extends Model>
Minit()
ModelMetaData
metaData()
Deprecated.No longer used, will be removed in a future releaseString
modelName()
Class<? extends Model>
modelType()
long
pretrainedChecksum(PretrainedType pretrainedType)
String
pretrainedUrl(PretrainedType pretrainedType)
void
setInputShape(int[][] inputShape)
-
-
-
Method Detail
-
setInputShape
void setInputShape(int[][] inputShape)
-
init
<M extends Model> M init()
-
metaData
@Deprecated ModelMetaData metaData()
Deprecated.No longer used, will be removed in a future release
-
pretrainedUrl
String pretrainedUrl(PretrainedType pretrainedType)
-
pretrainedChecksum
long pretrainedChecksum(PretrainedType pretrainedType)
-
modelName
String modelName()
-
-