| Package | Description |
|---|---|
| org.deeplearning4j.api.storage | |
| org.deeplearning4j.api.storage.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
StorageMetaData
StorageMetaData: contains metadata (such at types, and arbitrary custom serializable data) for storage
|
| Modifier and Type | Method and Description |
|---|---|
Persistable |
StatsStorage.getLatestUpdate(String sessionID,
String typeID,
String workerID)
Get the latest update record (i.e., update record with the largest timestamp value) for the specified
session and worker IDs
|
Persistable |
StatsStorage.getStaticInfo(String sessionID,
String typeID,
String workerID)
Get the static info for the given session and worker IDs, or null if no such static info has been reported
|
Persistable |
StatsStorage.getUpdate(String sessionID,
String typeId,
String workerID,
long timestamp)
Get the specified update (or null, if none exists for the given session/worker ids and timestamp)
|
| Modifier and Type | Method and Description |
|---|---|
List<Persistable> |
StatsStorage.getAllStaticInfos(String sessionID,
String typeID)
Get all static informations for the given session and type ID
|
List<Persistable> |
StatsStorage.getAllUpdatesAfter(String sessionID,
String typeID,
long timestamp)
Get all updates for the given session ID (all worker IDs), that occur after (not including) the given timestamp.
|
List<Persistable> |
StatsStorage.getAllUpdatesAfter(String sessionID,
String typeID,
String workerID,
long timestamp)
Get all updates for the given session and worker ID, that occur after (not including) the given timestamp.
|
List<Persistable> |
StatsStorage.getLatestUpdateAllWorkers(String sessionID,
String typeID)
Get the latest update for all workers, for the given session ID
|
| Modifier and Type | Method and Description |
|---|---|
void |
StatsStorageRouter.putStaticInfo(Persistable staticInfo)
Static info: reported once per session, upon initialization
|
void |
StatsStorageRouter.putUpdate(Persistable update)
Updates: stored multiple times per session (periodically, for example)
|
| Modifier and Type | Method and Description |
|---|---|
void |
StatsStorageRouter.putStaticInfo(Collection<? extends Persistable> staticInfo)
Static info: reported once per session, upon initialization
|
void |
StatsStorageRouter.putUpdate(Collection<? extends Persistable> updates)
Updates: stored multiple times per session (periodically, for example)
|
| Modifier and Type | Method and Description |
|---|---|
void |
CollectionStatsStorageRouter.putStaticInfo(Persistable staticInfo) |
void |
RemoteUIStatsStorageRouter.putStaticInfo(Persistable staticInfo) |
void |
CollectionStatsStorageRouter.putUpdate(Persistable update) |
void |
RemoteUIStatsStorageRouter.putUpdate(Persistable update) |
| Modifier and Type | Method and Description |
|---|---|
void |
CollectionStatsStorageRouter.putStaticInfo(Collection<? extends Persistable> staticInfo) |
void |
RemoteUIStatsStorageRouter.putStaticInfo(Collection<? extends Persistable> staticInfo) |
void |
CollectionStatsStorageRouter.putUpdate(Collection<? extends Persistable> updates) |
void |
RemoteUIStatsStorageRouter.putUpdate(Collection<? extends Persistable> updates) |
Copyright © 2017. All rights reserved.