Skip to content
Snippets Groups Projects
Commit 6ac26eb3 authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Respect third dimension in getCacheFilePathForVQ

parent facaffb9
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,8 @@ public class QuantizationCacheManager {
final int codebookSize,
final V3i vDim) {
final File inputFile = new File(trainFile);
return new File(cacheFolder, String.format("%s_%d_%dx%d.qvc", inputFile.getName(), codebookSize,
vDim.getX(), vDim.getY()));
return new File(cacheFolder, String.format("%s_%d_%dx%dx%d.qvc", inputFile.getName(), codebookSize,
vDim.getX(), vDim.getY(), vDim.getZ()));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment