We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8975f commit 4d78d28Copy full SHA for 4d78d28
src/main/java/com/medallia/word2vec/Word2VecModel.java
@@ -94,7 +94,7 @@ public static Word2VecModel fromBinFile(File file)
94
public static Word2VecModel fromBinFile(File file, ByteOrder byteOrder)
95
throws IOException {
96
97
- try (FileInputStream fis = new FileInputStream(file);) {
+ try (FileInputStream fis = new FileInputStream(file)) {
98
final FileChannel channel = fis.getChannel();
99
final long oneGB = 1024 * 1024 * 1024;
100
MappedByteBuffer buffer =
0 commit comments