KnightZhang

Results 5 issues of KnightZhang

``` def convert_single_mathqa_example(example, is_training, tokenizer, max_seq_length, max_program_length, op_list, op_list_size, const_list, const_list_size, cls_token, sep_token): """Converts a single MathQAExample into an InputFeature.""" features = [] question_tokens = example.question_tokens if len(question_tokens) > max_seq_length...

Hello, In "dropreader.py". Why you plus 1 for the indices of each number in the passage? And why append 100 and -1 in the following code? I am confused because...

Thanks for your excellent work!

Hello, Thanks for the easy-read code. I have a question about the code, could you please help me? In your paper, you said "we use the hidden state of the...

Looks like the implementation of MoE in transformer version (Huggingface) is wrong. The intended flow should be: - For each token, get outputs from topk experts - Weight these outputs...