Package ai.djl
Class BaseModel
- java.lang.Object
-
- ai.djl.BaseModel
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,java.lang.Object>artifactsprotected Blockblockprotected DataTypedataTypeprotected ai.djl.util.PairList<java.lang.String,Shape>inputDataprotected NDManagermanagerprotected java.nio.file.PathmodelDirprotected java.lang.StringmodelNameprotected java.util.Map<java.lang.String,java.lang.String>propertiesprotected booleanwasLoaded
-
Constructor Summary
Constructors Modifier Constructor Description protectedBaseModel(java.lang.String modelName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()ai.djl.util.PairList<java.lang.String,Shape>describeInput()Returns the input descriptor of the model.ai.djl.util.PairList<java.lang.String,Shape>describeOutput()Returns the output descriptor of the model.protected voidfinalize()java.net.URLgetArtifact(java.lang.String artifactName)Finds an artifact resource with a given name in the model.<T> TgetArtifact(java.lang.String name, java.util.function.Function<java.io.InputStream,T> function)Attempts to load the artifact using the given function and cache it if the specified artifact is not already cached.java.io.InputStreamgetArtifactAsStream(java.lang.String name)Finds an artifact resource with a given name in the model.java.lang.String[]getArtifactNames()Returns the artifact names associated with the model.BlockgetBlock()Gets the block from the Model.DataTypegetDataType()Returns the standard data type used within the model.java.nio.file.PathgetModelPath()Returns the directory from where the model is loaded.java.lang.StringgetName()Gets the model name.NDManagergetNDManager()Gets theNDManagerfrom the model.java.util.Map<java.lang.String,java.lang.String>getProperties()Returns the model's properties.java.lang.StringgetProperty(java.lang.String key)Returns the property of the model based on property name.voidload(java.io.InputStream is, java.util.Map<java.lang.String,?> options)Loads the model from theInputStreamwith the options provided.<I,O>
Predictor<I,O>newPredictor(Translator<I,O> translator, Device device)Creates a new Predictor based on the model.TrainernewTrainer(TrainingConfig trainingConfig)Creates a newTrainerinstance for a Model.protected java.nio.file.PathparamPathResolver(java.lang.String prefix, java.util.Map<java.lang.String,?> options)protected booleanreadParameters(java.nio.file.Path paramFile, java.util.Map<java.lang.String,?> options)voidsave(java.nio.file.Path modelPath, java.lang.String newModelName)Saves the model to the specifiedmodelPathwith the name provided.voidsetBlock(Block block)Sets the block for the Model for training and inference.voidsetDataType(DataType dataType)Sets the standard data type used within the model.protected voidsetModelDir(java.nio.file.Path modelDir)voidsetProperty(java.lang.String key, java.lang.String value)Sets a property to the model.java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ai.djl.Model
cast, getProperty, load, load, load, load, newPredictor, quantize
-
-
-
-
Field Detail
-
modelDir
protected java.nio.file.Path modelDir
-
block
protected Block block
-
modelName
protected java.lang.String modelName
-
manager
protected NDManager manager
-
dataType
protected DataType dataType
-
wasLoaded
protected boolean wasLoaded
-
inputData
protected ai.djl.util.PairList<java.lang.String,Shape> inputData
-
artifacts
protected java.util.Map<java.lang.String,java.lang.Object> artifacts
-
properties
protected java.util.Map<java.lang.String,java.lang.String> properties
-
-
Method Detail
-
getBlock
public Block getBlock()
Gets the block from the Model.
-
setBlock
public void setBlock(Block block)
Sets the block for the Model for training and inference.
-
getName
public java.lang.String getName()
Gets the model name.
-
getNDManager
public NDManager getNDManager()
Gets theNDManagerfrom the model.- Specified by:
getNDManagerin interfaceModel- Returns:
- the
NDManager
-
newTrainer
public Trainer newTrainer(TrainingConfig trainingConfig)
Creates a newTrainerinstance for a Model.- Specified by:
newTrainerin interfaceModel- Parameters:
trainingConfig- training configuration settings- Returns:
- the
Trainerinstance
-
newPredictor
public <I,O> Predictor<I,O> newPredictor(Translator<I,O> translator, Device device)
Creates a new Predictor based on the model.- Specified by:
newPredictorin interfaceModel- Type Parameters:
I- the input object for pre-processingO- the output object from postprocessing- Parameters:
translator- the object used for pre-processing and postprocessingdevice- the device to use for prediction- Returns:
- an instance of
Predictor
-
setDataType
public void setDataType(DataType dataType)
Sets the standard data type used within the model.- Specified by:
setDataTypein interfaceModel- Parameters:
dataType- the standard data type to use
-
getDataType
public DataType getDataType()
Returns the standard data type used within the model.- Specified by:
getDataTypein interfaceModel- Returns:
- the standard data type used within the model
-
load
public void load(java.io.InputStream is, java.util.Map<java.lang.String,?> options) throws java.io.IOException, MalformedModelExceptionLoads the model from theInputStreamwith the options provided.- Specified by:
loadin interfaceModel- Parameters:
is- theInputStreamto load the model fromoptions- engine specific load model options, see documentation for each engine- Throws:
java.io.IOException- when IO operation fails in loading a resourceMalformedModelException- if model file is corrupted
-
close
public void close()
-
describeInput
public ai.djl.util.PairList<java.lang.String,Shape> describeInput()
Returns the input descriptor of the model.It contains the information that can be extracted from the model, usually name, shape, layout and DataType.
- Specified by:
describeInputin interfaceModel- Returns:
- a PairList of String and Shape
-
describeOutput
public ai.djl.util.PairList<java.lang.String,Shape> describeOutput()
Returns the output descriptor of the model.It contains the output information that can be obtained from the model.
- Specified by:
describeOutputin interfaceModel- Returns:
- a PairList of String and Shape
-
getArtifactNames
public java.lang.String[] getArtifactNames()
Returns the artifact names associated with the model.- Specified by:
getArtifactNamesin interfaceModel- Returns:
- an array of artifact names
-
getArtifact
public <T> T getArtifact(java.lang.String name, java.util.function.Function<java.io.InputStream,T> function) throws java.io.IOExceptionAttempts to load the artifact using the given function and cache it if the specified artifact is not already cached.Model will cache loaded artifact, so the user doesn't need to keep tracking it.
String synset = model.getArtifact("synset.txt", k -> IOUtils.toString(k)));- Specified by:
getArtifactin interfaceModel- Type Parameters:
T- the type of the returned artifact object- Parameters:
name- the name of the desired artifactfunction- the function to load the artifact- Returns:
- the current (existing or computed) artifact associated with the specified name, or null if the computed value is null
- Throws:
java.io.IOException- when IO operation fails in loading a resource
-
getArtifact
public java.net.URL getArtifact(java.lang.String artifactName) throws java.io.IOExceptionFinds an artifact resource with a given name in the model.- Specified by:
getArtifactin interfaceModel- Parameters:
artifactName- the name of the desired artifact- Returns:
- a
URLobject ornullif no artifact with this name is found - Throws:
java.io.IOException- when IO operation fails in loading a resource
-
getArtifactAsStream
public java.io.InputStream getArtifactAsStream(java.lang.String name) throws java.io.IOExceptionFinds an artifact resource with a given name in the model.- Specified by:
getArtifactAsStreamin interfaceModel- Parameters:
name- the name of the desired artifact- Returns:
- a
InputStreamobject ornullif no resource with this name is found - Throws:
java.io.IOException- when IO operation fails in loading a resource
-
setProperty
public void setProperty(java.lang.String key, java.lang.String value)Sets a property to the model.properties will be saved/loaded with model, user can store some information about the model in here.
- Specified by:
setPropertyin interfaceModel- Parameters:
key- the name of the propertyvalue- the value of the property
-
getProperty
public java.lang.String getProperty(java.lang.String key)
Returns the property of the model based on property name.- Specified by:
getPropertyin interfaceModel- Parameters:
key- the name of the property- Returns:
- the value of the property
-
getProperties
public java.util.Map<java.lang.String,java.lang.String> getProperties()
Returns the model's properties.- Specified by:
getPropertiesin interfaceModel- Returns:
- the model's properties
-
setModelDir
protected void setModelDir(java.nio.file.Path modelDir)
-
save
public void save(java.nio.file.Path modelPath, java.lang.String newModelName) throws java.io.IOExceptionSaves the model to the specifiedmodelPathwith the name provided.
-
getModelPath
public java.nio.file.Path getModelPath()
Returns the directory from where the model is loaded.- Specified by:
getModelPathin interfaceModel- Returns:
- the directory of the model location
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
finalize
protected void finalize() throws java.lang.Throwable- Overrides:
finalizein classjava.lang.Object- Throws:
java.lang.Throwable
-
paramPathResolver
protected java.nio.file.Path paramPathResolver(java.lang.String prefix, java.util.Map<java.lang.String,?> options) throws java.io.IOException- Throws:
java.io.IOException
-
readParameters
protected boolean readParameters(java.nio.file.Path paramFile, java.util.Map<java.lang.String,?> options) throws java.io.IOException, MalformedModelException- Throws:
java.io.IOExceptionMalformedModelException
-
-