All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.zoo.InstantiableModel Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.zoo;

import org.deeplearning4j.nn.api.Model;

/**
 * Interface for defining a model that can be instantiated and return
 * information about itself.
 */
public interface InstantiableModel {

    void setInputShape(int[][] inputShape);

     M init();

    @Deprecated ModelMetaData metaData();

    Class modelType();

    String pretrainedUrl(PretrainedType pretrainedType);

    long pretrainedChecksum(PretrainedType pretrainedType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy