| Package | Description |
|---|---|
| org.deeplearning4j.optimize.listeners |
| Modifier and Type | Method and Description |
|---|---|
static Checkpoint |
Checkpoint.fromFileString(String str) |
Checkpoint |
CheckpointListener.lastCheckpoint()
Return the most recent checkpoint, if one exists - otherwise returns null
|
static Checkpoint |
CheckpointListener.lastCheckpoint(File rootDir)
Return the most recent checkpoint, if one exists - otherwise returns null
|
| Modifier and Type | Method and Description |
|---|---|
List<Checkpoint> |
CheckpointListener.availableCheckpoints()
List all available checkpoints.
|
static List<Checkpoint> |
CheckpointListener.availableCheckpoints(File directory)
List all available checkpoints.
|
| Modifier and Type | Method and Description |
|---|---|
File |
CheckpointListener.getFileForCheckpoint(Checkpoint checkpoint)
Get the model file for the given checkpoint.
|
ComputationGraph |
CheckpointListener.loadCheckpointCG(Checkpoint checkpoint)
Load a ComputationGraph for the given checkpoint
|
static ComputationGraph |
CheckpointListener.loadCheckpointCG(File rootDir,
Checkpoint checkpoint)
Load a ComputationGraph for the given checkpoint from the specified root direcotry
|
MultiLayerNetwork |
CheckpointListener.loadCheckpointMLN(Checkpoint checkpoint)
Load a MultiLayerNetwork for the given checkpoint
|
static MultiLayerNetwork |
CheckpointListener.loadCheckpointMLN(File rootDir,
Checkpoint checkpoint)
Load a MultiLayerNetwork for the given checkpoint that resides in the specified root directory
|
Copyright © 2021. All rights reserved.