-
Notifications
You must be signed in to change notification settings - Fork 18
/
params.py
32 lines (29 loc) · 1.12 KB
/
params.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (c) 2018-present, Royal Bank of Canada.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
class Params:
def __init__(self,
ne=500,
bsize=512,
lr=0.001,
reg_lambda=0.0,
emb_dim=100,
neg_ratio=20,
dropout=0.4,
save_each=50,
se_prop=0.9 ):
self.ne = ne
self.bsize = bsize
self.lr = lr
self.reg_lambda = reg_lambda
self.s_emb_dim = int(se_prop*emb_dim)
self.t_emb_dim = emb_dim - int(se_prop*emb_dim)
self.save_each = save_each
self.neg_ratio = neg_ratio
self.dropout = dropout
self.se_prop = se_prop
def str_(self):
return str(self.ne) + "_" + str(self.bsize) + "_" + str(self.lr) + "_" + str(self.reg_lambda) + "_" + str(self.s_emb_dim) + "_" + str(self.neg_ratio) + "_" + str(self.dropout) + "_" + str(self.t_emb_dim) + "_" + str(self.save_each) + "_" + str(self.se_prop)