-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
91 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# DKRL | ||
|
||
Description-Embodied Knowledge Representation Learning (DKRL) | ||
|
||
Representation Learning of Knowledge Graphs with Entity Descriptions | ||
|
||
Ruobing Xie | ||
|
||
===== COMPILE ===== | ||
|
||
Just type make in the folder ./ | ||
|
||
===== NOTE ===== | ||
|
||
Pre-trained embeddings for entity/relation/word are optional. | ||
We update both Structure-based Representations and Description-based Representations in this version. You can also fix Structure-based Representations pre-trained by other models and only update Description-based Representations. | ||
|
||
==CITE== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
all: Train_cnn_multi Test_cnn | ||
Train_cnn_multi: Train_cnn_multi.cpp | ||
g++ Train_cnn_multi.cpp -o Train_cnn_multi -O2 -lpthread | ||
Test_cnn: Test_cnn.cpp | ||
g++ Test_cnn.cpp -o Test_cnn -O2 -lpthread | ||
clean: | ||
rm -rf Train_cnn_multi Test_cnn |