我有一个名为:-
的表
user_calculation 包含以下列- totalLike,totalComments 和 TotalInteraction
我需要用 TotalInteraction
和 totalLikes
之和更新列 totalComments
每个用户。
结果应该是这样的:-
答案 0 :(得分:1)
def load_my_model(vocab_dim, hidden_dim):
z=load_model("models/lm_epoch0.dnn")
input_sequence_before = z.arguments[0]
input_sequence_after = z.arguments[1]
a=z.ForwardLayer
b=z.BackwardLayer
latent_vector = C.splice(a(input_sequence_before), b(input_sequence_after))