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

org.deeplearning4j.ui.storage.FileStatsStorage Maven / Gradle / Ivy

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

import org.deeplearning4j.ui.storage.mapdb.MapDBStatsStorage;

import java.io.File;

/**
 * A StatsStorage implementation that stores UI data in a file for persistence.
* Can be used for multiple instances, and across multiple independent runs. Data can be loaded later in a separate * JVM instance by passing the same file location to both.
* Internally, uses {@link MapDBStatsStorage} * * @author Alex Black */ public class FileStatsStorage extends MapDBStatsStorage { private final File file; public FileStatsStorage(File f) { super(f); this.file = f; } @Override public String toString() { return "FileStatsStorage(" + file.getPath() + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy