helenxu

Results 5 issues of helenxu

I read from line 141 in main.py about label smoothing: ``` e2_multi = ((1.0-args.label_smoothing)*e2_multi) + (1.0/e2_multi.size(1)) ``` Isn't it should be the following instead? ``` e2_multi = ((1.0-args.label_smoothing)*e2_multi) + (args.label_smoothing/e2_multi.size(1))...

bug

Hi, I am trying to add a reference list at the end of the document and cite them in the main text. I have a bib file named ***"biblio.bib"*** which...

Dear Author, Thank you for sharing the code. I have a question about the forward() in CRFLoss_vb() in crf.py, it calculates the score of the golden state by: tg_energy =...

Hi, From the code I see: # Regularization Parameters (start with no regularization) self.reg_0 = 0.0 self.reg_w = 0.0 self.reg_v = np.repeat(0.0, num_factors) However, I don't see where the regularization...

Hi, I am trying the example code but got some error message w.r.t the __init__.py (see below). Is there anything I can do to avoid the error? Thanks! --------------------------------------------------------------------------- EmptyDataError...