-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from guijiql/master
FIX: typos in doc for evaluator
- Loading branch information
Showing
4 changed files
with
9 additions
and
10 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# UPDATE | ||
# @Time : 2020/11/17 | ||
# @Author : Xingyu Pan | ||
# @email : [email protected] | ||
# @email : [email protected] | ||
|
||
import os | ||
import unittest | ||
|
@@ -160,14 +160,15 @@ def test_MacridVAE(self): | |
'training_neg_sample_num': 0 | ||
} | ||
quick_test(config_dict) | ||
|
||
def test_CDAE(self): | ||
config_dict = { | ||
'model': 'CDAE', | ||
'training_neg_sample_num': 0 | ||
} | ||
quick_test(config_dict) | ||
|
||
|
||
class TestContextRecommender(unittest.TestCase): | ||
# todo: more complex context information should be test, such as criteo dataset | ||
|
||
|