restoreMultiLayerNetwork() needlessly writes temp-file #8735
Signed-off-by: cspriegel <christian.spriegel@gmail.com>master
parent
e4ddf109c3
commit
1df8899fb1
|
@ -43,9 +43,12 @@ import org.nd4j.linalg.primitives.Pair;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.zip.ZipEntry;
|
import java.util.zip.ZipEntry;
|
||||||
import java.util.zip.ZipFile;
|
import java.util.zip.ZipFile;
|
||||||
|
import java.util.zip.ZipInputStream;
|
||||||
import java.util.zip.ZipOutputStream;
|
import java.util.zip.ZipOutputStream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -215,7 +218,24 @@ public class ModelSerializer {
|
||||||
*/
|
*/
|
||||||
public static MultiLayerNetwork restoreMultiLayerNetwork(@NonNull File file, boolean loadUpdater)
|
public static MultiLayerNetwork restoreMultiLayerNetwork(@NonNull File file, boolean loadUpdater)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
ZipFile zipFile = new ZipFile(file);
|
return restoreMultiLayerNetwork(new FileInputStream(file), loadUpdater);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a MultiLayerNetwork from InputStream from an input stream<br>
|
||||||
|
* Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
||||||
|
*
|
||||||
|
* @param is the inputstream to load from
|
||||||
|
* @return the loaded multi layer network
|
||||||
|
* @throws IOException
|
||||||
|
* @see #restoreMultiLayerNetworkAndNormalizer(InputStream, boolean)
|
||||||
|
*/
|
||||||
|
public static MultiLayerNetwork restoreMultiLayerNetwork(@NonNull InputStream is, boolean loadUpdater)
|
||||||
|
throws IOException {
|
||||||
|
checkInputStream(is);
|
||||||
|
|
||||||
|
Map<String, byte[]> zipFile = loadZipData(is);
|
||||||
|
|
||||||
boolean gotConfig = false;
|
boolean gotConfig = false;
|
||||||
boolean gotCoefficients = false;
|
boolean gotCoefficients = false;
|
||||||
|
@ -229,11 +249,11 @@ public class ModelSerializer {
|
||||||
DataSetPreProcessor preProcessor = null;
|
DataSetPreProcessor preProcessor = null;
|
||||||
|
|
||||||
|
|
||||||
ZipEntry config = zipFile.getEntry(CONFIGURATION_JSON);
|
byte[] config = zipFile.get(CONFIGURATION_JSON);
|
||||||
if (config != null) {
|
if (config != null) {
|
||||||
//restoring configuration
|
//restoring configuration
|
||||||
|
|
||||||
InputStream stream = zipFile.getInputStream(config);
|
InputStream stream = new ByteArrayInputStream(config);
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
|
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
|
||||||
String line = "";
|
String line = "";
|
||||||
StringBuilder js = new StringBuilder();
|
StringBuilder js = new StringBuilder();
|
||||||
|
@ -248,25 +268,25 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ZipEntry coefficients = zipFile.getEntry(COEFFICIENTS_BIN);
|
byte[] coefficients = zipFile.get(COEFFICIENTS_BIN);
|
||||||
if (coefficients != null ) {
|
if (coefficients != null ) {
|
||||||
if(coefficients.getSize() > 0) {
|
if(coefficients.length > 0) {
|
||||||
InputStream stream = zipFile.getInputStream(coefficients);
|
InputStream stream = new ByteArrayInputStream(coefficients);
|
||||||
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
||||||
params = Nd4j.read(dis);
|
params = Nd4j.read(dis);
|
||||||
|
|
||||||
dis.close();
|
dis.close();
|
||||||
gotCoefficients = true;
|
gotCoefficients = true;
|
||||||
} else {
|
} else {
|
||||||
ZipEntry noParamsMarker = zipFile.getEntry(NO_PARAMS_MARKER);
|
byte[] noParamsMarker = zipFile.get(NO_PARAMS_MARKER);
|
||||||
gotCoefficients = (noParamsMarker != null);
|
gotCoefficients = (noParamsMarker != null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (loadUpdater) {
|
if (loadUpdater) {
|
||||||
ZipEntry updaterStateEntry = zipFile.getEntry(UPDATER_BIN);
|
byte[] updaterStateEntry = zipFile.get(UPDATER_BIN);
|
||||||
if (updaterStateEntry != null) {
|
if (updaterStateEntry != null) {
|
||||||
InputStream stream = zipFile.getInputStream(updaterStateEntry);
|
InputStream stream = new ByteArrayInputStream(updaterStateEntry);
|
||||||
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
||||||
updaterState = Nd4j.read(dis);
|
updaterState = Nd4j.read(dis);
|
||||||
|
|
||||||
|
@ -275,9 +295,9 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ZipEntry prep = zipFile.getEntry(PREPROCESSOR_BIN);
|
byte[] prep = zipFile.get(PREPROCESSOR_BIN);
|
||||||
if (prep != null) {
|
if (prep != null) {
|
||||||
InputStream stream = zipFile.getInputStream(prep);
|
InputStream stream = new ByteArrayInputStream(prep);
|
||||||
ObjectInputStream ois = new ObjectInputStream(stream);
|
ObjectInputStream ois = new ObjectInputStream(stream);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -290,7 +310,6 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
zipFile.close();
|
|
||||||
|
|
||||||
if (gotConfig && gotCoefficients) {
|
if (gotConfig && gotCoefficients) {
|
||||||
MultiLayerConfiguration confFromJson;
|
MultiLayerConfiguration confFromJson;
|
||||||
|
@ -328,31 +347,6 @@ public class ModelSerializer {
|
||||||
+ "], gotCoefficients: [" + gotCoefficients + "], gotUpdater: [" + gotUpdaterState + "]");
|
+ "], gotCoefficients: [" + gotCoefficients + "], gotUpdater: [" + gotUpdaterState + "]");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load a MultiLayerNetwork from InputStream from an input stream<br>
|
|
||||||
* Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
|
||||||
*
|
|
||||||
* @param is the inputstream to load from
|
|
||||||
* @return the loaded multi layer network
|
|
||||||
* @throws IOException
|
|
||||||
* @see #restoreMultiLayerNetworkAndNormalizer(InputStream, boolean)
|
|
||||||
*/
|
|
||||||
public static MultiLayerNetwork restoreMultiLayerNetwork(@NonNull InputStream is, boolean loadUpdater)
|
|
||||||
throws IOException {
|
|
||||||
checkInputStream(is);
|
|
||||||
|
|
||||||
File tmpFile = null;
|
|
||||||
try{
|
|
||||||
tmpFile = tempFileFromStream(is);
|
|
||||||
return restoreMultiLayerNetwork(tmpFile, loadUpdater);
|
|
||||||
} finally {
|
|
||||||
if(tmpFile != null){
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Restore a multi layer network from an input stream<br>
|
* Restore a multi layer network from an input stream<br>
|
||||||
* * Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
* * Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
||||||
|
@ -404,15 +398,9 @@ public class ModelSerializer {
|
||||||
@NonNull InputStream is, boolean loadUpdater) throws IOException {
|
@NonNull InputStream is, boolean loadUpdater) throws IOException {
|
||||||
checkInputStream(is);
|
checkInputStream(is);
|
||||||
|
|
||||||
File tmpFile = null;
|
MultiLayerNetwork net = restoreMultiLayerNetwork(is, loadUpdater);
|
||||||
try {
|
Normalizer norm = restoreNormalizerFromInputStream(is);
|
||||||
tmpFile = tempFileFromStream(is);
|
return new Pair<>(net, norm);
|
||||||
return restoreMultiLayerNetworkAndNormalizer(tmpFile, loadUpdater);
|
|
||||||
} finally {
|
|
||||||
if (tmpFile != null) {
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -425,9 +413,7 @@ public class ModelSerializer {
|
||||||
*/
|
*/
|
||||||
public static Pair<MultiLayerNetwork, Normalizer> restoreMultiLayerNetworkAndNormalizer(@NonNull File file, boolean loadUpdater)
|
public static Pair<MultiLayerNetwork, Normalizer> restoreMultiLayerNetworkAndNormalizer(@NonNull File file, boolean loadUpdater)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
MultiLayerNetwork net = restoreMultiLayerNetwork(file, loadUpdater);
|
return restoreMultiLayerNetworkAndNormalizer(new FileInputStream(file), loadUpdater);
|
||||||
Normalizer norm = restoreNormalizerFromFile(file);
|
|
||||||
return new Pair<>(net, norm);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -465,87 +451,7 @@ public class ModelSerializer {
|
||||||
throws IOException {
|
throws IOException {
|
||||||
checkInputStream(is);
|
checkInputStream(is);
|
||||||
|
|
||||||
File tmpFile = null;
|
Map<String, byte[]> files = loadZipData(is);
|
||||||
try{
|
|
||||||
tmpFile = tempFileFromStream(is);
|
|
||||||
return restoreComputationGraph(tmpFile, loadUpdater);
|
|
||||||
} finally {
|
|
||||||
if(tmpFile != null){
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load a computation graph from a InputStream
|
|
||||||
* @param is the inputstream to get the computation graph from
|
|
||||||
* @return the loaded computation graph
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
*/
|
|
||||||
public static ComputationGraph restoreComputationGraph(@NonNull InputStream is) throws IOException {
|
|
||||||
return restoreComputationGraph(is, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load a computation graph from a file
|
|
||||||
* @param file the file to get the computation graph from
|
|
||||||
* @return the loaded computation graph
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
*/
|
|
||||||
public static ComputationGraph restoreComputationGraph(@NonNull File file) throws IOException {
|
|
||||||
return restoreComputationGraph(file, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Restore a ComputationGraph and Normalizer (if present - null if not) from the InputStream.
|
|
||||||
* Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
|
||||||
*
|
|
||||||
* @param is Input stream to read from
|
|
||||||
* @param loadUpdater Whether to load the updater from the model or not
|
|
||||||
* @return Model and normalizer, if present
|
|
||||||
* @throws IOException If an error occurs when reading from the stream
|
|
||||||
*/
|
|
||||||
public static Pair<ComputationGraph, Normalizer> restoreComputationGraphAndNormalizer(
|
|
||||||
@NonNull InputStream is, boolean loadUpdater) throws IOException {
|
|
||||||
checkInputStream(is);
|
|
||||||
|
|
||||||
File tmpFile = null;
|
|
||||||
try {
|
|
||||||
tmpFile = tempFileFromStream(is);
|
|
||||||
return restoreComputationGraphAndNormalizer(tmpFile, loadUpdater);
|
|
||||||
} finally {
|
|
||||||
if (tmpFile != null) {
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Restore a ComputationGraph and Normalizer (if present - null if not) from a File
|
|
||||||
*
|
|
||||||
* @param file File to read the model and normalizer from
|
|
||||||
* @param loadUpdater Whether to load the updater from the model or not
|
|
||||||
* @return Model and normalizer, if present
|
|
||||||
* @throws IOException If an error occurs when reading from the File
|
|
||||||
*/
|
|
||||||
public static Pair<ComputationGraph, Normalizer> restoreComputationGraphAndNormalizer(@NonNull File file, boolean loadUpdater)
|
|
||||||
throws IOException {
|
|
||||||
ComputationGraph net = restoreComputationGraph(file, loadUpdater);
|
|
||||||
Normalizer norm = restoreNormalizerFromFile(file);
|
|
||||||
return new Pair<>(net, norm);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load a computation graph from a file
|
|
||||||
* @param file the file to get the computation graph from
|
|
||||||
* @return the loaded computation graph
|
|
||||||
*
|
|
||||||
* @throws IOException
|
|
||||||
*/
|
|
||||||
public static ComputationGraph restoreComputationGraph(@NonNull File file, boolean loadUpdater) throws IOException {
|
|
||||||
ZipFile zipFile = new ZipFile(file);
|
|
||||||
|
|
||||||
boolean gotConfig = false;
|
boolean gotConfig = false;
|
||||||
boolean gotCoefficients = false;
|
boolean gotCoefficients = false;
|
||||||
|
@ -558,11 +464,11 @@ public class ModelSerializer {
|
||||||
DataSetPreProcessor preProcessor = null;
|
DataSetPreProcessor preProcessor = null;
|
||||||
|
|
||||||
|
|
||||||
ZipEntry config = zipFile.getEntry(CONFIGURATION_JSON);
|
byte[] config = files.get(CONFIGURATION_JSON);
|
||||||
if (config != null) {
|
if (config != null) {
|
||||||
//restoring configuration
|
//restoring configuration
|
||||||
|
|
||||||
InputStream stream = zipFile.getInputStream(config);
|
InputStream stream = new ByteArrayInputStream(config);
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
|
BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
|
||||||
String line = "";
|
String line = "";
|
||||||
StringBuilder js = new StringBuilder();
|
StringBuilder js = new StringBuilder();
|
||||||
|
@ -577,27 +483,27 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ZipEntry coefficients = zipFile.getEntry(COEFFICIENTS_BIN);
|
byte[] coefficients = files.get(COEFFICIENTS_BIN);
|
||||||
if (coefficients != null) {
|
if (coefficients != null) {
|
||||||
if(coefficients.getSize() > 0) {
|
if(coefficients.length > 0) {
|
||||||
InputStream stream = zipFile.getInputStream(coefficients);
|
InputStream stream = new ByteArrayInputStream(coefficients);
|
||||||
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
DataInputStream dis = new DataInputStream(stream);
|
||||||
params = Nd4j.read(dis);
|
params = Nd4j.read(dis);
|
||||||
|
|
||||||
dis.close();
|
dis.close();
|
||||||
gotCoefficients = true;
|
gotCoefficients = true;
|
||||||
} else {
|
} else {
|
||||||
ZipEntry noParamsMarker = zipFile.getEntry(NO_PARAMS_MARKER);
|
byte[] noParamsMarker = files.get(NO_PARAMS_MARKER);
|
||||||
gotCoefficients = (noParamsMarker != null);
|
gotCoefficients = (noParamsMarker != null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (loadUpdater) {
|
if (loadUpdater) {
|
||||||
ZipEntry updaterStateEntry = zipFile.getEntry(UPDATER_BIN);
|
byte[] updaterStateEntry = files.get(UPDATER_BIN);
|
||||||
if (updaterStateEntry != null) {
|
if (updaterStateEntry != null) {
|
||||||
InputStream stream = zipFile.getInputStream(updaterStateEntry);
|
InputStream stream = new ByteArrayInputStream(updaterStateEntry);
|
||||||
DataInputStream dis = new DataInputStream(new BufferedInputStream(stream));
|
DataInputStream dis = new DataInputStream(stream);
|
||||||
updaterState = Nd4j.read(dis);
|
updaterState = Nd4j.read(dis);
|
||||||
|
|
||||||
dis.close();
|
dis.close();
|
||||||
|
@ -605,9 +511,9 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ZipEntry prep = zipFile.getEntry(PREPROCESSOR_BIN);
|
byte[] prep = files.get(PREPROCESSOR_BIN);
|
||||||
if (prep != null) {
|
if (prep != null) {
|
||||||
InputStream stream = zipFile.getInputStream(prep);
|
InputStream stream = new ByteArrayInputStream(prep);
|
||||||
ObjectInputStream ois = new ObjectInputStream(stream);
|
ObjectInputStream ois = new ObjectInputStream(stream);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -620,8 +526,6 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
zipFile.close();
|
|
||||||
|
|
||||||
if (gotConfig && gotCoefficients) {
|
if (gotConfig && gotCoefficients) {
|
||||||
ComputationGraphConfiguration confFromJson;
|
ComputationGraphConfiguration confFromJson;
|
||||||
try{
|
try{
|
||||||
|
@ -662,6 +566,70 @@ public class ModelSerializer {
|
||||||
+ "], gotCoefficients: [" + gotCoefficients + "], gotUpdater: [" + gotUpdaterState + "]");
|
+ "], gotCoefficients: [" + gotCoefficients + "], gotUpdater: [" + gotUpdaterState + "]");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a computation graph from a InputStream
|
||||||
|
* @param is the inputstream to get the computation graph from
|
||||||
|
* @return the loaded computation graph
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
public static ComputationGraph restoreComputationGraph(@NonNull InputStream is) throws IOException {
|
||||||
|
return restoreComputationGraph(is, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a computation graph from a file
|
||||||
|
* @param file the file to get the computation graph from
|
||||||
|
* @return the loaded computation graph
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
public static ComputationGraph restoreComputationGraph(@NonNull File file) throws IOException {
|
||||||
|
return restoreComputationGraph(file, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Restore a ComputationGraph and Normalizer (if present - null if not) from the InputStream.
|
||||||
|
* Note: the input stream is read fully and closed by this method. Consequently, the input stream cannot be re-used.
|
||||||
|
*
|
||||||
|
* @param is Input stream to read from
|
||||||
|
* @param loadUpdater Whether to load the updater from the model or not
|
||||||
|
* @return Model and normalizer, if present
|
||||||
|
* @throws IOException If an error occurs when reading from the stream
|
||||||
|
*/
|
||||||
|
public static Pair<ComputationGraph, Normalizer> restoreComputationGraphAndNormalizer(
|
||||||
|
@NonNull InputStream is, boolean loadUpdater) throws IOException {
|
||||||
|
checkInputStream(is);
|
||||||
|
|
||||||
|
ComputationGraph net = restoreComputationGraph(is, loadUpdater);
|
||||||
|
Normalizer norm = restoreNormalizerFromInputStream(is);
|
||||||
|
return new Pair<>(net, norm);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Restore a ComputationGraph and Normalizer (if present - null if not) from a File
|
||||||
|
*
|
||||||
|
* @param file File to read the model and normalizer from
|
||||||
|
* @param loadUpdater Whether to load the updater from the model or not
|
||||||
|
* @return Model and normalizer, if present
|
||||||
|
* @throws IOException If an error occurs when reading from the File
|
||||||
|
*/
|
||||||
|
public static Pair<ComputationGraph, Normalizer> restoreComputationGraphAndNormalizer(@NonNull File file, boolean loadUpdater)
|
||||||
|
throws IOException {
|
||||||
|
return restoreComputationGraphAndNormalizer(new FileInputStream(file), loadUpdater);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a computation graph from a file
|
||||||
|
* @param file the file to get the computation graph from
|
||||||
|
* @return the loaded computation graph
|
||||||
|
*
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
public static ComputationGraph restoreComputationGraph(@NonNull File file, boolean loadUpdater) throws IOException {
|
||||||
|
return restoreComputationGraph(new FileInputStream(file), loadUpdater);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param model
|
* @param model
|
||||||
|
@ -811,15 +779,16 @@ public class ModelSerializer {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Add new object:
|
//Add new object:
|
||||||
ZipEntry entry = new ZipEntry("objects/" + key);
|
|
||||||
writeFile.putNextEntry(entry);
|
|
||||||
|
|
||||||
try(ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos)){
|
try(ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos)){
|
||||||
oos.writeObject(o);
|
oos.writeObject(o);
|
||||||
byte[] bytes = baos.toByteArray();
|
byte[] bytes = baos.toByteArray();
|
||||||
|
ZipEntry entry = new ZipEntry("objects/" + key);
|
||||||
|
entry.setSize(bytes.length);
|
||||||
|
writeFile.putNextEntry(entry);
|
||||||
writeFile.write(bytes);
|
writeFile.write(bytes);
|
||||||
|
writeFile.closeEntry();
|
||||||
}
|
}
|
||||||
writeFile.closeEntry();
|
|
||||||
|
|
||||||
writeFile.close();
|
writeFile.close();
|
||||||
zipFile.close();
|
zipFile.close();
|
||||||
|
@ -904,18 +873,12 @@ public class ModelSerializer {
|
||||||
* @param file
|
* @param file
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public static <T extends Normalizer> T restoreNormalizerFromFile(File file) {
|
public static <T extends Normalizer> T restoreNormalizerFromFile(File file) throws IOException {
|
||||||
try (ZipFile zipFile = new ZipFile(file)) {
|
try {
|
||||||
ZipEntry norm = zipFile.getEntry(NORMALIZER_BIN);
|
return restoreNormalizerFromInputStream(new FileInputStream(file));
|
||||||
|
|
||||||
// checking for file existence
|
|
||||||
if (norm == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
return NormalizerSerializer.getDefault().restore(zipFile.getInputStream(norm));
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("Error while restoring normalizer, trying to restore assuming deprecated format...");
|
log.warn("Error while restoring normalizer, trying to restore assuming deprecated format...");
|
||||||
DataNormalization restoredDeprecated = restoreNormalizerFromFileDeprecated(file);
|
DataNormalization restoredDeprecated = restoreNormalizerFromInputStreamDeprecated(new FileInputStream(file));
|
||||||
|
|
||||||
log.warn("Recovered using deprecated method. Will now re-save the normalizer to fix this issue.");
|
log.warn("Recovered using deprecated method. Will now re-save the normalizer to fix this issue.");
|
||||||
addNormalizerToModel(file, restoredDeprecated);
|
addNormalizerToModel(file, restoredDeprecated);
|
||||||
|
@ -934,15 +897,18 @@ public class ModelSerializer {
|
||||||
public static <T extends Normalizer> T restoreNormalizerFromInputStream(InputStream is) throws IOException {
|
public static <T extends Normalizer> T restoreNormalizerFromInputStream(InputStream is) throws IOException {
|
||||||
checkInputStream(is);
|
checkInputStream(is);
|
||||||
|
|
||||||
File tmpFile = null;
|
Map<String, byte[]> files = loadZipData(is);
|
||||||
|
byte[] norm = files.get(NORMALIZER_BIN);
|
||||||
|
|
||||||
|
// checking for file existence
|
||||||
|
if (norm == null)
|
||||||
|
return null;
|
||||||
try {
|
try {
|
||||||
tmpFile = tempFileFromStream(is);
|
return NormalizerSerializer.getDefault().restore(new ByteArrayInputStream(norm));
|
||||||
return restoreNormalizerFromFile(tmpFile);
|
|
||||||
} finally {
|
|
||||||
if(tmpFile != null){
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
throw new IOException("Error loading normalizer", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -953,17 +919,9 @@ public class ModelSerializer {
|
||||||
* @param file
|
* @param file
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private static DataNormalization restoreNormalizerFromFileDeprecated(File file) {
|
private static DataNormalization restoreNormalizerFromInputStreamDeprecated(InputStream stream) {
|
||||||
try (ZipFile zipFile = new ZipFile(file)) {
|
try {
|
||||||
ZipEntry norm = zipFile.getEntry(NORMALIZER_BIN);
|
|
||||||
|
|
||||||
// checking for file existence
|
|
||||||
if (norm == null)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
InputStream stream = zipFile.getInputStream(norm);
|
|
||||||
ObjectInputStream ois = new ObjectInputStream(stream);
|
ObjectInputStream ois = new ObjectInputStream(stream);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
DataNormalization normalizer = (DataNormalization) ois.readObject();
|
DataNormalization normalizer = (DataNormalization) ois.readObject();
|
||||||
return normalizer;
|
return normalizer;
|
||||||
|
@ -996,31 +954,30 @@ public class ModelSerializer {
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void checkTempFileFromInputStream(File f) throws IOException {
|
private static Map<String, byte[]> loadZipData(InputStream is) throws IOException {
|
||||||
if (f.length() <= 0) {
|
Map<String, byte[]> result = new HashMap<>();
|
||||||
throw new IOException("Error reading from input stream: temporary file is empty after copying entire stream." +
|
try (final ZipInputStream zis = new ZipInputStream(is)) {
|
||||||
" Stream may have been closed before reading, is attempting to be used multiple times, or does not" +
|
while (true) {
|
||||||
" point to a model file?");
|
final ZipEntry zipEntry = zis.getNextEntry();
|
||||||
}
|
if (zipEntry == null)
|
||||||
|
break;
|
||||||
|
if(zipEntry.isDirectory() || zipEntry.getSize() > Integer.MAX_VALUE)
|
||||||
|
throw new IllegalArgumentException();
|
||||||
|
|
||||||
|
final int size = (int) (zipEntry.getSize());
|
||||||
|
final byte[] data;
|
||||||
|
if (size >= 0) { // known size
|
||||||
|
data = IOUtils.readFully(zis, size);
|
||||||
|
}
|
||||||
|
else { // unknown size
|
||||||
|
final ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
||||||
|
IOUtils.copy(zis, bout);
|
||||||
|
data = bout.toByteArray();
|
||||||
|
}
|
||||||
|
result.put(zipEntry.getName(), data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static File tempFileFromStream(InputStream is) throws IOException{
|
|
||||||
checkInputStream(is);
|
|
||||||
String p = System.getProperty(DL4JSystemProperties.DL4J_TEMP_DIR_PROPERTY);
|
|
||||||
File tmpFile = DL4JFileUtils.createTempFile("dl4jModelSerializer", "bin");
|
|
||||||
try {
|
|
||||||
tmpFile.deleteOnExit();
|
|
||||||
BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(tmpFile));
|
|
||||||
IOUtils.copy(is, bufferedOutputStream);
|
|
||||||
bufferedOutputStream.flush();
|
|
||||||
IOUtils.closeQuietly(bufferedOutputStream);
|
|
||||||
checkTempFileFromInputStream(tmpFile);
|
|
||||||
return tmpFile;
|
|
||||||
} catch (IOException e){
|
|
||||||
if(tmpFile != null){
|
|
||||||
tmpFile.delete();
|
|
||||||
}
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue