forked from yehjin-shin/BSARec
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
397c7d7
commit 704a0d1
Showing
9 changed files
with
485 additions
and
59 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
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 |
---|---|---|
@@ -1,5 +1,19 @@ | ||
from model.bsarec import BSARecModel | ||
from model.caser import CaserModel | ||
from model.gru4rec import GRU4RecModel | ||
from model.sasrec import SASRecModel | ||
from model.bert4rec import BERT4RecModel | ||
from model.fmlprec import FMLPRecModel | ||
from model.duorec import DuoRecModel | ||
from model.fearec import FEARecModel | ||
|
||
MODEL_DICT = { | ||
"bsarec": BSARecModel, | ||
"caser": CaserModel, | ||
"gru4rec": GRU4RecModel, | ||
"sasrec": SASRecModel, | ||
"bert4rec": BERT4RecModel, | ||
"fmlprec": FMLPRecModel, | ||
"duorec": DuoRecModel, | ||
"fearec": FEARecModel, | ||
} |
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
Oops, something went wrong.