We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Dear DaLao: what's the function of "self.offsets" ?
self.offsets = np.array((0, *np.cumsum(field_dims)[:-1]), dtype=np.long) def forward(self, x): x = x + x.new_tensor(self.offsets).unsqueeze(0)
The text was updated successfully, but these errors were encountered:
feature index offset of each field
Sorry, something went wrong.
Dear DaLao: what's the function of "self.offsets" ? self.offsets = np.array((0, *np.cumsum(field_dims)[:-1]), dtype=np.long) def forward(self, x): x = x + x.new_tensor(self.offsets).unsqueeze(0)
# e.g. field_dims = [2, 3, 4, 5], offsets = [0, 2, 5, 9] # 索引的偏移量 # 因为所有特征共用一个 Embedding表 # 所以,实际表中 0~1行 对应 特征 X0, 即 field_dims[0] # 2~4行 对应 特征 X1, 即 field_dims[1] # 5~8行 对应 特征 X2, 即 field_dims[2] # 9~14行 对应 特征 X3, 即 field_dims[3] # 但实际特征取值 forward(self, x) 的 x大小 只在自身词表内取值 # 比如:X1取值0,对应Embedding内行数就是 offsets[X1] + X1 = 2 + 0 = 2
细节上说的有一点小小的错误
No branches or pull requests
Dear DaLao:
what's the function of "self.offsets" ?
self.offsets = np.array((0, *np.cumsum(field_dims)[:-1]), dtype=np.long)
def forward(self, x):
x = x + x.new_tensor(self.offsets).unsqueeze(0)
The text was updated successfully, but these errors were encountered: