Crysflair

Results 3 issues of Crysflair

This is my environment by `pip list`: ``` Package Version ----------------------------- ---------- alabaster 0.7.12 asgiref 3.4.1 Babel 2.9.1 bleach 4.1.0 blis 0.2.4 certifi 2021.10.8 charset-normalizer 2.0.10 ChatterBot 1.0.8 chatterbot-corpus 1.2.0...

```python def parse_srl(ltp, sent): seg, hidden = ltp.seg([sent]) seg = seg[0] srl = ltp.srl(hidden, keep_empty=False) srl = srl[0] for pred, args in srl: di = {} for name, start, end...

I converted EVA2.0 checkpoint to huggingface format and tried to run `src/example.py` with `PATH_TO_EVA_CHECKPOINT = "/home/.../pytorch_model.bin"`. Then I recieved something like this: ``` Traceback (most recent call last): File "example.py",...