Daniel M. Melanchthon

Results 4 comments of Daniel M. Melanchthon

I found the same issue. I followed the provided link and found models here http://vectors.nlpl.eu/repository/

I suggest you look at this repo https://github.com/EMBEDDIA/supar-elmo#Usage They have a util function to achieve what you want in an easy way: ``` from supar.utils import CoNLL print(CoNLL.toconll(['She', 'enjoys', 'playing',...

Hi @g8a9! I am having the same error. I am using: - `ferret-xai 0.4.2` - `pandas 2.0.3` - `python3.10` - `macOS` ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell...

Quick solution changing `benchmark.py` around lines 398. Added `try except` block: it falls back to manual deduplication. ``` # Rename duplicate columns (tokens) by adding a suffix if sum(table.columns.duplicated().astype(int)) >...