-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEA: Add ENMF model #643
FEA: Add ENMF model #643
Conversation
get latest code from 0.2.x
get latest code from 0.2.x
# @Email : zhlin@ruc.edu.cn | ||
|
||
r""" | ||
MultiDAE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MultiDAE -> ENMF
def __init__(self, config, dataset): | ||
super(ENMF, self).__init__(config, dataset) | ||
|
||
self.embedding_dim = config['embedding_dim'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
embedding_dim -> embedding_size
recbole/properties/model/ENMF.yaml
Outdated
@@ -0,0 +1,5 @@ | |||
embedding_dim: 64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
embedding_dim -> embedding_size
recbole/properties/model/ENMF.yaml
Outdated
dropout_prob: 0.7 | ||
reg_weight: 0.0 | ||
negative_weight: 0.5 | ||
training_neg_sample_num: 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
training_neg_sample_num
has been declared in overall.yaml
。
No description provided.