Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
ReaderBench
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
14
Issues
14
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReaderBench
ReaderBench
Commits
4db018ee
Commit
4db018ee
authored
Nov 13, 2017
by
Dorinela Dascalu
🌺
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
word2vec training file separator bug
parent
91777d7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/main/java/services/semanticModels/word2vec/Word2VecModel.java
.../java/services/semanticModels/word2vec/Word2VecModel.java
+1
-1
No files found.
src/main/java/services/semanticModels/word2vec/Word2VecModel.java
View file @
4db018ee
...
...
@@ -191,7 +191,7 @@ public class Word2VecModel implements ISemanticModel {
public
static
void
trainModel
(
String
inputFile
,
int
noEpochs
,
int
layerSize
)
throws
FileNotFoundException
{
if
(!
inputFile
.
startsWith
(
"resources"
))
{
if
(
inputFile
.
contains
(
"resources"
+
File
.
separatorChar
))
{
inputFile
=
inputFile
.
replaceAll
(
".*resources"
,
"resources"
).
replaceAll
(
File
.
separator
,
"/"
);
inputFile
=
inputFile
.
replaceAll
(
".*resources"
,
"resources"
).
replaceAll
(
"[\\\\/]"
,
"/"
);
}
else
{
inputFile
=
inputFile
.
replaceAll
(
".*ReaderBench\\/"
,
"resources/"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment