Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
word2vec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
35
Issues
35
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
DESHPANDE SRIJAY PARAG
word2vec
Commits
3628abdd
Commit
3628abdd
authored
Jul 31, 2013
by
tmikolov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aa
parent
5a7f38ec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
makefile
makefile
+8
-8
No files found.
makefile
View file @
3628abdd
CC
=
gcc
CFLAGS
=
-lm
-pthread
-Ofast
-march
=
native
-Wall
-funroll-loops
-Wno-unused-result
all
:
distance word2phrase word2vec
distance
:
distance.c
$(CC)
distance.c
-o
distance
$(CFLAGS)
word2phrase
:
word2phrase.c
$(CC)
word2phrase.c
-o
word2phrase
$(CFLAGS)
all
:
word2vec word2phrase distance word-analogy
word2vec
:
word2vec.c
$(CC)
word2vec.c
-o
word2vec
$(CFLAGS)
word2phrase
:
word2phrase.c
$(CC)
word2phrase.c
-o
word2phrase
$(CFLAGS)
distance
:
distance.c
$(CC)
distance.c
-o
distance
$(CFLAGS)
word-analogy
:
word-analogy.c
$(CC)
word-analogy.c
-o
word-analogy
$(CFLAGS)
clean
:
rm
-rf
distance word2phrase word2vec
rm
-rf
word2vec word2phrase distance word-analogy
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