Melisa Russak

Results 2 issues of Melisa Russak

Currently replaCy assumes token matches and text suggestions are single tokens: - `PATTERN_REF` copies only the first matched token: https://github.com/Qordobacode/replaCy/blob/bd7df64e2e5b875aaa9fecff31b1d898650219b4/replacy/__init__.py#L166 suggested fix: change the above line, enforce `INFLECTION` only if...

bug

I am trying to run: ```python from calflops import calculate_flops_hf model_name = "EleutherAI/pythia-70m" batch_size = 1 max_seq_length = 10 flops, macs, params = calculate_flops_hf(model_name, input_shape=(batch_size, max_seq_length)) ``` Here is the...