You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello,I'd like to ask:
bulk_feat = Dense(CATES, use_bias=True, activity_regularizer=regularizers.l1(0), activation=softmax)(cfeat)
According to the paper should be like this:
bulk_feat = Dense(CATES, use_bias=True, kernel_regularizer=regularizers.l1(1.0), activation=softmax)(cfeat)
And there should be some adjustment of lambda coefficients。
The text was updated successfully, but these errors were encountered:
Agree with you. I dont experiment all regularizer due to limitation of time. I just wanna to keep bulk_feat as steady distribution , So you can change it.
hello,I'd like to ask:
bulk_feat = Dense(CATES, use_bias=True, activity_regularizer=regularizers.l1(0), activation=softmax)(cfeat)
According to the paper should be like this:
bulk_feat = Dense(CATES, use_bias=True, kernel_regularizer=regularizers.l1(1.0), activation=softmax)(cfeat)
And there should be some adjustment of lambda coefficients。
The text was updated successfully, but these errors were encountered: